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:
lorthiois@bbsoft.fr
2009-07-14 16:52:19 +00:00
parent b025cacc88
commit 3926a0026c
6 changed files with 1033 additions and 0 deletions

33
src/tint2conf/mainwin.h Normal file
View 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