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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: save_image_dlg.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:04:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: save_image_dlg.cpp,v 1000.1 2004/06/01 21:04:23 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.  *   CSaveImageDlg - Raster image options dialog
  38.  *
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/print/save_image_dlg.hpp>
  42. #include <FL/Fl_File_Chooser.H>
  43. BEGIN_NCBI_SCOPE
  44. #include "save_image_dlg_.cpp"
  45. CSaveImageDlg::CSaveImageDlg(const CPrintOptions& opts)
  46. {
  47.     m_Window.reset(x_Create());
  48.     Init(opts);
  49. }
  50. void CSaveImageDlg::Init(const CPrintOptions& opts)
  51. {
  52.     // initialise fields
  53.     m_Filename->value(opts.GetFilename().c_str());
  54.     m_Png->argument(CPrintOptions::ePng);
  55.     m_Jpeg->argument(CPrintOptions::eJpeg);
  56.     switch (opts.GetOutputFormat()) {
  57.     case CPrintOptions::ePng:
  58.         m_Format->value(0);
  59.         break;
  60.     case CPrintOptions::eJpeg:
  61.         m_Format->value(1);
  62.         break;
  63.     }
  64.     if (opts.HasRasterDimensions()) {
  65.         m_RasterWidth->value(opts.GetRasterWidth());
  66.         m_RasterHeight->value(opts.GetRasterHeight());
  67.     }
  68. }
  69. void CSaveImageDlg::x_UpdateOptions(void)
  70. {
  71.     m_Options.SetFilename(m_Filename->value());
  72.     m_Options.SetOutputFormat(static_cast<CPrintOptions::TOutputFormat>
  73.                                  (m_Format->mvalue()->argument())
  74.                              );
  75.     if (m_CustomSizeGroup->active()) {
  76.         m_Options.SetRasterWidth((unsigned int) m_RasterWidth->value());
  77.         m_Options.SetRasterHeight((unsigned int) m_RasterHeight->value());
  78.     }
  79. }
  80. void CSaveImageDlg::x_OnOK()
  81. {
  82.     x_UpdateOptions();
  83.     CDialog::x_OnOK();
  84. }
  85. void CSaveImageDlg::x_OnBrowse(void)
  86. {
  87.     const char* fname = fl_file_chooser("Save Image As?", "*", 0);
  88.     if (fname  &&  *fname) {
  89.         m_Filename->value(fname);
  90.     }
  91. }
  92. void CSaveImageDlg::x_OnCustomSize(void)
  93. {
  94.     if (m_CustomSize->value()) {
  95.         m_CustomSizeGroup->activate();
  96.     }
  97.     else {
  98.         m_CustomSizeGroup->deactivate();
  99.     }
  100. }
  101. CPrintOptions CSaveImageDlg::GetOptions(void)
  102. {
  103.     return m_Options;
  104. }
  105. END_NCBI_SCOPE
  106. /*
  107.  * ===========================================================================
  108.  * $Log: save_image_dlg.cpp,v $
  109.  * Revision 1000.1  2004/06/01 21:04:23  gouriano
  110.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  111.  *
  112.  * Revision 1.4  2004/05/21 22:27:50  gorelenk
  113.  * Added PCH ncbi_pch.hpp
  114.  *
  115.  * Revision 1.3  2003/09/29 15:46:36  dicuccio
  116.  * Inherit dialogs from CDialog
  117.  *
  118.  * Revision 1.2  2003/08/15 17:02:16  meric
  119.  * Updates include paths for print-related files from gui/utils to gui/print
  120.  *
  121.  * Revision 1.1  2003/08/15 14:57:05  meric
  122.  * Initial version
  123.  *
  124.  * ===========================================================================
  125.  */