##// END OF EJS Templates
Adds read compatibility for local AMDA server...
Adds read compatibility for local AMDA server The local AMDA server uses another regex than the default server to read the units in x. We manage the compatibility by adding in the parser the possibility of testing several regexes to read a property

File last commit:

r877:4dce99ba7a36
r1121:98220c931c83
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