print_media.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print_media.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:04:11  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: print_media.cpp,v 1000.1 2004/06/01 21:04:11 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software / database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software / database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Peter Meric
  35.  *
  36.  * File Description:
  37.  *   CMedia - dimensions for physical print media
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/print/print_media.hpp>
  42. BEGIN_NCBI_SCOPE
  43. CMedia::CMedia(const string& name, float width, float height, CUnit::TUnit unit)
  44.     : m_Name(name),
  45.     m_Width(width),
  46.     m_Height(height),
  47. m_Unit(unit)
  48. {
  49.     x_SetDimensions();
  50. }
  51. CMedia::~CMedia()
  52. {
  53. }
  54. void CMedia::x_SetDimensions(void)
  55. {
  56.     switch (m_Unit) {
  57.     case CUnit::eInch:
  58.         m_UnitWidth = InchesToPdfUnits(m_Width);
  59.         m_UnitHeight = InchesToPdfUnits(m_Height);
  60.         break;
  61.     case CUnit::eMillimeter:
  62.         m_UnitWidth = MmToPdfUnits(m_Width);
  63.         m_UnitHeight = MmToPdfUnits(m_Height);
  64.         break;
  65.     case CUnit::ePdfUnit:
  66.         m_UnitWidth = m_Width;
  67.         m_UnitHeight = m_Height;
  68.         break;
  69.     default:
  70.         NCBI_THROW(CException, eUnknown, "CMedia::x_SetDimensions: unknown unit");
  71.     }
  72. }
  73. const string& CMedia::GetName(void) const
  74. {
  75.     return m_Name;
  76. }
  77. CUnit::TPdfUnit CMedia::GetWidth(void) const
  78. {
  79.     return m_UnitWidth;
  80. }
  81. CUnit::TPdfUnit CMedia::GetHeight(void) const
  82. {
  83.     return m_UnitHeight;
  84. }
  85. float CMedia::GetNativeWidth(void) const
  86. {
  87.     return m_Width;
  88. }
  89. float CMedia::GetNativeHeight(void) const
  90. {
  91.     return m_Height;
  92. }
  93. CUnit::TUnit CMedia::GetUnit(void) const
  94. {
  95.     return m_Unit;
  96. }
  97. const CMedia& CMedia::GetMedia(const string& media)
  98. {
  99.     if (media == "Letter") {
  100.         return Letter;
  101.     }
  102.     if (media == "Legal") {
  103.         return Legal;
  104.     }
  105.     if (media == "Ledger") {
  106.         return Ledger;
  107.     }
  108.     if (media == "A0") {
  109.         return A0;
  110.     }
  111.     if (media == "A1") {
  112.         return A1;
  113.     }
  114.     if (media == "A2") {
  115.         return A2;
  116.     }
  117.     if (media == "A3") {
  118.         return A3;
  119.     }
  120.     if (media == "A4") {
  121.         return A4;
  122.     }
  123.     if (media == "A5") {
  124.         return A5;
  125.     }
  126.     if (media == "A6") {
  127.         return A6;
  128.     }
  129.     if (media == "B0") {
  130.         return B0;
  131.     }
  132.     if (media == "B1") {
  133.         return B1;
  134.     }
  135.     if (media == "B2") {
  136.         return B2;
  137.     }
  138.     if (media == "B3") {
  139.         return B3;
  140.     }
  141.     if (media == "B4") {
  142.         return B4;
  143.     }
  144.     if (media == "B5") {
  145.         return B5;
  146.     }
  147.     if (media == "B6") {
  148.         return B6;
  149.     }
  150.     NCBI_THROW(CException, eUnknown, "CMedia::GetMedia: unknown media " + media);
  151. }
  152. END_NCBI_SCOPE
  153. /*
  154.  * ===========================================================================
  155.  * $Log: print_media.cpp,v $
  156.  * Revision 1000.1  2004/06/01 21:04:11  gouriano
  157.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  158.  *
  159.  * Revision 1.4  2004/05/21 22:27:50  gorelenk
  160.  * Added PCH ncbi_pch.hpp
  161.  *
  162.  * Revision 1.3  2003/08/15 17:02:16  meric
  163.  * Updates include paths for print-related files from gui/utils to gui/print
  164.  *
  165.  * Revision 1.2  2003/06/24 17:27:33  meric
  166.  * Use CUnit::TPdfUnit
  167.  *
  168.  * Revision 1.1  2003/06/16 16:01:38  dicuccio
  169.  * Moved generic print code code from opengl/print to utils.
  170.  *
  171.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  172.  * Clean-up after initial commit
  173.  *
  174.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  175.  * Initial version
  176.  *
  177.  * ===========================================================================
  178.  */