aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/citra_qt/callstack.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/callstack.hxx')
-rw-r--r--src/citra_qt/callstack.hxx20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/citra_qt/callstack.hxx b/src/citra_qt/callstack.hxx
new file mode 100644
index 00000000..60b24f23
--- /dev/null
+++ b/src/citra_qt/callstack.hxx
@@ -0,0 +1,20 @@
+#include <QDockWidget>
+#include "ui_callstack.h"
+#include "platform.h"
+
+class QStandardItemModel;
+
+class GCallstackView : public QDockWidget
+{
+ Q_OBJECT
+
+public:
+ GCallstackView(QWidget* parent = 0);
+
+public slots:
+ void OnCPUStepped();
+
+private:
+ Ui::CallStack ui;
+ QStandardItemModel* callstack_model;
+};