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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print_media.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:36:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_UTILS__PRINT_MEDIA_HPP
  10. #define GUI_UTILS__PRINT_MEDIA_HPP
  11. /*  $Id: print_media.hpp,v 1000.0 2003/10/31 20:36:06 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Peter Meric
  37.  *
  38.  * File Description:
  39.  *   CMedia - dimensions for physical print media
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/print/print_utils.hpp>
  44. BEGIN_NCBI_SCOPE
  45. class NCBI_GUIUTILS_EXPORT CMedia
  46. {
  47. public:
  48.     CMedia(const string& name,
  49.            float width,
  50.            float height,
  51.            CUnit::TUnit unit = CUnit::ePdfUnit);
  52.     virtual ~CMedia();
  53.     const string& GetName(void) const;
  54.     CUnit::TPdfUnit GetWidth(void) const;
  55.     CUnit::TPdfUnit GetHeight(void) const;
  56.     float GetNativeWidth(void) const;
  57.     float GetNativeHeight(void) const;
  58.     CUnit::TUnit GetUnit(void) const;
  59.     static const CMedia& GetMedia(const string& media);
  60. private:
  61.     void x_SetDimensions(void);
  62.     string m_Name;
  63.     float m_Width, m_Height;
  64.     CUnit::TUnit m_Unit;
  65.     //
  66.     // the unit height/width is always in default user coordinates (1/72 inch)
  67.     //
  68.     CUnit::TPdfUnit m_UnitWidth, m_UnitHeight;
  69. };
  70. //
  71. // US imperial paper formats
  72. //
  73. static const CMedia Letter("Letter", 8.5, 11, CUnit::eInch);
  74. static const CMedia Legal("Legal", 8.5, 14, CUnit::eInch);
  75. static const CMedia Ledger("Ledger", 11, 17, CUnit::eInch);
  76. //
  77. // ISO paper formats
  78. //
  79. static const CMedia A0("A0", 841, 1189, CUnit::eMillimeter);
  80. static const CMedia A1("A1", 594, 841, CUnit::eMillimeter);
  81. static const CMedia A2("A2", 420, 594, CUnit::eMillimeter);
  82. static const CMedia A3("A3", 297, 420, CUnit::eMillimeter);
  83. static const CMedia A4("A4", 210, 297, CUnit::eMillimeter);
  84. static const CMedia A5("A5", 148, 210, CUnit::eMillimeter);
  85. static const CMedia A6("A6", 105, 148, CUnit::eMillimeter);
  86. static const CMedia B0("B0", 1000, 1414, CUnit::eMillimeter);
  87. static const CMedia B1("B1", 707, 1000, CUnit::eMillimeter);
  88. static const CMedia B2("B2", 500, 707, CUnit::eMillimeter);
  89. static const CMedia B3("B3", 353, 500, CUnit::eMillimeter);
  90. static const CMedia B4("B4", 250, 353, CUnit::eMillimeter);
  91. static const CMedia B5("B5", 176, 250, CUnit::eMillimeter);
  92. static const CMedia B6("B6", 125, 176, CUnit::eMillimeter);
  93. END_NCBI_SCOPE
  94. #endif // GUI_UTILS__PRINT_MEDIA_HPP
  95. /*
  96.  * ===========================================================================
  97.  * $Log: print_media.hpp,v $
  98.  * Revision 1000.0  2003/10/31 20:36:06  gouriano
  99.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.3
  100.  *
  101.  * Revision 1.3  2003/08/15 17:02:41  meric
  102.  * Updates include paths for print-related files from gui/utils to gui/print
  103.  *
  104.  * Revision 1.2  2003/06/24 17:26:16  meric
  105.  * Use CUnit::TPdfUnit
  106.  *
  107.  * Revision 1.1  2003/06/16 15:55:58  dicuccio
  108.  * Work-in-progress: everything compiles, still much reorganization to be done.
  109.  * Moved generic functionality out of opengl/print/ and into gui/utils (print
  110.  * options, print dialogs, etc.).  Removed interactive state from CGlCanvas.
  111.  * Added hook in CView for opening standard print dialog, and for generic print
  112.  * handling.
  113.  *
  114.  * Revision 1.2  2003/06/16 12:46:21  dicuccio
  115.  * Clean-up after initial commit
  116.  *
  117.  * Revision 1.1  2003/06/13 19:00:30  meric
  118.  * Initial version
  119.  *
  120.  *
  121.  * ===========================================================================
  122.  */