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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: menu.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:52:19  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_FL___MENU__HPP
  10. #define GUI_WIDGETS_FL___MENU__HPP
  11. /*  $Id: menu.hpp,v 1000.1 2004/06/01 19:52:19 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.  */
  39. /// @file menu.hpp
  40.  
  41. #include <corelib/ncbistd.hpp>
  42. #include <corelib/ncbi_tree.hpp>
  43. #include <gui/utils/command.hpp>
  44. #include <gui/widgets/fl/menu_item.hpp>
  45. #include <FL/Fl_Menu_.H>
  46. #include <FL/Fl_Menu_Item.H>
  47. #include <FL/Fl_Menu_Bar.H>
  48. #include <FL/Fl_Menu_Button.H>
  49. /** @addtogroup GUI_FltkWidgets
  50.  *
  51.  * @{
  52.  */
  53. BEGIN_NCBI_SCOPE
  54. ////////////////////////////////////////////////////////////////////////////////
  55. /// class CMenuBase
  56. class NCBI_GUIWIDGETS_FL_EXPORT CMenuBase : public IMenu
  57. {
  58. public:
  59.     CMenuBase();
  60.     virtual ~CMenuBase();
  61.     /// @name IMenu* implementation
  62.     /// @{
  63.     virtual void    SetCmdTarget(CCommandTarget* target);
  64.     virtual CCommandTarget*    GetCmdTarget();
  65.     /// @}
  66. protected:    
  67.     /// Traverses "submenu" tree and calls x_AddFLTKItem().  
  68.     ///
  69.     /// This function works as "Interpreter" converting input CMenuItem tree to
  70.     /// a sequence of FLTK menu items. This is NOT a "1-1" conversion. FLTK menu
  71.     /// items are generated by calling x_AddFLTKItem() virtual function that must
  72.     /// be overridden in the derived class.
  73.     bool    x_CreateFLTKMenu(const string& submenu_path, CMenuItem* submenu); //const
  74.     /// called by x_CreateFLTKMenu for every FLTK item being created
  75.     virtual void    x_AddFLTKItem(const string& path, ulong shortcut, 
  76.                                   const TCmdID* cmd, int flags) = 0;
  77. protected:
  78.     CCommandTarget* m_CmdTarget; /// root command target
  79. };
  80. ////////////////////////////////////////////////////////////////////////////////
  81. /// class CMenuBar - "extended" Fl_Menu_Bar.
  82. class NCBI_GUIWIDGETS_FL_EXPORT CMenuBar :  public Fl_Menu_Bar,
  83.                                             public CMenuBase
  84. {
  85. public:
  86.     CMenuBar(int x, int y, int w, int h, const char *label = 0);
  87.         
  88.     virtual void    SetItems(const SMenuItemRec* items);
  89.     virtual void    SetItems(CMenuItem* rootitem);
  90. protected:    
  91.     /// CMenuBase overridable
  92.     virtual void    x_AddFLTKItem(const string& path, ulong shortcut, 
  93.                                   const TCmdID* cmd, int flags);
  94. };
  95. ////////////////////////////////////////////////////////////////////////////////
  96. /// class CPopupMenu - "extended" Fl_Menu_Button.
  97. class NCBI_GUIWIDGETS_FL_EXPORT CPopupMenu :  public Fl_Menu_Button,
  98.                                               public CMenuBase
  99. {
  100. public:
  101.     CPopupMenu(int x, int y, int w, int h, const char *label = 0);
  102.         
  103.     virtual void    SetItems(const SMenuItemRec* items);
  104.     virtual void    SetItems(CMenuItem* rootitem);
  105. protected:    
  106.     void x_Init();
  107.     /// CMenuBase overridable
  108.     virtual void    x_AddFLTKItem(const string& path, ulong shortcut, 
  109.                                   const TCmdID* cmd, int flags);
  110. };
  111. END_NCBI_SCOPE
  112. /* @} */
  113. /*
  114.  * ===========================================================================
  115.  * $Log: menu.hpp,v $
  116.  * Revision 1000.1  2004/06/01 19:52:19  gouriano
  117.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  118.  *
  119.  * Revision 1.4  2004/05/11 18:55:14  dicuccio
  120.  * Added doxygen modules info
  121.  *
  122.  * Revision 1.3  2004/04/22 16:49:29  yazhuk
  123.  * Moved CMenuItem to menu_item.hpp
  124.  *
  125.  * Revision 1.2  2004/02/04 19:59:47  yazhuk
  126.  * Moved CMenuBar constructor to cpp file
  127.  *
  128.  * Revision 1.1  2004/01/15 20:07:38  yazhuk
  129.  * Initial revision
  130.  *
  131.  * ===========================================================================
  132.  */
  133. #endif  // GUI_WIDGETS_FL___MENU__HPP