DataSourceWidget.h
42 lines
| 1.1 KiB
| text/x-c
|
CLexer
Alexandre Leroux
|
r81 | #ifndef SCIQLOP_DATASOURCEWIDGET_H | ||
#define SCIQLOP_DATASOURCEWIDGET_H | ||||
#include <QWidget> | ||||
Alexandre Leroux
|
r104 | namespace Ui { | ||
class DataSourceWidget; | ||||
} // Ui | ||||
Alexandre Leroux
|
r81 | 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); | ||||
r219 | virtual ~DataSourceWidget() noexcept; | |||
Alexandre Leroux
|
r81 | |||
Alexandre Leroux
|
r82 | public slots: | ||
/** | ||||
* Adds a data source. An item associated to the data source is created and then added to the | ||||
* representation tree | ||||
Alexandre Leroux
|
r90 | * @param dataSource the data source to add. The pointer has to be not null | ||
Alexandre Leroux
|
r82 | */ | ||
Alexandre Leroux
|
r90 | void addDataSource(DataSourceItem *dataSource) noexcept; | ||
Alexandre Leroux
|
r82 | |||
Alexandre Leroux
|
r81 | private: | ||
Alexandre Leroux
|
r104 | Ui::DataSourceWidget *ui; | ||
Alexandre Leroux
|
r134 | |||
private slots: | ||||
Alexandre Leroux
|
r438 | /// Slot called when the filtering text has changed | ||
void filterChanged(const QString &text) noexcept; | ||||
Alexandre Leroux
|
r134 | /// Slot called when right clicking on an item in the tree (displays a menu) | ||
void onTreeMenuRequested(const QPoint &pos) noexcept; | ||||
Alexandre Leroux
|
r81 | }; | ||
#endif // SCIQLOP_DATASOURCEWIDGET_H | ||||