summaryrefslogtreecommitdiffstats
path: root/Project/GainForm.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/GainForm.h')
-rw-r--r--Project/GainForm.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Project/GainForm.h b/Project/GainForm.h
new file mode 100644
index 0000000..45d6c40
--- /dev/null
+++ b/Project/GainForm.h
@@ -0,0 +1,22 @@
+#ifndef GAINFORM_H
+#define GAINFORM_H
+#include "ElementForm.h"
+
+class Gain;
+
+class GainForm : public GainFormBase
+{
+ public:
+ GainForm(wxWindow* parent, Gain* gain);
+ virtual ~GainForm();
+
+ virtual bool ValidateData();
+
+ protected:
+ virtual void OnCancelButtonClick(wxCommandEvent& event) { EndModal(wxID_CANCEL); }
+ virtual void OnOKButtonClick(wxCommandEvent& event);
+
+ wxWindow* m_parent;
+ Gain* m_gain;
+};
+#endif // GAINFORM_H