From d7550fe1c173f1be296f1ce7991ad6d70ed90ceb Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Tue, 8 Aug 2017 19:40:23 -0300 Subject: Settings form implementation start --- Project/GeneralPropertiesForm.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Project/GeneralPropertiesForm.h (limited to 'Project/GeneralPropertiesForm.h') diff --git a/Project/GeneralPropertiesForm.h b/Project/GeneralPropertiesForm.h new file mode 100644 index 0000000..585eb4d --- /dev/null +++ b/Project/GeneralPropertiesForm.h @@ -0,0 +1,15 @@ +#ifndef GENERALPROPERTIESFORM_H +#define GENERALPROPERTIESFORM_H +#include "PropertiesForm.h" + +class GeneralPropertiesForm : public GeneralPropertiesFormBase +{ +public: + GeneralPropertiesForm(wxWindow* parent); + virtual ~GeneralPropertiesForm(); +protected: + virtual void OnButtonCancelClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); } + virtual void OnButtonOKClick(wxCommandEvent& event); + virtual bool ValidateData(); +}; +#endif // GENERALPROPERTIESFORM_H -- cgit