GnuCashew ~ GnuCash Enabled Web
GCW
MainMenu.h
Go to the documentation of this file.
1 #line 2 "src/Gui/MainMenu.h"
2 
3 #ifndef __GUI_MAINMENU_H___
4 #define __GUI_MAINMENU_H___
5 
6 #include <Wt/WMenu.h>
7 
8 namespace GCW {
9  namespace Gui {
10  class MainWidget;
11 
12 /*!
13 ** \brief Site Main Menu
14 **
15 ** This is the main menu for the whole site. This is the menu that has the
16 ** "File", "Edit", "View" menu item, right at the top of the page.
17 **
18 */
19 class MainMenu
20 : public Wt::WMenu
21 {
22  public:
23 
24  MainMenu( MainWidget * _mainWidget );
25 
26 }; // endclass MainMenu
27 
28  } // endnamespace Gui {
29 } // endnamespace GCW {
30 
31 #endif // #ifndef __GUI_MAINMENU_H___
32 
33 
34 
Site Main Menu.
Definition: MainMenu.h:21
MainMenu(MainWidget *_mainWidget)
Definition: MainMenu.cpp:11
Site Main Widget.
Definition: MainWidget.h:32
Definition: App.h:17