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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: vector_printer.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:04:34  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: vector_printer.cpp,v 1000.1 2004/06/01 21:04: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.  *   CVectorPrinter - print vector objects
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/print/vector_printer.hpp>
  42. #include <gui/print/vector_buffer.hpp>
  43. #include <gui/print/print_buffer.hpp>
  44. #include <gui/print/print_options.hpp>
  45. BEGIN_NCBI_SCOPE
  46. CVectorPrinter::CVectorPrinter(CNcbiOstream& ostream)
  47. : m_Strm(0)
  48. {
  49.     SetOutputStream(&ostream);
  50. }
  51. CVectorPrinter::~CVectorPrinter()
  52. {
  53. }
  54. void CVectorPrinter::SetOutputStream(CNcbiOstream* ostream)
  55. {
  56.     m_Strm = ostream;
  57. }
  58. void CVectorPrinter::SetPrintContext(const CPrintContext* print_ctx)
  59. {
  60.     m_PrintCtx = print_ctx;
  61. }
  62. void CVectorPrinter::ClearPrintContext(void)
  63. {
  64.     m_PrintCtx = 0;
  65. }
  66. void CVectorPrinter::Print(void)
  67. {
  68.     ITERATE(CPrintContext, it, *m_PrintCtx) {
  69.         const CPBuffer* buf = dynamic_cast<const CPBuffer*>(it->GetPointer());
  70.         if (buf) {
  71.             PrintBuffer(buf);
  72.         }
  73.     }
  74. }
  75. void CVectorPrinter::PrintBuffer(const CPBuffer* buf)
  76. {
  77.     if ( !buf ) {
  78.         return;
  79.     }
  80.     if (buf->IsEmpty()) {
  81.         cerr << "buffer emptyn";
  82.         return;
  83.     }
  84.     CPrintState state;
  85.     const CPVecBuffer* vbuf = dynamic_cast<const CPVecBuffer*>(buf);
  86.     if (buf) {
  87.         ITERATE(CPVecBuffer, it, *vbuf) {
  88.             PrintObject(it->GetPointer(), state);
  89.         }
  90.     }
  91. }
  92. END_NCBI_SCOPE
  93. /*
  94.  * ===========================================================================
  95.  * $Log: vector_printer.cpp,v $
  96.  * Revision 1000.1  2004/06/01 21:04:34  gouriano
  97.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  98.  *
  99.  * Revision 1.7  2004/05/21 22:27:50  gorelenk
  100.  * Added PCH ncbi_pch.hpp
  101.  *
  102.  * Revision 1.6  2003/08/15 17:02:17  meric
  103.  * Updates include paths for print-related files from gui/utils to gui/print
  104.  *
  105.  * Revision 1.5  2003/06/18 17:25:39  meric
  106.  * Final phase of print reorg: remove dependence on gui/opengl and OpenGL
  107.  *
  108.  * Revision 1.4  2003/06/18 16:40:33  meric
  109.  * First phase of print reorg: remove dependence on gui/opengl and OpenGL
  110.  * except for class COpenGLPrintBuffer
  111.  *
  112.  * Revision 1.3  2003/06/16 15:59:11  dicuccio
  113.  * Work-in-progress: everything compiles, still much reorganization to be done.
  114.  * Moved generic functionality out of opengl/print/ and into gui/utils (print
  115.  * options, print dialogs, etc.).  Removed interactive state from CGlCanvas.
  116.  * Added hook in CView for opening standard print dialog, and for generic print
  117.  * handling.  Restored log for glcanvas.cpp
  118.  *
  119.  * Revision 1.2  2003/06/16 12:44:52  dicuccio
  120.  * Clean-up after initial commit
  121.  *
  122.  * Revision 1.1  2003 / 06 / 13 18:13:56  meric
  123.  * Initial version
  124.  *
  125.  *
  126.  * ===========================================================================
  127.  */