diff options
| author | Lioncash <mathew1800@gmail.com> | 2016-12-21 17:19:12 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2016-12-21 17:19:21 -0500 |
| commit | 8309d0dade37684076ad530bfbca5d4ffc6d1f4d (patch) | |
| tree | c7eb1050f664df4aad518c55b6648807b0cef2db /src/citra_qt/debugger/graphics/graphics_breakpoints.h | |
| parent | 29564d73bd078eac3e241ce67ffa78fb9aac3358 (diff) | |
citra-qt: Move graphics debugging code into its own folder
Keeps all graphics debugging stuff from cluttering up the root debugger
folder
Diffstat (limited to 'src/citra_qt/debugger/graphics/graphics_breakpoints.h')
| -rw-r--r-- | src/citra_qt/debugger/graphics/graphics_breakpoints.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/citra_qt/debugger/graphics/graphics_breakpoints.h b/src/citra_qt/debugger/graphics/graphics_breakpoints.h new file mode 100644 index 000000000..bec72a2db --- /dev/null +++ b/src/citra_qt/debugger/graphics/graphics_breakpoints.h @@ -0,0 +1,46 @@ +// Copyright 2014 Citra Emulator Project +// Licensed under GPLv2 or any later version +// 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; + +class BreakPointModel; + +class GraphicsBreakPointsWidget : public QDockWidget, Pica::DebugContext::BreakPointObserver { + Q_OBJECT + + using Event = Pica::DebugContext::Event; + +public: + explicit 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); + void OnItemDoubleClicked(const QModelIndex&); + 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; +}; |
