##// END OF EJS Templates
Updates access to y-axis properties of the data series (2)...
Updates access to y-axis properties of the data series (2) Uses iterators instead of y-axis at() method to get access to the data Adds access in data series iterator

File last commit:

r883:4dce99ba7a36
r1031:958f5923ee65
Show More
DataSourceTreeWidget.h
15 lines | 417 B | text/x-c | CLexer
/ gui / include / DataSource / DataSourceTreeWidget.h
Drag of product
r876 #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
r883 void startDrag(Qt::DropActions supportedActions) override;
Drag of product
r876 };
#endif // SCIQLOP_DATASOURCETREEWIDGET_H