##// END OF EJS Templates
Prohibits the display of a spectrogram in an existing graph and the display of data on a graph already containing a spectrogram
Prohibits the display of a spectrogram in an existing graph and the display of data on a graph already containing a spectrogram

File last commit:

r877:4dce99ba7a36
r1022:5850a514ee91
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