##// 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
r83:49b6273d9035
Show More
VisualizationWidget.h
21 lines | 395 B | text/x-c | CLexer
#ifndef SCIQLOP_VISUALIZATIONWIDGET_H
#define SCIQLOP_VISUALIZATIONWIDGET_H
#include <QWidget>
namespace Ui {
class VisualizationWidget;
} // namespace Ui
class VisualizationWidget : public QWidget {
Q_OBJECT
public:
explicit VisualizationWidget(QWidget *parent = 0);
virtual ~VisualizationWidget();
private:
Ui::VisualizationWidget *ui;
};
#endif // VISUALIZATIONWIDGET_H