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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: plugin_arg_dialog.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:46:53  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___PLUGIN_ARG_DIALOG__HPP
  10. #define GUI_CORE___PLUGIN_ARG_DIALOG__HPP
  11. /*  $Id: plugin_arg_dialog.hpp,v 1000.3 2004/06/01 19:46:53 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.  *    CPluginArgDialog -- standard, generic argument formatter dialog
  40.  */
  41. #include <gui/utils/dialog.hpp>
  42. #include <gui/core/plugin_handle.hpp>
  43. #include <gui/core/selection_buffer.hpp>
  44. #include <gui/plugin/PluginArgSet.hpp>
  45. #include <FL/Fl.H>
  46. #include <FL/Fl_Double_Window.H>
  47. #include <FL/Fl_Group.H>
  48. #include <FL/Fl_Return_Button.H>
  49. #include <FL/Fl_Button.H>
  50. BEGIN_NCBI_SCOPE
  51. class CPluginArgForm;
  52. class CConvertCache;
  53. #include "plugin_arg_dialog_.hpp"
  54. END_NCBI_SCOPE
  55. /*
  56.  * ===========================================================================
  57.  * $Log: plugin_arg_dialog.hpp,v $
  58.  * Revision 1000.3  2004/06/01 19:46:53  gouriano
  59.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
  60.  *
  61.  * Revision 1.16  2004/06/01 18:07:11  dicuccio
  62.  * Large rewrite - refactored central form into a separate class
  63.  *
  64.  * Revision 1.15  2004/04/07 12:34:40  dicuccio
  65.  * Dropped unnecessary predeclaration
  66.  *
  67.  * Revision 1.14  2003/11/06 19:52:10  dicuccio
  68.  * Added help button
  69.  *
  70.  * Revision 1.13  2003/10/23 16:11:09  dicuccio
  71.  * Moved to private version of the entry form dialo
  72.  *
  73.  * Revision 1.12  2003/10/10 16:09:27  friedman
  74.  * Added using CConvertCache.
  75.  *
  76.  * Revision 1.11  2003/09/29 17:15:53  dicuccio
  77.  * Fixed callback for OK - should be (protected) x_OnOK()
  78.  *
  79.  * Revision 1.10  2003/09/04 13:57:40  dicuccio
  80.  * Documentation change
  81.  *
  82.  * Revision 1.9  2003/07/17 03:04:37  friedman
  83.  * Added handling Flag/Boolean args as Check buttons.
  84.  * Added passing in a CSelectionBuffer::TSelList to CPluginArgDialog
  85.  * Added handling CObjects - Bioseq as a menu drop down list.
  86.  *
  87.  * Revision 1.8  2003/06/25 16:59:41  dicuccio
  88.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  89.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  90.  *
  91.  * Revision 1.7  2003/05/19 13:32:43  dicuccio
  92.  * Moved gui/core/plugin --> gui/plugin/
  93.  *
  94.  * Revision 1.6  2003/04/24 16:12:26  dicuccio
  95.  * Added #include guards
  96.  *
  97.  * Revision 1.5  2003/04/24 12:27:27  dicuccio
  98.  * Changed internal representation of entry form - permits placement of labels
  99.  * inside of entry forms.  Added API to permit this in a plugin arguments
  100.  * dialog
  101.  *
  102.  * Revision 1.4  2003/03/28 19:11:24  dicuccio
  103.  * Split x_AddOptions() - bulk of code now handled in (two) subfunctions
  104.  *
  105.  * Revision 1.3  2003/03/25 14:21:02  dicuccio
  106.  * Added Win32 export specifier
  107.  *
  108.  * Revision 1.2  2003/03/25 13:04:57  dicuccio
  109.  * Added overloaded handler for clicking the OK button.  Added argument
  110.  * formatter classes to handle events and actually set argument values.
  111.  *
  112.  * Revision 1.1  2003/03/21 13:43:43  dicuccio
  113.  * Initial revision
  114.  *
  115.  * ===========================================================================
  116.  */
  117. #endif  // GUI_CORE___PLUGIN_ARG_DIALOG__HPP