aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h32
1 files changed, 27 insertions, 5 deletions
diff --git a/src/gui.h b/src/gui.h
index 0b1aef6..576b4b2 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -19,24 +19,25 @@
#include <wx/aui/auibook.h>
#include <wx/sizer.h>
#include <wx/frame.h>
-#include <wx/stattext.h>
-#include <wx/button.h>
+#include <wx/richtext/richtextctrl.h>
+#include <wx/panel.h>
#include <wx/bitmap.h>
#include <wx/image.h>
#include <wx/icon.h>
+#include <wx/notebook.h>
+#include <wx/dialog.h>
+#include <wx/stattext.h>
+#include <wx/button.h>
#include <wx/spinctrl.h>
#include <wx/listctrl.h>
-#include <wx/dialog.h>
#include <wx/listbox.h>
#include <wx/textctrl.h>
#include <wx/statline.h>
#include <wx/propgrid/propgrid.h>
#include <wx/propgrid/advprops.h>
-#include <wx/panel.h>
#include <wx/clrpicker.h>
#include <wx/checkbox.h>
#include <wx/splitter.h>
-#include <wx/notebook.h>
#include <wx/toolbar.h>
#include <wx/bmpbuttn.h>
#include <wx/combobox.h>
@@ -80,6 +81,7 @@ class MainFrame : public wxFrame
wxMenu* menu_game;
wxMenu* menu_db;
wxMenu* menu_engine;
+ wxMenu* menu_help;
wxStatusBar* status_bar;
public:
@@ -92,6 +94,26 @@ class MainFrame : public wxFrame
};
///////////////////////////////////////////////////////////////////////////////
+/// Class DialogAbout
+///////////////////////////////////////////////////////////////////////////////
+class DialogAbout : public wxDialog
+{
+ private:
+
+ protected:
+ wxNotebook* m_notebook3;
+ wxPanel* info_panel;
+
+ public:
+ wxRichTextCtrl* info_richtext;
+
+ DialogAbout( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 600,400 ), long style = wxDEFAULT_DIALOG_STYLE );
+
+ ~DialogAbout();
+
+};
+
+///////////////////////////////////////////////////////////////////////////////
/// Class DialogLiveEngine
///////////////////////////////////////////////////////////////////////////////
class DialogLiveEngine : public wxDialog