summaryrefslogtreecommitdiffstats
path: root/Project/GeneralPropertiesForm.h
blob: 77bf4d2d17dd2676bef6c1456c9e4b4f7a39e7c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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