diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-06-12 19:07:29 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-06-12 19:07:29 -0400 |
commit | ba34f22f9ca604cadf8a7fd88af0f22e52ef58e9 (patch) | |
tree | 132cc28f3225787cddf3c7e499e3aa0b84ddcfb9 | |
parent | 876bbbec3a6bf3d02d4ab7020cc73eaa6e247e9e (diff) |
button input
-rw-r--r-- | gui/wxmain.hpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp index b5122f6..793fbc1 100644 --- a/gui/wxmain.hpp +++ b/gui/wxmain.hpp @@ -1,15 +1,29 @@ #ifndef WXMAIN_HPP_ #define WXMAIN_HPP_ +#include <wx/button.h> #include <wx/frame.h> #include <wx/stattext.h> class MainFrame : public wxFrame { + enum Id { + Welcome = 1, + Single + }; + public: MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 480)) { - auto lTitle = new wxStaticText(this, wxID_ANY, "Welcome to the GUI."); + new wxStaticText(this, Id::Welcome, "Welcome to the GUI.", wxPoint(20, 20)); + new wxButton(this, Id::Single, "Single", wxPoint(20, 60)); + + Bind(wxEVT_BUTTON, &MainFrame::onSinglePressed, this, Id::Single); + } + + void onSinglePressed(wxCommandEvent& ce) { + auto button = dynamic_cast<wxButton *>(ce.GetEventObject()); + button->SetLabel("Nice"); } }; |