mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-16 12:08:52 +00:00
19 lines
559 B
C++
19 lines
559 B
C++
#pragma once
|
|
#include "wxgui/components/TextList.h"
|
|
#include "Cafe/HW/Espresso/Debugger/Debugger.h"
|
|
|
|
class RegisterCtrl : public TextList
|
|
{
|
|
public:
|
|
RegisterCtrl(wxWindow* parent, const wxWindowID& id, const wxPoint& pos, const wxSize& size, long style);
|
|
void OnGameLoaded();
|
|
|
|
protected:
|
|
void OnDraw(wxDC& dc, sint32 start, sint32 count, const wxPoint& start_position) override;
|
|
void OnMouseMove(const wxPoint& position, uint32 line) override;
|
|
void OnMouseDClick(const wxPoint& position, uint32 line) override;
|
|
|
|
private:
|
|
PPCSnapshot m_prev_snapshot;
|
|
};
|