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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: records_table.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 19:07:46  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GBENCH___RECORDS_TABLE__HPP
  10. #define GUI_GBENCH___RECORDS_TABLE__HPP
  11. /*  $Id: records_table.hpp,v 1000.1 2004/04/12 19:07:46 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software / database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software / database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    CRecordsTable -- Multi-column table widget for use in displaying loaded
  40.  *                     records
  41.  */
  42. #include <gui/types.hpp>
  43. #include <gui/core/idocument.hpp>
  44. #include <gui/widgets/fl/table_panel.hpp>
  45. #include <memory>
  46. #include <vector>
  47. BEGIN_NCBI_SCOPE
  48. // the base class requres a way to compare two documents...
  49. bool operator< (const IDocument& doc0, const IDocument& doc1);
  50. class CRecordsTable : public CTablePanel<IDocument*>
  51. {
  52. public:
  53.     enum EColumns {
  54.         eNone = -1,
  55.         eBriefTitle = 0,
  56.         eTitle,
  57.         eViews,
  58.     };
  59.     // default ctor
  60.     CRecordsTable(int x, int y, int w, int h, const char* label = NULL);
  61.     // virtual dtor
  62.     virtual ~CRecordsTable();
  63.     // Update our cached table data.
  64.     // This is called from the main window when the documents in the doc
  65.     // manager change.
  66.     void Update(TUpdateFlags flags);
  67.     // Set the item to be shown in a given column.  If the indicated column
  68.     // index is greater than the current number of columns, the index will be
  69.     // expanded to fit.
  70.     void SetColType(int col, EColumns type);
  71. private:
  72.     // FLTK overload: event handler
  73.     virtual int handle(int event);
  74. };
  75. END_NCBI_SCOPE
  76. #endif  // GUI_GBENCH___RECORDS_TABLE__HPP
  77. /*
  78.  * ===========================================================================
  79.  * $Log: records_table.hpp,v $
  80.  * Revision 1000.1  2004/04/12 19:07:46  gouriano
  81.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.15
  82.  *
  83.  * Revision 1.15  2003/12/09 15:51:22  dicuccio
  84.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  85.  * as a standard tree interface
  86.  *
  87.  * Revision 1.14  2003/09/29 15:43:01  dicuccio
  88.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  89.  *
  90.  * Revision 1.13  2003/09/04 14:02:36  dicuccio
  91.  * Introduce IDocument as abstract base class for CDocument; replace use of
  92.  * CDocument with IDocument
  93.  *
  94.  * Revision 1.12  2003/08/06 13:24:31  dicuccio
  95.  * Deprecated old main window; introduced new, compact window for multiple
  96.  * document management
  97.  *
  98.  * Revision 1.11  2003/07/28 11:51:47  dicuccio
  99.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  100.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  101.  *
  102.  * Revision 1.10  2003/07/25 13:43:40  dicuccio
  103.  * Replaced Flv_Table with Fl_Table
  104.  *
  105.  * Revision 1.9  2003/04/24 16:36:49  dicuccio
  106.  * Removed unnecessary / unavailable columns from display.  Updated to reflect
  107.  * changes in IDocument API
  108.  *
  109.  * Revision 1.8  2003/02/20 19:50:47  dicuccio
  110.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH framework
  111.  * over to use new architecture.
  112.  *
  113.  * Revision 1.7  2003/01/15 21:12:49  dicuccio
  114.  * Added update flags - allows partial updates, for example, when a view is created
  115.  *
  116.  * Revision 1.6  2003/01/13 13:10:10  dicuccio
  117.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  118.  * Moved all FLUID-generated code into namespace ncbi.
  119.  *
  120.  * Revision 1.5  2003/01/08 15:02:26  dicuccio
  121.  * Moved column selection dialog into base class.  Added ability to sort columns
  122.  * based on column type (string vs. numeric)
  123.  *
  124.  * Revision 1.4  2003/01/03 22:29:09  ucko
  125.  * #include <memory> for auto_ptr<>
  126.  *
  127.  * Revision 1.3  2003/01/03 17:29:06  dicuccio
  128.  * Added ability to select columns for viewing and sorting
  129.  *
  130.  * Revision 1.2  2002/12/30 18:51:53  dicuccio
  131.  * Updated to support new table widget base class.  Updated to add new tabular
  132.  * views.
  133.  *
  134.  * Revision 1.1  2002/12/23 16:40:13  dicuccio
  135.  * Initial revision
  136.  *
  137.  * ===========================================================================
  138.  */