diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-30 08:41:56 -0400 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2022-04-30 08:42:45 -0400 |
commit | e164629b3839eee0fda0be0e0a9842e78cf02f2b (patch) | |
tree | b72b58665b85a104e5b953af45f00579341b2802 /gui/wxapp.hpp | |
parent | 162dd6de8a0d883962b0b1475f47cbb08e0958d4 (diff) | |
parent | 3dd57491b1e81a9d93054eff19ca0e6c65c85b9b (diff) |
merge in branch devel
Diffstat (limited to 'gui/wxapp.hpp')
-rw-r--r-- | gui/wxapp.hpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/gui/wxapp.hpp b/gui/wxapp.hpp deleted file mode 100644 index 85bddc2..0000000 --- a/gui/wxapp.hpp +++ /dev/null @@ -1,37 +0,0 @@ -/** - * @file wxapp.hpp - * @brief Main application object for the stmdsp gui. - * - * Copyright (C) 2021 Clyne Sullivan - * - * Distributed under the GNU GPL v3 or later. You should have received a copy of - * the GNU General Public License along with this program. - * If not, see <https://www.gnu.org/licenses/>. - */ - -#ifndef WXAPP_HPP_ -#define WXAPP_HPP_ - -#include "wxmain.hpp" - -#include <wx/app.h> -#include <wx/font.h> - -class MainApp : public wxApp -{ -public: - virtual bool OnInit() final { - wxFont::AddPrivateFont("./Hack-Regular.ttf"); - - m_main_frame = new MainFrame; - m_main_frame->Show(true); - SetTopWindow(m_main_frame); - return true; - } - -private: - MainFrame *m_main_frame = nullptr; -}; - -#endif // WXAPP_HPP_ - |