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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_config_mediat.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:46:11  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_config_mediat.cpp,v 1000.1 2004/06/01 20:46:11 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 CTestConfigPanel  
  40.  *  and the data class CTestSettings, 
  41.  *  in the context of a CConfigDlg.
  42.  */
  43. #include <ncbi_pch.hpp>
  44. #include "test_config_mediat.hpp"
  45. BEGIN_NCBI_SCOPE
  46. CTestConfigMediator::CTestConfigMediator(
  47.     CTestSettings & data, 
  48.     CTestConfigPanel& widget_group)
  49.     : CConfigMediator(data, widget_group)
  50. {
  51. }
  52. CTestConfigMediator::~CTestConfigMediator()
  53. {
  54. }
  55. /// What should we title the dialog window?
  56. string CTestConfigMediator::GetWindowTitle(void) const
  57. {
  58.     return "Sequence Graphics View Preferences";
  59. }
  60. /// Load data into that panel
  61. void CTestConfigMediator::Load(const string& state)
  62. {
  63.     CTestSettings& data_set = GetDataSet();
  64.     CTestConfigPanel& widget_group =
  65.         dynamic_cast<CTestConfigPanel&>(GetPanel());
  66.     
  67.     if (state != kEmptyStr) {
  68.         data_set.SetCurrentStyleName(state);
  69.         data_set.LoadCurrentSettings(CSettingsSet::eLoad_Current);
  70.     }
  71.     x_Load(data_set, widget_group);    
  72. }
  73. /// Load 'factory default' data into that panel.
  74. void CTestConfigMediator::LoadDefault(void)
  75. {
  76.     // load the factory defaults into my data set.
  77.     CTestSettings& data_set = GetDataSet();
  78.     data_set.LoadCurrentSettings(CSettingsSet::eLoad_FactDefs);
  79.     // load the data into the widgets.
  80.     CTestConfigPanel& widget_group =
  81.         dynamic_cast<CTestConfigPanel&>(GetPanel());
  82.     x_Load(data_set, widget_group);    
  83. }
  84. void  CTestConfigMediator::x_Load(
  85.     CTestSettings & data_set, 
  86.     CTestConfigPanel& widget_group)
  87. {
  88.     // view options
  89.     int btn_value;
  90.     btn_value = 0;
  91.     if (data_set.m_ShowFeatures)
  92.         btn_value = 1;   
  93.     widget_group.m_ShowFeaturesBtn->value(btn_value);    
  94.     
  95.     // colors 
  96.     widget_group.m_SelectionColorBtn->SetGlColor(data_set.m_SelectionColor);
  97.     // string
  98.     widget_group.m_Name->value(data_set.m_Name.c_str());
  99. }
  100.             
  101. /// Save the panel's data.
  102. void CTestConfigMediator::Save(const string& state) // state is unused.
  103. {
  104.     CTestSettings& data_set = GetDataSet();
  105.     CTestConfigPanel& widget_group =
  106.         dynamic_cast<CTestConfigPanel&>(GetPanel());
  107.     data_set.m_ShowFeatures = widget_group.m_ShowFeaturesBtn->value();      
  108.     data_set.m_SelectionColor = widget_group.m_SelectionColorBtn->GetGlColor();
  109.     data_set.m_Name = widget_group.m_Name->value();
  110.     
  111.     data_set.SaveCurrentSettings();
  112. }
  113. /// Has the data represented by the panel's widgets been modified?
  114. bool CTestConfigMediator::Modified(void) const
  115. {
  116.     const CTestSettings& data_set = GetDataSet();
  117.     return data_set.CurrentSettingsModified();
  118. }
  119. // the following accessors are just to hide the ugly down casts.
  120. CTestSettings& CTestConfigMediator::GetDataSet(void) 
  121. {
  122.     return static_cast<CTestSettings&>(*m_DataSet);
  123. }
  124. const CTestSettings& CTestConfigMediator::GetDataSet(void) const
  125. {
  126.     return static_cast<const CTestSettings&>(*m_DataSet);
  127. }
  128. IConfigPanel& CTestConfigMediator::GetPanel(void) 
  129. {
  130.     return (*m_ConfigPanel);
  131. }
  132. END_NCBI_SCOPE
  133. /*
  134.  * ===========================================================================
  135.  * $Log: test_config_mediat.cpp,v $
  136.  * Revision 1000.1  2004/06/01 20:46:11  gouriano
  137.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  138.  *
  139.  * Revision 1.3  2004/05/21 22:27:41  gorelenk
  140.  * Added PCH ncbi_pch.hpp
  141.  *
  142.  * Revision 1.2  2004/04/07 12:50:18  dicuccio
  143.  * Fixed use of casting
  144.  *
  145.  * Revision 1.1  2004/02/12 14:57:46  rsmith
  146.  * initial checkin. Moved from gui/config/test
  147.  *
  148.  * Revision 1.1  2003/11/18 20:17:16  rsmith
  149.  * Initial checkin. Demo of gui_config dialog.
  150.  *
  151.  * ===========================================================================
  152.  */