aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui.h')
-rw-r--r--src/gui.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/gui.h b/src/gui.h
index 4d197c5..54477ca 100644
--- a/src/gui.h
+++ b/src/gui.h
@@ -23,11 +23,11 @@
#include <wx/image.h>
#include <wx/icon.h>
#include <wx/statbmp.h>
+#include <wx/stattext.h>
#include <wx/richtext/richtextctrl.h>
#include <wx/panel.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>
@@ -104,10 +104,13 @@ class DialogAbout : public wxDialog
protected:
wxNotebook* m_notebook3;
wxPanel* info_panel;
+ wxPanel* credits_panel;
public:
- wxStaticBitmap* ochess_icon;
+ wxStaticBitmap* app_icon;
+ wxStaticText* appname_text;
wxRichTextCtrl* info_richtext;
+ wxRichTextCtrl* credits_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 );