mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
25 lines
327 B
C
25 lines
327 B
C
|
|
#pragma once
|
||
|
|
#include "Emu/ConLog.h"
|
||
|
|
|
||
|
|
|
||
|
|
class LogFrame
|
||
|
|
: public wxPanel
|
||
|
|
, public ThreadBase
|
||
|
|
{
|
||
|
|
wxListView& m_log;
|
||
|
|
|
||
|
|
public:
|
||
|
|
LogFrame(wxWindow* parent);
|
||
|
|
~LogFrame();
|
||
|
|
|
||
|
|
bool Close(bool force = false);
|
||
|
|
|
||
|
|
private:
|
||
|
|
virtual void Task();
|
||
|
|
|
||
|
|
void OnQuit(wxCloseEvent& event);
|
||
|
|
|
||
|
|
DECLARE_EVENT_TABLE();
|
||
|
|
};
|
||
|
|
|
||
|
|
extern LogFrame* ConLogFrame;
|