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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print_context.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:58  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: print_context.cpp,v 1000.1 2004/06/01 21:03:58 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.  *   CPrintContext - a "document" to be printed
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/print/print_context.hpp>
  42. #include <algorithm>
  43. BEGIN_NCBI_SCOPE
  44. CPrintContext::CPrintContext()
  45.     : m_Options(0)
  46. {
  47. }
  48. CPrintContext::~CPrintContext()
  49. {
  50. }
  51. void CPrintContext::AddBuffer(CPVecBuffer* buf)
  52. {
  53.     m_Buffers.push_back( CRef<CPVecBuffer>(buf) );
  54. }
  55. void CPrintContext::RemoveBuffer(CPVecBuffer* buf)
  56. {
  57.     //
  58.     // Remove all elements from buffer list for the specified buffer.
  59.     // Requires a little care regarding incrementing the iterator.
  60.     //
  61.     for (TBufList::iterator it = m_Buffers.begin(); it != m_Buffers.end(); ) {
  62.         if (buf == *it) {
  63.             it = m_Buffers.erase(it);
  64.         }
  65.         else {
  66.             ++it;
  67.         }
  68.     }
  69. }
  70. void CPrintContext::Clear(void)
  71. {
  72.     m_Buffers.clear();
  73. }
  74. CPrintContext::iterator CPrintContext::begin(void)
  75. {
  76.     return m_Buffers.begin();
  77. }
  78. CPrintContext::const_iterator CPrintContext::begin(void) const
  79. {
  80.     return m_Buffers.begin();
  81. }
  82. CPrintContext::iterator CPrintContext::end(void)
  83. {
  84.     return m_Buffers.end();
  85. }
  86. CPrintContext::const_iterator CPrintContext::end(void) const
  87. {
  88.     return m_Buffers.end();
  89. }
  90. CPrintContext::reverse_iterator CPrintContext::rbegin(void)
  91. {
  92.     return m_Buffers.rbegin();
  93. }
  94. CPrintContext::const_reverse_iterator CPrintContext::rbegin(void) const
  95. {
  96.     return m_Buffers.rbegin();
  97. }
  98. CPrintContext::reverse_iterator CPrintContext::rend(void)
  99. {
  100.     return m_Buffers.rend();
  101. }
  102. CPrintContext::const_reverse_iterator CPrintContext::rend(void) const
  103. {
  104.     return m_Buffers.rend();
  105. }
  106. END_NCBI_SCOPE
  107. /*
  108.  * ===========================================================================
  109.  * $Log: print_context.cpp,v $
  110.  * Revision 1000.1  2004/06/01 21:03:58  gouriano
  111.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  112.  *
  113.  * Revision 1.7  2004/05/21 22:27:50  gorelenk
  114.  * Added PCH ncbi_pch.hpp
  115.  *
  116.  * Revision 1.6  2003/08/15 17:02:16  meric
  117.  * Updates include paths for print-related files from gui/utils to gui/print
  118.  *
  119.  * Revision 1.5  2003/06/18 17:25:39  meric
  120.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  121.  *
  122.  * Revision 1.4  2003/06/16 19:56:55  meric
  123.  * Revert the loop code for RemoveBuffer() as the previous (incorrect) code
  124.  * was incrementing once too many after finding an element to remove.
  125.  *
  126.  * Revision 1.3  2003/06/16 15:59:11  dicuccio
  127.  * Work-in-progress: everything compiles, still much reorganization to be done.
  128.  * Moved generic functionality out of opengl/print/ and into gui/utils (print
  129.  * options, print dialogs, etc.).  Removed interactive state from CGlCanvas.
  130.  * Added hook in CView for opening standard print dialog, and for generic print
  131.  * handling.  Restored log for glcanvas.cpp
  132.  *
  133.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  134.  * Clean-up after initial commit
  135.  *
  136.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  137.  * Initial version
  138.  *
  139.  *
  140.  * ===========================================================================
  141.  */