##// END OF EJS Templates
Switch core submodule to GH repo...
Switch core submodule to GH repo Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1495:9c439b3d7daf
r1507:2096ff074ca4
Show More
DataSourceWidget.h
35 lines | 648 B | text/x-c | CLexer
Alexandre Leroux
Creates the data source widget...
r82 #ifndef SCIQLOP_DATASOURCEWIDGET_H
#define SCIQLOP_DATASOURCEWIDGET_H
#include <QWidget>
New data sources system switch complete...
r1495 #include <QSortFilterProxyModel>
Alexandre Leroux
Updates data sources UI representation (1)...
r1034
New data sources system switch complete...
r1495 namespace Ui
{
Alexandre Leroux
(Minor) Extracts ui of DataSourceWidget
r109 class DataSourceWidget;
} // Ui
Alexandre Leroux
Creates the data source widget...
r82 class DataSourceItem;
/**
* @brief The DataSourceWidget handles the graphical representation (as a tree) of the data sources
* attached to SciQlop.
*/
New data sources system switch complete...
r1495 class DataSourceWidget : public QWidget
{
Alexandre Leroux
Creates the data source widget...
r82 Q_OBJECT
public:
New data sources system switch complete...
r1495 explicit DataSourceWidget(QWidget* parent = 0);
The mock plugin can now create data with view operation
r235 virtual ~DataSourceWidget() noexcept;
Alexandre Leroux
Creates the data source widget...
r82
private:
Alexandre Leroux
Updates data sources UI representation (1)...
r1034 void updateTreeWidget() noexcept;
New data sources system switch complete...
r1495 Ui::DataSourceWidget* ui;
QSortFilterProxyModel m_model_proxy;
Alexandre Leroux
Adds line edit as a search box above data source tree
r475
Alexandre Leroux
Creates the data source widget...
r82 };
#endif // SCIQLOP_DATASOURCEWIDGET_H