diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-07 18:39:16 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-07 18:39:16 -0300 |
commit | 3596d19f6d804a9610545ce39f07e421d1dc716e (patch) | |
tree | fb7255b75e5d0cb8914b664979e762b0e24e80e9 /Project/SwitchingForm.h | |
parent | 0ad4701a05a1fb267ee58c3da89d897eba1d91ee (diff) | |
download | PSP.git-3596d19f6d804a9610545ce39f07e421d1dc716e.tar.gz PSP.git-3596d19f6d804a9610545ce39f07e421d1dc716e.tar.xz PSP.git-3596d19f6d804a9610545ce39f07e421d1dc716e.zip |
Switching form under implementation
Diffstat (limited to 'Project/SwitchingForm.h')
-rw-r--r-- | Project/SwitchingForm.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project/SwitchingForm.h b/Project/SwitchingForm.h new file mode 100644 index 0000000..b705da2 --- /dev/null +++ b/Project/SwitchingForm.h @@ -0,0 +1,20 @@ +#ifndef SWITCHINGFORM_H +#define SWITCHINGFORM_H +#include "ElementForm.h" + +class SwitchingForm : public SwitchingFormBase +{ +public: + SwitchingForm(wxWindow* parent); + virtual ~SwitchingForm(); +protected: + virtual void OnChangeProperties(wxPropertyGridEvent& event); + virtual void OnSelectItem(wxListEvent& event); + virtual void OnCancelButtonClick(wxCommandEvent& event); + virtual void OnInsertButtonClick(wxCommandEvent& event); + virtual void OnOKButtonClick(wxCommandEvent& event); + virtual void OnRemoveButtonClick(wxCommandEvent& event); + + int m_maxID = 0; +}; +#endif // SWITCHINGFORM_H |