##// END OF EJS Templates
Implements method to add a data source in the widget...
Implements method to add a data source in the widget The method is a slot that will be connected with data source controller in the aim to create the data source representation in the widget when a new data source is set in the contoller

File last commit:

r58:7592cb7f14bd
r82:49b6273d9035
Show More
VisualizationGraphWidget.h
21 lines | 443 B | text/x-c | CLexer
/ gui / include / visualization / VisualizationGraphWidget.h
#ifndef SCIQLOP_VISUALIZATIONGRAPHWIDGET_H
#define SCIQLOP_VISUALIZATIONGRAPHWIDGET_H
#include <QWidget>
namespace Ui {
class VisualizationGraphWidget;
} // namespace Ui
class VisualizationGraphWidget : public QWidget {
Q_OBJECT
public:
explicit VisualizationGraphWidget(QWidget *parent = 0);
virtual ~VisualizationGraphWidget();
private:
Ui::VisualizationGraphWidget *ui;
};
#endif // SCIQLOP_VISUALIZATIONGRAPHWIDGET_H