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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: table.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:46:38  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: table.cpp,v 1000.2 2004/06/01 20:46:38 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.  *    Implementation of an entry form table class that associate fields
  38.  *      with some form of editable widget.
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <gui/dialogs/entry_form/table.hpp>
  42. #include <FL/Fl_Button.H>
  43. #include <FL/Fl_File_Input.H>
  44. #include <FL/Fl_Float_Input.H>
  45. #include <FL/Fl_Input.H>
  46. #include <FL/Fl_Int_Input.H>
  47. #include <FL/Fl_Multiline_Input.H>
  48. #include <FL/Fl_Secret_Input.H>
  49. #include <FL/Fl_Valuator.H>
  50. #include <memory>
  51. #include <gui/dialogs/file_browser.hpp>
  52. BEGIN_NCBI_SCOPE
  53. CEntryFormTable::CEntryFormTable(int w, int space)
  54.     : Fl_Group(0, 0, w, 0)
  55. {
  56.     box(FL_NO_BOX);
  57.     end();
  58.     m_Pack = new Fl_Pack(0, 0, w, 0);
  59.     m_Pack->end();
  60.     m_Pack->spacing(space);  
  61. }
  62. CEntryFormTable::~CEntryFormTable()
  63. {
  64. }
  65. // add a title row.  This creates a box with a piece of text centered in it and
  66. // a colored background.  The const char* here is not copied, so make sure that
  67. // it survives as long as this class does
  68. void CEntryFormTable::AddTitleRow(const char* label)
  69. {
  70.     auto_ptr<Fl_Box> box(new Fl_Box(0, 0, m_Pack->w(), 25));
  71.     box->box(FL_ENGRAVED_BOX);
  72.     box->label(label);
  73.     box->color(fl_rgb_color(192, 128, 128));
  74.     m_Pack->size(m_Pack->w(), m_Pack->h() + 25);
  75.     m_Pack->add(box.release());
  76. }
  77. // add a menu row.  A "Menu row" is a drop-down box with a label.
  78. Fl_Choice* CEntryFormTable::AddMenuRow(const char* label_value,
  79.                                        CEntryFormMenu& map_data,
  80.                                        int current_value,
  81.                                        void *user_data)
  82. {
  83.     if (current_value == 0) {
  84.         _TRACE("CEntryFormTable::AddMenuRow(): current value = 0 ==> empty Fl_Choice");
  85.     }
  86.     const int row_ht = 25;
  87.     // If row already exists, must include spacing for height calculations
  88.     int h;
  89.     if (m_Pack->h()) {
  90.         h = m_Pack->h() + row_ht + m_Pack->spacing();
  91.     } else {
  92.         h = m_Pack->h() + row_ht;
  93.     }
  94.     // label and value width
  95.     int lw = int (m_Pack->w() / 3);
  96.     int vw = m_Pack->w() - lw;
  97.     // create a group for this row
  98.     auto_ptr<Fl_Group> group(new Fl_Group(0, 0, m_Pack->w(), row_ht));
  99.     Fl_Box* label = new Fl_Box(0, 0, lw, row_ht);
  100.     label->label(label_value);
  101.     label->labeltype(FL_NORMAL_LABEL);
  102.     label->align(FL_ALIGN_INSIDE | FL_ALIGN_RIGHT);
  103.     label->box(FL_BORDER_FRAME);
  104.     Fl_Choice* choice = new Fl_Choice(lw, 0, vw, row_ht);
  105.     choice->copy(map_data.GetMenuItems());
  106.     choice->value(current_value);
  107.     choice->box(FL_EMBOSSED_BOX);
  108.     choice->color(FL_BACKGROUND2_COLOR);
  109.     choice->user_data(user_data);
  110.     group->resizable(choice);
  111.     group->end();
  112.     m_Pack->size(m_Pack->w(), h);
  113.     m_Pack->add(group.release());
  114.     return choice;
  115. }
  116. // add an input row.  This is a generic handler for built-in types, and
  117. // supports multiline, single-line, and validated input (password, integer,
  118. // double, file)
  119. Fl_Input* CEntryFormTable::AddInputRow(const char* label_value,
  120.                                        const char* current_value,
  121.                                        EInputType type)
  122. {
  123.     int row_ht = 25;
  124.     // label and value width
  125.     int lw = int (m_Pack->w() / 3);
  126.     int vw = m_Pack->w() - lw;
  127.     // create our input item
  128.     Fl_Input* input = NULL;
  129.     Fl_Button* button = NULL;
  130.     switch (type) {
  131.     default:
  132.     case eMultiLine:
  133.         row_ht = 80;
  134.         input = new Fl_Multiline_Input(lw, 0, vw, row_ht);
  135.         input->wrap(1);
  136.         break;
  137.     case eSingleLine:
  138.         row_ht = 25;
  139.         input = new Fl_Input(lw, 0, vw, row_ht);
  140.         break;
  141.     case eFile:
  142.         row_ht = 35;
  143.         input = new Fl_File_Input(lw, 0, vw - 30, row_ht);
  144.         // we also need a button...
  145.         button = new Fl_Button(lw + vw - 22, 13, 19, 19);
  146.         button->label("...");
  147.         button->callback((Fl_Callback*)&CEntryFormTable::cb_FileOpen,
  148.                          (void*)input);
  149.         break;
  150.     case eInteger:
  151.         row_ht = 25;
  152.         input = new Fl_Int_Input(lw, 0, vw, row_ht);
  153.         break;
  154.     case eDouble:
  155.         row_ht = 25;
  156.         input = new Fl_Float_Input(lw, 0, vw, row_ht);
  157.         break;
  158.     case eSecret:
  159.         row_ht = 25;
  160.         input = new Fl_Secret_Input(lw, 0, vw, row_ht);
  161.         break;
  162.     }
  163.     _ASSERT(input);
  164.     input->value(current_value);
  165.     input->color(FL_BACKGROUND2_COLOR);
  166.     // create a label to go with this as well...
  167.     Fl_Box*   label = new Fl_Box(0, 0, lw, row_ht);
  168.     label->label(label_value);
  169.     label->align(FL_ALIGN_INSIDE | FL_ALIGN_RIGHT |
  170.                  FL_ALIGN_CLIP | FL_ALIGN_WRAP);
  171.     // create a group for this row
  172.     Fl_Group*  group  = new Fl_Group(0, 0, m_Pack->w(), row_ht);
  173.     group->add(label);
  174.     group->add_resizable(*input);
  175.     if (button) {
  176.         group->add(button);
  177.     }
  178.     group->end();
  179.     int h = m_Pack->h() + row_ht;
  180.     m_Pack->size(m_Pack->w(), h);
  181.     m_Pack->add(group);
  182.     return input;
  183. }
  184. void CEntryFormTable::End() 
  185. {
  186.     int ht = m_Pack->h();
  187.     ht += m_Pack->children() * m_Pack->spacing();
  188.     resize(0, 0, w(), ht);
  189.     add(m_Pack);
  190. }
  191. // internal callback for file open dialogs
  192. void CEntryFormTable::cb_FileOpen(Fl_Widget* w, void* data)
  193. {
  194.     Fl_Input* input = reinterpret_cast<Fl_Input*> (data);
  195.     if ( !input ) {
  196.         return;
  197.     }
  198.     string str = NcbiFileBrowser("Open a file...", "", input->value());
  199.     input->value(str.c_str());
  200. }
  201. END_NCBI_SCOPE
  202. /*
  203.  * ===========================================================================
  204.  * $Log: table.cpp,v $
  205.  * Revision 1000.2  2004/06/01 20:46:38  gouriano
  206.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  207.  *
  208.  * Revision 1.16  2004/05/21 22:27:41  gorelenk
  209.  * Added PCH ncbi_pch.hpp
  210.  *
  211.  * Revision 1.15  2004/03/11 17:33:21  dicuccio
  212.  * Use new file dialog
  213.  *
  214.  * Revision 1.14  2004/01/13 20:34:10  dicuccio
  215.  * Pass the current file into the file selector as the selected file
  216.  *
  217.  * Revision 1.13  2004/01/06 20:13:41  dicuccio
  218.  * Made the '...' button smaller for file inputs
  219.  *
  220.  * Revision 1.12  2003/12/31 20:28:17  dicuccio
  221.  * Use '...' instead of '>>' for file selection
  222.  *
  223.  * Revision 1.11  2003/12/17 21:02:22  jcherry
  224.  * Cosmetic change to file input
  225.  *
  226.  * ===========================================================================
  227.  */