##// END OF EJS Templates
Made SciQLOP more hidpi friendly...
Made SciQLOP more hidpi friendly Set Qt::AA_EnableHighDpiScaling, http://doc.qt.io/qt-5/highdpi.html. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r877:4dce99ba7a36
r1332:d9d1ebd36be6
Show More
DataSourceTreeWidget.h
15 lines | 417 B | text/x-c | CLexer
#ifndef SCIQLOP_DATASOURCETREEWIDGET_H
#define SCIQLOP_DATASOURCETREEWIDGET_H
#include <QTreeWidget>
class DataSourceTreeWidget : public QTreeWidget {
public:
DataSourceTreeWidget(QWidget *parent);
protected:
QMimeData *mimeData(const QList<QTreeWidgetItem *> items) const override;
void startDrag(Qt::DropActions supportedActions) override;
};
#endif // SCIQLOP_DATASOURCETREEWIDGET_H