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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: print.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:03:53  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: print.cpp,v 1000.1 2004/06/01 21:03:53 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.  *    Encapsulation of printing functionality
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/print/print.hpp>
  41. #include <gui/utils/app_popup.hpp>
  42. #include <gui/print/print_context.hpp>
  43. #include <gui/print/print_options.hpp>
  44. #include <gui/print/pdf.hpp>
  45. #include <gui/print/postscript.hpp>
  46. #include <gui/print/vector_output.hpp>
  47. #include "pdf_object.hpp"
  48. #include "pdf_object_writer.hpp"
  49. #include "page_handler.hpp"
  50. #include "page_buffers.hpp"
  51. BEGIN_NCBI_SCOPE
  52. template <typename T>
  53. void s_PrintContextTmpl(const CPrintOptions& opts,
  54.                         const CPrintContext& print_context
  55.                        )
  56. {
  57.     const string& fname = opts.GetFilename();
  58.     if (fname.empty()) {
  59.         return;
  60.     }
  61.     CNcbiOfstream ostr(fname.c_str(), ios::binary);
  62.     CVectorOutput<T> output;
  63.     output.SetOptions(opts);
  64.     output.SetOutputStream(&ostr);
  65.     output.BeginDocument();
  66.     output.PrintPage(&print_context);
  67.     output.EndDocument();
  68. }
  69. void PrintContext(const CPrintContext& ctx, const CPrintOptions& opts)
  70. {
  71.     switch (opts.GetOutputFormat()) {
  72.     case CPrintOptions::ePostscript:
  73.         LOG_POST(Info << "Postscript output deprecated: please use PDF");
  74.         s_PrintContextTmpl<CPostscript>(opts, ctx);
  75.         break;
  76.     case CPrintOptions::ePdf:
  77.         s_PrintContextTmpl<CPdf>(opts, ctx);
  78.         if (opts.GetPrintOutput()) {
  79.             CAppPopup::PopupFile(opts.GetFilename(), filetype::ePdf);
  80.         }
  81.         break;
  82.     case CPrintOptions::eSvg:
  83.         LOG_POST(Info << "SVG output not implemented yet");
  84.         break;
  85.     case CPrintOptions::ePng:
  86.         LOG_POST(Info << "PNG output not implemented yet");
  87.         break;
  88.     default:
  89.         _TRACE("output format not understood: " << opts.GetOutputFormat());
  90.         break;
  91.     }
  92. }
  93. END_NCBI_SCOPE
  94. /*
  95.  * ===========================================================================
  96.  * $Log: print.cpp,v $
  97.  * Revision 1000.1  2004/06/01 21:03:53  gouriano
  98.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  99.  *
  100.  * Revision 1.4  2004/05/21 22:27:50  gorelenk
  101.  * Added PCH ncbi_pch.hpp
  102.  *
  103.  * Revision 1.3  2003/08/15 17:02:16  meric
  104.  * Updates include paths for print-related files from gui/utils to gui/print
  105.  *
  106.  * Revision 1.2  2003/06/25 18:02:51  meric
  107.  * Source rearrangement: move "private" headers into the src/ tree
  108.  *
  109.  * Revision 1.1  2003/06/25 16:25:29  meric
  110.  * Initial version
  111.  *
  112.  *
  113.  * ===========================================================================
  114.  */