diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-06 17:12:09 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2017-04-06 17:12:09 -0300 |
commit | ed36957d2d06ce9484e39be699bc41b521bdb090 (patch) | |
tree | b2e8edcd03acc660a6f504391703cfcdd70add40 /Project/ElementForm.h | |
parent | 38b3e2decff95f5e29ffb6025ee899d108d22f04 (diff) | |
download | PSP.git-ed36957d2d06ce9484e39be699bc41b521bdb090.tar.gz PSP.git-ed36957d2d06ce9484e39be699bc41b521bdb090.tar.xz PSP.git-ed36957d2d06ce9484e39be699bc41b521bdb090.zip |
Io form under implementation
Diffstat (limited to 'Project/ElementForm.h')
-rw-r--r-- | Project/ElementForm.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Project/ElementForm.h b/Project/ElementForm.h index a47dfb7..2d07908 100644 --- a/Project/ElementForm.h +++ b/Project/ElementForm.h @@ -971,4 +971,36 @@ public: virtual ~GainFormBase(); }; + +class IOControlFormBase : public wxDialog +{ +protected: + wxNotebook* m_notebook; + wxPanel* m_panelGeneral; + wxCheckBox* m_checkBoxInput; + wxChoice* m_choiceInput; + wxCheckBox* m_checkBoxOutput; + wxChoice* m_choiceOutput; + wxButton* m_buttonOK; + wxButton* m_ButtonCancel; + +protected: + virtual void OnInputChecked(wxCommandEvent& event) { event.Skip(); } + virtual void OnOutputChecked(wxCommandEvent& event) { event.Skip(); } + virtual void OnOKButtonClick(wxCommandEvent& event) { event.Skip(); } + virtual void OnCancelButtonClick(wxCommandEvent& event) { event.Skip(); } + +public: + wxCheckBox* GetCheckBoxInput() { return m_checkBoxInput; } + wxChoice* GetChoiceInput() { return m_choiceInput; } + wxCheckBox* GetCheckBoxOutput() { return m_checkBoxOutput; } + wxChoice* GetChoiceOutput() { return m_choiceOutput; } + wxPanel* GetPanelGeneral() { return m_panelGeneral; } + wxNotebook* GetNotebook() { return m_notebook; } + wxButton* GetButtonOK() { return m_buttonOK; } + wxButton* GetButtonCancel() { return m_ButtonCancel; } + IOControlFormBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Input / Output"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_DIALOG_STYLE); + virtual ~IOControlFormBase(); +}; + #endif |