aboutsummaryrefslogtreecommitdiff
path: root/src/gui.h
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2023-02-02 10:28:12 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2023-02-02 10:28:12 +0100
commit3b9f2cfdbcf8653450c06a000e80958190edacf4 (patch)
tree7f7a393dd41a40cf07f6c4dd41a4d72fd71a83a2 /src/gui.h
parent36bdc90b57051d2a9985bc0965062885b22e08ea (diff)
Improve about dialogv0.0.1
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 );