summaryrefslogtreecommitdiffstats
path: root/Project/LoadForm.h
diff options
context:
space:
mode:
authorThales1330 <thaleslima.ufu@gmail.com>2016-10-21 17:44:27 -0200
committerThales1330 <thaleslima.ufu@gmail.com>2016-10-21 17:44:27 -0200
commit58cc8933337d4681025f890af78bfddc45c212d0 (patch)
treeffe3737ba2b86aab8d4832d9a2c5533fbc63342c /Project/LoadForm.h
parentdc8e7b67eb2141cfbed0f26ac50a8d14104f391b (diff)
downloadPSP.git-58cc8933337d4681025f890af78bfddc45c212d0.tar.gz
PSP.git-58cc8933337d4681025f890af78bfddc45c212d0.tar.xz
PSP.git-58cc8933337d4681025f890af78bfddc45c212d0.zip
Load form under implementation
Diffstat (limited to 'Project/LoadForm.h')
-rw-r--r--Project/LoadForm.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Project/LoadForm.h b/Project/LoadForm.h
new file mode 100644
index 0000000..ae3f92f
--- /dev/null
+++ b/Project/LoadForm.h
@@ -0,0 +1,21 @@
+#ifndef LOADFORM_H
+#define LOADFORM_H
+#include "ElementForm.h"
+
+class Load;
+
+class LoadForm : public LoadFormBase
+{
+public:
+ LoadForm(wxWindow* parent, Load* load);
+ virtual ~LoadForm();
+
+protected:
+ virtual void OnCancelButtonClick(wxCommandEvent& event);
+ virtual void OnOnButtonClick(wxCommandEvent& event);
+ virtual void OnStabilityButtonClick(wxCommandEvent& event);
+
+ wxWindow* m_parent;
+ Load* m_load;
+};
+#endif // LOADFORM_H