Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
InputField.h
1#ifndef TEST_INPUTFIELD_H
2#define TEST_INPUTFIELD_H
3
4#include <wx/wx.h>
5
6
7class InputField : public wxPanel {
8
9public:
10 InputField(wxWindow* parent, const wxString& labelText, int labelWidth, const wxString& fieldValue, int fieldWidth);
11 wxString getValue();
12 void SetLabelTextColour(const wxColour& colour);
13
14private:
15 wxStaticText* _label;
16 wxTextCtrl* _field;
17};
18
19
20#endif //TEST_INPUTFIELD_H
Definition InputField.h:7