1 // File: XGUI_OperationMgr.h
2 // Created: 20 Apr 2014
3 // Author: Natalia ERMOLAEVA
5 #include "XGUI_OperationMgr.h"
7 #include "ModuleBase_Operation.h"
8 #include <ModelAPI_Validator.h>
9 #include <ModelAPI_FeatureValidator.h>
11 #include <QMessageBox>
12 #include <QApplication>
15 XGUI_OperationMgr::XGUI_OperationMgr(QObject* theParent)
18 // listen to Escape signal to stop the current operation
19 qApp->installEventFilter(this);
22 XGUI_OperationMgr::~XGUI_OperationMgr()
26 ModuleBase_Operation* XGUI_OperationMgr::currentOperation() const
28 return myOperations.count() > 0 ? myOperations.last() : 0;
31 bool XGUI_OperationMgr::hasOperation() const
33 return (myOperations.count() > 0) && (myOperations.last() != NULL);
36 int XGUI_OperationMgr::operationsCount() const
38 return myOperations.count();
41 QStringList XGUI_OperationMgr::operationList() const
44 foreach(ModuleBase_Operation* eachOperation, myOperations) {
45 FeaturePtr aFeature = eachOperation->feature();
47 result << QString::fromStdString(aFeature->getKind());
53 ModuleBase_Operation* XGUI_OperationMgr::previousOperation(ModuleBase_Operation* theOperation) const
55 int idx = myOperations.lastIndexOf(theOperation);
56 if(idx == -1 || idx == 0) {
59 return myOperations.at(idx - 1);
62 bool XGUI_OperationMgr::eventFilter(QObject *theObject, QEvent *theEvent)
64 if (theEvent->type() == QEvent::KeyRelease) {
65 QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
67 onKeyReleased(aKeyEvent);
71 return QObject::eventFilter(theObject, theEvent);
74 bool XGUI_OperationMgr::startOperation(ModuleBase_Operation* theOperation)
76 if (!canStartOperation(theOperation))
79 myOperations.append(theOperation);
81 connect(theOperation, SIGNAL(stopped()), this, SLOT(onOperationStopped()));
82 connect(theOperation, SIGNAL(started()), this, SIGNAL(operationStarted()));
83 connect(theOperation, SIGNAL(resumed()), this, SIGNAL(operationResumed()));
84 connect(theOperation, SIGNAL(activateNextWidget(ModuleBase_ModelWidget*)), this,
85 SIGNAL(activateNextWidget(ModuleBase_ModelWidget*)));
87 theOperation->start();
88 onValidateOperation();
92 bool XGUI_OperationMgr::abortAllOperations()
96 } else if (operationsCount() == 1) {
100 QString aMessage = tr("All active operations will be aborted.");
101 int anAnswer = QMessageBox::question(qApp->activeWindow(),
102 tr("Abort operation"),
104 QMessageBox::Ok | QMessageBox::Cancel,
105 QMessageBox::Cancel);
106 bool result = anAnswer == QMessageBox::Ok;
107 while(result && hasOperation()) {
108 currentOperation()->abort();
113 bool XGUI_OperationMgr::validateOperation(ModuleBase_Operation* theOperation)
117 //Get operation feature to validate
118 FeaturePtr aFeature = theOperation->feature();
119 if (!aFeature) return true; // rename operation
120 //Get validators for the Id
121 SessionPtr aMgr = ModelAPI_Session::get();
122 ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
124 bool isValid = aFactory->validate(aFeature);
125 emit operationValidated(isValid);
129 void XGUI_OperationMgr::onValidateOperation()
133 ModuleBase_Operation* anOperation = currentOperation();
134 validateOperation(currentOperation());
137 bool XGUI_OperationMgr::commitOperation()
139 if (validateOperation(currentOperation())) {
146 void XGUI_OperationMgr::resumeOperation(ModuleBase_Operation* theOperation)
148 theOperation->resume();
151 bool XGUI_OperationMgr::canStartOperation(ModuleBase_Operation* theOperation)
153 bool aCanStart = true;
154 ModuleBase_Operation* aCurrentOp = currentOperation();
156 if (!theOperation->isGranted()) {
157 if (!aCurrentOp->isValid(theOperation)) {
158 if (canAbortOperation()) {
170 void XGUI_OperationMgr::onCommitOperation()
172 ModuleBase_Operation* anOperation = currentOperation();
174 anOperation->commit();
177 void XGUI_OperationMgr::onAbortOperation()
179 if (hasOperation() && canAbortOperation()) {
180 currentOperation()->abort();
184 bool XGUI_OperationMgr::canAbortOperation()
186 ModuleBase_Operation* anOperation = currentOperation();
187 if(operationsCount() > 1) //in case of nested (sketch) operation no confirmation needed
189 if (anOperation && anOperation->isModified()) {
190 QString aMessage = tr("%1 operation will be aborted.").arg(anOperation->id());
191 int anAnswer = QMessageBox::question(qApp->activeWindow(),
192 tr("Abort operation"),
194 QMessageBox::Ok | QMessageBox::Cancel,
195 QMessageBox::Cancel);
196 return anAnswer == QMessageBox::Ok;
201 void XGUI_OperationMgr::onOperationStopped()
203 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
204 ModuleBase_Operation* anOperation = currentOperation();
205 if (!aSenderOperation || !anOperation || aSenderOperation != anOperation)
208 myOperations.removeAll(anOperation);
209 anOperation->deleteLater();
211 emit operationStopped(anOperation);
213 // get last operation which can be resumed
214 ModuleBase_Operation* aResultOp = 0;
215 QListIterator<ModuleBase_Operation*> anIt(myOperations);
217 while (anIt.hasPrevious()) {
218 ModuleBase_Operation* anOp = anIt.previous();
225 resumeOperation(aResultOp);
226 onValidateOperation();
230 void XGUI_OperationMgr::onKeyReleased(QKeyEvent* theEvent)
232 // Let the manager decide what to do with the given key combination.
233 ModuleBase_Operation* anOperation = currentOperation();
234 bool isRestart = false;
235 switch (theEvent->key()) {
236 case Qt::Key_Escape: {
241 case Qt::Key_Enter: {
243 anOperation->activateNextToCurrentWidget();
252 anOperation->keyReleased(theEvent->key());
255 void XGUI_OperationMgr::onWidgetActivated(ModuleBase_ModelWidget* theWidget)
257 ModuleBase_Operation* anOperation = currentOperation();
259 anOperation->onWidgetActivated(theWidget);