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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: theme_config_panel_base.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:47:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_DIALOGS_CONFIG___THEME_CONFIG_PANEL_BASE__HPP
  10. #define GUI_DIALOGS_CONFIG___THEME_CONFIG_PANEL_BASE__HPP
  11. /*  $Id: theme_config_panel_base.hpp,v 1000.1 2004/06/01 19:47:36 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 G. Smith
  37.  *
  38.  */
  39. /// @file theme_config_panel_base.hpp
  40. ///
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. #include <gui/dialogs/config/config_panel.hpp>
  44. /** @addtogroup Miscellaneous
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. /// IThemeConfigPanelBase. 
  50. /// The interace CThemeMediator expects of any widget panel it can interact with,
  51. /// to display and modify data from a CThemeSet.
  52. class IThemeConfigPanelBase : public IConfigPanel
  53. {
  54. public:
  55.     typedef list<string>    TStyleList;
  56.     virtual         ~IThemeConfigPanelBase();
  57.     virtual void   Clear() = 0;
  58.     virtual string GetCurrentStyle(const string& type) const = 0;
  59.     virtual void   SetCurrentStyle(const string& type, const string& style) = 0;
  60.     virtual void   AddItem(const string& type, 
  61.                            const string& cur_style, 
  62.                            const TStyleList& styles,
  63.                            const string& desc) = 0;
  64.                     
  65.     virtual void   MakeWidgets() = 0;
  66.     virtual void   UpdateWidgets() = 0;
  67. };
  68. /// CThemeConfigPanelBase
  69. /// The default implementation for Theme widget panels.
  70. class NCBI_GUIDIALOGS_EXPORT CThemeConfigPanelBase
  71.     : public IThemeConfigPanelBase
  72. {
  73. public:
  74.     virtual ~CThemeConfigPanelBase();
  75.     virtual void    Clear();
  76.     virtual string  GetCurrentStyle(const string& type) const;
  77.     virtual void    SetCurrentStyle(const string& type, const string& style);
  78.     virtual void    AddItem(const string& type, 
  79.                             const string& cur_style, 
  80.                             const TStyleList& styles,
  81.                             const string& desc);
  82.     
  83.     struct SItemData
  84.     {
  85.         SItemData(const string& t,      const string& cs,
  86.                   const TStyleList& ss, const string& d) 
  87.             : type(t), current_style(cs), styles(ss), desc(d) {}
  88.         string  type;
  89.         string  current_style;
  90.         TStyleList  styles;
  91.         string  desc;
  92.     };
  93. protected:
  94.     vector <string> TDescList;
  95.     string          GetCurrentStyleByDesc(const string& desc) const;
  96.     void            SetCurrentStyleByDesc(const string& desc, const string& style);
  97.     TStyleList      GetStylesByDesc(const string& desc) const;
  98.     
  99.     // mess to help with lookups by description or type.
  100.     
  101.     enum EKeyType {
  102.         eFindByType,
  103.         eFindByDesc
  104.     };
  105.     const SItemData&    x_GetItemData(const string& key, EKeyType e ) const;
  106.     SItemData&          x_SetItemData(const string& key, EKeyType e );
  107.     
  108.     // predicates for find_if.
  109.     struct PFindType
  110.     {
  111.         PFindType(const string& s) : m_Val(s) {};
  112.         bool operator()(const SItemData& d) const
  113.         {
  114.             return d.type == m_Val;
  115.         }
  116.     private:
  117.         string      m_Val;
  118.     };
  119.     struct PFindDesc
  120.     {
  121.         PFindDesc(const string& s) : m_Val(s) {};
  122.         bool operator()(const SItemData& d) const
  123.         {
  124.             return d.desc == m_Val;
  125.         }
  126.     private:
  127.         string      m_Val;
  128.     };
  129.     vector <SItemData>      m_ItemData;
  130. };
  131.  
  132. END_NCBI_SCOPE 
  133. /* @} */
  134. /*
  135.  * ===========================================================================
  136.  * $Log: theme_config_panel_base.hpp,v $
  137.  * Revision 1000.1  2004/06/01 19:47:36  gouriano
  138.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  139.  *
  140.  * Revision 1.7  2004/05/03 12:42:46  dicuccio
  141.  * Added #include for gui/gui.hpp
  142.  *
  143.  * Revision 1.6  2004/02/04 11:41:11  dicuccio
  144.  * Added export specifier
  145.  *
  146.  * Revision 1.5  2004/02/03 14:59:24  dicuccio
  147.  * Code reformatting.  Don't use class identifier when referring to internal class
  148.  * - breaks MSVC build
  149.  *
  150.  * Revision 1.4  2004/02/03 01:29:13  ucko
  151.  * Make CThemeConfigPanelBase::SItemData public to address visibility
  152.  * issues on some compilers.
  153.  *
  154.  * Revision 1.3  2004/02/02 19:17:33  rsmith
  155.  * get rid of obsolete include
  156.  *
  157.  * Revision 1.2  2004/02/02 18:36:58  rsmith
  158.  * Make this a pure interface class with an default implementation class.
  159.  *
  160.  * Revision 1.1  2004/01/29 21:18:57  rsmith
  161.  * initial checkin
  162.  *
  163.  * ===========================================================================
  164.  */
  165. #endif  /* GUI_DIALOGS_CONFIG___THEME_CONFIG_PANEL_BASE__HPP */