1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
3 // File: XGUI_OperationMgr.h
4 // Created: 20 Apr 2014
5 // Author: Natalia ERMOLAEVA
7 #include "XGUI_OperationMgr.h"
9 #include "ModuleBase_Operation.h"
11 #include <QMessageBox>
12 #include <QApplication>
15 XGUI_OperationMgr::XGUI_OperationMgr(QObject* theParent)
16 : QObject(theParent), myIsValidationLock(false)
20 XGUI_OperationMgr::~XGUI_OperationMgr()
24 ModuleBase_Operation* XGUI_OperationMgr::currentOperation() const
26 return myOperations.count() > 0 ? myOperations.last() : 0;
29 bool XGUI_OperationMgr::isCurrentOperation(ModuleBase_Operation* theOperation)
33 return currentOperation() == theOperation;
36 bool XGUI_OperationMgr::hasOperation() const
38 return !myOperations.isEmpty() && (myOperations.last() != NULL);
41 bool XGUI_OperationMgr::hasOperation(const QString& theId) const
43 foreach(ModuleBase_Operation* aOp, myOperations) {
44 if (aOp->id() == theId)
50 ModuleBase_Operation* XGUI_OperationMgr::findOperation(const QString& theId) const
52 foreach(ModuleBase_Operation* aOp, myOperations) {
53 if (aOp->id() == theId)
60 int XGUI_OperationMgr::operationsCount() const
62 return myOperations.count();
65 QStringList XGUI_OperationMgr::operationList() const
68 foreach(ModuleBase_Operation* eachOperation, myOperations) {
69 FeaturePtr aFeature = eachOperation->feature();
71 result << QString::fromStdString(aFeature->getKind());
77 ModuleBase_Operation* XGUI_OperationMgr::previousOperation(ModuleBase_Operation* theOperation) const
79 int idx = myOperations.lastIndexOf(theOperation);
80 if(idx == -1 || idx == 0) {
83 return myOperations.at(idx - 1);
86 bool XGUI_OperationMgr::eventFilter(QObject *theObject, QEvent *theEvent)
88 if (theEvent->type() == QEvent::KeyRelease) {
89 QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
91 return onKeyReleased(aKeyEvent);
94 return QObject::eventFilter(theObject, theEvent);
97 bool XGUI_OperationMgr::startOperation(ModuleBase_Operation* theOperation)
100 currentOperation()->postpone();
101 myOperations.append(theOperation);
103 connect(theOperation, SIGNAL(started()), SLOT(onOperationStarted()));
104 connect(theOperation, SIGNAL(aborted()), SLOT(onOperationAborted()));
105 connect(theOperation, SIGNAL(committed()), SLOT(onOperationCommitted()));
106 connect(theOperation, SIGNAL(stopped()), SLOT(onOperationStopped()));
107 connect(theOperation, SIGNAL(resumed()), SLOT(onOperationResumed()));
108 connect(theOperation, SIGNAL(activatedByPreselection()),
109 SIGNAL(operationActivatedByPreselection()));
111 theOperation->start();
112 onValidateOperation();
116 bool XGUI_OperationMgr::abortAllOperations()
118 if(!hasOperation()) {
120 } else if (operationsCount() == 1) {
124 QString aMessage = tr("All active operations will be aborted.");
125 int anAnswer = QMessageBox::question(qApp->activeWindow(),
126 tr("Abort operation"),
128 QMessageBox::Ok | QMessageBox::Cancel,
129 QMessageBox::Cancel);
130 bool result = anAnswer == QMessageBox::Ok;
131 while(result && hasOperation()) {
132 currentOperation()->abort();
137 void XGUI_OperationMgr::onValidateOperation()
141 ModuleBase_Operation* anOperation = currentOperation();
142 if(anOperation && (!myIsValidationLock)) {
143 setApplyEnabled(anOperation->isValid());
147 void XGUI_OperationMgr::setApplyEnabled(const bool theEnabled)
149 myIsApplyEnabled = theEnabled;
150 emit applyEnableChanged(theEnabled);
153 bool XGUI_OperationMgr::isApplyEnabled() const
155 return myIsApplyEnabled;
158 bool XGUI_OperationMgr::canStopOperation()
160 ModuleBase_Operation* anOperation = currentOperation();
161 if(operationsCount() > 1) //in case of nested (sketch) operation no confirmation needed
163 if (anOperation && anOperation->isModified()) {
164 QString aMessage = tr("%1 operation will be aborted.").arg(anOperation->id());
165 int anAnswer = QMessageBox::question(qApp->activeWindow(),
166 tr("Abort operation"),
168 QMessageBox::Ok | QMessageBox::Cancel,
169 QMessageBox::Cancel);
170 return anAnswer == QMessageBox::Ok;
175 bool XGUI_OperationMgr::commitOperation()
177 if (hasOperation() && currentOperation()->isValid()) {
184 void XGUI_OperationMgr::resumeOperation(ModuleBase_Operation* theOperation)
186 theOperation->resume();
189 bool XGUI_OperationMgr::canStartOperation(QString theId)
191 bool aCanStart = true;
192 ModuleBase_Operation* aCurrentOp = currentOperation();
194 if (!aCurrentOp->isGranted(theId)) {
195 if (canStopOperation()) {
196 if (myIsApplyEnabled)
197 aCurrentOp->commit();
209 void XGUI_OperationMgr::onCommitOperation()
211 ModuleBase_Operation* anOperation = currentOperation();
213 anOperation->commit();
216 void XGUI_OperationMgr::onAbortOperation()
218 if (hasOperation() && canStopOperation()) {
219 currentOperation()->abort();
223 void XGUI_OperationMgr::onOperationStarted()
225 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
226 emit operationStarted(aSenderOperation);
229 void XGUI_OperationMgr::onOperationAborted()
231 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
232 emit operationAborted(aSenderOperation);
235 void XGUI_OperationMgr::onOperationCommitted()
237 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
238 emit operationCommitted(aSenderOperation);
241 void XGUI_OperationMgr::onOperationResumed()
243 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
244 emit operationResumed(aSenderOperation);
247 void XGUI_OperationMgr::onOperationStopped()
249 ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
250 ModuleBase_Operation* anOperation = currentOperation();
251 if (!aSenderOperation || !anOperation || aSenderOperation != anOperation)
254 myOperations.removeAll(anOperation);
255 anOperation->deleteLater();
257 emit operationStopped(anOperation);
259 // get last operation which can be resumed
260 ModuleBase_Operation* aResultOp = 0;
261 QListIterator<ModuleBase_Operation*> anIt(myOperations);
263 while (anIt.hasPrevious()) {
264 ModuleBase_Operation* anOp = anIt.previous();
271 resumeOperation(aResultOp);
272 onValidateOperation();
276 bool XGUI_OperationMgr::onKeyReleased(QKeyEvent* theEvent)
278 // Let the manager decide what to do with the given key combination.
279 ModuleBase_Operation* anOperation = currentOperation();
280 bool isAccepted = true;
281 switch (theEvent->key()) {
283 case Qt::Key_Enter: {
284 emit keyEnterReleased();
293 // anOperation->keyReleased(theEvent->key());