diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2017-03-07 19:19:57 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2017-03-07 19:19:57 -0300 |
commit | 009849e49967af659354a94a16c51cab5eb8b5a4 (patch) | |
tree | 7fe0a53626b6afa503e7f5905310e477ac0fa9b4 /Project/ElementForm.h | |
parent | b3be8e8ef6338bce2106d9c161bf3c7f7f7f9244 (diff) | |
download | PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.gz PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.tar.xz PSP.git-009849e49967af659354a94a16c51cab5eb8b5a4.zip |
Sum implementation start
Diffstat (limited to 'Project/ElementForm.h')
-rw-r--r-- | Project/ElementForm.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Project/ElementForm.h b/Project/ElementForm.h index f7c9ebb..ed9d0b8 100644 --- a/Project/ElementForm.h +++ b/Project/ElementForm.h @@ -801,4 +801,28 @@ public: virtual ~TransferFunctionFormBase(); }; + +class SumFormBase : public wxDialog +{ +protected: + wxNotebook* m_notebook; + wxPanel* m_panelGeneral; + wxStaticText* m_staticTextSigns; + wxTextCtrl* m_textCtrlSigns; + wxButton* m_buttonOK; + wxButton* m_ButtonCancel; + +protected: + +public: + wxStaticText* GetStaticTextSigns() { return m_staticTextSigns; } + wxTextCtrl* GetTextCtrlSigns() { return m_textCtrlSigns; } + wxPanel* GetPanelGeneral() { return m_panelGeneral; } + wxNotebook* GetNotebook() { return m_notebook; } + wxButton* GetButtonOK() { return m_buttonOK; } + wxButton* GetButtonCancel() { return m_ButtonCancel; } + SumFormBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Sum"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_DIALOG_STYLE); + virtual ~SumFormBase(); +}; + #endif |