aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxapp.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-06-12 18:49:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-06-12 18:49:09 -0400
commit876bbbec3a6bf3d02d4ab7020cc73eaa6e247e9e (patch)
treedb35b72e70f2f97e5448613f51f2f4de692a75a6 /gui/wxapp.hpp
parent5233ad146e408d05636c5e419ffe3d7806abf7a3 (diff)
have basic wxwidgets gui working
Diffstat (limited to 'gui/wxapp.hpp')
-rw-r--r--gui/wxapp.hpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/gui/wxapp.hpp b/gui/wxapp.hpp
new file mode 100644
index 0000000..6536554
--- /dev/null
+++ b/gui/wxapp.hpp
@@ -0,0 +1,20 @@
+#ifndef WXAPP_HPP_
+#define WXAPP_HPP_
+
+#include "wxmain.hpp"
+
+#include <wx/app.h>
+
+class MainApp : public wxApp
+{
+public:
+ virtual bool OnInit() final {
+ auto mainFrame = new MainFrame;
+ mainFrame->Show(true);
+ SetTopWindow(mainFrame);
+ return true;
+ }
+};
+
+#endif // WXAPP_HPP_
+