From ee27459748acee31a307604f6395ea31b4bf53ce Mon Sep 17 00:00:00 2001 From: Thales1330 Date: Thu, 29 Sep 2016 17:01:02 -0300 Subject: Line form under implementation --- Project/LineForm.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Project/LineForm.h (limited to 'Project/LineForm.h') diff --git a/Project/LineForm.h b/Project/LineForm.h new file mode 100644 index 0000000..360ff1d --- /dev/null +++ b/Project/LineForm.h @@ -0,0 +1,23 @@ +#ifndef LINEFORM_H +#define LINEFORM_H +#include "ElementForm.h" + +class Line; + +class LineForm : public LineFormBase +{ +public: + LineForm(wxWindow* parent, Line* line); + virtual ~LineForm(); +protected: + virtual void OnCancelButtonClick(wxCommandEvent& event); + virtual void OnOKButtonClick(wxCommandEvent& event); + virtual void OnStabilityButtonClick(wxCommandEvent& event); + virtual void ReplaceStaticTextLabelChar(wxStaticText* staticText, wchar_t newChar); + virtual bool ValidateData(); + + wxWindow* m_parent; + Line* m_line; + +}; +#endif // LINEFORM_H -- cgit