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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: render_policy_conf.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:12:47  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: render_policy_conf.cpp,v 1000.1 2004/06/01 21:12:47 gouriano Exp $
  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.  * Author:  Robert G. Smith
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/seq_graphic/render_policy_conf.hpp>
  41. #include <util/static_map.hpp>
  42. BEGIN_NCBI_SCOPE
  43. class CRenderPolicyDefaultSettings
  44.     : public IFactoryDefaultSettings
  45. {
  46. public:
  47.     virtual ~CRenderPolicyDefaultSettings() {}
  48.     string   Get(const string& key) const { return "default"; }
  49. };
  50. CRenderPolicyConfig::CRenderPolicyConfig(objects::CPluginConfigCache* config_cache, 
  51.                  const string& desc
  52.                 )
  53.       : CSettingsSet(config_cache, "Render Policy",
  54.                      new CRenderPolicyDefaultSettings, desc)
  55. {
  56. }
  57. CRenderPolicyConfig::~CRenderPolicyConfig()
  58. {
  59. }
  60. //
  61. // static lookup table for converting string-based feature type to actual
  62. // feature type
  63. //
  64. // these must be in "ASCIIbetical" order; beware of the fact that
  65. // closing quotes sort after spaces.
  66. //
  67. namespace {
  68. typedef pair<const string, CRenderPolicyConfig::ERenderPolicys> TRenderType;
  69. const TRenderType s_RenderTypes[] = {
  70.     TRenderType("compact", CRenderPolicyConfig::eRenderPolicyCompact),
  71.     TRenderType("default", CRenderPolicyConfig::eRenderPolicyDefault),
  72.     TRenderType("genome",  CRenderPolicyConfig::eRenderPolicyGenome),
  73.     TRenderType("inline",  CRenderPolicyConfig::eRenderPolicyInline)
  74. };
  75. typedef CStaticArrayMap<const string, CRenderPolicyConfig::ERenderPolicys, PCase> TRenderTypeMap;
  76. const TRenderTypeMap s_RenderPolicyMap(s_RenderTypes, sizeof(s_RenderTypes));
  77. }
  78. /// convert between current settings and the PluginConfigCache.
  79. static const string s_key("Policy");
  80. bool CRenderPolicyConfig::LoadCurrentSettings(ELoadValueSource src)
  81. {
  82.     m_RenderPolicy = eRenderPolicyDefault;
  83.     const string value_str(Get(s_key, src));
  84.     TRenderTypeMap::const_iterator  rp_it = s_RenderPolicyMap.find(value_str);
  85.     if (rp_it != s_RenderPolicyMap.end()) {
  86.         m_RenderPolicy = rp_it->second;
  87.     }
  88.     
  89.     return true;
  90. }
  91. bool CRenderPolicyConfig::SaveCurrentSettings(void)
  92. {
  93.     ITERATE(TRenderTypeMap, rp_it, s_RenderPolicyMap) {
  94.         if (rp_it->second == m_RenderPolicy) {
  95.             Set(s_key, rp_it->first);
  96.             break;
  97.         }
  98.     }
  99.     
  100.     return true;
  101. }
  102. CRenderPolicyConfig::ERenderPolicys  CRenderPolicyConfig::GetRenderPolicy() const
  103. {
  104.     return m_RenderPolicy;
  105. }
  106. END_NCBI_SCOPE
  107. /*
  108. * ===========================================================================
  109. *
  110. * $Log: render_policy_conf.cpp,v $
  111. * Revision 1000.1  2004/06/01 21:12:47  gouriano
  112. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  113. *
  114. * Revision 1.8  2004/05/21 22:27:55  gorelenk
  115. * Added PCH ncbi_pch.hpp
  116. *
  117. * Revision 1.7  2004/02/04 15:06:32  rsmith
  118. * changed implementation to use a CStaticArrayMap
  119. *
  120. * Revision 1.6  2004/02/02 18:45:48  rsmith
  121. * add description to CSettingsSet, constructor and descendants.
  122. *
  123. * Revision 1.5  2004/01/20 14:02:26  rsmith
  124. * Add method GetRenderPolicy, so this class can be used!
  125. *
  126. * Revision 1.4  2003/12/31 16:34:12  rsmith
  127. * more readable type name
  128. *
  129. * Revision 1.3  2003/12/31 13:12:51  rsmith
  130. * fix LoadCurrentSettings
  131. *
  132. * Revision 1.2  2003/12/30 15:05:42  dicuccio
  133. * Dropped export specifier on internal class - causes unresolved externals
  134. *
  135. * Revision 1.1  2003/12/29 14:57:35  rsmith
  136. * initial checkin.
  137. *
  138. *
  139. * ===========================================================================
  140. */