summaryrefslogtreecommitdiffstats
path: root/Project/AboutForm.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/AboutForm.h')
-rw-r--r--Project/AboutForm.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/Project/AboutForm.h b/Project/AboutForm.h
new file mode 100644
index 0000000..ba64324
--- /dev/null
+++ b/Project/AboutForm.h
@@ -0,0 +1,17 @@
+#ifndef ABOUTFORM_H
+#define ABOUTFORM_H
+#include "PropertiesForm.h"
+
+#include <wx/textfile.h>
+
+class AboutForm : public AboutFormBase
+{
+ public:
+ AboutForm(wxWindow* parent);
+ virtual ~AboutForm();
+ virtual void Init();
+
+ protected:
+ virtual void OnOKButtonClick(wxCommandEvent& event) { EndModal(wxID_OK); };
+};
+#endif // ABOUTFORM_H