aboutsummaryrefslogtreecommitdiffstats
path: root/gui/wxapp.hpp
blob: 2133d6aabbbded9d6e7b552f2655569f80dc3794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#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_