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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: frame.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:52:16  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_FL___FRAME__HPP
  10. #define GUI_WIDGETS_FL___FRAME__HPP
  11. /*  $Id: frame.hpp,v 1000.1 2004/06/01 19:52:16 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/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. #include <FL/Fl_Group.H>
  44. #include <FL/Fl_Check_Button.H>
  45. /** @addtogroup GUI_FltkWidgets
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. //
  51. // class CFlFrame provides an alternate positioning of the title such that it
  52. // overlaps the box type, much like a standard Win32 frame
  53. //
  54. class NCBI_GUIWIDGETS_FL_EXPORT CFlFrame : public Fl_Group
  55. {
  56. public:
  57.     CFlFrame(int x, int y, int w, int h, const char* label = NULL);
  58.     int align() const;
  59.     void align(int a);
  60.     // draw_label() - overridden from Fl_Widget
  61.     virtual void draw_label();
  62.     virtual void draw_label(int x, int y, int w, int h);
  63. protected:
  64.     void draw();
  65. };
  66. //
  67. // class CFlEnabledFrame provides the same functionality of CFlFrame, except
  68. // that the label is implicitly a check-box that enables/disables the whole
  69. // group
  70. //
  71. class NCBI_GUIWIDGETS_FL_EXPORT CFlEnabledFrame : public CFlFrame
  72. {
  73. public:
  74.     CFlEnabledFrame(int x, int y, int w, int h, const char* label = NULL);
  75.     // label accessors
  76.     void label(const char* label);
  77.     const char* label() const;
  78.     // overridden draw_label() functions
  79.     void draw_label(int x, int y, int w, int h);
  80.     // toggle the enabled state
  81.     void ToggleEnabled();
  82.     // explicitly set the enabled state to a given value
  83.     void SetEnabled(bool b);
  84. protected:
  85.     // the check-button we use for our label
  86.     Fl_Check_Button m_Button;
  87. };
  88. END_NCBI_SCOPE
  89. /* @} */
  90. /*
  91.  * ===========================================================================
  92.  * $Log: frame.hpp,v $
  93.  * Revision 1000.1  2004/06/01 19:52:16  gouriano
  94.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  95.  *
  96.  * Revision 1.4  2004/05/11 18:55:14  dicuccio
  97.  * Added doxygen modules info
  98.  *
  99.  * Revision 1.3  2004/05/03 12:47:08  dicuccio
  100.  * Added #include for gui/gui.hpp.  gui/utils ->gui/objutils where needed.
  101.  *
  102.  * Revision 1.2  2003/10/23 16:10:22  dicuccio
  103.  * Fixed export specifiers
  104.  *
  105.  * Revision 1.1  2003/09/29 15:26:22  dicuccio
  106.  * Initial revision
  107.  *
  108.  * ===========================================================================
  109.  */
  110. #endif  // GUI_WIDGETS_FL___FRAME__HPP