mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-30 01:37:02 +00: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;
|
|
}; |