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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: page_buffers.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:34  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: page_buffers.cpp,v 1000.1 2004/06/01 21:03:34 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.  *   CPageBuffers - holds buffers and information for a logical page
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/print/print_buffer.hpp>
  42. #include "page_buffers.hpp"
  43. BEGIN_NCBI_SCOPE
  44. CPageBuffers::CPageBuffers()
  45. {
  46. }
  47. CPageBuffers::~CPageBuffers()
  48. {
  49. }
  50. void CPageBuffers::Add(const CPBuffer* buf)
  51. {
  52.     m_Buffers.push_back(buf);
  53.     m_BoundingBox.Add(buf->GetBoundingBox());
  54. }
  55. void CPageBuffers::Clear(void)
  56. {
  57.     m_Buffers.clear();
  58. }
  59. bool CPageBuffers::Empty(void) const
  60. {
  61.     return (m_Buffers.size() == 0);
  62. }
  63. CBBox < 3> CPageBuffers::GetBoundingBox(void) const
  64. {
  65.     return m_BoundingBox;
  66. }
  67. CPageBuffers::TOffset CPageBuffers::GetPageSize(void) const
  68. {
  69.     const pair<float, float> xs = m_BoundingBox.GetNthRange(0);
  70.     const pair<float, float> ys = m_BoundingBox.GetNthRange(1);
  71.     return TOffset((unsigned int) (xs.second - xs.first),
  72.                    (unsigned int) (ys.second - ys.first)
  73.                   );
  74. }
  75. CPageBuffers::iterator CPageBuffers::begin(void)
  76. {
  77.     return m_Buffers.begin();
  78. }
  79. CPageBuffers::const_iterator CPageBuffers::begin(void) const
  80. {
  81.     return m_Buffers.begin();
  82. }
  83. CPageBuffers::iterator CPageBuffers::end(void)
  84. {
  85.     return m_Buffers.end();
  86. }
  87. CPageBuffers::const_iterator CPageBuffers::end(void) const
  88. {
  89.     return m_Buffers.end();
  90. }
  91. CPageBuffers::reverse_iterator CPageBuffers::rbegin(void)
  92. {
  93.     return m_Buffers.rbegin();
  94. }
  95. CPageBuffers::const_reverse_iterator CPageBuffers::rbegin(void) const
  96. {
  97.     return m_Buffers.rbegin();
  98. }
  99. CPageBuffers::reverse_iterator CPageBuffers::rend(void)
  100. {
  101.     return m_Buffers.rend();
  102. }
  103. CPageBuffers::const_reverse_iterator CPageBuffers::rend(void) const
  104. {
  105.     return m_Buffers.rend();
  106. }
  107. END_NCBI_SCOPE
  108. /*
  109.  * ===========================================================================
  110.  * $Log: page_buffers.cpp,v $
  111.  * Revision 1000.1  2004/06/01 21:03:34  gouriano
  112.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  113.  *
  114.  * Revision 1.7  2004/05/21 22:27:50  gorelenk
  115.  * Added PCH ncbi_pch.hpp
  116.  *
  117.  * Revision 1.6  2003/08/15 17:02:15  meric
  118.  * Updates include paths for print-related files from gui/utils to gui/print
  119.  *
  120.  * Revision 1.5  2003/06/25 18:02:51  meric
  121.  * Source rearrangement: move "private" headers into the src/ tree
  122.  *
  123.  * Revision 1.4  2003/06/18 17:25:38  meric
  124.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  125.  *
  126.  * Revision 1.3  2003/06/18 16:40:33  meric
  127.  * First phase of print reorg: remove dependence on gui/opengl and OpenGL
  128.  * except for class COpenGLPrintBuffer
  129.  *
  130.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  131.  * Clean-up after initial commit
  132.  *
  133.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  134.  * Initial version
  135.  *
  136.  *
  137.  * ===========================================================================
  138.  */