- /*
- * ===========================================================================
- * PRODUCTION $Log: plugin_arg_dialog.hpp,v $
- * PRODUCTION Revision 1000.3 2004/06/01 19:46:53 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
- * PRODUCTION
- * ===========================================================================
- */
- #ifndef GUI_CORE___PLUGIN_ARG_DIALOG__HPP
- #define GUI_CORE___PLUGIN_ARG_DIALOG__HPP
- /* $Id: plugin_arg_dialog.hpp,v 1000.3 2004/06/01 19:46:53 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software / database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software / database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Authors: Mike DiCuccio
- *
- * File Description:
- * CPluginArgDialog -- standard, generic argument formatter dialog
- */
- #include <gui/utils/dialog.hpp>
- #include <gui/core/plugin_handle.hpp>
- #include <gui/core/selection_buffer.hpp>
- #include <gui/plugin/PluginArgSet.hpp>
- #include <FL/Fl.H>
- #include <FL/Fl_Double_Window.H>
- #include <FL/Fl_Group.H>
- #include <FL/Fl_Return_Button.H>
- #include <FL/Fl_Button.H>
- BEGIN_NCBI_SCOPE
- class CPluginArgForm;
- class CConvertCache;
- #include "plugin_arg_dialog_.hpp"
- END_NCBI_SCOPE
- /*
- * ===========================================================================
- * $Log: plugin_arg_dialog.hpp,v $
- * Revision 1000.3 2004/06/01 19:46:53 gouriano
- * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.16
- *
- * Revision 1.16 2004/06/01 18:07:11 dicuccio
- * Large rewrite - refactored central form into a separate class
- *
- * Revision 1.15 2004/04/07 12:34:40 dicuccio
- * Dropped unnecessary predeclaration
- *
- * Revision 1.14 2003/11/06 19:52:10 dicuccio
- * Added help button
- *
- * Revision 1.13 2003/10/23 16:11:09 dicuccio
- * Moved to private version of the entry form dialo
- *
- * Revision 1.12 2003/10/10 16:09:27 friedman
- * Added using CConvertCache.
- *
- * Revision 1.11 2003/09/29 17:15:53 dicuccio
- * Fixed callback for OK - should be (protected) x_OnOK()
- *
- * Revision 1.10 2003/09/04 13:57:40 dicuccio
- * Documentation change
- *
- * Revision 1.9 2003/07/17 03:04:37 friedman
- * Added handling Flag/Boolean args as Check buttons.
- * Added passing in a CSelectionBuffer::TSelList to CPluginArgDialog
- * Added handling CObjects - Bioseq as a menu drop down list.
- *
- * Revision 1.8 2003/06/25 16:59:41 dicuccio
- * Changed CPluginHandle into a pointer-to-implementation (the previous
- * implementation is now the pointer held). Lots of #include file clean-ups.
- *
- * Revision 1.7 2003/05/19 13:32:43 dicuccio
- * Moved gui/core/plugin --> gui/plugin/
- *
- * Revision 1.6 2003/04/24 16:12:26 dicuccio
- * Added #include guards
- *
- * Revision 1.5 2003/04/24 12:27:27 dicuccio
- * Changed internal representation of entry form - permits placement of labels
- * inside of entry forms. Added API to permit this in a plugin arguments
- * dialog
- *
- * Revision 1.4 2003/03/28 19:11:24 dicuccio
- * Split x_AddOptions() - bulk of code now handled in (two) subfunctions
- *
- * Revision 1.3 2003/03/25 14:21:02 dicuccio
- * Added Win32 export specifier
- *
- * Revision 1.2 2003/03/25 13:04:57 dicuccio
- * Added overloaded handler for clicking the OK button. Added argument
- * formatter classes to handle events and actually set argument values.
- *
- * Revision 1.1 2003/03/21 13:43:43 dicuccio
- * Initial revision
- *
- * ===========================================================================
- */
- #endif // GUI_CORE___PLUGIN_ARG_DIALOG__HPP