diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-27 17:26:24 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-10-27 17:26:24 -0200 |
commit | 02c5a1d22a078c132aca40ea14b95800dd8257e9 (patch) | |
tree | 39f576cc3c66931c3448b85833a5f048a40b7802 /Project/IndMotorForm.h | |
parent | 0e3a45462bf8ce31be988679fd380baeecfb1b95 (diff) | |
download | PSP.git-02c5a1d22a078c132aca40ea14b95800dd8257e9.tar.gz PSP.git-02c5a1d22a078c132aca40ea14b95800dd8257e9.tar.xz PSP.git-02c5a1d22a078c132aca40ea14b95800dd8257e9.zip |
All elements forms implemented
Diffstat (limited to 'Project/IndMotorForm.h')
-rw-r--r-- | Project/IndMotorForm.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Project/IndMotorForm.h b/Project/IndMotorForm.h new file mode 100644 index 0000000..90a680c --- /dev/null +++ b/Project/IndMotorForm.h @@ -0,0 +1,22 @@ +#ifndef INDMOTORFORM_H +#define INDMOTORFORM_H +#include "ElementForm.h" + +class IndMotor; + +class IndMotorForm : public IndMotorFormBase +{ + public: + IndMotorForm(wxWindow* parent, IndMotor* indMotor); + virtual ~IndMotorForm(); + virtual bool ValidateData(); + + protected: + virtual void OnCancelButtonClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); }; + virtual void OnOKButtonClick(wxCommandEvent& event); + virtual void OnStabilityButtonClick(wxCommandEvent& event); + + wxWindow* m_parent; + IndMotor* m_indMotor; +}; +#endif // INDMOTORFORM_H |