diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2023-02-02 10:28:12 +0100 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2023-02-02 10:28:12 +0100 |
| commit | 3b9f2cfdbcf8653450c06a000e80958190edacf4 (patch) | |
| tree | 7f7a393dd41a40cf07f6c4dd41a4d72fd71a83a2 /src/gui.h | |
| parent | 36bdc90b57051d2a9985bc0965062885b22e08ea (diff) | |
Improve about dialogv0.0.1
Diffstat (limited to 'src/gui.h')
| -rw-r--r-- | src/gui.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 ); |
