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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: theme_mediator.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:18:56  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_DIALOGS_CONFIG___THEME_MEDIATOR__HPP
  10. #define GUI_DIALOGS_CONFIG___THEME_MEDIATOR__HPP
  11. /*  $Id: theme_mediator.hpp,v 1000.0 2004/04/12 18:18:56 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Robert Smith
  37.  *
  38.  * File Description:
  39.  *  Configuration Panel Interpreter default implementation.
  40.  *  The is the default implementation of those methods of the IConfigMediator
  41.  *  interface that any such mediator should have in common. 
  42.  *
  43.  *  Derived classes with this interface & implementation mediate between IConfigPanel's
  44.  *  and classes with the CSettingsSet base class, in the context of a
  45.  *  CConfigDlg.
  46.  */
  47. #include <gui/dialogs/config/config_mediator.hpp> // base class
  48. BEGIN_NCBI_SCOPE
  49. class CThemeSet;
  50. class IThemeConfigPanelBase;
  51. class NCBI_GUIDIALOGS_EXPORT CThemeMediator : public CConfigMediator
  52. {
  53. public:
  54.     CThemeMediator(CThemeSet & data, IThemeConfigPanelBase& panel);
  55.     virtual ~CThemeMediator();
  56.     
  57.     /// What should we title the dialog window?
  58.     string      GetWindowTitle(void) const;
  59.     /// Load data into that panel
  60.     void                Load(const string& state);
  61.     /// Load 'factory default' data into that panel.
  62.     void                LoadDefault(void);
  63.     /// Save the panel's data.
  64.     void                Save(const string& state);
  65.     /// Has the data represented by the panel's widgets been modified?
  66.     bool                Modified(void) const;
  67. protected:
  68.     void x_Load(const CThemeSet & data,
  69.                 IThemeConfigPanelBase& widget_group);
  70.     void x_LoadFirst(); // load data into the widgets the first time.
  71.                 
  72. // the following accessors are just to hide the ugly down casts.
  73.     CThemeSet&              x_GetMyDataSet(void) ;
  74.     const CThemeSet&        x_GetMyDataSet(void) const;
  75.     IThemeConfigPanelBase&      x_GetMyPanel(void);
  76. };
  77. END_NCBI_SCOPE
  78. /*
  79.  * ===========================================================================
  80.  * $Log: theme_mediator.hpp,v $
  81.  * Revision 1000.0  2004/04/12 18:18:56  gouriano
  82.  * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.4
  83.  *
  84.  * Revision 1.4  2004/02/02 18:37:58  rsmith
  85.  * Our panel will be a descedant of IThemeConfigPanelBase, not CThemeConfigPanelBase.
  86.  *
  87.  * Revision 1.3  2004/01/29 21:25:13  rsmith
  88.  * Do things in terms of base class IThemeConfigPanelBase.
  89.  *
  90.  * Revision 1.2  2004/01/02 21:03:47  rsmith
  91.  * add x_LoadFirst method.
  92.  *
  93.  * Revision 1.1  2003/12/30 14:08:59  dicuccio
  94.  * Initial check-in - moved from gui/config
  95.  *
  96.  * Revision 1.1  2003/12/29 14:25:29  rsmith
  97.  * initial checkin
  98.  *
  99.  *
  100.  * ===========================================================================
  101.  */
  102. #endif  /* GUI_DIALOGS_CONFIG___THEME_MEDIATOR__HPP */