From d7550fe1c173f1be296f1ce7991ad6d70ed90ceb Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Tue, 8 Aug 2017 19:40:23 -0300 Subject: Settings form implementation start --- Project/GeneralPropertiesForm.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Project/GeneralPropertiesForm.cpp (limited to 'Project/GeneralPropertiesForm.cpp') diff --git a/Project/GeneralPropertiesForm.cpp b/Project/GeneralPropertiesForm.cpp new file mode 100644 index 0000000..169c20c --- /dev/null +++ b/Project/GeneralPropertiesForm.cpp @@ -0,0 +1,20 @@ +#include "GeneralPropertiesForm.h" + +GeneralPropertiesForm::GeneralPropertiesForm(wxWindow* parent) + : GeneralPropertiesFormBase(parent) +{ +} + +GeneralPropertiesForm::~GeneralPropertiesForm() +{ +} + +void GeneralPropertiesForm::OnButtonOKClick(wxCommandEvent& event) +{ + if(ValidateData()) EndModal(wxID_OK); +} + +bool GeneralPropertiesForm::ValidateData() +{ + return true; +} -- cgit