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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_table.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/04/12 19:07:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GBENCH___PLUGIN_TABLE__HPP
  10. #define GUI_GBENCH___PLUGIN_TABLE__HPP
  11. /*  $Id: plugin_table.hpp,v 1000.1 2004/04/12 19:07:39 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.  *    CPluginTable - multi-column list display for plugin information
  40.  */
  41. #include <gui/widgets/fl/table_panel.hpp>
  42. #include <gui/core/plugin_handle.hpp>
  43. BEGIN_NCBI_SCOPE
  44. class CPluginTable : public CTablePanel<CPluginHandle>
  45. {
  46. public:
  47.     // enumerated list of our columns
  48.     enum EColumn {
  49.         eLibName,       // library from whence the plugin came
  50.         eDescription,   // basic description of the library (tooltip)
  51.         eClassName,     // unique class name identifying the plugin
  52.         ePluginType,    // view, data loader, algorithm
  53.         eLoaded,        // flag: is the plugin actually loaded?
  54.         eEnabled,       // flag: is the plugin enabled?
  55.         eVersion,       // version (including revision) of the plugin
  56.         eBuildDate,     // build date for the plugin
  57.         // this must be last!
  58.         eMaxCols
  59.     };
  60.     CPluginTable(int x, int y, int w, int h, const char* label = NULL);
  61.     ~CPluginTable();
  62.     // Update the table relative to the current list(s) of plugins
  63.     void Update();
  64. protected:
  65.     // FLTK overload: event handler
  66.     virtual int handle(int event);
  67. };
  68. END_NCBI_SCOPE
  69. #endif  // GUI_GBENCH___PLUGIN_TABLE__HPP
  70. /*
  71.  * ===========================================================================
  72.  * $Log: plugin_table.hpp,v $
  73.  * Revision 1000.1  2004/04/12 19:07:39  gouriano
  74.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.8
  75.  *
  76.  * Revision 1.8  2003/12/09 15:51:22  dicuccio
  77.  * Deprecated Fl_Toggle_Tree - replaced with Flu_Tree_Browser.  Added CTreeBrowser
  78.  * as a standard tree interface
  79.  *
  80.  * Revision 1.7  2003/07/28 11:51:47  dicuccio
  81.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  82.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  83.  *
  84.  * Revision 1.6  2003/06/25 17:02:56  dicuccio
  85.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  86.  * implementation file.  Lots of #include file clean-ups.
  87.  *
  88.  * Revision 1.5  2003/02/25 14:48:16  dicuccio
  89.  * Implemented most of the plugin manager dialog features.
  90.  *
  91.  * Revision 1.4  2003/02/20 19:50:47  dicuccio
  92.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH framework
  93.  * over to use new architecture.
  94.  *
  95.  * Revision 1.3  2003/01/17 19:01:16  dicuccio
  96.  * Added plugin description column
  97.  *
  98.  * Revision 1.2  2003/01/13 13:10:10  dicuccio
  99.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  100.  * Moved all FLUID-generated code into namespace ncbi.
  101.  *
  102.  * Revision 1.1  2003/01/10 17:27:15  dicuccio
  103.  * Added first pass at plugin manager dialog - displays information about the
  104.  * currently loaded plugins, allows setting plugin paths via GUI
  105.  *
  106.  * ===========================================================================
  107.  */