2017-03-29 10:18:37 +00:00
|
|
|
#ifndef RELOCSWIDGET_H
|
|
|
|
#define RELOCSWIDGET_H
|
|
|
|
|
2017-10-02 09:41:28 +00:00
|
|
|
#include <memory>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
#include "CutterDockWidget.h"
|
2017-11-19 12:56:10 +00:00
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
class MainWindow;
|
2017-04-13 15:14:02 +00:00
|
|
|
class QTreeWidgetItem;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class RelocsWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
class RelocsWidget : public CutterDockWidget
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-03-16 21:46:57 +00:00
|
|
|
explicit RelocsWidget(MainWindow *main, QAction *action = nullptr);
|
2017-03-29 10:18:37 +00:00
|
|
|
~RelocsWidget();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_relocsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
void fillTreeWidget();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::RelocsWidget> ui;
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
void setScrollMode();
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RELOCSWIDGET_H
|