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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: demo_win_manager.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:32:29  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: demo_win_manager.cpp,v 1000.0 2004/06/01 21:32:29 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Authors:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  *    Test application for demonstartion of Window Manager and CFrameWindow classes
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <corelib/ncbienv.hpp>
  42. #include <corelib/ncbiargs.hpp>
  43. #include <gui/utils/accel_table.hpp>
  44. #include <gui/widgets/workspace/frame_window.hpp>
  45. #include <gui/widgets/workspace/window_manager.hpp>
  46. #include <gui/widgets/workspace/test_client.hpp>
  47. #include <FL/Fl_Group.H>
  48. USING_NCBI_SCOPE;
  49. /// Commands specific for this application
  50. enum EWMDemoCommands   {
  51.     eCmdExit = 10000,
  52.     eCmdCreateFLClient,
  53.     eCmdCreateGLClient,
  54.     eCmdDestroyClient
  55. };
  56. /////////////////////////////////////////////////////////////////////////////
  57. //  CWinManagerApp
  58. class CWinManagerApp :  public CNcbiApplication,
  59.                         public CCommandTarget // application should be able to handle commands
  60. {
  61. private:
  62.     virtual void Init(void);
  63.     virtual int  Run(void);
  64.     virtual void Exit(void);
  65.     void    x_Create();
  66.     void    x_Destroy();
  67.     void    x_CreateWindowManager();
  68.         
  69.     DECLARE_CMD_MAP()
  70.     
  71.     void    OnExit();
  72.     void    OnCreateClient(TCmdID cmd); // range command handler
  73. void    OnDestroyClient();
  74.     void    OnUpdateDestroyClient(ICmdUI* pCmdUI); // command update handler
  75. private:
  76.     CFrameWindow    *m_Frame;
  77.     CWindowManager  *m_WindowManager;  
  78.     
  79.     list<IWMClient*>    m_Clients;
  80.     int m_ClientsCount;
  81. };
  82. void CWinManagerApp::Init(void)
  83. {
  84.     // Create command-line argument descriptions class
  85.     auto_ptr<CArgDescriptions> arg_desc(new CArgDescriptions);
  86.     // Specify USAGE context
  87.     arg_desc->SetUsageContext(GetArguments().GetProgramBasename(),
  88.                               "Window Manager, Main Frame demo");
  89.     arg_desc->AddFlag("plastic", "Use the plastic scheme");
  90.     // Setup arg.descriptions for this application
  91.     SetupArgDescriptions(arg_desc.release());
  92. }
  93. int CWinManagerApp::Run(void)
  94. {
  95.     CArgs args = GetArgs();
  96.     if (args["plastic"]) {
  97.         Fl::scheme("plastic");
  98.     }
  99.     
  100.     char *argv[1];
  101.     argv[0] = "demo_win_manager";
  102.     x_Create();
  103.     m_Frame->show();//1, argv);
  104.     while(m_Frame->shown()) { // message loop
  105.         Fl::wait();
  106.     }
  107.     x_Destroy();
  108.         
  109.     return 0;
  110. }
  111. void CWinManagerApp::Exit(void)
  112. {
  113.     SetDiagStream(0);
  114. }
  115. /////////////////////////////////////////////////////////////////////////////
  116. //  MAIN
  117. int main(int argc, const char* argv[])
  118. {
  119.     // Execute main application function
  120.     return CWinManagerApp().AppMain(argc, argv, 0, eDS_Default, 0);
  121. }
  122. /////////////////////////////////////////////////////////////////////////////
  123. //  Application logic
  124. /// Here we define static part of top-level menu. It contains empty submenus that
  125. /// will be later used as merge points for clients
  126. DEFINE_MENU(BaseMenu)
  127.     SUBMENU("File")
  128.         MENU_ITEM(eCmdCreateFLClient, "Create FLTK Client")
  129.         MENU_ITEM(eCmdCreateGLClient, "Create OpenGL Client")
  130.         MENU_ITEM(eCmdDestroyClient, "Destroy Client")
  131.         MENU_SEPARATOR()
  132.         MENU_ITEM(eCmdExit, "Exit")
  133.     END_SUBMENU()
  134.     SUBMENU("Commands") // merge point for clients
  135.     END_SUBMENU()
  136.     SUBMENU("Window") // merge point for Window Manager
  137.     END_SUBMENU()
  138. END_MENU()
  139. BEGIN_CMD_MAP(CWinManagerApp, CCommandTarget)
  140.     ON_COMMAND_RANGE(eCmdCreateFLClient, eCmdCreateGLClient, &CWinManagerApp::OnCreateClient)
  141. ON_COMMAND(eCmdDestroyClient, &CWinManagerApp::OnDestroyClient)
  142.     ON_UPDATE_COMMAND_UI(eCmdDestroyClient, &CWinManagerApp::OnUpdateDestroyClient)
  143.     ON_COMMAND(eCmdExit, &CWinManagerApp::OnExit)
  144. END_CMD_MAP()
  145. void    CWinManagerApp::x_Create()
  146. {
  147.     // initilize Resource Manager and Menu 
  148.     CRef<CResourceManager> rm(new CResourceManager("<home>;<std>"));
  149.     CMenu::SetResourceManager(rm);
  150.     
  151.     x_CreateWindowManager();
  152.     
  153.     m_Frame = new CFrameWindow(800, 600, "");    
  154.     /// create backbone of top-level menu
  155.     CMenuItem* root = CreateMenuItems(BaseMenu);
  156.     m_Frame->ResetMenu(*root);   
  157.     delete root;
  158.     
  159.     /// register hint for commands
  160.     CMenu::SetCmdHint(eCmdExit, "Exits application");
  161.     CMenu::SetCmdHint(eCmdCreateFLClient, "Creates new FLTK  window");
  162.     CMenu::SetCmdHint(eCmdCreateGLClient, "Creates new OpenGL window");
  163.     CMenu::SetCmdHint(eCmdDestroyClient, "Destroys current client window");
  164.     /// add Client and merge client menus
  165.     m_Frame->SetClient(m_WindowManager);
  166.     m_Frame->AddChildCmdTarget(this); // let application process commands
  167.     // register accelerators for commands defined by the applicatio
  168.     CAccelTable::RegisterAccelerator(FL_ALT  + 'X', eCmdExit);
  169.     CAccelTable::RegisterAccelerator(FL_CTRL + 'F', eCmdCreateFLClient);
  170.     CAccelTable::RegisterAccelerator(FL_CTRL + 'G', eCmdCreateGLClient);
  171.     CAccelTable::RegisterAccelerator(FL_CTRL + 'D', eCmdDestroyClient);
  172. }
  173. void    CWinManagerApp::x_CreateWindowManager()
  174. {
  175.     m_WindowManager = new CWindowManager();
  176.     // create clients   
  177.     m_ClientsCount = 0;
  178.     for( int i = 1; i < 1; i++) {
  179.         OnCreateClient(eCmdCreateFLClient);
  180.     }
  181. }
  182. void    CWinManagerApp::x_Destroy()
  183. {
  184.     m_Frame->SetClient(NULL);
  185.     delete m_WindowManager;
  186.     delete m_Frame;
  187.     
  188.     NON_CONST_ITERATE(list<IWMClient*>, it, m_Clients)  {
  189.         delete *it;
  190.     }
  191. }
  192. void CWinManagerApp::OnExit()
  193. {
  194.     m_Frame->hide();
  195. }
  196. void CWinManagerApp::OnCreateClient(TCmdID cmd)
  197. {
  198.     int type = m_ClientsCount % 3 + 1;
  199.     string label = "Client " + NStr::IntToString(m_ClientsCount + 1);
  200. IWMClient* client =  (cmd == eCmdCreateFLClient) ? (IWMClient*) new CFLTestClient(type, label.c_str())
  201.    : (IWMClient*) new CGLTestClient(type, label.c_str());
  202.     m_Clients.push_back(client);
  203.     m_ClientsCount++;
  204.     
  205.     // add client to Window Manager
  206.     m_WindowManager->AddClientInTab(client);
  207. }
  208. void    CWinManagerApp::OnUpdateDestroyClient(ICmdUI* pCmdUI)
  209. {
  210.     pCmdUI->Enable(m_WindowManager  &&  m_WindowManager->GetActiveClient());
  211. }
  212. void    CWinManagerApp::OnDestroyClient()
  213. {
  214.     IWMClient* client = m_WindowManager ? m_WindowManager->GetActiveClient() : NULL;
  215.     if(client)  {
  216.         if(m_WindowManager->RemoveClient(client))   {
  217.             list<IWMClient*>::iterator it = find(m_Clients.begin(), m_Clients.end(), client);
  218.             m_Clients.erase(it);
  219.             delete client;
  220.         }
  221.     }
  222. }
  223. /*
  224.  * ===========================================================================
  225.  * $Log: demo_win_manager.cpp,v $
  226.  * Revision 1000.0  2004/06/01 21:32:29  gouriano
  227.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.4
  228.  *
  229.  * Revision 1.4  2004/05/21 22:27:56  gorelenk
  230.  * Added PCH ncbi_pch.hpp
  231.  *
  232.  * Revision 1.3  2004/05/20 12:43:09  dicuccio
  233.  * Minor formatting change
  234.  *
  235.  * Revision 1.2  2004/05/13 17:37:36  yazhuk
  236.  * Added support for menu hints, accelerators, command to create OpenGL client
  237.  *
  238.  * Revision 1.1  2004/05/07 14:27:53  yazhuk
  239.  * Initial revision
  240.  *
  241.  * ===========================================================================
  242.  */