##// END OF EJS Templates
Added GUI Test Utils lib to share boilerplate code for UI testing...
Added GUI Test Utils lib to share boilerplate code for UI testing This lib provides convenience function for D&D or mouse interactions Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r877:4dce99ba7a36
r1360:d88ad553a61d
Show More
VariableInspectorTableView.h
14 lines | 367 B | text/x-c | CLexer
/ gui / include / Variable / VariableInspectorTableView.h
#ifndef SCIQLOP_VARIABLEINSPECTORTABLEVIEW_H
#define SCIQLOP_VARIABLEINSPECTORTABLEVIEW_H
#include <QTableView>
class VariableInspectorTableView : public QTableView {
public:
VariableInspectorTableView(QWidget *parent = nullptr);
protected:
void startDrag(Qt::DropActions supportedActions);
};
#endif // SCIQLOP_VARIABLEINSPECTORTABLEVIEW_H