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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: featgroup_config_mediat.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:15:18  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: featgroup_config_mediat.cpp,v 1000.0 2004/06/01 21:15:18 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:  Robert Smith
  35.  *
  36.  * File Description:
  37.  *  Configuration Panel Mediator for Graphics View.
  38.  *
  39.  *  Mediates between the panel of widgets CFeatGroupConfigPanel  
  40.  *  and the data class CSeqGraphicConfig, 
  41.  *  in the context of a CConfigDlg.
  42.  */
  43. #include <ncbi_pch.hpp>
  44. #include "featgroup_config_mediat.hpp"
  45. #include "featgroup_config_panel.hpp"    // widgets
  46. #include <gui/widgets/seq_graphic/seqgraphic_conf.hpp>     // data
  47. BEGIN_NCBI_SCOPE
  48. CTestConfigMediator::CTestConfigMediator(
  49.     CSeqGraphicConfig & data, 
  50.     CFeatGroupConfigPanel& widget_group)
  51.     : CConfigMediator(data, widget_group)
  52. {
  53. }
  54. CTestConfigMediator::~CTestConfigMediator()
  55. {
  56. }
  57. /// What should we title the dialog window?
  58. string CTestConfigMediator::GetWindowTitle(void) const
  59. {
  60.     return "Sequence Graphics View Preferences";
  61. }
  62. /// Load data into that panel
  63. void CTestConfigMediator::Load(const string& state)
  64. {
  65.     CSeqGraphicConfig& data_set = x_GetMyDataSet();
  66.     CFeatGroupConfigPanel& widget_group = x_GetMyPanel();
  67.     
  68.     if ( ! state.empty()) {
  69.         data_set.SetCurrentStyleName(state);
  70.         data_set.LoadCurrentSettings(CSettingsSet::eLoad_Current);
  71.     }
  72.     x_Load(data_set, widget_group);    
  73. }
  74. /// Load 'factory default' data into that panel.
  75. void CTestConfigMediator::LoadDefault(void)
  76. {
  77.     // load the factory defaults into my data set.
  78.     CSeqGraphicConfig& data_set = x_GetMyDataSet();
  79.     data_set.LoadCurrentSettings(CSettingsSet::eLoad_FactDefs);
  80.     // load the data into the widgets.
  81.     CFeatGroupConfigPanel& widget_group = x_GetMyPanel();
  82.     x_Load(data_set, widget_group);    
  83. }
  84. void  CTestConfigMediator::x_Load(
  85.     CSeqGraphicConfig & data_set, 
  86.     CFeatGroupConfigPanel& widget_group)
  87. {
  88. }
  89.             
  90. /// Save the panel's data.
  91. void CTestConfigMediator::Save(const string& state) // state is unused.
  92. {
  93.     CSeqGraphicConfig& data_set = x_GetMyDataSet();
  94.     CFeatGroupConfigPanel& widget_group = x_GetMyPanel();
  95.    
  96.     data_set.SaveCurrentSettings();
  97. }
  98. /// Has the data represented by the panel's widgets been modified?
  99. bool CTestConfigMediator::Modified(void) const
  100. {
  101.     const CSeqGraphicConfig& data_set = x_GetMyDataSet();
  102.     return data_set.CurrentSettingsModified();
  103. }
  104. // the following accessors are just to hide the ugly down casts.
  105. CSeqGraphicConfig& CTestConfigMediator::x_GetMyDataSet(void) 
  106. {
  107.     return static_cast<CSeqGraphicConfig&>(*m_DataSet);
  108. }
  109. const CSeqGraphicConfig& CTestConfigMediator::x_GetMyDataSet(void) const
  110. {
  111.     return static_cast<const CSeqGraphicConfig&>(*m_DataSet);
  112. }
  113. CFeatGroupConfigPanel& CTestConfigMediator::x_GetMyPanel(void) 
  114. {
  115.     return static_cast<CFeatGroupConfigPanel&>(*m_ConfigPanel);
  116. }
  117. END_NCBI_SCOPE
  118. /*
  119.  * ===========================================================================
  120.  * $Log: featgroup_config_mediat.cpp,v $
  121.  * Revision 1000.0  2004/06/01 21:15:18  gouriano
  122.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  123.  *
  124.  * Revision 1.2  2004/05/21 22:27:40  gorelenk
  125.  * Added PCH ncbi_pch.hpp
  126.  *
  127.  * Revision 1.1  2004/02/20 16:14:18  rsmith
  128.  * Initial checkin of prototype, currenty unused code.
  129.  *
  130.  * Revision 1.1  2003/11/18 20:17:16  rsmith
  131.  * Initial checkin. Demo of gui_config dialog.
  132.  *
  133.  * ===========================================================================
  134.  */