blob: d6b0a0897f857fab221f84e7624a5f4e0c0f77ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef SIMULATIONSSETTINGSFORM_H
#define SIMULATIONSSETTINGSFORM_H
#include "PropertiesForm.h"
class PropertiesData;
class SimulationsSettingsForm : public SimulationsSettingsFormBase
{
public:
SimulationsSettingsForm(wxWindow* parent, PropertiesData* properties);
virtual ~SimulationsSettingsForm();
protected:
virtual void OnPFMethodChoiceSelected(wxCommandEvent& event);
virtual void OnButtonCancelClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); }
virtual void OnButtonOKClick(wxCommandEvent& event);
virtual bool ValidateData();
PropertiesData* m_properties;
};
#endif // SIMULATIONSSETTINGSFORM_H
|