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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: entry_form.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:46:28  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: entry_form.cpp,v 1000.1 2004/06/01 20:46:28 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.  * Authors:  Lou Friedman
  35.  *
  36.  * File Description:
  37.  *    User-modifiable implementation file for extension of basic class, 
  38.  *      CEntryFormDialog, used as a entry form dialog box.
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/dialogs/entry_form/entry_form.hpp>
  42. BEGIN_NCBI_SCOPE
  43. #include "entry_form_.cpp"
  44. CEntryFormDialog::CEntryFormDialog()
  45. {
  46.     m_Window.reset(x_CreateWindow());
  47.     m_Form->SetMaxHeight(535);
  48. }
  49. // Show the dialog, without pausing to capture the exit conditions
  50. void CEntryFormDialog::Show(void)
  51. {
  52.     if (m_Window.get()) {
  53.         m_Window->size(m_Window->w(), m_Form->GetHeight() + 50);
  54.     }
  55.     CDialog::Show();
  56. }
  57. // Set the size of the window
  58. void CEntryFormDialog::Size(int w, int h)
  59. {
  60.     if (m_Window.get()) {
  61.         m_Window->size(w, h);
  62.     }
  63. }
  64. // set the title of the main window
  65. void CEntryFormDialog::SetTitle(const string& title)
  66. {
  67.     m_Title = title;
  68.     if (m_Window.get()) {
  69.         m_Window->label(m_Title.c_str());
  70.     }
  71. }
  72. CFlForm* CEntryFormDialog::GetFormWidget(void)
  73. {
  74.     return m_Form;
  75. }
  76. void CEntryFormDialog::AddEditWidget(Fl_Widget* new_widget)
  77. {
  78.     x_AddWidget(new_widget);
  79. }
  80. void CEntryFormDialog::AddTitleWidget(Fl_Widget* new_widget)
  81. {
  82.     x_AddWidget(new_widget);
  83. }
  84. void CEntryFormDialog::x_AddWidget(Fl_Widget* new_widget)
  85. {
  86.     m_Form->AddWidget(new_widget);
  87. }
  88. END_NCBI_SCOPE