mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-23 05:16:11 +00:00
e8b024042b
* Added backtrace info * Make stack printing arch agnostic * Split into registers/stack/backtrace widgets * hide table idxs in stacktable * backtrace table header has register name instead of generic PC/SP * imports cleanup * add sorting to stack table * add Qheaderview import * Added button to set registers * added color to recently changed register * reorganized Windows tab and added stacking to debug widgets
33 lines
607 B
C++
33 lines
607 B
C++
#pragma once
|
|
|
|
#include <QJsonObject>
|
|
#include <memory>
|
|
#include <QStandardItem>
|
|
#include <QTableView>
|
|
|
|
#include "Cutter.h"
|
|
#include "CutterDockWidget.h"
|
|
|
|
class MainWindow;
|
|
|
|
namespace Ui {
|
|
class StackWidget;
|
|
}
|
|
|
|
class StackWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit StackWidget(MainWindow *main, QAction *action = nullptr);
|
|
~StackWidget();
|
|
|
|
private slots:
|
|
void updateContents();
|
|
void setStackGrid();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::StackWidget> ui;
|
|
QTableView *viewStack = new QTableView;
|
|
QStandardItemModel *modelStack = new QStandardItemModel(1, 3, this);
|
|
}; |