MainWindow.hpp
changeset 0 97dd4d2c08b6
child 1 5b075fa903ae
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MainWindow.hpp	Wed Apr 02 21:47:47 2008 +0200
@@ -0,0 +1,23 @@
+#include <wx/wx.h>
+
+class PageList;
+
+class MainWindow : public wxFrame
+{
+public:
+    MainWindow();
+
+
+private:
+    void create_menus();
+
+    void on_open(wxCommandEvent &event);
+    void on_quit(wxCommandEvent &event);
+
+    wxMenuBar *_menubar;
+    wxMenu *_menufile;
+
+    PageList *_pagelist;
+
+    DECLARE_EVENT_TABLE()
+};