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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dialog.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/16 16:53:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_DIALOGS___DIALOG__HPP
  10. #define GUI_DIALOGS___DIALOG__HPP
  11. /*  $Id: dialog.hpp,v 1000.3 2004/04/16 16:53:23 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 <gui/gui.hpp>
  43. #include <memory>
  44. class Fl_Window;
  45. class Fl_Widget;
  46. /** @addtogroup GUI_UTILS
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. //
  52. // class CDialog defines the basic interactions for dialogs
  53. //
  54. class NCBI_GUIUTILS_EXPORT CDialog : public CObject
  55. {
  56. public:
  57.     CDialog();
  58.     virtual ~CDialog();
  59.     void SetTitle(const string& title);
  60.     // non-modal operations
  61.     virtual void Show();
  62.     virtual void Hide();
  63.     // modal operations
  64.     virtual int Show(int argc, char** argv);
  65.     virtual EDialogReturnValue ShowModal();
  66.     // check to see if our dialog is visible
  67.     bool IsShown(void) const;
  68.     // center the dialog box in the screen
  69.     void Center(void);
  70.     // center the dialog over the currently active window, or in the screen
  71.     // if there is no currently active window
  72.     void CenterOnActive(void);
  73.     // center the dialog box at a given point
  74.     void Center(int x, int y);
  75.     // center the dialog box in a given rectangle
  76.     void Center(int x, int y, int w, int h);
  77.     // center the dialog box over a given widget
  78.     void Center(const Fl_Widget* w);
  79. protected:
  80.     EDialogReturnValue m_RetValue;
  81.     auto_ptr<Fl_Window> m_Window;
  82.     string m_TitleStr;
  83.     virtual void x_OnOK();
  84.     virtual void x_OnCancel();
  85. private:
  86.     // forbidden
  87.     CDialog(const CDialog&);
  88.     CDialog& operator=(const CDialog&);
  89. };
  90. END_NCBI_SCOPE
  91. /* @} */
  92. /*
  93.  * ===========================================================================
  94.  * $Log: dialog.hpp,v $
  95.  * Revision 1000.3  2004/04/16 16:53:23  gouriano
  96.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.6
  97.  *
  98.  * Revision 1.6  2004/04/16 14:27:17  dicuccio
  99.  * Added doxygen module tag
  100.  *
  101.  * Revision 1.5  2004/03/11 17:19:32  dicuccio
  102.  * Use TSeqRange instead of TRange.  Use gui/gui instead of gui/types
  103.  *
  104.  * Revision 1.4  2003/12/08 18:02:50  dicuccio
  105.  * Added Center() functions
  106.  *
  107.  * Revision 1.3  2003/12/05 17:21:34  yazhuk
  108.  * Added SetTitle()
  109.  *
  110.  * Revision 1.2  2003/11/26 17:05:03  dicuccio
  111.  * Added IsShown()
  112.  *
  113.  * Revision 1.1  2003/09/29 15:07:43  dicuccio
  114.  * Initial revision
  115.  *
  116.  * Revision 1.1  2003/09/12 19:50:35  dicuccio
  117.  * Intiial revision
  118.  *
  119.  * ===========================================================================
  120.  */
  121. #endif  // GUI_DIALOGS___DIALOG__HPP