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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: font_conf.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:12:37  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: font_conf.cpp,v 1000.1 2004/06/01 21:12:37 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/font_conf.hpp>
  41. BEGIN_NCBI_SCOPE
  42. //
  43. // static lookup table for converting string-based feature type to actual
  44. // feature type
  45. //
  46. // these must be in "ASCIIbetical" order; beware of the fact that
  47. // closing quotes sort after spaces.
  48. //
  49. EMPTY_TEMPLATE
  50. const  CFontConfig::TFontValue::TStrValType CFontConfig::TFontValue::sc_Values[] = {
  51.     CFontConfig::TFontValue::TStrValType("10", CFontConfig::eFont_10),
  52.     CFontConfig::TFontValue::TStrValType("12", CFontConfig::eFont_12),
  53.     CFontConfig::TFontValue::TStrValType("14", CFontConfig::eFont_14),
  54.     CFontConfig::TFontValue::TStrValType("18", CFontConfig::eFont_18),
  55.     CFontConfig::TFontValue::TStrValType("8",  CFontConfig::eFont_8),
  56.     CFontConfig::TFontValue::TStrValType("default", CFontConfig::eFont_Default)
  57. };
  58. CFontConfig::CFontConfig(objects::CPluginConfigCache* config_cache, 
  59.                  const string& desc
  60.                 )
  61.       : CSettingsSet(config_cache, "Font",
  62.                      new SingleValueFactoryDefault("default"), desc)
  63. {
  64. }
  65. CFontConfig::~CFontConfig()
  66. {
  67. }
  68. /// convert between current settings and the PluginConfigCache.
  69. bool CFontConfig::LoadCurrentSettings(ELoadValueSource src)
  70. {       
  71.     // NOTE: the settings class's type is also used as the value's key string.
  72.     const string value_str(Get(GetType(), src));
  73.     return m_FontValue.SetValueFromStr(value_str);
  74. }
  75. bool CFontConfig::SaveCurrentSettings(void)
  76. {
  77.     string value_str;
  78.     if ( ! m_FontValue.GetStrFromValue(value_str)) {
  79.         return false;
  80.     }
  81.     Set(GetType(), value_str);
  82.     return true;
  83. }
  84. END_NCBI_SCOPE
  85. /*
  86. * ===========================================================================
  87. *
  88. * $Log: font_conf.cpp,v $
  89. * Revision 1000.1  2004/06/01 21:12:37  gouriano
  90. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  91. *
  92. * Revision 1.4  2004/05/21 22:27:55  gorelenk
  93. * Added PCH ncbi_pch.hpp
  94. *
  95. * Revision 1.3  2004/03/22 16:06:00  gorelenk
  96. * Fixed compilation errors on MSVC 7.10 .
  97. *
  98. * Revision 1.2  2004/02/05 01:06:42  ucko
  99. * Explicitly mark sc_Values as a specialization.
  100. *
  101. * Revision 1.1  2004/02/04 21:27:38  rsmith
  102. * inital checkin
  103. *
  104. *
  105. * ===========================================================================
  106. */