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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: toplevel.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:46:35  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_TOPLEVEL___TOPLEVEL__HPP
  10. #define GUI_WIDGETS_TOPLEVEL___TOPLEVEL__HPP
  11. /*  $Id: toplevel.hpp,v 1000.0 2003/10/31 20:46:35 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.  *    CTopLevel -- base class for MDI parent window
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <FL/Fl_Double_Window.H>
  43. #include "child.hpp"
  44. #include <vector>
  45. class Fl_Pixmap;
  46. BEGIN_NCBI_SCOPE
  47. class CChildFrame;
  48. class CIconTray;
  49. //
  50. // class CTopLevel is the main top-level widget.
  51. //
  52. class NCBI_GUIWIDGETS_TOPLEVEL_EXPORT CTopLevel : public Fl_Double_Window
  53. {
  54. public:
  55.     // ctors/dtor
  56.     CTopLevel(int x, int y, int wid, int ht, const char* label = NULL);
  57.     ~CTopLevel();
  58.     // Explicitly add a child to the top-level widget.
  59.     void AddChild(CChild* c);
  60.     // FLTK hook: general event processing
  61.     int handle(int event);
  62.     // FLTK hook: resize the top-level
  63.     void resize(int x, int y, int w, int h);
  64.     // Force all windows to cascade.  This uses the current window rendering
  65.     // order for layout.
  66.     void Cascade(void);
  67.     // Force all windows to tile across the available space.  This uses the
  68.     // current window rendering order for layout.
  69.     void Tile(void);
  70.     //
  71.     // static look-and-feel accessors
  72.     //
  73.     // box type (= border) for system buttons
  74.     static Fl_Boxtype   GetSysButtonBox(void);
  75.     static void         SetSysButtonBox(Fl_Boxtype box);
  76.     // background color for system buttons
  77.     static Fl_Color     GetSysButtonColor(void);
  78.     static void         SetSysButtonColor(Fl_Color color);
  79.     // title bar color when selected
  80.     static Fl_Color     GetSelectedColor(void);
  81.     static void         SetSelectedColor(Fl_Color color);
  82.     // title font type (default = helvetica bold)
  83.     static Fl_Font      GetTitleFont(void);
  84.     static void         SetTitleFont(Fl_Font font);
  85.     // text color for title
  86.     static Fl_Color     GetTitleColor(void);
  87.     static void         SetTitleColor(Fl_Color color);
  88.     // size of title text (in pixels)
  89.     static int          GetTitleSize(void);
  90.     static void         SetTitleSize(int size);
  91.     // bitmask of Fl_Align styles for title.  FL_ALIGN_INSIDE is implicit
  92.     static int          GetTitleAlign(void);
  93.     static void         SetTitleAlign(int align);
  94. private:
  95.     // We keep an explicit vector of our children, separate from FLTK's array
  96.     typedef vector<CChildFrame*> TChildren;
  97.     TChildren m_Children;
  98.     // The currently selected child
  99.     CChildFrame*         m_Selected;
  100.     // our icon tray
  101.     CIconTray*      m_IconTray;
  102.     // doodads for window decoration
  103.     Fl_Pixmap* m_MinimizeXPM;
  104.     Fl_Pixmap* m_MaximizeXPM;
  105.     Fl_Pixmap* m_CloseXPM;
  106.     // Positions for proper child window placement.
  107.     int         m_LastChildX;
  108.     int         m_LastChildY;
  109.     // callbacks for our system buttons and events
  110.     static void     x_StaticCB_Close   (Fl_Widget*, void*);
  111.     static void     x_StaticCB_Maximize(Fl_Widget*, void*);
  112.     static void     x_StaticCB_Minimize(Fl_Widget*, void*);
  113.     void            x_Close   (void);
  114.     void            x_Maximize(void);
  115.     void            x_Minimize(void);
  116.     // set the currently selected window
  117.     void x_SetSelected(CChildFrame* frame);
  118. };
  119. END_NCBI_SCOPE
  120. /*
  121.  * ===========================================================================
  122.  * $Log: toplevel.hpp,v $
  123.  * Revision 1000.0  2003/10/31 20:46:35  gouriano
  124.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  125.  *
  126.  * Revision 1.6  2003/09/29 15:20:09  dicuccio
  127.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  128.  *
  129.  * Revision 1.5  2003/09/16 14:37:15  dicuccio
  130.  * Cleaned up and clarified export specifiers - added a new specifier for each
  131.  * library
  132.  *
  133.  * Revision 1.4  2003/03/17 15:53:29  dicuccio
  134.  * Added Win32 export specifier
  135.  *
  136.  * Revision 1.3  2003/03/17 14:59:22  dicuccio
  137.  * Lots of clean-ups.  Added more explicit destruction pathway to support
  138.  * integration into Genome Workbench.
  139.  *
  140.  * Revision 1.2  2003/03/07 18:15:28  dicuccio
  141.  * Added missing accessors
  142.  *
  143.  * Revision 1.1  2003/03/07 17:50:59  dicuccio
  144.  * Initial revision
  145.  *
  146.  * ===========================================================================
  147.  */
  148. #endif  // GUI_WIDGETS_TOPLEVEL___TOPLEVEL__HPP