diff options
Diffstat (limited to 'src/citra_qt/debugger/callstack.h')
| -rw-r--r-- | src/citra_qt/debugger/callstack.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/citra_qt/debugger/callstack.h b/src/citra_qt/debugger/callstack.h deleted file mode 100644 index f04ab9c7e..000000000 --- a/src/citra_qt/debugger/callstack.h +++ /dev/null | |||
| @@ -1,28 +0,0 @@ | |||
| 1 | // Copyright 2014 Citra Emulator Project | ||
| 2 | // Licensed under GPLv2 or any later version | ||
| 3 | // Refer to the license.txt file included. | ||
| 4 | |||
| 5 | #pragma once | ||
| 6 | |||
| 7 | #include <QDockWidget> | ||
| 8 | #include "ui_callstack.h" | ||
| 9 | |||
| 10 | class QStandardItemModel; | ||
| 11 | |||
| 12 | class CallstackWidget : public QDockWidget { | ||
| 13 | Q_OBJECT | ||
| 14 | |||
| 15 | public: | ||
| 16 | explicit CallstackWidget(QWidget* parent = nullptr); | ||
| 17 | |||
| 18 | public slots: | ||
| 19 | void OnDebugModeEntered(); | ||
| 20 | void OnDebugModeLeft(); | ||
| 21 | |||
| 22 | private: | ||
| 23 | Ui::CallStack ui; | ||
| 24 | QStandardItemModel* callstack_model; | ||
| 25 | |||
| 26 | /// Clears the callstack widget while keeping the column widths the same | ||
| 27 | void Clear(); | ||
| 28 | }; | ||