diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2020-06-12 18:49:09 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2020-06-12 18:49:09 -0400 |
commit | 876bbbec3a6bf3d02d4ab7020cc73eaa6e247e9e (patch) | |
tree | db35b72e70f2f97e5448613f51f2f4de692a75a6 /gui/wxmain.hpp | |
parent | 5233ad146e408d05636c5e419ffe3d7806abf7a3 (diff) |
have basic wxwidgets gui working
Diffstat (limited to 'gui/wxmain.hpp')
-rw-r--r-- | gui/wxmain.hpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gui/wxmain.hpp b/gui/wxmain.hpp new file mode 100644 index 0000000..b5122f6 --- /dev/null +++ b/gui/wxmain.hpp @@ -0,0 +1,17 @@ +#ifndef WXMAIN_HPP_ +#define WXMAIN_HPP_ + +#include <wx/frame.h> +#include <wx/stattext.h> + +class MainFrame : public wxFrame +{ +public: + MainFrame() : wxFrame(nullptr, -1, "Hello world", wxPoint(50, 50), wxSize(640, 480)) + { + auto lTitle = new wxStaticText(this, wxID_ANY, "Welcome to the GUI."); + } +}; + +#endif // WXMAIN_HPP_ + |