rpcsx/rpcs3/rpcs3qt/breakpoint_list.h
2018-04-21 22:21:51 +04:00

37 lines
848 B
C++

#pragma once
#include "stdafx.h"
#include "Emu/CPU/CPUDisAsm.h"
#include "breakpoint_handler.h"
#include <QListWidget>
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);
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;
};