2014-10-25 18:28:24 +00:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 05:38:14 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-10-25 18:28:24 +00:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <memory>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include "video_core/debug_utils/debug_utils.h"
|
|
|
|
|
|
|
|
class QLabel;
|
|
|
|
class QPushButton;
|
|
|
|
class QTreeView;
|
|
|
|
|
2014-12-04 18:41:03 +00:00
|
|
|
class BreakPointModel;
|
2014-10-25 18:28:24 +00:00
|
|
|
|
|
|
|
class GraphicsBreakPointsWidget : public QDockWidget, Pica::DebugContext::BreakPointObserver {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
using Event = Pica::DebugContext::Event;
|
|
|
|
|
|
|
|
public:
|
|
|
|
GraphicsBreakPointsWidget(std::shared_ptr<Pica::DebugContext> debug_context,
|
|
|
|
QWidget* parent = nullptr);
|
|
|
|
|
|
|
|
void OnPicaBreakPointHit(Pica::DebugContext::Event event, void* data) override;
|
|
|
|
void OnPicaResume() override;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void OnBreakPointHit(Pica::DebugContext::Event event, void* data);
|
2015-07-23 01:42:59 +00:00
|
|
|
void OnItemDoubleClicked(const QModelIndex&);
|
2014-10-25 18:28:24 +00:00
|
|
|
void OnResumeRequested();
|
|
|
|
void OnResumed();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void Resumed();
|
|
|
|
void BreakPointHit(Pica::DebugContext::Event event, void* data);
|
|
|
|
void BreakPointsChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QLabel* status_text;
|
|
|
|
QPushButton* resume_button;
|
|
|
|
|
|
|
|
BreakPointModel* breakpoint_model;
|
|
|
|
QTreeView* breakpoint_list;
|
|
|
|
};
|