##// END OF EJS Templates
Implements test execute() method...
Implements test execute() method For each iteration of the test, this method generates available operations according to states of the variables, and execute an operation that has been chosen randomly.

File last commit:

r1110:029fbf916457
r1205:0c07405da56c
Show More
VariableInspectorTableView.cpp
15 lines | 481 B | text/x-c | CppLexer
/ gui / src / Variable / VariableInspectorTableView.cpp
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883 #include "Variable/VariableInspectorTableView.h"
Rename "DragDropHelper" in "DragDropGuiController"
r1110 #include "DragAndDrop/DragDropGuiController.h"
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883 #include "SqpApplication.h"
Fix format for linux
r913 VariableInspectorTableView::VariableInspectorTableView(QWidget *parent) : QTableView(parent)
{
}
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883
void VariableInspectorTableView::startDrag(Qt::DropActions supportedActions)
{
// Resets the drag&drop operations before it's starting
Rename "DragDropHelper" in "DragDropGuiController"
r1110 sqpApp->dragDropGuiController().resetDragAndDrop();
Reset of the drag&drop operations when a drag is started from the datasource or from the variables
r883 QTableView::startDrag(supportedActions);
}