blob: 40ef65dda7c3a6897e1c45ea2fd21b5e3f3fc743 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef GENERALPROPERTIESFORM_H
#define GENERALPROPERTIESFORM_H
#include "PropertiesForm.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
|