mirror of
https://github.com/rizinorg/cutter.git
synced 2025-01-22 20:38:50 +00:00
ab27e09b91
Sometimes it is not necessary to include the whole Cutter.h file Hence, it's been splitted so you can include only what you require E.g. #include "core/CutterCommon.h" to have access to the common types
35 lines
711 B
C++
35 lines
711 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;
|
|
RefreshDeferrer *refreshDeferrer;
|
|
}; |