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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: theme_config_panel.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:45:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  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.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/dialogs/config/theme_config_panel.hpp>
  41. BEGIN_NCBI_SCOPE
  42. #include "theme_config_panel_.cpp"
  43. typedef Fl_Choice TDropDownMenu;
  44. static void ClearDDM(TDropDownMenu* dd_menu)
  45. {
  46.     dd_menu->clear();
  47. }
  48.    
  49. static void AddDDM(TDropDownMenu* dd_menu, const string& s)
  50. {
  51.     // dd_menu->Add(s.c_str());    // CComboxBox
  52.     dd_menu->add(s.c_str());   // Fl_Choice
  53. }
  54. static string GetValueDDM(TDropDownMenu* dd_menu)
  55. {
  56.     // return dd_menu->value();   // CComboBox
  57.     
  58.     // Fl_Choice
  59.     const char *t = dd_menu->text();
  60.     if (t) {
  61.         return t;
  62.     }
  63.     return kEmptyStr;
  64.     
  65. }
  66. static void SetValueDDM(TDropDownMenu* dd_menu, const string& s)
  67. {
  68.     // dd_menu->value(s.c_str());  // CComboBox
  69.     
  70.     // Fl_Choice
  71.     const Fl_Menu_Item* menu_items = dd_menu->menu();
  72.     for (int item_n = 0; menu_items != NULL  &&  menu_items->label() != NULL; ++menu_items, ++item_n) {
  73.         if (s == menu_items->label()) {
  74.             dd_menu->value(item_n);
  75.             return;
  76.         }
  77.     }
  78.     return;
  79. }
  80. CThemeConfigPanel::CThemeConfigPanel()
  81. {
  82. }
  83. Fl_Group* CThemeConfigPanel::GetConfigPanel()
  84. {
  85.     return m_ConfigPanel;
  86. }
  87. void CThemeConfigPanel::MakeWidgets()
  88. {
  89.     x_MakeWidgets();
  90.     x_SetItems();
  91.     UpdateWidgets();
  92. }
  93. // initialize the ItemList combobox. 
  94. // Call in the Mediator's x_LoadFirst method, after m_ItemStyleData is set up,
  95. // NOT in this class's constructor.
  96. void CThemeConfigPanel::x_SetItems()
  97. {
  98.     ClearDDM(m_ItemList);
  99.     ITERATE(vector <SItemData> , item_it, m_ItemData) {
  100.         AddDDM(m_ItemList, item_it->desc);
  101.     }
  102.     // select the first thing in the combobox.
  103.     if ( ! m_ItemData.empty()) {
  104.         string first_item = m_ItemData.front().desc;
  105.         SetValueDDM(m_ItemList, first_item);
  106.     }
  107. }
  108. string CThemeConfigPanel::x_GetCurrentItem()
  109. {
  110.     return GetValueDDM(m_ItemList);
  111. }
  112. void  CThemeConfigPanel::UpdateWidgets()
  113. {
  114.     string this_item = x_GetCurrentItem();
  115.     x_SetStyles(this_item);
  116.     
  117.     string this_style = GetCurrentStyleByDesc(this_item);
  118.     SetValueDDM(m_StyleList, this_style);
  119.     m_ConfigPanel->redraw();
  120. }
  121. void CThemeConfigPanel::x_SetStyles(const string& item)
  122. {
  123.     const TStyleList& styles = GetStylesByDesc(item);
  124.     ClearDDM(m_StyleList);
  125.     ITERATE(TStyleList, style_it, styles) {
  126.         AddDDM(m_StyleList, *style_it);
  127.     }
  128. }
  129. void CThemeConfigPanel::x_StyleChosen()
  130. {
  131.     SetCurrentStyleByDesc(x_GetCurrentItem(), GetValueDDM(m_StyleList) );
  132.     m_Preview->redraw();
  133. }
  134. END_NCBI_SCOPE
  135. /*
  136.  * ===========================================================================
  137.  * $Log: theme_config_panel.cpp,v $
  138.  * Revision 1000.1  2004/06/01 20:45:45  gouriano
  139.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  140.  *
  141.  * Revision 1.6  2004/05/21 22:27:41  gorelenk
  142.  * Added PCH ncbi_pch.hpp
  143.  *
  144.  * Revision 1.5  2004/02/02 19:18:07  rsmith
  145.  * change obsolete types
  146.  *
  147.  * Revision 1.4  2004/02/02 18:39:36  rsmith
  148.  * change implementation to work with the new base class.
  149.  *
  150.  * Revision 1.3  2004/01/29 21:27:37  rsmith
  151.  * move CItemStyleMap definitions into their own file.
  152.  * CItemStyleMap methods changed names.
  153.  *
  154.  * Revision 1.2  2004/01/02 21:02:16  rsmith
  155.  * Change CComboBox to Fl_Choice and various cleanups.
  156.  *
  157.  * Revision 1.1  2003/12/30 14:09:41  dicuccio
  158.  * Initial check-in - moved from gui/config
  159.  *
  160.  * Revision 1.1  2003/12/29 14:41:36  rsmith
  161.  * initial checkin
  162.  *
  163.  *
  164.  * ===========================================================================
  165.  */