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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: workspace.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:53:56  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_WORKSPACE___WORKSPACE_HPP
  10. #define GUI_WIDGETS_WORKSPACE___WORKSPACE_HPP
  11. /*  $Id: workspace.hpp,v 1000.1 2004/06/01 19:53:56 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/ncbistl.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <gui/widgets/workspace/window_manager.hpp>
  44. #include <gui/widgets/fl/tree_browser.hpp>
  45. #include <gui/widgets/fl/splitter.hpp>
  46. #include <gui/widgets/fl/menu_window.hpp>
  47. #include <FL/Fl_Group.H>
  48. BEGIN_NCBI_SCOPE
  49. ///////////////////////////////////////////////////////////////////////////////
  50. /// CClientBrowser
  51. class NCBI_GUIWIDGETS_WORKSPACE_EXPORT CClientBrowser : public CTreeBrowser
  52. {
  53. public:
  54.     CClientBrowser(int x, int y, int w, int h);
  55.     void    AddClient(IWMClient* client);
  56.     void    Update(CWindowManager& manager);
  57.     void    GetSelectedClients(vector<IWMClient*>& clients);
  58. protected:
  59.     typedef map<IWMClient*, Node*> TClientToNodeMap;
  60.     TClientToNodeMap    m_ClientToNode;
  61. };
  62. ///////////////////////////////////////////////////////////////////////////////
  63. /// CWorkspace 
  64. /// EWorkspaceCommands - defintions of the commands supported by CWorkspace.
  65. enum    EWorkspaceCommands  {
  66.     eCmdNewClient = 5500,
  67.     eCmdNewClientInTab,
  68.     eCmdActivateClient,
  69.     eCmdDockClient,
  70.     eCmdUndockClient,
  71.     eCmdHideClient,
  72.     eCmdMaximizeClient,
  73.     eCmdMinimizeClient,
  74.     eCmdRestoreClient    
  75. };
  76. /// CWorkspace - top-level GUI component for workspace-type applications.
  77. ///
  78. /// CWorkspace represents a GUI component playing role of desktop, top-level frame
  79. /// and window manager for applications supporting multiple documents and views.
  80. class NCBI_GUIWIDGETS_WORKSPACE_EXPORT CWorkspace  :   public  Fl_Group,
  81.                         public  CCommandTarget,
  82.                         public  IWindowManagerObserver,
  83.                         public  IFrameWindowClient
  84. {
  85. public:
  86.     CWorkspace(int x, int y, int w, int h, const char* label = 0);
  87.     virtual ~CWorkspace();
  88.     /// @name IWindowManagerObserver implementation
  89.     /// @{
  90.     virtual void    OnClientChanged(IWMClient* client);
  91.     /// @}
  92.     /// @name IFrameWindowClient implementation
  93.     /// @{
  94.     virtual void    SetFrameWindow(CFrameWindow* frame);
  95.     virtual const CMenuItem*    GetMenu() const;
  96.     /// @}
  97.     // command handlers
  98.     void    OnNewClient();
  99.     void    OnNewClientInTab();
  100.     void    OnActivateClient();
  101.     void    OnDockClient();
  102.     void    OnUndockClient();
  103.     void    OnHideClient();
  104.     void    OnMaximizeClient();
  105.     void    OnMinimizeClient();
  106.     void    OnRestoreClient();
  107.     
  108. protected:
  109.     DECLARE_CMD_MAP();
  110.     
  111.     typedef vector<IWMClient*>    TClients;
  112.     
  113.     void    x_DoFrameClientCmd(CWindowManager::EFrameCmd cmd);
  114. public:
  115.     CMenuItem*          m_MenuRoot;  
  116.     //CMenuBar1*        m_pMenuBar;
  117.     CSplitter*          m_pRootSplitter;
  118.     CSplitter*          m_pLeftSplitter;
  119.     CClientBrowser*     m_pClientBrowser;
  120.     CWindowManager*     m_WindowManager;
  121.     CFrameWindow*       m_FrameWindow;
  122.     int     m_ClientsCount;
  123. };
  124. END_NCBI_SCOPE
  125. /*
  126.  * ===========================================================================
  127.  * $Log: workspace.hpp,v $
  128.  * Revision 1000.1  2004/06/01 19:53:56  gouriano
  129.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  130.  *
  131.  * Revision 1.3  2004/05/20 12:24:55  dicuccio
  132.  * Added export specifiers
  133.  *
  134.  * Revision 1.2  2004/05/07 14:24:35  yazhuk
  135.  * Implemented IFrameWindowClient interface; refactoring
  136.  *
  137.  * Revision 1.1  2004/02/04 19:39:35  yazhuk
  138.  * Initial revision
  139.  *
  140.  * ===========================================================================
  141.  */
  142. #endif  // GUI_WIDGETS_WORKSPACE___WORKSPACE_HPP