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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: field_assoc.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:46:36  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  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:  Lou Friedman
  35.  *
  36.  * File Description:
  37.  *    Implementation of classes that manitains the drop down menu choices and
  38.  *      values used by the table entry form class CEntryFormTable.
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/dialogs/entry_form/field_assoc.hpp>
  42. BEGIN_NCBI_SCOPE
  43. CEntryFormMenu::CEntryFormMenu()
  44.     : m_DataChanged(false)
  45. {
  46. }
  47. CEntryFormMenu::CEntryFormMenu(SMenuEntryInfo* info)
  48.     : m_DataChanged(false)
  49. {
  50.     // first, count our items
  51.     size_t count = 0;
  52.     SMenuEntryInfo* ptr = info;
  53.     for ( ;  ptr  &&  ptr->m_Label;  ++count, ++ptr) {
  54.         AddItem(ptr->m_Label, ptr->m_Value, ptr->m_Cb, ptr->m_UserData);
  55.     }
  56. }
  57. void CEntryFormMenu::AddItem(const string& label, int value,
  58.                              Fl_Callback* cb, void* user_data)
  59. {
  60.     CMenuData data;
  61.     data.m_Label = label;
  62.     data.m_Value = value;
  63.     data.m_Cb = cb;
  64.     data.m_UserData = user_data;
  65.     m_MenuData.push_back(data);
  66.     m_DataChanged = true;
  67. }
  68. const Fl_Menu_Item* CEntryFormMenu::GetMenuItems(void) const
  69. {
  70.     if ( !m_DataChanged ) {
  71.         return m_MenuItems.get();
  72.     }
  73.     m_MenuItems.reset(new Fl_Menu_Item[ m_MenuData.size() + 1 ]);
  74.     Fl_Menu_Item* mi = m_MenuItems.get();
  75.     if ( !mi ) {
  76.         return mi;
  77.     }
  78.     memset(mi, 0, sizeof(Fl_Menu_Item) * (m_MenuData.size() + 1));
  79.     int i = 0;
  80.     ITERATE (list<CMenuData>, iter, m_MenuData) {
  81.         mi[i].label    (iter->m_Label.c_str());
  82.         mi[i].callback (iter->m_Cb);
  83.         mi[i].user_data(iter->m_UserData);
  84.         mi[i].labeltype(FL_NORMAL_LABEL);
  85.         mi[i].labelsize(14);
  86.         ++i;
  87.     }
  88.     m_DataChanged = false;
  89.     return mi;
  90. }
  91. int CEntryFormMenu::FindEntry(int value) const
  92. {
  93.     int i = 0;
  94.     ITERATE (list<CMenuData>, iter, m_MenuData) {
  95.         if (iter->m_Value == value) {
  96.             return i;
  97.         }
  98.         ++i;
  99.     }
  100.     return -1;
  101. END_NCBI_SCOPE