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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: layout_conf.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:12:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: layout_conf.cpp,v 1000.1 2004/06/01 21:12:43 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/layout_conf.hpp>
  41. #include <util/static_map.hpp>
  42. BEGIN_NCBI_SCOPE
  43. class CLayoutDefaultSettings
  44.     : public IFactoryDefaultSettings
  45. {
  46. public:
  47.     virtual ~CLayoutDefaultSettings() {}
  48.     string   Get(const string& key) const { return "packed"; }
  49. };
  50. CLayoutConfig::CLayoutConfig(objects::CPluginConfigCache* config_cache, 
  51.                  const string& desc
  52.                 )
  53.       : CSettingsSet(config_cache, "Layout",
  54.                      new CLayoutDefaultSettings, desc)
  55. {
  56. }
  57. CLayoutConfig::~CLayoutConfig()
  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, CLayoutConfig::ELayout> TLayoutType;
  69. const TLayoutType s_LayoutTypes[] = {
  70.     TLayoutType("overlayed",  CLayoutConfig::eLayout_Overlayed),
  71.     TLayoutType("packed",     CLayoutConfig::eLayout_Packed),
  72.     TLayoutType("separated",  CLayoutConfig::eLayout_Separated)
  73. };
  74. typedef CStaticArrayMap<const string, CLayoutConfig::ELayout, PCase> TLayoutTypeMap;
  75. const TLayoutTypeMap s_LayoutPolicyMap(s_LayoutTypes, sizeof(s_LayoutTypes));
  76. }
  77. /// convert between current settings and the PluginConfigCache.
  78. static const string s_key("layout");
  79. bool CLayoutConfig::LoadCurrentSettings(ELoadValueSource src)
  80. {
  81.     m_Layout = eLayout_Packed;
  82.     const string value_str(Get(s_key, src));
  83.     TLayoutTypeMap::const_iterator  rp_it = s_LayoutPolicyMap.find(value_str);
  84.     if (rp_it != s_LayoutPolicyMap.end()) {
  85.         m_Layout = rp_it->second;
  86.     }
  87.     
  88.     return true;
  89. }
  90. bool CLayoutConfig::SaveCurrentSettings(void)
  91. {
  92.     ITERATE(TLayoutTypeMap, rp_it, s_LayoutPolicyMap) {
  93.         if (rp_it->second == m_Layout) {
  94.             Set(s_key, rp_it->first);
  95.             break;
  96.         }
  97.     }
  98.     
  99.     return true;
  100. }
  101. CLayoutConfig::ELayout  CLayoutConfig::GetLayout() const
  102. {
  103.     return m_Layout;
  104. }
  105. END_NCBI_SCOPE
  106. /*
  107. * ===========================================================================
  108. *
  109. * $Log: layout_conf.cpp,v $
  110. * Revision 1000.1  2004/06/01 21:12:43  gouriano
  111. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  112. *
  113. * Revision 1.3  2004/05/21 22:27:55  gorelenk
  114. * Added PCH ncbi_pch.hpp
  115. *
  116. * Revision 1.2  2004/02/04 15:16:07  rsmith
  117. * add const to GetLayout
  118. *
  119. * Revision 1.1  2004/02/04 15:04:18  rsmith
  120. * initial checkin
  121. *
  122. *
  123. * ===========================================================================
  124. */