diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-09-15 11:54:33 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-15 11:54:33 -0300 |
commit | f51700f75fe679610ebd09c4d7b0c2bacce2fda1 (patch) | |
tree | d78b51957aed8d255cd518a35aaccbae6a8aa486 /Project/PropertiesForm.h | |
parent | a3eae453fcfda32d095cc22b8fb33fea71890d93 (diff) | |
parent | bef0df343303f0647c08663c8dce4cbaa33b93bf (diff) | |
download | PSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.tar.gz PSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.tar.xz PSP.git-f51700f75fe679610ebd09c4d7b0c2bacce2fda1.zip |
Merge pull request #36 from Thales1330/wip-eletromechanical-saturation
Wip eletromechanical saturation
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 |