##// END OF EJS Templates
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible...
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible Spectrogram visu is still broken... Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r877:4dce99ba7a36
r1467:da44adcd99e4
Show More
DataSourceTreeWidget.h
15 lines | 417 B | text/x-c | CLexer
/ gui / include / DataSource / DataSourceTreeWidget.h
Drag of product
r868 #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;
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r877 void startDrag(Qt::DropActions supportedActions) override;
Drag of product
r868 };
#endif // SCIQLOP_DATASOURCETREEWIDGET_H