##// END OF EJS Templates
Added MockPlugin PB11 wrapper...
Added MockPlugin PB11 wrapper Spectrograms plots are broken, this should help to investigate why and will be useful also for tests. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r877:4dce99ba7a36
r1366:1cb2144d2987
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