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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: theme_config_panel_base.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:45:53  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id $
  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 G. Smith
  35.  *
  36.  *
  37.  */
  38. /// @file theme_config_panel_base.cpp
  39. ///
  40. #include <ncbi_pch.hpp>
  41. #include <gui/dialogs/config/theme_config_panel_base.hpp>
  42. #include <gui/config/settings_set.hpp>  // for exception decl.
  43. BEGIN_NCBI_SCOPE
  44. IThemeConfigPanelBase::~IThemeConfigPanelBase()
  45. {
  46. }
  47. CThemeConfigPanelBase::~CThemeConfigPanelBase()
  48. {
  49. }
  50. void CThemeConfigPanelBase::Clear()
  51. {
  52.     m_ItemData.clear();
  53. }
  54. void CThemeConfigPanelBase::AddItem(
  55.     const string& item, 
  56.     const string& sel_style, 
  57.     const TStyleList& styles,
  58.     const string& desc
  59. )
  60. {
  61.     m_ItemData.push_back(SItemData(item, sel_style, styles, desc));
  62. }
  63. string CThemeConfigPanelBase::GetCurrentStyle(const string& item) const
  64. {
  65.     return x_GetItemData(item, eFindByType).current_style;
  66. }
  67. void CThemeConfigPanelBase::SetCurrentStyle(const string& item, const string& style)
  68. {
  69.     x_SetItemData(item, eFindByType).current_style = style;
  70. }
  71. string CThemeConfigPanelBase::GetCurrentStyleByDesc(const string& desc) const
  72. {
  73.     return x_GetItemData(desc, eFindByDesc).current_style;
  74. }
  75. void CThemeConfigPanelBase::SetCurrentStyleByDesc(const string& desc, const string& style)
  76. {
  77.     x_SetItemData(desc, eFindByDesc).current_style = style;
  78. }
  79. CThemeConfigPanelBase::TStyleList CThemeConfigPanelBase::GetStylesByDesc(const string& desc) const
  80. {
  81.     return x_GetItemData(desc, eFindByDesc).styles;
  82. }
  83. const CThemeConfigPanelBase::SItemData& CThemeConfigPanelBase::x_GetItemData(const string& key, EKeyType e ) const
  84. {
  85.     vector <SItemData>::const_iterator  data_it;
  86.     
  87.     if (e == eFindByType) {
  88.         data_it =find_if(m_ItemData.begin(), m_ItemData.end(), PFindType(key));
  89.     } else if (e == eFindByDesc) {
  90.         data_it = find_if(m_ItemData.begin(), m_ItemData.end(), PFindDesc(key));
  91.     }
  92.     
  93.     if (data_it == m_ItemData.end()) {
  94.         NCBI_THROW(CConfigException, eConfigPanel, "key: " + key + " not found in panel's data."); 
  95.     }
  96.     return *data_it;
  97. }
  98. CThemeConfigPanelBase::SItemData& CThemeConfigPanelBase::x_SetItemData(const string& key, EKeyType e )
  99. {
  100.     vector <SItemData>::iterator  data_it;
  101.     
  102.     if (e == eFindByType) {
  103.         data_it = find_if(m_ItemData.begin(), m_ItemData.end(), PFindType(key));
  104.     } else if (e == eFindByDesc) {
  105.         data_it = find_if(m_ItemData.begin(), m_ItemData.end(), PFindDesc(key));
  106.     }
  107.     
  108.     if (data_it == m_ItemData.end()) {
  109.         NCBI_THROW(CConfigException, eConfigPanel, "key: " + key + " not found in panel's data."); 
  110.     }
  111.     return *data_it;
  112. }
  113. END_NCBI_SCOPE
  114. /*
  115.  * ===========================================================================
  116.  * $Log: theme_config_panel_base.cpp,v $
  117.  * Revision 1000.1  2004/06/01 20:45:53  gouriano
  118.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  119.  *
  120.  * Revision 1.2  2004/05/21 22:27:41  gorelenk
  121.  * Added PCH ncbi_pch.hpp
  122.  *
  123.  * Revision 1.1  2004/02/02 18:42:25  rsmith
  124.  * initial checkin
  125.  *
  126.  * Revision 1.1  2004/01/29 21:25:49  rsmith
  127.  * initial checkin
  128.  *
  129.  *
  130.  * ===========================================================================
  131.  */