2017-03-29 10:18:37 +00:00
|
|
|
#ifndef IMPORTSWIDGET_H
|
|
|
|
#define IMPORTSWIDGET_H
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
#include <QStyledItemDelegate>
|
2017-05-19 07:45:26 +00:00
|
|
|
#include <QTreeWidgetItem>
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
#include "CutterDockWidget.h"
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
class MainWindow;
|
2017-04-13 15:14:02 +00:00
|
|
|
class QTreeWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
namespace Ui {
|
|
|
|
class ImportsWidget;
|
2017-03-29 10:18:37 +00:00
|
|
|
}
|
|
|
|
|
2018-03-16 21:46:57 +00:00
|
|
|
class ImportsWidget : public CutterDockWidget
|
2017-03-29 10:18:37 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-03-16 21:46:57 +00:00
|
|
|
explicit ImportsWidget(MainWindow *main, QAction *action);
|
2017-03-29 10:18:37 +00:00
|
|
|
~ImportsWidget();
|
|
|
|
|
2017-05-19 07:45:26 +00:00
|
|
|
private slots:
|
|
|
|
void on_importsTreeWidget_itemDoubleClicked(QTreeWidgetItem *item, int column);
|
|
|
|
|
2017-11-19 12:56:10 +00:00
|
|
|
void fillImports();
|
|
|
|
|
2017-03-29 10:18:37 +00:00
|
|
|
private:
|
2017-10-02 09:41:28 +00:00
|
|
|
std::unique_ptr<Ui::ImportsWidget> ui;
|
2017-04-13 15:14:02 +00:00
|
|
|
|
|
|
|
void highlightUnsafe();
|
|
|
|
void setScrollMode();
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CMyDelegate : public QStyledItemDelegate
|
|
|
|
{
|
|
|
|
public:
|
2017-04-13 15:01:18 +00:00
|
|
|
explicit CMyDelegate(QObject *parent) : QStyledItemDelegate(parent) {}
|
2017-03-29 10:18:37 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option,
|
|
|
|
const QModelIndex &index) const override;
|
2017-03-29 10:18:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // IMPORTSWIDGET_H
|