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