lsnes/include/platform/wxwidgets/window_messages.hpp
Ilari Liusvaara 7b9b67b9ec More code file moving
Move platform files from src/plat-* to src/platform/* (and similarly
for include files).
2012-02-07 16:34:58 +02:00

36 lines
857 B
C++

#ifndef _plat_wxwidgets__window_messages__hpp__included__
#define _plat_wxwidgets__window_messages__hpp__included__
#include <wx/string.h>
#include <wx/wx.h>
class wxwin_messages : public wxFrame
{
public:
class panel : public wxPanel
{
public:
panel(wxwin_messages* _parent, unsigned lines);
void on_paint(wxPaintEvent& e);
private:
wxwin_messages* parent;
};
wxwin_messages();
~wxwin_messages();
void notify_update() throw();
bool ShouldPreventAppExit() const;
void notify_message();
void on_scroll_home(wxCommandEvent& e);
void on_scroll_pageup(wxCommandEvent& e);
void on_scroll_lineup(wxCommandEvent& e);
void on_scroll_linedown(wxCommandEvent& e);
void on_scroll_pagedown(wxCommandEvent& e);
void on_scroll_end(wxCommandEvent& e);
void on_execute(wxCommandEvent& e);
private:
wxTextCtrl* command;
panel* mpanel;
};
#endif