diff options
Diffstat (limited to 'Project/GeneralPropertiesForm.h')
-rw-r--r-- | Project/GeneralPropertiesForm.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Project/GeneralPropertiesForm.h b/Project/GeneralPropertiesForm.h new file mode 100644 index 0000000..77bf4d2 --- /dev/null +++ b/Project/GeneralPropertiesForm.h @@ -0,0 +1,24 @@ +#ifndef GENERALPROPERTIESFORM_H +#define GENERALPROPERTIESFORM_H + +#include "PropertiesForm.h" + +#include <wx/textfile.h> +#include <wx/msgdlg.h> + +class PropertiesData; + +class GeneralPropertiesForm : public GeneralPropertiesFormBase +{ +public: + GeneralPropertiesForm(wxWindow* parent, PropertiesData* properties); + virtual ~GeneralPropertiesForm(); + +protected: + virtual void OnButtonCancelClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); } + virtual void OnButtonOKClick(wxCommandEvent& event); + virtual bool ValidateData(); + + PropertiesData* m_properties = NULL; +}; +#endif // GENERALPROPERTIESFORM_H |