diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-06 13:26:46 -0200 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-12-06 13:26:46 -0200 |
commit | e282ec268db0d17a1d53f813c5fff9473d25e797 (patch) | |
tree | 517e01b8685248f04548513091e7040a1b36ec0b /Project/GeneratorStabForm.h | |
parent | d4efffcdedbb41596eecd0882a1cef76f6afc435 (diff) | |
parent | e266f5811403beea13c9cc5399c55db4a34fdd3c (diff) | |
download | PSP.git-e282ec268db0d17a1d53f813c5fff9473d25e797.tar.gz PSP.git-e282ec268db0d17a1d53f813c5fff9473d25e797.tar.xz PSP.git-e282ec268db0d17a1d53f813c5fff9473d25e797.zip |
Merge remote-tracking branch 'refs/remotes/origin/wip/currentState'
Diffstat (limited to 'Project/GeneratorStabForm.h')
-rw-r--r-- | Project/GeneratorStabForm.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Project/GeneratorStabForm.h b/Project/GeneratorStabForm.h new file mode 100644 index 0000000..7e31cd1 --- /dev/null +++ b/Project/GeneratorStabForm.h @@ -0,0 +1,29 @@ +#ifndef GENERATORSTABFORM_H +#define GENERATORSTABFORM_H + +#include "ElementForm.h" + +class SwitchingForm; +class SyncGenerator; + +class GeneratorStabForm : public GeneratorStabFormBase +{ +public: + GeneratorStabForm(wxWindow* parent, SyncGenerator* syncGenerator); + virtual ~GeneratorStabForm(); + +protected: + virtual void UseAVRClick(wxCommandEvent& event); + virtual void UseSGClick(wxCommandEvent& event); + virtual void OnCancelButtonClick(wxCommandEvent& event); + virtual void OnEditAVRButtonClick(wxCommandEvent& event); + virtual void OnOKButtonClick(wxCommandEvent& event); + virtual void OnSpeedGovernorButtonClick(wxCommandEvent& event); + virtual void OnSwitchingButtonClick(wxCommandEvent& event); + + virtual bool ValidateData(); + + SyncGenerator* m_syncGenerator; + wxWindow* m_parent; +}; +#endif // GENERATORSTABFORM_H |