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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: feat_config.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:46:18  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CONFIG___FEAT_CONFIG__HPP
  10. #define GUI_CONFIG___FEAT_CONFIG__HPP
  11. /*  $Id: feat_config.hpp,v 1000.3 2004/06/01 19:46:18 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.  */
  39. /// @file feat_config.hpp
  40. /// Declarations for a list of "features" that can be configured.
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/config/feat_config_inherited.hpp>
  43. #include <gui/config/feat_config_list.hpp>
  44. #include <gui/config/settings_set.hpp>
  45. #include <gui/opengl/glcolor.hpp>
  46. /** @addtogroup GUI_CONFIG
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. ///
  52. /// CFeatConfig - class to hold all configuration settings for features
  53. /// which can be saved as key value pairs.
  54. ///
  55. class NCBI_GUICONFIG_EXPORT CFeatConfig : public CSettingsSet {
  56. public:
  57.     CFeatConfig(objects::CPluginConfigCache* config_cache);
  58.     /// use the following cstr when inheriting from this class.
  59.     CFeatConfig(objects::CPluginConfigCache* config_cache, 
  60.                  const string& type,
  61.                  const AutoPtr<IFactoryDefaultSettings>& fds);
  62.     
  63.     // Iteratable list of key values (type/subtype).
  64.     // can iterate through all values including defaults.
  65.     // Dereferencing these iterators gives you a CFeatConfigItem object.
  66.     
  67.     typedef CFeatConfigList::const_iterator const_iterator;
  68.     size_t          size() const;
  69.     const_iterator  begin() const;
  70.     const_iterator  end() const;
  71.     /// Must define
  72.     virtual bool LoadCurrentSettings(ELoadValueSource src);
  73.     virtual bool SaveCurrentSettings(void);
  74.     
  75.     void        GetFeatureDescs(vector<string>& names) const;
  76.     bool        GetTypeSubType(const string& desc, int& type, int& subtype) const;
  77.     
  78.     bool        GetShow(int type, int subtype) const;
  79.     void        SetShow(int type, int subtype, bool show);
  80.     void        SetShowInherited(int type, int subtype, bool inherited);
  81.     void        SetShows(const CFeatConfigValues<bool>& o);
  82.     const CFeatConfigValues<bool>&      GetShows() const;
  83.     void        ClearShows();
  84.     
  85.     CGlColor    GetColor(int type, int subtype) const;
  86.     void        SetColor(int type, int subtype, CGlColor color);
  87.     void        SetColorInherited(int type, int subtype, bool inherited);
  88.     void        SetColors(const CFeatConfigValues<CGlColor>& o);
  89.     const CFeatConfigValues<CGlColor>&  GetColors() const;
  90.     void        ClearColors();
  91.     
  92. private:
  93.     const CFeatConfigList&      m_FeatList;
  94.     CFeatConfigValues<bool>     m_FeatShows;
  95.     CFeatConfigValues<CGlColor> m_FeatColors;
  96. };
  97. class NCBI_GUICONFIG_EXPORT CFeatConfigFactoryDefaults : public IFactoryDefaultSettings {
  98. public:
  99.     virtual string   Get(const string& key) const;
  100.     
  101.     static const string kNotDefined;
  102.     static const string kTrueStr;
  103.     static const string kFalseStr;
  104. };
  105. END_NCBI_SCOPE
  106. /* @} */
  107. /*
  108.  * ===========================================================================
  109.  *
  110.  * $Log: feat_config.hpp,v $
  111.  * Revision 1000.3  2004/06/01 19:46:18  gouriano
  112.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  113.  *
  114.  * Revision 1.16  2004/05/11 18:55:53  dicuccio
  115.  * Changed doxygen modules - use GUI_CONFIG instead of PluginConfiguration
  116.  *
  117.  * Revision 1.15  2003/12/29 14:43:19  rsmith
  118.  * Get returns string not string&. Take out stuff now in separate files.
  119.  *
  120.  * Revision 1.14  2003/11/21 12:48:32  rsmith
  121.  * Add ability to delete entries by key.
  122.  *
  123.  * Revision 1.13  2003/11/18 20:20:21  rsmith
  124.  * Sort subtypes properly. Interfaces to get/set whole groups of values.
  125.  *
  126.  * Revision 1.12  2003/11/18 17:34:16  dicuccio
  127.  * Added typename where required
  128.  *
  129.  * Revision 1.11  2003/10/31 14:01:23  ivanov
  130.  * Added export specifier for CFeatConfigFactoryDefaults class
  131.  *
  132.  * Revision 1.10  2003/10/30 14:23:13  rsmith
  133.  * Added cstr for use as a base class.
  134.  *
  135.  * Revision 1.9  2003/10/28 19:02:55  dicuccio
  136.  * Added export specifiers.  Changed ctor param from CRef<> to raw pointer
  137.  *
  138.  * Revision 1.8  2003/10/28 13:43:31  rsmith
  139.  * Expose feature list's size().
  140.  *
  141.  * Revision 1.7  2003/10/27 19:29:07  rsmith
  142.  * Expose iterators on CFeatConfigItem in CFeatConfig
  143.  *
  144.  * Revision 1.6  2003/10/25 02:40:15  ucko
  145.  * Avoid make_pair due to broken WorkShop support for covariance.
  146.  *
  147.  * Revision 1.5  2003/10/24 18:52:12  ucko
  148.  * CSeqFeatData still needs objects::....
  149.  *
  150.  * Revision 1.4  2003/10/24 14:50:03  rsmith
  151.  * CFeatConfig -> CFeatConfigList, CFeatConfig now contains a CFeatConfigList, several methods added.
  152.  *
  153.  * Revision 1.3  2003/10/21 12:24:58  dicuccio
  154.  * Minor code reformatting.  Made CFeatConfigItem a class, not a struct
  155.  *
  156.  * Revision 1.2  2003/10/20 23:38:54  ucko
  157.  * Properly scope CSeqFeatData under objects::, and fold some long lines.
  158.  *
  159.  * Revision 1.1  2003/10/17 19:45:24  rsmith
  160.  * configuration information for SeqFeats. Replaces config_items.hpp
  161.  *
  162.  * ===========================================================================
  163.  */
  164. #endif  /* GUI_CONFIG___FEAT_CONFIG__HPP */