UI/debugger changes
This commit is contained in:
parent
958bca606e
commit
e5f09b8be6
19 changed files with 285 additions and 233 deletions
19
src/citra_qt/debugger/callstack.hxx
Normal file
19
src/citra_qt/debugger/callstack.hxx
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <QDockWidget>
|
||||
#include "../ui_callstack.h"
|
||||
|
||||
class QStandardItemModel;
|
||||
|
||||
class CallstackWidget : public QDockWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
CallstackWidget(QWidget* parent = 0);
|
||||
|
||||
public slots:
|
||||
void OnCPUStepped();
|
||||
|
||||
private:
|
||||
Ui::CallStack ui;
|
||||
QStandardItemModel* callstack_model;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue