mirror of
https://git.zaroz.cloud/nintendo-back-up/cemu/Cemu.git
synced 2026-02-14 12:10:52 -08:00
26 lines
No EOL
645 B
C++
26 lines
No EOL
645 B
C++
#pragma once
|
|
#include "gui/wxcomponents/checkedlistctrl.h"
|
|
|
|
class DebuggerWindow2;
|
|
|
|
class BreakpointWindow : public wxFrame
|
|
{
|
|
public:
|
|
BreakpointWindow(DebuggerWindow2& parent, const wxPoint& main_position, const wxSize& main_size);
|
|
virtual ~BreakpointWindow();
|
|
|
|
void OnMainMove(const wxPoint& position, const wxSize& main_size);
|
|
void OnUpdateView();
|
|
void OnGameLoaded();
|
|
|
|
private:
|
|
void OnBreakpointToggled(wxListEvent& event);
|
|
void OnLeftDClick(wxMouseEvent& event);
|
|
void OnRightDown(wxMouseEvent& event);
|
|
|
|
void OnContextMenuClick(wxCommandEvent& evt);
|
|
|
|
void MemoryBreakpointDialog(bool isWrite);
|
|
|
|
wxCheckedListCtrl* m_breakpoints;
|
|
}; |