GnuCashew ~ GnuCash Enabled Web
GCW
ToolBar.h
Go to the documentation of this file.
1 #line 2 "src/Gui/ToolBar.h"
2 
3 #ifndef __GUI_TOOLBAR_H___
4 #define __GUI_TOOLBAR_H___
5 
6 #include <Wt/WContainerWidget.h>
7 #include <Wt/WNavigationBar.h>
8 #include <Wt/WToolBar.h>
9 
10 #include "CentralWidget.h"
11 #include "ToolBar.h"
12 
13 namespace GCW {
14  namespace Gui {
15 
16 /*!
17 ** \brief Main Tool Bar
18 **
19 ** This widget acts as the 'tool bar' for the site. The toolBar
20 ** is a container widget with a bunch of buttons that are context
21 ** sensitive. Every time a different view is opened, the tool
22 ** bar in the main window updates to reflect buttons that are
23 ** context appropriate for that particular view.
24 **
25 **
26 */
27 class ToolBar
28 : public Wt::WContainerWidget
29 {
30  public:
31 
32 };
33 
34  } // endnamespace Gui {
35 } // endnamespace GCW {
36 
37 #endif // #ifndef __GUI_TOOLBAR_H___
38 
39 
40 
Main Tool Bar.
Definition: ToolBar.h:29
Definition: App.h:17