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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_table.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:48:45  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: plugin_table.cpp,v 1000.3 2004/06/01 20:48:45 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CPluginTable - multi-column list display for plugin information
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include "plugin_table.hpp"
  41. #include <gui/core/plugin_registry.hpp>
  42. #include <gui/utils/fltk_utils.hpp>
  43. BEGIN_NCBI_SCOPE
  44. USING_SCOPE(objects);
  45. CPluginTable::CPluginTable(int x, int y, int w, int h, const char* label)
  46.     : CTablePanel<CPluginHandle>(x, y, w, h, label)
  47. {
  48.     //
  49.     // set up the actual columns for our internal data
  50.     //
  51.     SetColumn(eLibName,    "Plugin Library", eString, FL_ALIGN_LEFT,   0.1f);
  52.     SetColumn(eClassName,  "Plugin",         eString, FL_ALIGN_LEFT,   0.1f);
  53.     SetColumn(ePluginType, "Type",           eString, FL_ALIGN_CENTER, 0.1f);
  54.     SetColumn(eLoaded,     "Loaded?",        eString, FL_ALIGN_CENTER, 0.1f);
  55.     SetColumn(eEnabled,    "Enabled?",       eString, FL_ALIGN_CENTER, 0.1f);
  56.     SetColumn(eDescription,"Description",    eString, FL_ALIGN_LEFT,   0.4f);
  57.     SetColumn(eVersion,    "Version",        eString, FL_ALIGN_LEFT,   0.1f);
  58.     SetColumn(eBuildDate,  "Build Date",     eString, FL_ALIGN_LEFT,   0.1f);
  59.     /**
  60.     // set the default virtual columns
  61.     // this defines the order in which all the columns appear
  62.     m_VirtCols.push_back(eClassName);
  63.     m_VirtCols.push_back(eDescription);
  64.     m_VirtCols.push_back(ePluginType);
  65.     m_VirtCols.push_back(eVersion);
  66.     m_VirtCols.push_back(eLoaded);
  67.     m_VirtCols.push_back(eEnabled);
  68.     **/
  69.     Update();
  70. }
  71. CPluginTable::~CPluginTable()
  72. {
  73. }
  74. void CPluginTable::Update()
  75. {
  76.     int row = 0;
  77.     CPluginRegistry::TPlugins algo_plugins = CPluginRegistry::GetPlugins();
  78.     SetRows(0);
  79.     Reserve(algo_plugins.size());
  80.     NON_CONST_ITERATE (CPluginRegistry::TPlugins, algo_iter, algo_plugins) {
  81.         CPluginHandle& plugin = *algo_iter;
  82.         SetCell(row, eLibName, plugin.GetLibrary());
  83.         SetCell(row, eDescription, plugin.GetToolTip());
  84.         SetCell(row, eClassName, plugin.GetClassName());
  85.         SetCell(row, eLoaded, (plugin.IsLoaded() ? "yes" : "no"));
  86.         SetCell(row, eEnabled, "yes");
  87.         SetCell(row, eVersion,
  88.                 NStr::IntToString(plugin.GetVerMajor()) + "." +
  89.                 NStr::IntToString(plugin.GetVerMinor()) +
  90.                 ", rev " +
  91.                 NStr::IntToString(plugin.GetVerRevision()));
  92.         SetCell(row, eBuildDate, plugin.GetVerBuildDate());
  93.         switch (plugin.GetCommand()) {
  94.         case CPluginCommandSet::e_Algo:
  95.             SetCell(row, ePluginType, "algorithm");
  96.             break;
  97.         case CPluginCommandSet::e_View:
  98.             SetCell(row, ePluginType, "view");
  99.             break;
  100.         case CPluginCommandSet::e_Data:
  101.             SetCell(row, ePluginType, "data loader");
  102.             break;
  103.         }
  104.         SetData(row, plugin);
  105.         ++row;
  106.     }
  107.     /**
  108.     // clear the current table
  109.     m_Data.clear();
  110.     //
  111.     // algorithmic plugins
  112.     //
  113.     CPluginRegistry::TPlugins algo_plugins = CPluginRegistry::GetPlugins();
  114.     NON_CONST_ITERATE (CPluginRegistry::TPlugins, algo_iter, algo_plugins) {
  115.         CPluginHandle& plugin = *algo_iter;
  116.         TColumns cols(eMaxCols);
  117.         cols[eLibName    ] = plugin.GetLibrary();
  118.         cols[eDescription] = plugin.GetToolTip();
  119.         cols[eClassName  ] = plugin.GetClassName();
  120.         cols[eLoaded     ] = (plugin.IsLoaded() ? "yes" : "no");
  121.         cols[eEnabled    ] = "yes";
  122.         cols[eVersion    ] = NStr::IntToString(plugin.GetVerMajor()) + "." +
  123.                              NStr::IntToString(plugin.GetVerMinor()) +
  124.                              ", rev " +
  125.                              NStr::IntToString(plugin.GetVerRevision());
  126.         cols[eBuildDate  ] = plugin.GetVerBuildDate();
  127.         switch (plugin.GetCommand()) {
  128.         case CPluginCommandSet::e_Algo:
  129.             cols[ePluginType] = "algorithm";
  130.             break;
  131.         case CPluginCommandSet::e_View:
  132.             cols[ePluginType] = "view";
  133.             break;
  134.         case CPluginCommandSet::e_Data:
  135.             cols[ePluginType] = "data loader";
  136.             break;
  137.         }
  138.         TRow row;
  139.         row.m_Data = plugin;
  140.         row.m_Columns = cols;
  141.         m_Data.push_back(row);
  142.     }
  143.     **/
  144.     // finalize the view
  145.     redraw();
  146. }
  147. int CPluginTable::handle(int event)
  148. {
  149.     switch (event) {
  150.     case FL_PUSH:
  151.         // we ignore events bound to our internal popup state
  152.         // this removes an artifact with selection mode - it protects our
  153.         // selections when we popup our context menu
  154.         if (CFltkEvent::GetProcessedEvent() != CFltkEvent::ePopupState) {
  155.             // FIXME get_row(Fl::event_x(), Fl::event_y()) != -1) {
  156.             break;
  157.         }
  158.         //ShowColSelectDlg();
  159.         break;
  160.     }
  161.     return CTablePanel<CPluginHandle>::handle(event);
  162. };
  163. END_NCBI_SCOPE
  164. /*
  165.  * ===========================================================================
  166.  * $Log: plugin_table.cpp,v $
  167.  * Revision 1000.3  2004/06/01 20:48:45  gouriano
  168.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.15
  169.  *
  170.  * Revision 1.15  2004/05/21 22:27:42  gorelenk
  171.  * Added PCH ncbi_pch.hpp
  172.  *
  173.  * Revision 1.14  2004/01/20 18:15:52  dicuccio
  174.  * Changed to match new API in CTablePanel
  175.  *
  176.  * Revision 1.13  2003/12/04 18:12:54  dicuccio
  177.  * Changed to match API change in CTablePanel
  178.  *
  179.  * Revision 1.12  2003/11/06 20:09:47  dicuccio
  180.  * Added USING_SCOPE(objects) to implemnentation files
  181.  *
  182.  * Revision 1.11  2003/07/28 11:51:47  dicuccio
  183.  * Rewrote CTablePanel<> to be more flexible and better contained.  Added standard
  184.  * multicolumn list dialog.  Deprecated use of COutputDlg.
  185.  *
  186.  * Revision 1.10  2003/07/25 13:43:40  dicuccio
  187.  * Replaced Flv_Table with Fl_Table
  188.  *
  189.  * Revision 1.9  2003/06/25 17:02:56  dicuccio
  190.  * Split CPluginHandle into a handle (pointer-to-implementation) and
  191.  * implementation file.  Lots of #include file clean-ups.
  192.  *
  193.  * Revision 1.8  2003/03/21 17:02:17  dicuccio
  194.  * Moved fltk_utils.hpp --> gui/utils.  Added link against libgui_utils
  195.  *
  196.  * Revision 1.7  2003/03/11 15:18:57  kuznets
  197.  * iterate -> ITERATE
  198.  *
  199.  * Revision 1.6  2003/02/25 14:48:16  dicuccio
  200.  * Implemented most of the plugin manager dialog features.
  201.  *
  202.  * Revision 1.5  2003/02/24 13:03:19  dicuccio
  203.  * Renamed classes in plugin spec:
  204.  *     CArgSeg --> CPluginArgSet
  205.  *     CArgument --> CPluginArg
  206.  *     CPluginArgs --> CPluginCommand
  207.  *     CPluginCommands --> CPluginCommandSet
  208.  *
  209.  * Revision 1.4  2003/02/20 19:50:47  dicuccio
  210.  * Created new plugin architecture, based on ASN.1 spec.  Moved GBENCH framework
  211.  * over to use new architecture.
  212.  *
  213.  * Revision 1.3  2003/01/17 19:01:16  dicuccio
  214.  * Added plugin description column
  215.  *
  216.  * Revision 1.2  2003/01/13 13:10:10  dicuccio
  217.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace
  218.  * ncbi.  Moved all FLUID-generated code into namespace ncbi.
  219.  *
  220.  * Revision 1.1  2003/01/10 17:27:15  dicuccio
  221.  * Added first pass at plugin manager dialog - displays information about the
  222.  * currently loaded plugins, allows setting plugin paths via GUI
  223.  *
  224.  * ===========================================================================
  225.  */