summaryrefslogtreecommitdiffstats
path: root/Project/SimulationsSettingsForm.h
diff options
context:
space:
mode:
authorThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-08-08 19:40:23 -0300
committerThales Lima Oliveira <thaleslima.ufu@gmail.com>2017-08-08 19:40:23 -0300
commitd7550fe1c173f1be296f1ce7991ad6d70ed90ceb (patch)
treecf94259d6ed480cafe9da1a73409e4039991235b /Project/SimulationsSettingsForm.h
parent49ac4c4fcedb03ef09f8faab176159f48896dc7e (diff)
downloadPSP.git-d7550fe1c173f1be296f1ce7991ad6d70ed90ceb.tar.gz
PSP.git-d7550fe1c173f1be296f1ce7991ad6d70ed90ceb.tar.xz
PSP.git-d7550fe1c173f1be296f1ce7991ad6d70ed90ceb.zip
Settings form implementation start
Diffstat (limited to 'Project/SimulationsSettingsForm.h')
-rw-r--r--Project/SimulationsSettingsForm.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/Project/SimulationsSettingsForm.h b/Project/SimulationsSettingsForm.h
new file mode 100644
index 0000000..5cbe1f2
--- /dev/null
+++ b/Project/SimulationsSettingsForm.h
@@ -0,0 +1,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