#ifndef _plat_wxwidgets__window_status__hpp__included__ #define _plat_wxwidgets__window_status__hpp__included__ #include #include class wxwin_status : public wxFrame { public: class panel : public wxPanel { public: panel(wxWindow* _parent, unsigned lines); bool AcceptsFocus () const; void on_paint(wxPaintEvent& e); bool dirty; wxWindow* parent; }; wxwin_status(); ~wxwin_status(); bool ShouldPreventAppExit() const; void notify_update() throw(); panel* spanel; }; #endif