summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/debugger/graphics_breakpoints_p.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-06 18:43:08 +0100
committerbunnei <bunneidev@gmail.com>2015-01-06 18:43:08 +0100
commit0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f (patch)
tree3a173741994c239c4cd41727868ef7676acb26e3 /src/citra_qt/debugger/graphics_breakpoints_p.h
parentMerge pull request #417 from kevinhartman/exclusive-tag-fix (diff)
parentcitra-qt: Renamed all .hxx headers to .h (diff)
downloadyuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.gz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.bz2
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.lz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.xz
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.tar.zst
yuzu-0bf5a0bfc47cebb64dc2740c475a631d6fb13a2f.zip
Diffstat (limited to 'src/citra_qt/debugger/graphics_breakpoints_p.h')
-rw-r--r--src/citra_qt/debugger/graphics_breakpoints_p.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics_breakpoints_p.h b/src/citra_qt/debugger/graphics_breakpoints_p.h
new file mode 100644
index 000000000..232bfc863
--- /dev/null
+++ b/src/citra_qt/debugger/graphics_breakpoints_p.h
@@ -0,0 +1,38 @@
+// Copyright 2014 Citra Emulator Project
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <memory>
+
+#include <QAbstractListModel>
+
+#include "video_core/debug_utils/debug_utils.h"
+
+class BreakPointModel : public QAbstractListModel {
+ Q_OBJECT
+
+public:
+ enum {
+ Role_IsEnabled = Qt::UserRole,
+ };
+
+ BreakPointModel(std::shared_ptr<Pica::DebugContext> context, QObject* parent);
+
+ int columnCount(const QModelIndex& parent = QModelIndex()) const override;
+ int rowCount(const QModelIndex& parent = QModelIndex()) const override;
+ QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
+ QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
+
+ bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
+
+public slots:
+ void OnBreakPointHit(Pica::DebugContext::Event event);
+ void OnResumed();
+
+private:
+ std::weak_ptr<Pica::DebugContext> context_weak;
+ bool at_breakpoint;
+ Pica::DebugContext::Event active_breakpoint;
+};