mirror of
https://github.com/cemu-project/Cemu.git
synced 2026-04-03 11:28:01 -06:00
29 lines
663 B
C++
29 lines
663 B
C++
#pragma once
|
|
|
|
#include <wx/frame.h>
|
|
|
|
class DebuggerWindow2;
|
|
class wxListEvent;
|
|
class wxListView;
|
|
|
|
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 OnContextMenuClickSelected(wxCommandEvent& evt);
|
|
|
|
wxListView* m_breakpoints;
|
|
};
|