play with some tint2conf code
git-svn-id: http://tint2.googlecode.com/svn/trunk@146 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
33
src/tint2conf/mainwin.h
Normal file
33
src/tint2conf/mainwin.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#ifndef TINT2CONF_MAINWIN_H
|
||||
#define TINT2CONF_MAINWIN_H
|
||||
|
||||
#include <gtkmm.h>
|
||||
#include "thumbview.h"
|
||||
|
||||
#define VERSION "0.2"
|
||||
|
||||
|
||||
class MainWin : public Gtk::Window
|
||||
{
|
||||
public:
|
||||
MainWin();
|
||||
virtual ~MainWin();
|
||||
|
||||
Thumbview view;
|
||||
protected:
|
||||
//Signal handlers:
|
||||
void on_menu_file_new_generic();
|
||||
void on_menu_file_quit();
|
||||
void on_menu_others();
|
||||
void on_menu_about();
|
||||
|
||||
//Child widgets:
|
||||
Gtk::VBox m_Box;
|
||||
|
||||
Glib::RefPtr<Gtk::UIManager> m_refUIManager;
|
||||
Glib::RefPtr<Gtk::ActionGroup> m_refActionGroup;
|
||||
Glib::RefPtr<Gtk::RadioAction> m_refChoiceOne, m_refChoiceTwo;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user