]> Dogcows Code - chaz/tint2/blob - src/tint2conf/mainwin.h
play with some tint2conf code
[chaz/tint2] / src / tint2conf / mainwin.h
1 #ifndef TINT2CONF_MAINWIN_H
2 #define TINT2CONF_MAINWIN_H
3
4 #include <gtkmm.h>
5 #include "thumbview.h"
6
7 #define VERSION "0.2"
8
9
10 class MainWin : public Gtk::Window
11 {
12 public:
13 MainWin();
14 virtual ~MainWin();
15
16 Thumbview view;
17 protected:
18 //Signal handlers:
19 void on_menu_file_new_generic();
20 void on_menu_file_quit();
21 void on_menu_others();
22 void on_menu_about();
23
24 //Child widgets:
25 Gtk::VBox m_Box;
26
27 Glib::RefPtr<Gtk::UIManager> m_refUIManager;
28 Glib::RefPtr<Gtk::ActionGroup> m_refActionGroup;
29 Glib::RefPtr<Gtk::RadioAction> m_refChoiceOne, m_refChoiceTwo;
30 };
31
32 #endif
33
This page took 0.035029 seconds and 4 git commands to generate.