##// END OF EJS Templates
Creates the data source widget...
Creates the data source widget The widget contains a tree that will contains all the data sources attached to SciQlop (by the plugins)

File last commit:

r82:8a7c6c676eea
r82:8a7c6c676eea
Show More
DataSourceWidget.h
25 lines | 535 B | text/x-c | CLexer
#ifndef SCIQLOP_DATASOURCEWIDGET_H
#define SCIQLOP_DATASOURCEWIDGET_H
#include <Common/spimpl.h>
#include <QWidget>
class DataSourceItem;
/**
* @brief The DataSourceWidget handles the graphical representation (as a tree) of the data sources
* attached to SciQlop.
*/
class DataSourceWidget : public QWidget {
Q_OBJECT
public:
explicit DataSourceWidget(QWidget *parent = 0);
private:
class DataSourceWidgetPrivate;
spimpl::unique_impl_ptr<DataSourceWidgetPrivate> impl;
};
#endif // SCIQLOP_DATASOURCEWIDGET_H