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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print_options.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:36:13  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef PRINT_TEST__OPTIONS_HPP
  10. #define PRINT_TEST__OPTIONS_HPP
  11. /*  $Id: print_options.hpp,v 1000.0 2003/10/31 20:36:13 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.  *    CPrintOptions -- printing options
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/print/print_utils.hpp>
  43. BEGIN_NCBI_SCOPE
  44. class CMedia;
  45. class NCBI_GUIUTILS_EXPORT CPrintOptions
  46. {
  47. private:
  48.     typedef CUnit::TPdfUnit TPdfUnit;
  49. public:
  50.     enum EPageOrientation {
  51.         ePortrait = 0,
  52.         eLandscape = 270,
  53.         eUpsideDown = 180,
  54.         eSeascape = 90
  55.     };
  56.     typedef enum EPageOrientation TPageOrientation;
  57.     enum {
  58.         eVector = 1 << 4,
  59.         eRaster = 1 << 5
  60.     };
  61.     enum EOutputFormat {
  62.         eUnknown    = 0,
  63.         ePostscript = eVector | 1,
  64.         ePdf        = eVector | 2,
  65.         eSvg        = eVector | 3,
  66.         ePng        = eRaster | 4,
  67.         eJpeg       = eRaster | 5
  68.     };
  69.     typedef enum EOutputFormat TOutputFormat;
  70.     enum EAlignment
  71.     {
  72.         // horizontal
  73.         eLeft,
  74.         eCenter,
  75.         eRight,
  76.         // vertical
  77.         eTop,
  78.         eMiddle,
  79.         eBottom
  80.     };
  81.     typedef enum EAlignment TAlignment;
  82.     static TOutputFormat GetFormatFromName(const string& fmtname);
  83.     CPrintOptions();
  84.     virtual ~CPrintOptions();
  85.     void SetGenerateIndex(bool generateIdx);
  86.     bool GetGenerateIndex(void) const;
  87.     void SetGrayscale(bool greyscale);
  88.     bool GetGrayscale(void) const;
  89.     void SetPageOrientation(TPageOrientation orient);
  90.     TPageOrientation GetPageOrientation(void) const;
  91.     void SetFilename(const string& filename);
  92.     const string& GetFilename(void) const;
  93.     void SetTitle(const string& title);
  94.     const string& GetTitle(void) const;
  95.     void SetHeader(const string& header);
  96.     const string& GetHeader(void) const;
  97.     void SetFooter(const string& footer);
  98.     const string& GetFooter(void) const;
  99.     void SetOutputFormat(TOutputFormat fmt);
  100.     TOutputFormat GetOutputFormat(void) const;
  101.     static bool s_IsVectorFormat(TOutputFormat fmt);
  102.     static bool s_IsRasterFormat(TOutputFormat fmt);
  103.     void SetPrintOutput(bool print_output);
  104.     bool GetPrintOutput(void) const;
  105.     void SetPagesWide(unsigned int w);
  106.     unsigned int GetPagesWide(void) const;
  107.     void SetPagesTall(unsigned int w);
  108.     unsigned int GetPagesTall(void) const;
  109.     unsigned int GetNumPages(void) const;
  110.     void SetMedia(const CMedia& media);
  111.     const CMedia& GetMedia(void) const;
  112.     TPdfUnit GetMediaHeight(void) const;
  113.     TPdfUnit GetMediaWidth(void) const;
  114.     bool HasRasterDimensions(void) const;
  115.     void UnsetRasterDimensions(void);
  116.     void SetRasterWidth(unsigned int w);
  117.     unsigned int GetRasterWidth(void) const;
  118.     void SetRasterHeight(unsigned int h);
  119.     unsigned int GetRasterHeight(void) const;
  120.     void SetHeaderOffset(TPdfUnit h);
  121.     TPdfUnit GetHeaderOffset(void) const;
  122.     void SetFooterOffset(TPdfUnit h);
  123.     TPdfUnit GetFooterOffset(void) const;
  124.     void SetMarginTop(TPdfUnit h);
  125.     TPdfUnit GetMarginTop(void) const;
  126.     void SetMarginBottom(TPdfUnit w);
  127.     TPdfUnit GetMarginBottom(void) const;
  128.     void SetMarginLeft(TPdfUnit h);
  129.     TPdfUnit GetMarginLeft(void) const;
  130.     void SetMarginRight(TPdfUnit w);
  131.     TPdfUnit GetMarginRight(void) const;
  132.     TPdfUnit GetPageTrimWidth(void) const;
  133.     TPdfUnit GetPageTrimHeight(void) const;
  134. protected:
  135.     TPdfUnit x_GetPageWidth(void) const;
  136.     TPdfUnit x_GetPageHeight(void) const;
  137. private:
  138.     // general attributes
  139.     string m_Filename;
  140.     string m_TempFilename;
  141.     bool m_Grayscale;
  142.     TOutputFormat m_Format;
  143.     // raster-output attributes
  144.     bool m_HasRasterDims;
  145.     unsigned int m_RasterWidth;
  146.     unsigned int m_RasterHeight;
  147.     // vector-output attributes
  148.     string m_Title;
  149.     string m_Header;
  150.     string m_Footer;
  151.     TPageOrientation m_PageOrientation;
  152.     bool m_PrintOutput;
  153.     bool m_GenerateIndex;
  154.     unsigned int m_PagesWide;
  155.     unsigned int m_PagesTall;
  156.     const CMedia* m_Media;
  157.     TPdfUnit m_HeaderOffset;
  158.     TPdfUnit m_FooterOffset;
  159.     TPdfUnit m_MarginTop;
  160.     TPdfUnit m_MarginBottom;
  161.     TPdfUnit m_MarginLeft;
  162.     TPdfUnit m_MarginRight;
  163. };
  164. END_NCBI_SCOPE
  165. #endif  // PRINT_TEST__OPTIONS_HPP
  166. /*
  167.  * ===========================================================================
  168.  * $Log: print_options.hpp,v $
  169.  * Revision 1000.0  2003/10/31 20:36:13  gouriano
  170.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.13
  171.  *
  172.  * Revision 1.13  2003/08/15 17:02:41  meric
  173.  * Updates include paths for print-related files from gui/utils to gui/print
  174.  *
  175.  * Revision 1.12  2003/08/15 14:56:12  meric
  176.  * Added predicate HasRasterDimensions() and function UnsetRasterDimensions()
  177.  *
  178.  * Revision 1.11  2003/07/15 18:34:20  meric
  179.  * Add predicates s_IsVectorFormat() and s_IsRasterFormat()
  180.  * Add eJpeg enumeration for JPEG format
  181.  *
  182.  * Revision 1.10  2003/07/15 16:45:13  meric
  183.  * Add raster width/height
  184.  *
  185.  * Revision 1.9  2003/06/25 16:24:24  meric
  186.  * Add vector/raster modifier to format type enumerations
  187.  *
  188.  * Revision 1.8  2003/06/24 17:25:54  meric
  189.  * Use TPdfUnit
  190.  *
  191.  * Revision 1.7  2003/06/24 15:46:25  meric
  192.  * Removed GetPageScaling() and GetPanelOffset()
  193.  *
  194.  * Revision 1.6  2003/06/19 00:52:43  dicuccio
  195.  * Changed to return string by const reference rather than by value
  196.  *
  197.  * Revision 1.5  2003/06/17 19:49:32  meric
  198.  * Added support for printing (PDF output to temp file)
  199.  *
  200.  * Revision 1.4  2003/06/16 21:44:27  meric
  201.  * Added GetNumPages() member function
  202.  *
  203.  * Revision 1.3  2003/06/16 21:24:44  meric
  204.  * Allow for negative offsets (TOffset)
  205.  *
  206.  * Revision 1.2  2003/06/16 21:22:16  meric
  207.  * Fixed GetPageOffset(); added misc member functions
  208.  *
  209.  * Revision 1.1  2003/06/16 15:55:58  dicuccio
  210.  * Work-in-progress: everything compiles, still much reorganization to be done.
  211.  * Moved generic functionality out of opengl/print/ and into gui/utils (print
  212.  * options, print dialogs, etc.).  Removed interactive state from CGlCanvas.
  213.  * Added hook in CView for opening standard print dialog, and for generic print
  214.  * handling.
  215.  *
  216.  * Revision 1.2  2003/06/16 12:46:21  dicuccio
  217.  * Clean-up after initial commit
  218.  *
  219.  * Revision 1.1  2003/06/13 19:00:30  meric
  220.  * Initial version
  221.  *
  222.  *
  223.  * ===========================================================================
  224.  */