mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-22 12:56:11 +00:00
35 lines
574 B
C++
35 lines
574 B
C++
#ifndef RELOCSWIDGET_H
|
|
#define RELOCSWIDGET_H
|
|
|
|
#include <memory>
|
|
|
|
#include "CutterDockWidget.h"
|
|
|
|
class MainWindow;
|
|
class QTreeWidgetItem;
|
|
|
|
namespace Ui {
|
|
class RelocsWidget;
|
|
}
|
|
|
|
class RelocsWidget : public CutterDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RelocsWidget(MainWindow *main, QAction *action = nullptr);
|
|
~RelocsWidget();
|
|
|
|
private slots:
|
|
void on_relocsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
void fillTreeWidget();
|
|
|
|
private:
|
|
std::unique_ptr<Ui::RelocsWidget> ui;
|
|
|
|
void setScrollMode();
|
|
};
|
|
|
|
#endif // RELOCSWIDGET_H
|