Merge status panel and main window
[lsnes.git] / include / plat-wxwidgets / window_status.hpp
blob663419f96425923c1cb46a95bc2f181da63ff771
1 #ifndef _plat_wxwidgets__window_status__hpp__included__
2 #define _plat_wxwidgets__window_status__hpp__included__
4 #include <wx/string.h>
5 #include <wx/wx.h>
7 class wxwin_status : public wxFrame
9 public:
10 class panel : public wxPanel
12 public:
13 panel(wxWindow* _parent, unsigned lines);
14 void on_paint(wxPaintEvent& e);
15 bool dirty;
16 wxWindow* parent;
18 wxwin_status();
19 ~wxwin_status();
20 bool ShouldPreventAppExit() const;
21 void notify_update() throw();
22 panel* spanel;
25 #endif