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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: theme_set.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/04/12 18:17:40  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CONFIG____THEMESET_HPP
  10. #define GUI_CONFIG____THEMESET_HPP
  11. /* $Id: theme_set.hpp,v 1000.0 2004/04/12 18:17:40 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.  * Author:  Robert G. Smith
  37.  *
  38.  */
  39.  
  40.  /**
  41.  * File Description:
  42.  *   CThemeSet is an adapter of the PluginConfigCache, particularly an adapter
  43.  *   of a set of PluginConfigValues Include type objects.  It is meant to be
  44.  *   used as a base class for plugins' configuration classes which manage
  45.  *   a number of other configuration classes, all descendants of CSettingsSet.
  46.  *
  47.  *   Classes that inherit from this need to use AddSettingsSet to initialize
  48.  *   The set of sub-configuration classes that this manages.
  49.  */
  50. #include <gui/config/settings_set.hpp>
  51. #include <corelib/ncbistr.hpp>
  52. #include <string>
  53. #include <map>
  54. BEGIN_NCBI_SCOPE
  55. BEGIN_SCOPE(objects)
  56.     class CPluginConfigCache;
  57. END_SCOPE(objects)
  58. class NCBI_GUICONFIG_EXPORT CThemeSet : public CSettingsSet
  59. {
  60. public:
  61.     CThemeSet(objects::CPluginConfigCache* config_cache, 
  62.                  const string& type,
  63.                  const string& typedesc = "",
  64.                  const string& delim = "|");
  65.     virtual ~CThemeSet();
  66.     
  67.     /// convert between current settings and the PluginConfigCache.
  68.     virtual bool    LoadCurrentSettings(ELoadValueSource src);
  69.     virtual bool    SaveCurrentSettings(void);
  70.     
  71.     vector<string>  GetTypes() const;
  72.     vector<string>  GetTypeDescriptions() const;
  73.     list<string>    GetSetsStyles(const string& type) const;
  74.     const string&   GetSetsCurrentStyleName(const string& type) const;
  75.     void            SetSetsCurrentStyleName(const string& type, const string& new_style);
  76.     const string&   GetSetsDescription(const string& type) const;
  77.     
  78. protected:
  79.     void    AddSettingsSet(CSettingsSet& new_set); // use in desendant's constructors.
  80.      
  81. private:
  82.     using   CSettingsSet::Get;
  83.     using   CSettingsSet::Set;
  84.     
  85.     const CSettingsSet&   x_GetSettings(const string& type) const;
  86.     CSettingsSet&   x_SetSettings(const string& type);
  87.     
  88.     // typedef map<string, CRef<CSettingsSet> >    TSettingsReg;
  89.     typedef vector<CRef<CSettingsSet> >     TSettingsReg;
  90.     TSettingsReg        m_Settings;
  91. };
  92. END_NCBI_SCOPE
  93. /*
  94. * ===========================================================================
  95. *
  96. * $Log: theme_set.hpp,v $
  97. * Revision 1000.0  2004/04/12 18:17:40  gouriano
  98. * PRODUCTION: IMPORTED [CATCHUP_003] Dev-tree R1.5
  99. *
  100. * Revision 1.5  2004/02/04 16:20:49  rsmith
  101. * store managed settings in a vector, not a map so we have control over their order.
  102. *
  103. * Revision 1.4  2004/02/02 18:43:26  rsmith
  104. * add description to CSettingsSet, constructor and descendants.
  105. *
  106. * Revision 1.3  2004/01/20 23:52:34  dicuccio
  107. * Make sure that objects predeclarations are in the objects namespace
  108. *
  109. * Revision 1.2  2004/01/20 13:53:29  rsmith
  110. * remove wrong comment
  111. *
  112. * Revision 1.1  2003/12/29 14:25:29  rsmith
  113. * initial checkin
  114. *
  115. *
  116. * ===========================================================================
  117. */
  118. #endif // GUI_CONFIG____THEMESET_HPP