00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef MAINMENUBAR_HH
00024 #define MAINMENUBAR_HH
00025
00026 #include <gtkmm/menubar.h>
00027 #include <gtkmm/menu.h>
00028
00033 namespace RLC
00034 {
00035 class CMainWindow;
00036
00040 class CMainMenuBar : public Gtk::MenuBar
00041 {
00042 public:
00043 CMainMenuBar();
00044 ~CMainMenuBar();
00052 void setParent(RLC::CMainWindow* parent);
00053
00054
00055 protected:
00056
00057 virtual void on_menu_file_new();
00058 virtual void on_menu_file_open();
00059 virtual void on_menu_file_quit();
00060 virtual void on_menu_edit_preferences();
00061 virtual void on_menu_network_solve();
00062 virtual void on_menu_help_about();
00063
00064
00065 Gtk::Menu m_Menu_File, m_Menu_Edit, m_Menu_Network, m_Menu_Help;
00066
00071 RLC::CMainWindow* m_parent;
00072
00073 };
00074
00075 }
00076
00077
00078 #endif // MAINMENUBAR_HH
00079