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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: frame_window.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:57:17  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_WORKSPACE___FRAME_WINDOW_HPP
  10. #define GUI_WIDGETS_WORKSPACE___FRAME_WINDOW_HPP
  11. /*  $Id: frame_window.hpp,v 1000.0 2004/06/01 19:57:17 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:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/utils/command.hpp>
  43. #include <gui/utils/gui_event.hpp>
  44. #include <gui/widgets/fl/menu_item.hpp>
  45. #include <gui/widgets/fl/menu_window.hpp>
  46. #include <gui/widgets/fl/fltk_timer.hpp>
  47. #include <gui/widgets/fl/status_bar.hpp>
  48. #include <FL/Fl_Group.H>
  49. #include <FL/Fl_Double_Window.H>
  50. BEGIN_NCBI_SCOPE
  51. class CFrameWindow;
  52. ///////////////////////////////////////////////////////////////////////////////
  53. /// IFrameWindowClient
  54. class IFrameWindowClient
  55. {
  56. public:
  57.     virtual ~IFrameWindowClient()  {};
  58.     virtual void    SetFrameWindow(CFrameWindow* frame) = 0;
  59.     virtual const CMenuItem*    GetMenu() const = 0;
  60. };
  61. ///////////////////////////////////////////////////////////////////////////////
  62. /// CFrameWindow - top-level frame window providing basic services to its child 
  63. /// widgets such as:
  64. /// - top-level shared menu bar and menu merging capabilities
  65. /// - top-level status bar
  66. /// - command routing and command update mechansim
  67. /// - keyboard shortcuts
  68. class NCBI_GUIWIDGETS_WORKSPACE_EXPORT CFrameWindow :    public Fl_Double_Window,
  69.                         public CCommandTarget,
  70.                         public ITimerListener,
  71.                         public IMenuHintListener
  72. {
  73. public:
  74.     typedef Fl_Double_Window    TParent;
  75.     CFrameWindow(int w, int h, const char* title);
  76.     virtual ~CFrameWindow();
  77.     /// Replace existing menu with one specified by "item", make it a "backbone"
  78.     /// (default) menu of the window and then merge Client's menu into it.
  79.     virtual void    ResetMenu(const CMenuItem& item);
  80.     
  81.     /// Resets current menu to "backbone" 
  82.     virtual void    ResetMenu();
  83.     /// Merge provided menu into exisitng FrameWindow's menu. This does not affect
  84.     /// "backbone" menu of the Frame.
  85.     virtual void    MergeMenu(const CMenuItem& item);
  86.     virtual void    SetClient(IFrameWindowClient* client);
  87.     virtual void    RemoveClient();
  88.     /// @name Fl_Widget overridables
  89.     /// @{
  90.     virtual void    show();
  91.     virtual void    hide();
  92.     virtual void    resize(int x, int y, int w, int h);
  93.     virtual int     handle(int event);
  94.     /// @}
  95.     /// ITimerListener implementation
  96.     virtual void    OnTimeout(int timer_id);
  97.     /// IMenuHintListener implementation
  98.     virtual void    OnHint(const string& hint);
  99. protected:
  100.     Fl_Widget*      x_ClientWidget();
  101.     virtual void    x_SetupStatusBar();
  102.     virtual void    x_AddClientMenu();
  103.     virtual void    x_Layout();
  104.     virtual void    x_OnUpdateUI();
  105.     static void     x_OnUpdateUI(void* data); // callback for 
  106.     virtual bool    x_HandleAccelerator();
  107.     virtual bool    x_HandleMenuActivate();
  108. protected:
  109.     CMenuItem*  m_BaseMenu; // static backbone that does not depend on Client
  110.     CMenuBar1*  m_MenuBar;
  111.     int         m_MenuBarH;
  112.     CStatusBar1*    m_StatusBar;
  113.     CStatusBar1::TSlotHandle    m_CmdHintSlot;
  114.     int             m_StatusBarH;
  115.        
  116.     Fl_Group*   m_ClientGroup; // place holder for a client
  117.     IFrameWindowClient*  m_Client;
  118.     CCommandTarget*      m_CmdTarget; // client target
  119.     CFLTKTimer      m_UpdateUITimer;
  120.     CGUIEvent       m_Event;
  121. };
  122. END_NCBI_SCOPE
  123. /*
  124.  * ===========================================================================
  125.  * $Log: frame_window.hpp,v $
  126.  * Revision 1000.0  2004/06/01 19:57:17  gouriano
  127.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.3
  128.  *
  129.  * Revision 1.3  2004/05/20 12:24:55  dicuccio
  130.  * Added export specifiers
  131.  *
  132.  * Revision 1.2  2004/05/13 17:33:06  yazhuk
  133.  * Added support for status bar, accelerators, keyboard activated menu bar
  134.  *
  135.  * Revision 1.1  2004/05/07 14:22:01  yazhuk
  136.  * Initial revision
  137.  *
  138.  * ===========================================================================
  139.  */
  140. #endif  // GUI_WIDGETS_WORKSPACE___FRAME_WINDOW_HPP