Files
tint2/src/tint2conf/mainwin.h
lorthiois@bbsoft.fr 3926a0026c play with some tint2conf code
git-svn-id: http://tint2.googlecode.com/svn/trunk@146 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
2009-07-14 16:52:19 +00:00

34 lines
581 B
C++

#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