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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: view_menu.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/16 17:49:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___VIEW_MENU__HPP
  10. #define GUI_CORE___VIEW_MENU__HPP
  11. /*  $Id: view_menu.hpp,v 1000.2 2004/04/16 17:49:09 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.  *
  40.  *    IViewMenuData -- Class to hold callback information necessary to spawn a
  41.  *                     view plugin from an FLTK callback
  42.  *
  43.  *    CViewMenuMgr  -- Manager for dynamic FLTK view plugin menu + callback
  44.  *                     data
  45.  *
  46.  */
  47. #include <gui/utils/fltk_utils.hpp>
  48. BEGIN_NCBI_SCOPE
  49. class IDocument;
  50. class ISelection;
  51. class CSelectionBuffer;
  52. //
  53. // abstract base class for our view menu data
  54. // this is needed for the template definition below
  55. //
  56. class IViewMenuData : public CObject
  57. {
  58. public:
  59.     virtual ~IViewMenuData() {}
  60.     virtual void DoCallback() = 0;
  61. };
  62. //
  63. // class CViewMenuMgr manages a dynamic menu for views
  64. //
  65. class NCBI_GUICORE_EXPORT CViewMenuMgr : public CFltkMenuMgrBase<IViewMenuData>
  66. {
  67. public:
  68.     CViewMenuMgr(Fl_Menu_* menu, const string& base,
  69.                  ISelection* sel_source,
  70.                  const string& view_pool_name = "");
  71.     // Clear our managed sub-menus
  72.     void    Clear(void);
  73.     // add a new views menu
  74.     void    AddNewViews();
  75.     // add an empty new views list - no documents
  76.     void    AddEmptyNewViews(const string& message);
  77.     // add an existing views menu for all documents
  78.     void    AddActiveViews(void);
  79.     // add existing views for a given document
  80.     void    AddActiveViews(IDocument* doc);
  81.     // add an empty active views list - no documents
  82.     void    AddEmptyActiveViews(const string& message);
  83. private:
  84.     // the name of the pool in which our created views will live
  85.     string m_PoolName;
  86.     // the source of all or selections
  87.     ISelection* m_SelSource;
  88. };
  89. END_NCBI_SCOPE
  90. #endif  // GUI_CORE___VIEW_MENU__HPP
  91. /*
  92.  * ===========================================================================
  93.  * $Log: view_menu.hpp,v $
  94.  * Revision 1000.2  2004/04/16 17:49:09  gouriano
  95.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.13
  96.  *
  97.  * Revision 1.13  2004/04/16 14:32:30  dicuccio
  98.  * Use ISelection as selection source rather than passing in selections
  99.  *
  100.  * Revision 1.12  2003/11/06 19:58:56  dicuccio
  101.  * Added optional parameter to pass context name to view menu
  102.  *
  103.  * Revision 1.11  2003/09/16 14:04:24  dicuccio
  104.  * Renamed menu data interface classes
  105.  *
  106.  * Revision 1.10  2003/09/04 14:00:26  dicuccio
  107.  * Introduce IDocument and IView as abstract base classes.  Use IDocument instead
  108.  * of CDocument.
  109.  *
  110.  * Revision 1.9  2003/07/21 19:20:42  dicuccio
  111.  * Changed interface from Run() to DoCallback() -- more descriptive
  112.  *
  113.  * Revision 1.8  2003/06/25 16:59:41  dicuccio
  114.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  115.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  116.  *
  117.  * Revision 1.7  2003/05/05 12:40:55  dicuccio
  118.  * Added new interfaces for creating view menus
  119.  *
  120.  * Revision 1.6  2003/03/21 16:58:03  dicuccio
  121.  * Moved fltk_utils.hpp --> gui/utils
  122.  *
  123.  * Revision 1.5  2003/02/26 17:52:26  dicuccio
  124.  * Cleaned up dynamic menus to make them resistant to refreshing the menu while
  125.  * the menu callback is running
  126.  *
  127.  * Revision 1.4  2003/01/15 20:56:31  dicuccio
  128.  * Added private static callback for view menu operations
  129.  *
  130.  * Revision 1.3  2003/01/13 13:11:42  dicuccio
  131.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  132.  * Moved all FLUID-generated code into namespace ncbi.
  133.  *
  134.  * Revision 1.2  2002/12/26 14:19:55  dicuccio
  135.  * Added Win32 export specifiers.
  136.  *
  137.  * Revision 1.1  2002/12/20 19:11:11  dicuccio
  138.  * Initial revision.
  139.  *
  140.  * ===========================================================================
  141.  */