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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: main_window.hpp,v $
  4.  * PRODUCTION Revision 1000.4  2004/06/01 20:48:22  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: main_window.hpp,v 1000.4 2004/06/01 20:48:22 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CMainWindow -- main window for Genome Workbench
  38.  */
  39. #include <gui/core/docmgr_view.hpp>
  40. #include <gui/objutils/iselection.hpp>
  41. #include <memory>
  42. #include <FL/Fl.H>
  43. #include <FL/Fl_Box.H>
  44. #include <FL/Fl_Button.H>
  45. #include <FL/Fl_Double_Window.H>
  46. #include <FL/Fl_Group.H>
  47. #include <FL/Fl_Menu_.H>
  48. #include <FL/Fl_Menu_Button.H>
  49. #include <FL/Fl_Menu_Item.H>
  50. #include <FL/Fl_Pack.H>
  51. #include <FL/Fl_Pixmap.H>
  52. BEGIN_NCBI_SCOPE
  53. class CAlgoMenuMgr;
  54. class CDocLoaderMenuMgr;
  55. class IDocument;
  56. class CPluginMgrDlg;
  57. class CDocumentDlg;
  58. class CViewMenuMgr;
  59. class CDiagPanel;
  60. class CAboutDlg;
  61. class CBrowserConfigDlg;
  62. class CGBenchFrameWindow;
  63. #include "main_window_.hpp"
  64. END_NCBI_SCOPE
  65. /*
  66.  * ===========================================================================
  67.  * $Log: main_window.hpp,v $
  68.  * Revision 1000.4  2004/06/01 20:48:22  gouriano
  69.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  70.  *
  71.  * Revision 1.13  2004/05/17 13:25:32  dicuccio
  72.  * First implementation of new document workspace
  73.  *
  74.  * Revision 1.12  2004/05/03 13:01:25  dicuccio
  75.  * gui/utils --> gui/objutils where needed
  76.  *
  77.  * Revision 1.11  2004/04/16 14:40:33  dicuccio
  78.  * Inherit from ISelection for selection marshalling
  79.  *
  80.  * Revision 1.10  2004/04/09 17:24:47  jcherry
  81.  * Implemented browser configuration for Windows, and changed how
  82.  * it works on unix for consistency
  83.  *
  84.  * Revision 1.9  2003/11/06 20:08:53  dicuccio
  85.  * Added help menu items
  86.  *
  87.  * Revision 1.8  2003/10/27 17:40:38  dicuccio
  88.  * Restructured diagnostic handler - use CDiagPanel
  89.  *
  90.  * Revision 1.7  2003/09/29 15:43:01  dicuccio
  91.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  92.  *
  93.  * Revision 1.6  2003/09/04 14:02:36  dicuccio
  94.  * Introduce IDocument as abstract base class for CDocument; replace use of
  95.  * CDocument with IDocument
  96.  *
  97.  * Revision 1.5  2003/08/06 13:24:31  dicuccio
  98.  * Deprecated old main window; introduced new, compact window for multiple
  99.  * document management
  100.  *
  101.  * Revision 1.4  2003/04/29 14:51:52  dicuccio
  102.  * Reworked FLUID-generated code: more explicit control over constructor, better
  103.  * memeory management
  104.  *
  105.  * Revision 1.3  2003/04/08 20:09:37  dicuccio
  106.  * Minor layout changes.  Made main window smaller; reduced size of console
  107.  * window.  Also, added clipping and left-justification to items in the
  108.  * documents drop-down.
  109.  *
  110.  * Revision 1.2  2003/04/08 18:10:58  lebedev
  111.  * Document organizer added
  112.  *
  113.  * Revision 1.1  2003/03/31 13:36:37  dicuccio
  114.  * Initial revision.
  115.  *
  116.  * ===========================================================================
  117.  */