##// END OF EJS Templates
Adds actions for items in the DataSourceWidget...
Adds actions for items in the DataSourceWidget For each item will be associated actions (generated from the model of the item) that will be displayed in the menu when right clicking on the item in the tree

File last commit:

r109:9e9399294f6e
r142:11579fae1cc2
Show More
DataSourceWidget.h
34 lines | 788 B | text/x-c | CLexer
Alexandre Leroux
Creates the data source widget...
r82 #ifndef SCIQLOP_DATASOURCEWIDGET_H
#define SCIQLOP_DATASOURCEWIDGET_H
#include <QWidget>
Alexandre Leroux
(Minor) Extracts ui of DataSourceWidget
r109 namespace Ui {
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.
*/
class DataSourceWidget : public QWidget {
Q_OBJECT
public:
explicit DataSourceWidget(QWidget *parent = 0);
Alexandre Leroux
Implements method to add a data source in the widget...
r83 public slots:
/**
* Adds a data source. An item associated to the data source is created and then added to the
* representation tree
Alexandre Leroux
Change signal/slot signature for data source
r92 * @param dataSource the data source to add. The pointer has to be not null
Alexandre Leroux
Implements method to add a data source in the widget...
r83 */
Alexandre Leroux
Change signal/slot signature for data source
r92 void addDataSource(DataSourceItem *dataSource) noexcept;
Alexandre Leroux
Implements method to add a data source in the widget...
r83
Alexandre Leroux
Creates the data source widget...
r82 private:
Alexandre Leroux
(Minor) Extracts ui of DataSourceWidget
r109 Ui::DataSourceWidget *ui;
Alexandre Leroux
Creates the data source widget...
r82 };
#endif // SCIQLOP_DATASOURCEWIDGET_H