diff options
author | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-29 17:01:02 -0300 |
---|---|---|
committer | Thales1330 <thaleslima.ufu@gmail.com> | 2016-09-29 17:01:02 -0300 |
commit | ee27459748acee31a307604f6395ea31b4bf53ce (patch) | |
tree | 5c238915309f45fcb4f4a09b1c998407badc31a4 /Project/LineForm.h | |
parent | a9dd78afddeb706df6652eb91f229a74fd073846 (diff) | |
download | PSP.git-ee27459748acee31a307604f6395ea31b4bf53ce.tar.gz PSP.git-ee27459748acee31a307604f6395ea31b4bf53ce.tar.xz PSP.git-ee27459748acee31a307604f6395ea31b4bf53ce.zip |
Line form under implementation
Diffstat (limited to 'Project/LineForm.h')
-rw-r--r-- | Project/LineForm.h | 23 |
1 files changed, 23 insertions, 0 deletions
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 |