##// END OF EJS Templates
Sets the name of the plugin for products and components...
Sets the name of the plugin for products and components Since there is only one common root in the data source widget, it is no longer possible to retrieve on the fly the name of the plugin in which a component or product is located. This name is therefore attached to their creation.

File last commit:

r883:4dce99ba7a36
r1076:9c3bb5e93c54
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