]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_OperationMgr.cpp
Salome HOME
abb8d3e283795dacf2d0f9501a78cba3560edd76
[modules/shaper.git] / src / XGUI / XGUI_OperationMgr.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "XGUI_OperationMgr.h"
22 #include "XGUI_ModuleConnector.h"
23 #include "XGUI_Workshop.h"
24 #include "XGUI_ErrorMgr.h"
25 #include "XGUI_Tools.h"
26 #include "XGUI_ObjectsBrowser.h"
27 #include "XGUI_ContextMenuMgr.h"
28
29 #include <ModuleBase_IPropertyPanel.h>
30 #include <ModuleBase_ModelWidget.h>
31 #include "ModuleBase_Operation.h"
32 #include "ModuleBase_IWorkshop.h"
33 #include "ModuleBase_IModule.h"
34 #include <ModuleBase_IViewer.h>
35 #include "ModuleBase_OperationDescription.h"
36 #include "ModuleBase_OperationFeature.h"
37 #include "ModuleBase_Tools.h"
38
39 #include "ModelAPI_CompositeFeature.h"
40 #include "ModelAPI_Session.h"
41
42 #include <XGUI_PropertyPanel.h>
43 #include <QToolButton>
44 #include <QLineEdit>
45
46 #include <QMessageBox>
47 #include <QApplication>
48 #include <QKeyEvent>
49
50 //#define DEBUG_CURRENT_FEATURE
51
52 /// Processes "Delete" key event of application. This key is used by several application actions.
53 /// There is a logical order of the actions processing. So the key can not be set for actions
54 /// as a shortcut. The class listens the key event and call operation manager processor.
55 class XGUI_ShortCutListener : public QObject
56 {
57 public:
58   /// Constructor
59   /// \param theParent the parent to be deleted when the parent is deleted
60   /// \param theOperationMgr the class to perform deletion
61   XGUI_ShortCutListener(QObject* theParent, XGUI_OperationMgr* theOperationMgr)
62     : QObject(theParent), myOperationMgr(theOperationMgr)
63   {
64     qApp->installEventFilter(this);
65   }
66   ~XGUI_ShortCutListener() {}
67
68   /// Switch on short cut listener
69   void setActive(const bool theIsActive) { myIsActive = theIsActive; }
70
71   /// Redefinition of virtual function to process Delete key release
72   virtual bool eventFilter(QObject *theObject, QEvent *theEvent)
73   {
74     bool isAccepted = false;
75     if (myIsActive) {
76       if (theEvent->type() == QEvent::KeyRelease) {
77         QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
78         if (aKeyEvent) {
79           myOperationMgr->setSHIFTPressed(aKeyEvent->modifiers() & Qt::ShiftModifier);
80           switch (aKeyEvent->key()) {
81             case Qt::Key_Delete:
82               isAccepted = myOperationMgr->onProcessDelete(theObject);
83             break;
84             default:
85               isAccepted = myOperationMgr->onKeyReleased(theObject, aKeyEvent);
86               break;
87           }
88         }
89       }
90       else if (theEvent->type() == QEvent::KeyPress) {
91         QKeyEvent* aKeyEvent = dynamic_cast<QKeyEvent*>(theEvent);
92         myOperationMgr->setSHIFTPressed(aKeyEvent->modifiers() & Qt::ShiftModifier);
93         switch (aKeyEvent->key()) {
94           case Qt::Key_Escape:
95             isAccepted = myOperationMgr->onKeyPressed(theObject, aKeyEvent);
96           break;
97           default:
98             break;
99         }
100       }
101     }
102     if (!isAccepted)
103       isAccepted = QObject::eventFilter(theObject, theEvent);
104     return isAccepted;
105   }
106
107 private:
108   XGUI_OperationMgr* myOperationMgr; /// processor for key event
109   bool myIsActive; /// boolean state whether the event filter perform own signal processing
110 };
111
112 XGUI_OperationMgr::XGUI_OperationMgr(QObject* theParent,
113                                      ModuleBase_IWorkshop* theWorkshop)
114 : QObject(theParent), myWorkshop(theWorkshop), mySHIFTPressed(false), myActiveMessageBox(0)
115 {
116   /// we need to install filter to the application in order to react to 'Delete' key button
117   /// this key can not be a short cut for a corresponded action because we need to set
118   /// the actions priority
119   myShortCutListener = new XGUI_ShortCutListener(theParent, this);
120 }
121
122 XGUI_OperationMgr::~XGUI_OperationMgr()
123 {
124 }
125
126 void XGUI_OperationMgr::activate()
127 {
128   myShortCutListener->setActive(true);
129 }
130
131 void XGUI_OperationMgr::deactivate()
132 {
133   myShortCutListener->setActive(false);
134 }
135
136 ModuleBase_Operation* XGUI_OperationMgr::currentOperation() const
137 {
138   return myOperations.count() > 0 ? myOperations.last() : 0;
139 }
140
141 bool XGUI_OperationMgr::isCurrentOperation(ModuleBase_Operation* theOperation)
142 {
143   if(!hasOperation())
144     return false;
145   return currentOperation() == theOperation;
146 }
147
148 bool XGUI_OperationMgr::hasOperation() const
149 {
150   return !myOperations.isEmpty() && (myOperations.last() != NULL);
151 }
152
153 bool XGUI_OperationMgr::hasOperation(const QString& theId) const
154 {
155   foreach(ModuleBase_Operation* aOp, myOperations) {
156     if (aOp->id() == theId)
157       return true;
158   }
159   return false;
160 }
161
162 ModuleBase_Operation* XGUI_OperationMgr::findOperation(const QString& theId) const
163 {
164   QList<ModuleBase_Operation*>::const_iterator anIt = myOperations.end();
165   while (anIt != myOperations.begin()) {
166     --anIt;
167     ModuleBase_Operation* anOperation = *anIt;
168     if (anOperation->id() == theId)
169       return anOperation;
170   }
171   return 0;
172 }
173
174
175 int XGUI_OperationMgr::operationsCount() const
176 {
177   return myOperations.count();
178 }
179
180 QStringList XGUI_OperationMgr::operationList() const
181 {
182   QStringList result;
183   foreach(ModuleBase_Operation* eachOperation, myOperations) {
184     ModuleBase_OperationFeature* aFOperation =
185       dynamic_cast<ModuleBase_OperationFeature*>(eachOperation);
186     if (aFOperation) {
187       FeaturePtr aFeature = aFOperation->feature();
188       if(aFeature) {
189         result << QString::fromStdString(aFeature->getKind());
190       }
191     }
192   }
193   return result;
194 }
195
196 ModuleBase_Operation* XGUI_OperationMgr::previousOperation(ModuleBase_Operation* theOperation) const
197 {
198   int idx = myOperations.lastIndexOf(theOperation);
199   if(idx == -1 || idx == 0) {
200     return NULL;
201   }
202   return myOperations.at(idx - 1);
203 }
204
205 bool XGUI_OperationMgr::startOperation(ModuleBase_Operation* theOperation)
206 {
207   if (hasOperation())
208     currentOperation()->postpone();
209   myOperations.append(theOperation);
210
211   connect(theOperation, SIGNAL(beforeStarted()), SLOT(onBeforeOperationStarted()));
212   connect(theOperation, SIGNAL(beforeAborted()), SLOT(onBeforeOperationAborted()));
213   connect(theOperation, SIGNAL(beforeCommitted()), SLOT(onBeforeOperationCommitted()));
214
215   connect(theOperation, SIGNAL(started()), SLOT(onOperationStarted()));
216   connect(theOperation, SIGNAL(aborted()), SLOT(onOperationAborted()));
217   connect(theOperation, SIGNAL(committed()), SLOT(onOperationCommitted()));
218
219   connect(theOperation, SIGNAL(stopped()), SLOT(onOperationStopped()));
220   connect(theOperation, SIGNAL(resumed()), SLOT(onOperationResumed()));
221
222   bool isStarted = theOperation->start();
223   if (isStarted)
224     onValidateOperation();
225   return isStarted;
226 }
227
228 bool XGUI_OperationMgr::abortAllOperations(const XGUI_MessageKind& theMessageKind)
229 {
230   bool aResult = true;
231   if(!hasOperation())
232     return aResult;
233
234   if (operationsCount() == 1) {
235     ModuleBase_Operation* aCurrentOperation = currentOperation();
236     if (canStopOperation(aCurrentOperation, theMessageKind)) {
237       abortOperation(aCurrentOperation);
238     }
239     else
240       aResult = false;
241   }
242   else {
243     if (theMessageKind == XGUI_AbortOperationMessage) {
244       myActiveMessageBox = createMessageBox(tr("All active operations will be aborted."));
245       aResult = myActiveMessageBox->exec() == QMessageBox::Ok;
246       myActiveMessageBox = 0;
247     }
248     else if (theMessageKind == XGUI_InformationMessage) {
249       QString aMessage = tr("Please validate all your active operations before saving.");
250       QMessageBox::question(qApp->activeWindow(),
251                             tr("Validate operation"),
252                             aMessage,
253                             QMessageBox::Ok,
254                             QMessageBox::Ok);
255       aResult = false; // do not perform abort
256     }
257     while(aResult && hasOperation()) {
258       abortOperation(currentOperation());
259     }
260   }
261   return aResult;
262 }
263
264 bool XGUI_OperationMgr::commitAllOperations()
265 {
266   bool isCompositeCommitted = false, anOperationProcessed = false;
267   while (hasOperation()) {
268     ModuleBase_Operation* anOperation = currentOperation();
269     if (XGUI_Tools::workshop(myWorkshop)->errorMgr()->isApplyEnabled()) {
270       anOperationProcessed = commitOperation();
271     } else {
272       abortOperation(anOperation);
273       anOperationProcessed = true;
274     }
275     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
276                                                                             (anOperation);
277     if (aFOperation) {
278       FeaturePtr aFeature = aFOperation->feature();
279       CompositeFeaturePtr aComposite =
280           std::dynamic_pointer_cast<ModelAPI_CompositeFeature>(aFeature);
281       isCompositeCommitted = aComposite.get();
282       if (isCompositeCommitted)
283         break;
284     }
285     // not processed[committed] operation might be used in composite feature,
286     // so the while will be stopped by the previous check.
287     // this code is not necessary, but logically should be done when the processing will not
288     // be done for not composite feature by some reasons
289     if (!anOperationProcessed)
290       break;
291   }
292   return true;
293 }
294
295 void XGUI_OperationMgr::onValidateOperation()
296 {
297   if (!hasOperation())
298     return;
299   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
300                                                                           (currentOperation());
301   if(aFOperation && aFOperation->feature().get())
302     XGUI_Tools::workshop(myWorkshop)->errorMgr()->updateActions(aFOperation->feature());
303 }
304
305 void XGUI_OperationMgr::updateApplyOfOperations(ModuleBase_Operation* theOperation)
306 {
307   XGUI_ErrorMgr* anErrorMgr = XGUI_Tools::workshop(myWorkshop)->errorMgr();
308   if (theOperation) {
309     ModuleBase_OperationFeature* aFOperation =
310       dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
311     if (aFOperation)
312       anErrorMgr->updateAcceptAllAction(aFOperation->feature());
313   }
314   else {
315     foreach(ModuleBase_Operation* anOperation, myOperations) {
316       if (anOperation)
317         updateApplyOfOperations(anOperation);
318     }
319   }
320   // Apply button of the current operation should also be updated
321   onValidateOperation();
322 }
323
324 bool XGUI_OperationMgr::canStopOperation(ModuleBase_Operation* theOperation,
325                                          const XGUI_OperationMgr::XGUI_MessageKind& theMessageKind)
326 {
327   //in case of nested (sketch) operation no confirmation needed
328   if (isGrantedOperation(theOperation->id()))
329     return true;
330   if (theOperation && theOperation->isModified()) {
331     if (theMessageKind == XGUI_AbortOperationMessage) {
332       QString aMessage = tr("%1 operation will be aborted.").arg(theOperation->id());
333       myActiveMessageBox = createMessageBox(aMessage);
334       int anAnswer = myActiveMessageBox->exec() == QMessageBox::Ok;
335       myActiveMessageBox = 0;
336       return anAnswer == QMessageBox::Ok;
337     }
338     else if (theMessageKind == XGUI_InformationMessage) {
339       QString aMessage = tr("Please validate your %1 before saving.").arg(theOperation->id());
340       QMessageBox::question(qApp->activeWindow(),
341                             tr("Validate operation"),
342                             aMessage,
343                             QMessageBox::Ok,
344                             QMessageBox::Ok);
345       return false;
346     }
347   }
348   return true;
349 }
350
351 void XGUI_OperationMgr::resumeOperation(ModuleBase_Operation* theOperation)
352 {
353   theOperation->resume();
354 }
355
356 bool XGUI_OperationMgr::isGrantedOperation(const QString& theId)
357 {
358   bool isGranted = false;
359
360   QListIterator<ModuleBase_Operation*> anIt(myOperations);
361   anIt.toBack();
362   ModuleBase_Operation* aPreviousOperation = 0;
363   while (anIt.hasPrevious() && !isGranted) {
364     ModuleBase_Operation* anOp = anIt.previous();
365     if (anOp)
366       isGranted = anOp->isGranted(theId);
367   }
368   return isGranted;
369 }
370
371 void XGUI_OperationMgr::setCurrentFeature(const FeaturePtr& theFeature)
372 {
373   SessionPtr aMgr = ModelAPI_Session::get();
374   DocumentPtr aDoc = aMgr->activeDocument();
375   bool aIsOp = aMgr->isOperation();
376   if (!aIsOp)
377     aMgr->startOperation(QString("Set current feature: %1")
378     .arg(theFeature->getKind().c_str()).toStdString());
379   aDoc->setCurrentFeature(theFeature, false);
380 #ifdef DEBUG_CURRENT_FEATURE
381   qDebug(QString("   document->setCurrentFeature(false) = %1    SET").arg(
382          ModuleBase_Tools::objectName(
383          ModelAPI_Session::get()->activeDocument()->currentFeature(false))).toStdString().c_str());
384 #endif
385
386   if (!aIsOp)
387     aMgr->finishOperation();
388 }
389
390 bool XGUI_OperationMgr::canStartOperation(const QString& theId, bool& isCommitted)
391 {
392   bool aCanStart = true;
393   isCommitted = false;
394   ModuleBase_Operation* aCurrentOp = currentOperation();
395   if (aCurrentOp) {
396     bool aGranted = aCurrentOp->isGranted(theId);
397     // the started operation is granted for the current one,
398     // e.g. current - Sketch, started - Line
399     if (aGranted) {
400       aCanStart = true;
401     }
402     else {
403       if (!isGrantedOperation(theId)) {
404         // the operation is not granted in the current list of operations
405         // e.g. Edit Parameter when Sketch, Line in Sketch is active.
406         aCanStart = abortAllOperations();
407       }
408       else if (canStopOperation(aCurrentOp)) {
409         // the started operation is granted in the parrent operation,
410         // e.g. current - Line in Sketch, started Circle
411         stopOperation(aCurrentOp, isCommitted);
412       } else {
413         aCanStart = false;
414       }
415     }
416   }
417   return aCanStart;
418 }
419
420 void XGUI_OperationMgr::stopOperation(ModuleBase_Operation* theOperation, bool& isCommitted)
421 {
422   if (XGUI_Tools::workshop(myWorkshop)->errorMgr()->isApplyEnabled() && theOperation->isModified())
423     isCommitted = theOperation->commit();
424   else {
425     isCommitted = false;
426     abortOperation(theOperation);
427   }
428 }
429
430 void XGUI_OperationMgr::abortOperation(ModuleBase_Operation* theOperation)
431 {
432   ModuleBase_Operation* aCurrentOperation = currentOperation();
433   if (theOperation == aCurrentOperation)
434     theOperation->abort();
435   else {
436     // it is possible to trigger upper operation(e.g. sketch, current is sketch line)
437     // all operation from the current to triggered should also be aborted
438     // operations over the parameter one are not aborted(e.g. extrusion cut, sketch abort)
439     while(hasOperation()) {
440       ModuleBase_Operation* aCurrentOperation = currentOperation();
441       aCurrentOperation->abort();
442       if(theOperation == aCurrentOperation)
443         break;
444     }
445   }
446 }
447
448 bool XGUI_OperationMgr::commitOperation()
449 {
450   bool isCommitted = false;
451   ModuleBase_Operation* anOperation = currentOperation();
452   if (anOperation && myWorkshop->module()->canCommitOperation())
453     isCommitted = anOperation->commit();
454   return isCommitted;
455 }
456
457 void XGUI_OperationMgr::onAbortOperation()
458 {
459   ModuleBase_Operation* aCurrentOperation = currentOperation();
460   if (aCurrentOperation && canStopOperation(aCurrentOperation)) {
461     abortOperation(aCurrentOperation);
462   }
463 }
464
465 void XGUI_OperationMgr::onAbortAllOperation()
466 {
467   abortAllOperations();
468 }
469
470 void XGUI_OperationMgr::onBeforeOperationStarted()
471 {
472   ModuleBase_Operation* aCurrentOperation = dynamic_cast<ModuleBase_Operation*>(sender());
473   if (!aCurrentOperation)
474     return;
475
476   /// Set current feature and remeber old current feature
477   ModuleBase_OperationFeature* aFOperation =
478     dynamic_cast<ModuleBase_OperationFeature*>(aCurrentOperation);
479   if (aFOperation) {
480     SessionPtr aMgr = ModelAPI_Session::get();
481     DocumentPtr aDoc = aMgr->activeDocument();
482     // the parameter of current feature should be false, we should use all feature, not only
483     // visible in order to correctly save the previous feature of the nested operation, where the
484     // features can be not visible in the tree. The problem case is Edit sketch entitity(line)
485     // in the Sketch, created in ExtrusionCut operation. The entity disappears by commit.
486     // When sketch entity operation started, the sketch should be cashed here as the current.
487     // Otherwise(the flag is true), the ExtrusionCut is cashed, when commit happens, the sketch
488     // is disabled, sketch entity is disabled as extrusion cut is created earliest then sketch.
489     // As a result the sketch disappears from the viewer.
490     // However after commit it is displayed back.
491     aFOperation->setPreviousCurrentFeature(aDoc->currentFeature(false));
492
493 #ifdef DEBUG_CURRENT_FEATURE
494     FeaturePtr aFeature = aFOperation->feature();
495     QString aKind = aFeature ? aFeature->getKind().c_str() : "";
496     qDebug("");
497     qDebug(QString("onBeforeOperationStarted() isEditOperation = %1, feature = %2")
498             .arg(aFOperation->isEditOperation())
499             .arg(ModuleBase_Tools::objectName(aFeature)).toStdString().c_str());
500     qDebug(QString("   document->currentFeature(false) = %1 : DO: setPreviousCurrentFeature").arg(
501             ModuleBase_Tools::objectName(aDoc->currentFeature(false))).toStdString().c_str());
502 #endif
503
504     if (aFOperation->isEditOperation()) {// it should be performed by the feature edit only
505       // in create operation, the current feature is changed by addFeature()
506       aDoc->setCurrentFeature(aFOperation->feature(), false);
507 #ifdef DEBUG_CURRENT_FEATURE
508       qDebug(QString("   document->setCurrentFeature(false) = %1").arg(
509              ModuleBase_Tools::objectName(aDoc->currentFeature(false))).toStdString().c_str());
510 #endif
511       // this is the only place where flushes must be called after setCurrentFeature for the
512       // current moment: after this the opertion is not finished, so, the ObjectBrowser
513       // state may be corrupted (issue #1457)
514       static Events_Loop* aLoop = Events_Loop::loop();
515       static Events_ID aCreateEvent = aLoop->eventByName(EVENT_OBJECT_CREATED);
516       aLoop->flush(aCreateEvent);
517       static Events_ID aDeleteEvent = aLoop->eventByName(EVENT_OBJECT_DELETED);
518       aLoop->flush(aDeleteEvent);
519     }
520   }
521 }
522
523 void XGUI_OperationMgr::onOperationStarted()
524 {
525   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
526   updateApplyOfOperations(aSenderOperation);
527   XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
528   aWorkshop->operationStarted(aSenderOperation);
529 }
530
531 void XGUI_OperationMgr::onBeforeOperationAborted()
532 {
533   onBeforeOperationCommitted();
534 }
535
536 void XGUI_OperationMgr::onOperationAborted()
537 {
538   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
539   emit operationAborted(aSenderOperation);
540 }
541
542 void XGUI_OperationMgr::onBeforeOperationCommitted()
543 {
544   ModuleBase_Operation* aCurrentOperation = dynamic_cast<ModuleBase_Operation*>(sender());
545   if (!aCurrentOperation)
546     return;
547
548   /// Restore the previous current feature
549   ModuleBase_OperationFeature* aFOperation =
550     dynamic_cast<ModuleBase_OperationFeature*>(aCurrentOperation);
551   if (aFOperation) {
552 #ifdef DEBUG_CURRENT_FEATURE
553     QString aKind = aFOperation->feature()->getKind().c_str();
554     qDebug(QString("onBeforeOperationCommitted() isEditOperation = %1, feature = %2")
555             .arg(aFOperation->isEditOperation())
556             .arg(ModuleBase_Tools::objectName(aFOperation->feature())).toStdString().c_str());
557     qDebug(QString("   document->currentFeature(false) = %1").arg(
558             ModuleBase_Tools::objectName(
559             ModelAPI_Session::get()->activeDocument()->currentFeature(false)))
560             .toStdString().c_str());
561 #endif
562
563     if (aFOperation->isEditOperation()) {
564       /// Restore the previous current feature
565       setCurrentFeature(aFOperation->previousCurrentFeature());
566     }
567     else { // create operation
568       // the Top created feature should stays the current. In nested operations,
569       // like Line in the Sketch or
570       // Sketch in ExtrusionCut, a previous feature should be restored on commit.
571       // It is performed here
572       // in order to perform it in the current transaction without opening a new one.
573       if (myOperations.front() != aFOperation)
574         setCurrentFeature(aFOperation->previousCurrentFeature());
575     }
576     ModuleBase_IModule* aModule = myWorkshop->module();
577     if (aModule)
578       aModule->beforeOperationStopped(aFOperation);
579   }
580 }
581
582 void XGUI_OperationMgr::onOperationCommitted()
583 {
584   // apply state for all features from the stack of operations should be updated
585   updateApplyOfOperations();
586
587   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
588   emit operationCommitted(aSenderOperation);
589 }
590
591 void XGUI_OperationMgr::onOperationResumed()
592 {
593   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
594   emit operationResumed(aSenderOperation);
595 }
596
597 void XGUI_OperationMgr::onOperationStopped()
598 {
599   ModuleBase_Operation* aSenderOperation = dynamic_cast<ModuleBase_Operation*>(sender());
600   ModuleBase_Operation* aCurrentOperation = currentOperation();
601   if (!aSenderOperation || !aCurrentOperation || aSenderOperation != aCurrentOperation)
602     return;
603
604   myOperations.removeAll(aCurrentOperation);
605   aCurrentOperation->deleteLater();
606
607   emit operationStopped(aCurrentOperation);
608
609   // get last operation which can be resumed
610   ModuleBase_Operation* aResultOp = 0;
611   QListIterator<ModuleBase_Operation*> anIt(myOperations);
612   anIt.toBack();
613   while (anIt.hasPrevious()) {
614     ModuleBase_Operation* anOp = anIt.previous();
615     if (anOp) {
616       aResultOp = anOp;
617       break;
618     }
619   }
620   if (aResultOp) {
621     bool isModified = aCurrentOperation->isModified();
622     aResultOp->setIsModified(aResultOp->isModified() || isModified);
623     resumeOperation(aResultOp);
624     onValidateOperation();
625   }
626 }
627
628 bool XGUI_OperationMgr::onKeyReleased(QObject *theObject, QKeyEvent* theEvent)
629 {
630   // Let the manager decide what to do with the given key combination.
631   ModuleBase_Operation* anOperation = currentOperation();
632   bool isAccepted = false;
633   switch (theEvent->key()) {
634     case Qt::Key_Tab:
635     case Qt::Key_Backtab:
636     {
637       ModuleBase_Operation* aOperation = currentOperation();
638       if (aOperation) {
639         ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
640         if (aPanel) {
641           QWidget* aFocusedWidget = qApp->focusWidget();
642           bool isPPChildObject = aFocusedWidget && isChildObject(aFocusedWidget, aPanel);
643           if (!isPPChildObject) {
644             // check for case when the operation is started but property panel is not filled
645             XGUI_PropertyPanel* aPP = dynamic_cast<XGUI_PropertyPanel*>(aPanel);
646             aPP->setFocusNextPrevChild(theEvent->key() == Qt::Key_Tab);
647             isAccepted = true;
648           }
649         }
650       }
651     }
652     break;
653     case Qt::Key_Return:
654     case Qt::Key_Enter: {
655       isAccepted = onProcessEnter(theObject);
656     }
657     break;
658     case Qt::Key_N:
659     case Qt::Key_P: {
660       bool noModifiers = (theEvent->modifiers() == Qt::NoModifier);
661       if (noModifiers) {
662         ModuleBase_IViewer* aViewer = myWorkshop->viewer();
663         Handle(AIS_InteractiveContext) aContext = aViewer->AISContext();
664         if (!aContext.IsNull()) {
665           Handle(V3d_View) aView = aViewer->activeView();
666           if ((theEvent->key() == Qt::Key_N))
667             aContext->HilightNextDetected(aView);
668           else if ((theEvent->key() == Qt::Key_P))
669             aContext->HilightPreviousDetected(aView);
670         }
671       }
672     }
673     break;
674     break;
675     default:
676       isAccepted = false;
677       break;
678   }
679   //if(anOperation) {
680   //  anOperation->keyReleased(theEvent->key());
681   //}
682   return isAccepted;
683 }
684
685 bool XGUI_OperationMgr::onKeyPressed(QObject *theObject, QKeyEvent* theEvent)
686 {
687   // Let the manager decide what to do with the given key combination.
688   ModuleBase_Operation* anOperation = currentOperation();
689   bool isAccepted = false;
690   switch (theEvent->key()) {
691     case Qt::Key_Escape: {
692       // processing in message box
693       if (myActiveMessageBox)
694       {
695         myActiveMessageBox->reject();
696         isAccepted = true;
697       }
698       // processing in the active widget
699       ModuleBase_Operation* aOperation = currentOperation();
700       if (!isAccepted && aOperation) {
701         ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
702         ModuleBase_ModelWidget* anActiveWgt = aPanel->activeWidget();
703         if (anActiveWgt)
704           isAccepted = anActiveWgt && anActiveWgt->processEscape();
705       }
706       // default Escape button functionality
707       if (!isAccepted && aOperation) {
708         onAbortOperation();
709         isAccepted = true;
710       }
711     }
712     break;
713   }
714   return isAccepted;
715 }
716
717 bool XGUI_OperationMgr::onProcessEnter(QObject* theObject)
718 {
719   bool isAccepted = false;
720   ModuleBase_Operation* aOperation = currentOperation();
721   // to avoid enter processing when operation has not been started yet
722   if (!aOperation)
723     return isAccepted;
724   ModuleBase_IPropertyPanel* aPanel = aOperation->propertyPanel();
725   // the next code is obsolete as we want to process Enter in property panel always
726   // only property panel enter is processed in order to do not process enter in application dialogs
727   //bool isPPChild = isChildObject(theObject, aPanel);
728   //if (!isPPChild)
729   //  return isAccepted;
730
731   ModuleBase_ModelWidget* anActiveWgt = aPanel->activeWidget();
732   bool isAborted = false;
733   if (!anActiveWgt) {
734     QWidget* aFocusWidget = aPanel->focusWidget();
735     QToolButton* aCancelBtn =
736       dynamic_cast<XGUI_PropertyPanel*>(aPanel)->findButton(PROP_PANEL_CANCEL);
737     if (aFocusWidget && aCancelBtn && aFocusWidget == aCancelBtn) {
738       abortOperation(aOperation);
739       isAccepted = true;
740       isAborted = true;
741     }
742   }
743   if (!isAborted) {
744     isAccepted = anActiveWgt && anActiveWgt->processEnter();
745     if (!isAccepted) {
746       isAccepted =
747         myWorkshop->module()->processEnter(anActiveWgt ? anActiveWgt->attributeID() : "");
748       if (!isAccepted) {
749         /// functionality is similar to Apply click
750         ModuleBase_OperationFeature* aFOperation =
751           dynamic_cast<ModuleBase_OperationFeature*>(currentOperation());
752         if (!aFOperation ||
753             myWorkshop->module()->getFeatureError(aFOperation->feature()).isEmpty()) {
754           // key released is emitted to apply the current value to the model
755           // if it was modified in PP
756           emit keyEnterReleased();
757           commitOperation();
758           isAccepted = true;
759         }
760         else
761           isAccepted = false;
762       }
763     }
764   }
765   return isAccepted;
766 }
767
768 bool editorControl(QObject* theObject)
769 {
770   QLineEdit* aLineEdit = dynamic_cast<QLineEdit*>(theObject);
771   return aLineEdit;
772 }
773
774 bool XGUI_OperationMgr::onProcessDelete(QObject* theObject)
775 {
776   bool isAccepted = false;
777   ModuleBase_Operation* aOperation = currentOperation();
778   ModuleBase_ModelWidget* anActiveWgt = 0;
779   // firstly the widget should process Delete action
780   ModuleBase_IPropertyPanel* aPanel;
781   bool isPPChildObject = false;
782   if (aOperation) {
783     aPanel = aOperation->propertyPanel();
784     if (aPanel) {
785       isPPChildObject = isChildObject(theObject, aPanel);
786       // process delete in active widget only if delete sender is child of property panel
787       // it is necessary for the case when OB is shown, user perform selection and click Delete
788       if (isPPChildObject) {
789         anActiveWgt = aPanel->activeWidget();
790         if (anActiveWgt) {
791           isAccepted = anActiveWgt->processDelete();
792         }
793       }
794     }
795   }
796   if (!isAccepted) {
797     // after widget, object browser and viewer should process delete
798     /// other widgets such as line edit controls should not lead to
799     /// processing delete by workshop
800     XGUI_ObjectsBrowser* aBrowser = XGUI_Tools::workshop(myWorkshop)->objectBrowser();
801     QWidget* aViewPort = myWorkshop->viewer()->activeViewPort();
802     bool isToDeleteObject = false;
803     XGUI_Workshop* aWorkshop = XGUI_Tools::workshop(myWorkshop);
804     XGUI_ContextMenuMgr* aContextMenuMgr = aWorkshop->contextMenuMgr();
805     if (theObject == aBrowser->treeView()) {
806       aContextMenuMgr->updateObjectBrowserMenu();
807       isToDeleteObject = aContextMenuMgr->action("DELETE_CMD")->isEnabled();
808     }
809     else if (isChildObject(theObject, aViewPort)) {
810       aContextMenuMgr->updateViewerMenu();
811       isToDeleteObject = aContextMenuMgr->action("DELETE_CMD")->isEnabled();
812     }
813     else if (isPPChildObject) {
814       // property panel child object is processed to process delete performed on Apply button of PP
815       isToDeleteObject = true;
816     }
817     else if (editorControl(theObject)) {
818       isToDeleteObject = false; /// Line Edit of Rename operation in ObjectBrowser
819       isAccepted = true;
820     }
821
822     if (isToDeleteObject) {
823       aWorkshop->deleteObjects();
824       isAccepted = true;
825     }
826   }
827
828   return isAccepted;
829 }
830
831 bool XGUI_OperationMgr::isChildObject(const QObject* theObject, const QObject* theParent)
832 {
833   bool isPPChild = false;
834   if (theParent && theObject) {
835     QObject* aParent = (QObject*)theObject;
836     while (aParent ) {
837       isPPChild = aParent == theParent;
838       if (isPPChild)
839         break;
840       aParent = aParent->parent();
841     }
842   }
843   return isPPChild;
844 }
845
846 QMessageBox* XGUI_OperationMgr::createMessageBox(const QString& theMessage)
847 {
848   QMessageBox * aMessageBox = new QMessageBox(QMessageBox::Question,
849     QObject::tr("Abort operation"), theMessage, QMessageBox::Ok | QMessageBox::Cancel,
850     qApp->activeWindow());
851   aMessageBox->setDefaultButton(QMessageBox::Cancel);
852   aMessageBox->setEscapeButton(QMessageBox::No); // operation manager should process Esc key
853
854   return aMessageBox;
855 }