diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-09-14 21:06:39 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-09-14 21:06:39 -0300 |
commit | 8bbb3f407cccdf0783c49025825a0f0b9ebe3480 (patch) | |
tree | 61649f4712ea3ddb360d37400bec3307a77f121e /Project/PropertiesForm.h | |
parent | 16e4477e587ffbaccc67cdb2d44c6b61ac87a315 (diff) | |
download | PSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.tar.gz PSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.tar.xz PSP.git-8bbb3f407cccdf0783c49025825a0f0b9ebe3480.zip |
About project implemented
Diffstat (limited to 'Project/PropertiesForm.h')
-rw-r--r-- | Project/PropertiesForm.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/Project/PropertiesForm.h b/Project/PropertiesForm.h index c3704fb..eadd609 100644 --- a/Project/PropertiesForm.h +++ b/Project/PropertiesForm.h @@ -24,6 +24,10 @@ #include <wx/textctrl.h> #include <wx/statbox.h> #include <wx/checkbox.h> +#include <wx/statbmp.h> +#include <wx/grid.h> +#include <wx/richtext/richtextctrl.h> +#include <wx/hyperlink.h> #if wxVERSION_NUMBER >= 2900 #include <wx/persist.h> #include <wx/persist/toplevel.h> @@ -161,4 +165,41 @@ public: virtual ~SimulationsSettingsFormBase(); }; + +class AboutFormBase : public wxDialog +{ +protected: + wxNotebook* m_notebook; + wxPanel* m_panelLogo; + wxStaticBitmap* m_staticBitmapLogo; + wxPanel* m_panelCredits; + wxGrid* m_gridCredits; + wxPanel* m_panelLicense; + wxRichTextCtrl* m_richTextCtrlLicense; + wxStaticText* m_staticTextVersionLabel; + wxStaticText* m_staticTextVersion; + wxStaticText* m_staticTextHome; + wxHyperlinkCtrl* m_hyperLinkPSP; + wxButton* m_buttonOK; + +protected: + virtual void OnOKButtonClick(wxCommandEvent& event) { event.Skip(); } + +public: + wxStaticBitmap* GetStaticBitmapLogo() { return m_staticBitmapLogo; } + wxPanel* GetPanelLogo() { return m_panelLogo; } + wxGrid* GetGridCredits() { return m_gridCredits; } + wxPanel* GetPanelCredits() { return m_panelCredits; } + wxRichTextCtrl* GetRichTextCtrlLicense() { return m_richTextCtrlLicense; } + wxPanel* GetPanelLicense() { return m_panelLicense; } + wxNotebook* GetNotebook() { return m_notebook; } + wxStaticText* GetStaticTextVersionLabel() { return m_staticTextVersionLabel; } + wxStaticText* GetStaticTextVersion() { return m_staticTextVersion; } + wxStaticText* GetStaticTextHome() { return m_staticTextHome; } + wxHyperlinkCtrl* GetHyperLinkPSP() { return m_hyperLinkPSP; } + wxButton* GetButtonOK() { return m_buttonOK; } + AboutFormBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("About PSP-UFU"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_DIALOG_STYLE); + virtual ~AboutFormBase(); +}; + #endif |