##// 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:

r57:e3d0d86d21a2
r83:49b6273d9035
Show More
SqpSidePane.h
27 lines | 408 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPSIDEPANE_H
#define SCIQLOP_SQPSIDEPANE_H
#include <QWidget>
namespace Ui {
class SqpSidePane;
} // Ui
class QToolBar;
class SqpSidePane : public QWidget {
Q_OBJECT
public:
explicit SqpSidePane(QWidget *parent = 0);
virtual ~SqpSidePane();
QToolBar *sidePane();
private:
Ui::SqpSidePane *ui;
QToolBar *m_SidePaneToolbar;
};
#endif // SCIQLOP_ SQPSIDEPANE_H