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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pdf_object.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:47  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_UTILS__PDF_OBJECT_HPP
  10. #define GUI_UTILS__PDF_OBJECT_HPP
  11. /*  $Id: pdf_object.hpp,v 1000.1 2004/06/01 21:03:47 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.  *   CPdfObject - Stream for output of Adobe PDF objects
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <gui/gui.hpp>
  43. #include "pdf_obj.hpp"
  44. BEGIN_NCBI_SCOPE
  45. class NCBI_GUIUTILS_EXPORT CPdfObject : public CObject
  46. {
  47. public:
  48.     typedef CRef<CPdfObj> TPdfObjRef;
  49.     CPdfObject(unsigned int obj_num,
  50.                unsigned int generation = 0,
  51.                bool allowCompression = true
  52.               );
  53.     virtual ~CPdfObject();
  54.     enum EPdfObjectFormat
  55.     {
  56.         eUncompressed,
  57.         eCompressed
  58.     };
  59.     //virtual EPdfObjectFormat GetObjectFormat(void) const = 0;
  60.     // direct access to write buffer
  61.     CNcbiOstream& GetWriteBuffer(void);
  62.     unsigned int GetObjNum(void) const;
  63.     unsigned int GetGeneration(void) const;
  64.     virtual string GetSeparator(void) const;
  65.     // print the CPdfObject
  66.     virtual void PrintTo(CNcbiOstream& stream) const;
  67.     CPdfObject& operator<<(CPdfObject& (*pf)(CPdfObject&));
  68.     CPdfDictionary& GetDictionary(void);
  69.     TPdfObjRef& operator[](const string& key);
  70. protected:
  71.     void x_PrintTo(CNcbiOstream& stream);
  72. private:
  73.     unsigned int m_ObjNum;
  74.     unsigned int m_Generation;
  75.     string m_Obj;
  76.     CNcbiStrstream m_Buffer;
  77.     string m_Separator;
  78.     CPdfDictionary m_Dictionary;
  79.     bool m_AllowCompression;
  80. };
  81. inline CPdfObject& pdfbrk(CPdfObject& pdfstrm)
  82. {
  83.     pdfstrm.GetWriteBuffer() << pdfstrm.GetSeparator();
  84.     return pdfstrm;
  85. }
  86. template <typename T>
  87. inline CPdfObject& operator<<(CPdfObject& pdfobj, const T& obj)
  88. {
  89.     pdfobj.GetWriteBuffer() << obj;
  90.     return pdfobj;
  91. }
  92. inline CNcbiOstream& operator<<(CNcbiOstream& strm, const CPdfObject& obj)
  93. {
  94.     obj.PrintTo(strm);
  95.     return strm;
  96. }
  97. class NCBI_GUIUTILS_EXPORT CPdfTrailer : public CPdfObject
  98. {
  99. public:
  100.     CPdfTrailer();
  101.     virtual ~CPdfTrailer();
  102.     virtual void PrintTo(CNcbiOstream& stream) const;
  103. };
  104. template <typename T>
  105. inline CPdfTrailer& operator<<(CPdfTrailer& pdfobj, const T& obj)
  106. {
  107.     NCBI_THROW(CException, eUnknown, "CPdfObject::operator<< - illegal use of CPdfTrailer");
  108. }
  109. END_NCBI_SCOPE
  110. #endif // GUI_UTILS__PDF_OBJECT_HPP
  111. /*
  112.  * ===========================================================================
  113.  * $Log: pdf_object.hpp,v $
  114.  * Revision 1000.1  2004/06/01 21:03:47  gouriano
  115.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  116.  *
  117.  * Revision 1.7  2004/05/03 13:21:36  dicuccio
  118.  * Added gui/gui.hpp
  119.  *
  120.  * Revision 1.6  2003/07/16 17:22:19  ucko
  121.  * Fix typo (missing comma)
  122.  *
  123.  * Revision 1.5  2003/07/16 15:42:30  meric
  124.  * Add flag to specify if object may be compressed
  125.  *
  126.  * Revision 1.4  2003/06/25 18:02:51  meric
  127.  * Source rearrangement: move "private" headers into the src/ tree
  128.  *
  129.  * Revision 1.3  2003/06/18 17:25:27  meric
  130.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  131.  *
  132.  * Revision 1.2  2003/06/16 12:46:21  dicuccio
  133.  * Clean-up after initial commit
  134.  *
  135.  * Revision 1.1  2003/06/13 19:00:30  meric
  136.  * Initial version
  137.  *
  138.  *
  139.  * ===========================================================================
  140.  */