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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_arg_form.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:17:13  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___PLUGIN_ARG_FORM__HPP
  10. #define GUI_CORE___PLUGIN_ARG_FORM__HPP
  11. /*  $Id: plugin_arg_form.hpp,v 1000.0 2004/06/01 21:17:13 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.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <FL/Fl_Choice.H>
  43. #include <FL/Fl_Input.H>
  44. #include <FL/Fl_Button.H>
  45. #include <FL/Fl_Group.H>
  46. #include <FL/Fl_Menu.H>
  47. #include <FL/Fl_Multi_Browser.H>
  48. #include <gui/objutils/objects.hpp>
  49. #include <gui/core/obj_convert.hpp>
  50. #include <gui/widgets/fl/form.hpp>
  51. #include <gui/plugin/PluginArg.hpp>
  52. #include <gui/plugin/PluginArgSet.hpp>
  53. BEGIN_NCBI_SCOPE
  54. //
  55. // class CArgFormatter defines the abstract interface required of a class that
  56. // can format an object as an argument of a particular type.  There are many
  57. // private derived classes from this, one for each handled type.
  58. //
  59. class CArgFormatter : public CObject
  60. {
  61. public:
  62.     virtual ~CArgFormatter() {}
  63.     virtual void Process(void) = 0;
  64.     // extract the GUI component required for this formatter
  65.     virtual Fl_Widget* GetWidget(void) = 0;
  66. };
  67. //
  68. // class CPluginArgForm is the main form container
  69. //
  70. class CPluginArgForm : public CFlForm
  71. {
  72. public:
  73.     // typedef our arg formatter container
  74.     typedef list< CRef<CArgFormatter> > TArgFormatters;
  75.     // default (FLTK) constructor
  76.     CPluginArgForm(int x, int y, int w, int h, const char* label = NULL);
  77.     // set the arguments for this form
  78.     void SetArgs(objects::CPluginArgSet& args,
  79.                  const TConstScopedObjects& selections);
  80.     // add a formatter to our form.  Internally, this will force creation of
  81.     // the GUI components and add it to the pack.
  82.     void AddFormatter(CArgFormatter& fmt);
  83.     // add a title row
  84.     void AddTitle(const string& str);
  85.     // process the form
  86.     void Process();
  87.     // generate a new argument formatter based on a given argument.
  88.     static CArgFormatter* GetFormatter(objects::CPluginArg& arg,
  89.                                        const TConstScopedObjects& objs);
  90. private:
  91.     TArgFormatters m_Formatters;
  92.     void x_AddOptions(objects::CPluginArgSet::Tdata& opts,
  93.                       const char* title, 
  94.                       CConvertCache& convert_cache,
  95.                       const TConstScopedObjects& objs);
  96.     void x_AddFlags(objects::CPluginArgSet::Tdata& opts,
  97.                     const char* title, 
  98.                     CConvertCache& convert_cache);
  99. };
  100. END_NCBI_SCOPE
  101. /*
  102.  * ===========================================================================
  103.  * $Log: plugin_arg_form.hpp,v $
  104.  * Revision 1000.0  2004/06/01 21:17:13  gouriano
  105.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  106.  *
  107.  * Revision 1.1  2004/06/01 18:04:44  dicuccio
  108.  * Initial revision.  Lots of changes: added gui_project ASN.1 project, added new
  109.  * plugin arg form (separate widget), added plugin selector dialog
  110.  *
  111.  * ===========================================================================
  112.  */
  113. #endif  // GUI_CORE___PLUGIN_ARG_FORM__HPP