Files
eden/src/citra_qt/debugger/callstack.h
T

27 lines
568 B
C++
Raw Normal View History

2015-01-04 09:36:57 -08:00
// Copyright 2014 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
2014-03-31 22:26:50 -04:00
#include <QDockWidget>
#include "ui_callstack.h"
2014-03-31 22:26:50 -04:00
class QStandardItemModel;
2016-09-18 09:38:01 +09:00
class CallstackWidget : public QDockWidget {
2014-03-31 22:26:50 -04:00
Q_OBJECT
public:
CallstackWidget(QWidget* parent = nullptr);
2014-03-31 22:26:50 -04:00
public slots:
void OnDebugModeEntered();
void OnDebugModeLeft();
2014-03-31 22:26:50 -04:00
private:
Ui::CallStack ui;
QStandardItemModel* callstack_model;
/// Clears the callstack widget while keeping the column widths the same
void Clear();
2014-03-31 22:26:50 -04:00
};