#ifndef MAINFRAME_HPP #define MAINFRAME_HPP #include #ifndef WX_PRECOMP #include #endif #include #include constexpr unsigned int TOOLTIP_TIMER = 32767; class MainFrame: public wxFrame { public: MainFrame(const wxString& title, const wxPoint& pos, const wxSize& size); private: wxDECLARE_EVENT_TABLE(); void init_menubar(); //< Routine to intialize all top-level menu items. void init_tabpanel(); //< Routine to initialize all of the tabs. bool loaded; //< Main frame itself has finished loading. // STUB: preset editor tabs storage // STUB: Statusbar reference wxAuiNotebook* tabpanel; }; #endif // MAINFRAME_HPP