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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print_utils.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:50:46  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_UTILS__PRINT_UTILS_HPP
  10. #define GUI_UTILS__PRINT_UTILS_HPP
  11. /*  $Id: print_utils.hpp,v 1000.1 2004/06/01 19:50:46 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.  *   print-related utilities
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/gui.hpp>
  44. BEGIN_NCBI_SCOPE
  45. class NCBI_GUIUTILS_EXPORT CUnit
  46. {
  47. public:
  48.     enum EUnit
  49.     {
  50.         eInch,
  51.         eMillimeter,
  52.         ePdfUnit
  53.     };
  54.     typedef enum EUnit TUnit;
  55.     typedef float TInch;
  56.     typedef float TMillimeter;
  57.     typedef float TPdfUnit;
  58.     static string UnitToString(TUnit unit)
  59.     {
  60.         switch (unit) {
  61.         case eInch:
  62.             return "inch";
  63.         case eMillimeter:
  64.             return "millimeter";
  65.         case ePdfUnit:
  66.             return "point";
  67.         }
  68.         NCBI_THROW(CException, eUnknown, "CUnit::UnitToString: unknown unit");
  69.     }
  70.     static string UnitToSymbol(TUnit unit)
  71.     {
  72.         switch (unit) {
  73.         case eInch:
  74.             return """;
  75.         case eMillimeter:
  76.             return "mm";
  77.         case ePdfUnit:
  78.             return "pt";
  79.         }
  80.         return "";
  81.     }
  82. };
  83. inline CUnit::TPdfUnit InchesToPdfUnits(CUnit::TInch x)
  84. {
  85.     return x * 72;
  86. }
  87. inline CUnit::TPdfUnit MmToPdfUnits(CUnit::TMillimeter x)
  88. {
  89.     return InchesToPdfUnits(x / 25.4f);
  90. }
  91. inline CUnit::TInch PdfUnitsToInches(CUnit::TPdfUnit x)
  92. {
  93.     return x / 72;
  94. }
  95. inline CUnit::TMillimeter PdfUnitsToMm(CUnit::TPdfUnit x)
  96. {
  97.     return PdfUnitsToInches(x) * 25.4f;
  98. }
  99. END_NCBI_SCOPE
  100. #endif  // GUI_UTILS__PRINT_UTILS_HPP
  101. /*
  102.  * ===========================================================================
  103.  * $Log: print_utils.hpp,v $
  104.  * Revision 1000.1  2004/06/01 19:50:46  gouriano
  105.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  106.  *
  107.  * Revision 1.5  2004/05/03 12:44:50  dicuccio
  108.  * Added #include for gui/gui.hpp.  Fixed compiler warning about double -> float
  109.  * conversion
  110.  *
  111.  * Revision 1.4  2003/09/29 15:20:08  dicuccio
  112.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  113.  *
  114.  * Revision 1.3  2003/06/27 17:38:46  meric
  115.  * Added "point" and "pt" as text and symbol respectively for PDF unit
  116.  *
  117.  * Revision 1.2  2003/06/24 17:24:28  meric
  118.  * Added typdefs TInch, TMillimeter and TPdfUnit.
  119.  *
  120.  * Revision 1.1  2003/06/16 15:55:58  dicuccio
  121.  * Work-in-progress: everything compiles, still much reorganization to be done.
  122.  * Moved generic functionality out of opengl/print/ and into gui/utils (print
  123.  * options, print dialogs, etc.).  Removed interactive state from CGlCanvas.
  124.  * Added hook in CView for opening standard print dialog, and for generic print
  125.  * handling.
  126.  *
  127.  * Revision 1.2  2003/06/16 12:46:21  dicuccio
  128.  * Clean-up after initial commit
  129.  *
  130.  * Revision 1.1  2003/06/13 19:00:30  meric
  131.  * Initial version
  132.  *
  133.  *
  134.  * ===========================================================================
  135.  */