summaryrefslogtreecommitdiffstats
path: root/Project/ConstantForm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Project/ConstantForm.cpp')
-rw-r--r--Project/ConstantForm.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/Project/ConstantForm.cpp b/Project/ConstantForm.cpp
new file mode 100644
index 0000000..c769919
--- /dev/null
+++ b/Project/ConstantForm.cpp
@@ -0,0 +1,27 @@
+#include "ConstantForm.h"
+#include "Constant.h"
+
+ConstantForm::ConstantForm(wxWindow* parent, Constant* constant) : ConstantFormBase(parent)
+{
+ m_parent = parent;
+ m_constant = constant;
+
+ m_textCtrlValue->SetValue(m_constant->StringFromDouble(m_constant->GetValue()));
+}
+
+ConstantForm::~ConstantForm() {}
+void ConstantForm::OnOKButtonClick(wxCommandEvent& event)
+{
+ if(ValidateData()) EndModal(wxID_OK);
+}
+
+bool ConstantForm::ValidateData()
+{
+ double value;
+ if(!m_constant->DoubleFromString(this, m_textCtrlValue->GetValue(), value,
+ _("Value entered incorrectly in the field \"Value\".")))
+ return false;
+
+ m_constant->SetValue(value);
+ return true;
+}