mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
35 lines
717 B
C++
35 lines
717 B
C++
#pragma once
|
|
|
|
#include <QJsonObject>
|
|
#include <memory>
|
|
#include <QStandardItem>
|
|
#include <QTableView>
|
|
|
|
#include "core/Cutter.h"
|
|
#include "CutterDockWidget.h"
|
|
|
|
class MainWindow;
|
|
|
|
namespace Ui {
|
|
class BacktraceWidget;
|
|
}
|
|
|
|
class BacktraceWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit BacktraceWidget(MainWindow *main, QAction *action = nullptr);
|
|
~BacktraceWidget();
|
|
|
|
private slots:
|
|
void updateContents();
|
|
void setBacktraceGrid();
|
|
void fontsUpdatedSlot();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::BacktraceWidget> ui;
|
|
QStandardItemModel *modelBacktrace = new QStandardItemModel(1, 5, this);
|
|
QTableView *viewBacktrace = new QTableView(this);
|
|
RefreshDeferrer *refreshDeferrer;
|
|
}; |