##// END OF EJS Templates
Factorisation of the lambda connected to the side pane button
Factorisation of the lambda connected to the side pane button

File last commit:

r110:1002063c9aa2
r138:8776db221f5e
Show More
VariableInspectorWidget.h
26 lines | 640 B | text/x-c | CLexer
/ gui / include / Variable / VariableInspectorWidget.h
Alexandre Leroux
Initializes the variable inspector and adds it to the MainWindow
r110 #ifndef SCIQLOP_VARIABLEINSPECTORWIDGET_H
#define SCIQLOP_VARIABLEINSPECTORWIDGET_H
#include <QWidget>
namespace Ui {
class VariableInspectorWidget;
} // Ui
/**
* @brief The VariableInspectorWidget class representes represents the variable inspector, from
* which it is possible to view the loaded variables, handle them or trigger their display in
* visualization
*/
class VariableInspectorWidget : public QWidget {
Q_OBJECT
public:
explicit VariableInspectorWidget(QWidget *parent = 0);
virtual ~VariableInspectorWidget();
private:
Ui::VariableInspectorWidget *ui;
};
#endif // SCIQLOP_VARIABLEINSPECTORWIDGET_H