blob: 585eb4d4b19237459fdefaa7ea904c2f7005e74c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
|