mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 23:30:02 +01:00
38 lines
869 B
C++
38 lines
869 B
C++
#pragma once
|
|
|
|
#include "stdafx.h"
|
|
|
|
#include <QListWidget>
|
|
|
|
class CPUDisAsm;
|
|
class cpu_thread;
|
|
class breakpoint_handler;
|
|
|
|
class breakpoint_list : public QListWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
breakpoint_list(QWidget* parent, breakpoint_handler* handler);
|
|
void UpdateCPUData(std::weak_ptr<cpu_thread> cpu, std::shared_ptr<CPUDisAsm> disasm);
|
|
void ClearBreakpoints();
|
|
void AddBreakpoint(u32 addr);
|
|
void RemoveBreakpoint(u32 addr);
|
|
|
|
QColor m_text_color_bp;
|
|
QColor m_color_bp;
|
|
Q_SIGNALS:
|
|
void RequestShowAddress(u32 addr, bool force = false);
|
|
public Q_SLOTS:
|
|
void HandleBreakpointRequest(u32 addr);
|
|
private Q_SLOTS:
|
|
void OnBreakpointListDoubleClicked();
|
|
void OnBreakpointListRightClicked(const QPoint &pos);
|
|
void OnBreakpointListDelete();
|
|
private:
|
|
breakpoint_handler* m_breakpoint_handler;
|
|
|
|
std::weak_ptr<cpu_thread> cpu;
|
|
std::shared_ptr<CPUDisAsm> m_disasm;
|
|
};
|