summaryrefslogtreecommitdiffstats
path: root/Project/SimulationsSettingsForm.h
blob: 5cbe1f2d17eb81944f3b064b2d6751e64fe28acc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SIMULATIONSSETTINGSFORM_H
#define SIMULATIONSSETTINGSFORM_H
#include "PropertiesForm.h"

class SimulationsSettingsForm : public SimulationsSettingsFormBase
{
public:
    SimulationsSettingsForm(wxWindow* parent);
    virtual ~SimulationsSettingsForm();
protected:
    virtual void OnButtonCancelClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); }
    virtual void OnButtonOKClick(wxCommandEvent& event);
    virtual bool ValidateData();
};
#endif // SIMULATIONSSETTINGSFORM_H