Salome HOME
936057419477d53d93380268c68138d9c2b00b1c
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 //#include "XGUI_Constants.h"
4 #include "XGUI_Workshop.h"
5
6 #include "XGUI_ActionsMgr.h"
7 #include "XGUI_ColorDialog.h"
8 #include "XGUI_ContextMenuMgr.h"
9 #include "XGUI_Displayer.h"
10 #include "XGUI_ErrorDialog.h"
11 #include "XGUI_ErrorMgr.h"
12 #include "XGUI_ModuleConnector.h"
13 #include "XGUI_ObjectsBrowser.h"
14 #include "XGUI_OperationMgr.h"
15 #include "XGUI_PropertyPanel.h"
16 #include "XGUI_SalomeConnector.h"
17 #include "XGUI_Selection.h"
18 #include "XGUI_SelectionMgr.h"
19 #include "XGUI_Tools.h"
20 #include "XGUI_ViewerProxy.h"
21 #include "XGUI_WorkshopListener.h"
22 #include <XGUI_CustomPrs.h>
23 #include <XGUI_HistoryMenu.h>
24 #include <XGUI_QtEvents.h>
25
26 #include <AppElements_Button.h>
27 #include <AppElements_Command.h>
28 #include <AppElements_MainMenu.h>
29 #include <AppElements_MainWindow.h>
30 #include <AppElements_MenuGroupPanel.h>
31 #include <AppElements_Viewer.h>
32 #include <AppElements_Workbench.h>
33
34 #include <ModelAPI_AttributeDocRef.h>
35 #include <ModelAPI_AttributeIntArray.h>
36 #include <ModelAPI_Data.h>
37 #include <ModelAPI_Events.h>
38 #include <ModelAPI_Feature.h>
39 #include <ModelAPI_Object.h>
40 #include <ModelAPI_ResultBody.h>
41 #include <ModelAPI_ResultConstruction.h>
42 #include <ModelAPI_ResultGroup.h>
43 #include <ModelAPI_ResultParameter.h>
44 #include <ModelAPI_Session.h>
45 #include <ModelAPI_Validator.h>
46 #include <ModelAPI_ResultCompSolid.h>
47 #include <ModelAPI_Tools.h>
48
49 //#include <PartSetPlugin_Part.h>
50
51 #include <Events_Loop.h>
52 #include <Events_Error.h>
53 #include <Events_LongOp.h>
54
55 #include <ModuleBase_FilterFactory.h>
56 #include <ModuleBase_IModule.h>
57 #include <ModuleBase_IViewer.h>
58 #include <ModuleBase_Operation.h>
59 #include <ModuleBase_OperationDescription.h>
60 #include <ModuleBase_PageBase.h>
61 #include <ModuleBase_Preferences.h>
62 #include <ModuleBase_SelectionValidator.h>
63 #include <ModuleBase_Tools.h>
64 #include <ModuleBase_WidgetFactory.h>
65 #include <ModuleBase_OperationFeature.h>
66 #include <ModuleBase_OperationAction.h>
67
68 #include <Config_Common.h>
69 #include <Config_FeatureMessage.h>
70 #include <Config_ModuleReader.h>
71 #include <Config_PointerMessage.h>
72 #include <Config_PropManager.h>
73 #include <Config_SelectionFilterMessage.h>
74
75 #include <SUIT_ResourceMgr.h>
76
77 #include <QApplication>
78 #include <QFileDialog>
79 #include <QMessageBox>
80 #include <QMdiSubWindow>
81 #include <QPushButton>
82 #include <QDockWidget>
83 #include <QLayout>
84 #include <QThread>
85 #include <QObject>
86 #include <QMenu>
87 #include <QToolButton>
88 #include <QAction>
89 #include <QDesktopWidget>
90
91 #include <iterator>
92
93 #ifdef _DEBUG
94 #include <QDebug>
95 #include <iostream>
96 #endif
97
98 #ifdef WIN32
99 #include <windows.h>
100 #else
101 #include <dlfcn.h>
102 #endif
103
104 //#define DEBUG_DELETE
105
106 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
107     : QObject(),
108       myCurrentDir(QString()),
109       myModule(NULL),
110       mySalomeConnector(theConnector),
111       myPropertyPanel(0),
112       myObjectBrowser(0),
113       myDisplayer(0)
114 {
115   myMainWindow = mySalomeConnector ? 0 : new AppElements_MainWindow();
116
117   if (myMainWindow) {
118     SUIT_ResourceMgr* aResMgr = ModuleBase_Preferences::resourceMgr();
119     bool aCloc = aResMgr->booleanValue("language", "locale", true);
120     if (aCloc)
121       QLocale::setDefault( QLocale::c() );
122     else 
123       QLocale::setDefault( QLocale::system() );
124   }
125
126   myDisplayer = new XGUI_Displayer(this);
127
128   mySelector = new XGUI_SelectionMgr(this);
129   //connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateModuleCommands()));
130
131   myOperationMgr = new XGUI_OperationMgr(this, 0);
132   myActionsMgr = new XGUI_ActionsMgr(this);
133   myErrorDlg = new XGUI_ErrorDialog(QApplication::desktop());
134   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
135   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
136           SLOT(onContextMenuCommand(const QString&, bool)));
137
138   myViewerProxy = new XGUI_ViewerProxy(this);
139   connect(myViewerProxy, SIGNAL(selectionChanged()),
140           myActionsMgr,  SLOT(updateOnViewSelection()));
141
142   myModuleConnector = new XGUI_ModuleConnector(this);
143
144   ModuleBase_IWorkshop* aWorkshop = moduleConnector();
145   myOperationMgr->setWorkshop(aWorkshop);
146
147   myErrorMgr = new XGUI_ErrorMgr(this, aWorkshop);
148   myEventsListener = new XGUI_WorkshopListener(aWorkshop);
149
150   connect(myOperationMgr, SIGNAL(operationStarted(ModuleBase_Operation*)), 
151           SLOT(onOperationStarted(ModuleBase_Operation*)));
152   connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
153           SLOT(onOperationResumed(ModuleBase_Operation*)));
154   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
155           SLOT(onOperationStopped(ModuleBase_Operation*)));
156   connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)), 
157           SLOT(onOperationCommitted(ModuleBase_Operation*)));
158   connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)), 
159           SLOT(onOperationAborted(ModuleBase_Operation*)));
160   //connect(myOperationMgr, SIGNAL(validationStateChanged(bool)), 
161   //        myErrorMgr, SLOT(onValidationStateChanged()));
162
163   if (myMainWindow)
164     connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
165   connect(this, SIGNAL(errorOccurred(const QString&)), myErrorDlg, SLOT(addError(const QString&)));
166   connect(myEventsListener, SIGNAL(errorOccurred(const QString&)),
167           myErrorDlg, SLOT(addError(const QString&)));
168
169   //Config_PropManager::registerProp("Visualization", "object_default_color", "Object color",
170   //                                 Config_Prop::Color, "225,225,225");
171
172   Config_PropManager::registerProp("Visualization", "result_body_color", "Body color",
173                                    Config_Prop::Color, ModelAPI_ResultBody::DEFAULT_COLOR());
174   Config_PropManager::registerProp("Visualization", "result_group_color", "Group color",
175                                    Config_Prop::Color, ModelAPI_ResultGroup::DEFAULT_COLOR());
176   Config_PropManager::registerProp("Visualization", "result_construction_color", "Construction color",
177                                    Config_Prop::Color, ModelAPI_ResultConstruction::DEFAULT_COLOR());
178   Config_PropManager::registerProp("Visualization", "result_part_color", "Part color",
179                                    Config_Prop::Color, ModelAPI_ResultPart::DEFAULT_COLOR());
180 }
181
182 //******************************************************
183 XGUI_Workshop::~XGUI_Workshop(void)
184 {
185   delete myDisplayer;
186 }
187
188 //******************************************************
189 void XGUI_Workshop::startApplication()
190 {
191   initMenu();
192
193   Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
194                                    Config_Prop::Directory, "");
195
196   //Initialize event listening
197   myEventsListener->initializeEventListening();
198
199   registerValidators();
200
201   // Calling of  loadCustomProps before activating module is required
202   // by Config_PropManger to restore user-defined path to plugins
203   ModuleBase_Preferences::loadCustomProps();
204   createModule();
205   if (myMainWindow) {
206     myMainWindow->show();
207     updateCommandStatus();
208   }
209   
210   onNew();
211
212   emit applicationStarted();
213 }
214
215 void XGUI_Workshop::activateModule()
216 {
217   myModule->activateSelectionFilters();
218
219   connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
220     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
221   connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
222     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
223
224   myActionsMgr->update();
225
226   // activate visualized objects in the viewer
227   XGUI_Displayer* aDisplayer = displayer();
228   QObjectPtrList aDisplayed = aDisplayer->displayedObjects();
229   QIntList aModes;
230   module()->activeSelectionModes(aModes);
231   aDisplayer->activateObjects(aModes, aDisplayed);
232 }
233
234 void XGUI_Workshop::deactivateModule()
235 {
236   myModule->deactivateSelectionFilters();
237
238   // remove internal displayer filter
239   displayer()->deactivateSelectionFilters();
240
241   disconnect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
242     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
243   disconnect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
244     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
245
246   XGUI_Displayer* aDisplayer = displayer();
247   QObjectPtrList aDisplayed = aDisplayer->displayedObjects();
248   aDisplayer->deactivateObjects(aDisplayed, true);
249 }
250
251 //******************************************************
252 void XGUI_Workshop::initMenu()
253 {
254   myContextMenuMgr->createActions();
255
256   if (isSalomeMode()) {
257     // Create only Undo, Redo commands
258     QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
259                                                          tr("Undo last command"),
260                                                          QIcon(":pictures/undo.png"),
261                                                          QKeySequence::Undo, false, "MEN_DESK_EDIT");
262     QString aToolBarTitle = tr( "INF_DESK_TOOLBAR_STANDARD" );
263     salomeConnector()->addActionInToolbar( aAction,aToolBarTitle  );
264
265     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
266     addHistoryMenu(aAction, SIGNAL(updateUndoHistory(const QList<ActionInfo>&)), SLOT(onUndo(int)));
267
268     aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
269                                                 QIcon(":pictures/redo.png"), QKeySequence::Redo,
270                                                 false, "MEN_DESK_EDIT");
271     salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
272
273     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
274     addHistoryMenu(aAction, SIGNAL(updateRedoHistory(const QList<ActionInfo>&)), SLOT(onRedo(int)));
275
276     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
277     aAction = salomeConnector()->addDesktopCommand("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
278                                                 QIcon(":pictures/rebuild.png"), QKeySequence(),
279                                                 false, "MEN_DESK_EDIT");
280     salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
281
282     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRebuild()));
283     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
284
285     aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Export NewGeom..."), tr("Export the current document into a NewGeom file"),
286                                                 QIcon(), QKeySequence(),
287                                                 false, "MEN_DESK_FILE");
288     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
289
290     aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Import NewGeom..."), tr("Import a NewGeom file"),
291                                                 QIcon(), QKeySequence(),
292                                                 false, "MEN_DESK_FILE");
293     connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
294     salomeConnector()->addDesktopMenuSeparator("MEN_DESK_FILE");
295
296     return;
297   }
298   // File commands group
299   AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
300
301   AppElements_Command* aCommand;
302
303   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save"), tr("Save the document"),
304                                 QIcon(":pictures/save.png"), QKeySequence::Save);
305   aCommand->connectTo(this, SLOT(onSave()));
306   //aCommand->disable();
307
308   QString aUndoId = "UNDO_CMD";
309   aCommand = aGroup->addFeature(aUndoId, tr("Undo"), tr("Undo last command"),
310                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
311   aCommand->connectTo(this, SLOT(onUndo()));
312   AppElements_Button* aUndoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aUndoId));
313   addHistoryMenu(aUndoButton,
314                  SIGNAL(updateUndoHistory(const QList<ActionInfo>&)),
315                  SLOT(onUndo(int)));
316
317   QString aRedoId = "REDO_CMD";
318   aCommand = aGroup->addFeature(aRedoId, tr("Redo"), tr("Redo last command"),
319                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
320   aCommand->connectTo(this, SLOT(onRedo()));
321   AppElements_Button* aRedoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aRedoId));
322   addHistoryMenu(aRedoButton,
323                  SIGNAL(updateRedoHistory(const QList<ActionInfo>&)),
324                  SLOT(onRedo(int)));
325
326   aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
327     QIcon(":pictures/rebuild.png"), QKeySequence());
328   aCommand->connectTo(this, SLOT(onRebuild()));
329
330   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
331                                 QIcon(":pictures/save.png"), QKeySequence());
332   aCommand->connectTo(this, SLOT(onSaveAs()));
333   //aCommand->disable();
334
335   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
336                                 QIcon(":pictures/open.png"), QKeySequence::Open);
337   aCommand->connectTo(this, SLOT(onOpen()));
338
339   //aCommand = aGroup->addFeature("NEW_CMD", tr("New"), tr("Create a new document"),
340   //                              QIcon(":pictures/new.png"), QKeySequence::New);
341   //aCommand->connectTo(this, SLOT(onNew()));
342
343   aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
344                                 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
345   aCommand->connectTo(this, SLOT(onPreferences()));
346
347   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
348                                 QIcon(":pictures/close.png"), QKeySequence::Close);
349   aCommand->connectTo(this, SLOT(onExit()));
350   //FIXME: SBH's test action. Can be used for some GUI tests.
351 //  #ifdef _DEBUG
352 //    aCommand = aGroup->addFeature("TEST_CMD", "Test!", "Private debug button",
353 //                                  QIcon(":pictures/close.png"), QKeySequence(), true);
354 //    aCommand->connectTo(myMainWindow, SLOT(dockPythonConsole()));
355 //  #endif
356 }
357
358 //******************************************************
359 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
360 {
361   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
362   return aMenuBar->addWorkbench(theName);
363 }
364
365 //******************************************************
366 QMainWindow* XGUI_Workshop::desktop() const
367 {
368   return isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
369 }
370
371 //******************************************************
372 void XGUI_Workshop::onStartWaiting()
373 {
374   if (Events_LongOp::isPerformed()) {
375     QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
376   }
377 }
378
379 //******************************************************
380 void XGUI_Workshop::onAcceptActionClicked()
381 {
382   QAction* anAction = dynamic_cast<QAction*>(sender());
383   XGUI_OperationMgr* anOperationMgr = operationMgr();
384   if (anOperationMgr) {
385     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
386                                                     (anOperationMgr->currentOperation());
387     if (aFOperation) {
388       if (errorMgr()->canProcessClick(anAction, aFOperation->feature()))
389         myOperationMgr->onCommitOperation();
390     }
391   }
392 }
393
394 //******************************************************
395 /*void XGUI_Workshop::onValidationStateChanged(bool theEnabled)
396 {
397   XGUI_OperationMgr* anOperationMgr = operationMgr();
398   if (anOperationMgr) {
399     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
400                                                     (anOperationMgr->currentOperation());
401     if (aFOperation) {
402       QAction* anAction = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
403       myErrorMgr->updateActionState(anAction, aFOperation->feature(), theEnabled);
404     }
405   }
406 }*/
407
408
409 //******************************************************
410 void XGUI_Workshop::deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer)
411 {
412   if (!myModule->canActivateSelection(theObject)) {
413     if (myDisplayer->isActive(theObject)) {
414       QObjectPtrList anObjects;
415       anObjects.append(theObject);
416       myDisplayer->deactivateObjects(anObjects, theUpdateViewer);
417     }
418   }
419 }
420
421 //******************************************************
422 bool XGUI_Workshop::isFeatureOfNested(const FeaturePtr& theFeature)
423 {
424   bool aHasNested = false;
425   std::string aFeatureKind = theFeature->getKind();
426   if (isSalomeMode()) {
427     XGUI_SalomeConnector* aSalomeConnector = salomeConnector();
428     if (aSalomeConnector->isFeatureOfNested(actionsMgr()->action(aFeatureKind.c_str())))
429       aHasNested = true;
430   } else {
431     AppElements_MainMenu* aMenuBar = mainWindow()->menuObject();
432     AppElements_Command* aCommand = aMenuBar->feature(aFeatureKind.c_str());
433     if (aCommand && aCommand->button()->additionalButtonWidget())
434       aHasNested = true;
435   }
436   return aHasNested;
437 }
438
439 //******************************************************
440 void XGUI_Workshop::onOperationStarted(ModuleBase_Operation* theOperation)
441 {
442   setGrantedFeatures(theOperation);
443
444   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
445                                                                                (theOperation);
446   if (!aFOperation)
447     return;
448
449   if (aFOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
450     setPropertyPanel(aFOperation);
451     // filling the operation values by the current selection
452     // if the operation can be committed after the controls filling, the method perform should
453     // be stopped. Otherwise unnecessary presentations can be shown(e.g. operation prs in sketch)
454     if (!aFOperation->isEditOperation()) {
455       aFOperation->activateByPreselection();
456       if (operationMgr()->currentOperation() != aFOperation)
457         return;
458     }
459   }
460   updateCommandStatus();
461
462   myModule->onOperationStarted(aFOperation);
463
464   // the objects of the current operation should be deactivated
465   QObjectPtrList anObjects;
466   FeaturePtr aFeature = aFOperation->feature();
467   anObjects.append(aFeature);
468   std::list<ResultPtr> aResults = aFeature->results();
469   std::list<ResultPtr>::const_iterator aIt;
470   for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
471     anObjects.append(*aIt);
472   }
473   QObjectPtrList::const_iterator anIt = anObjects.begin(), aLast = anObjects.end();
474   for (; anIt != aLast; anIt++)
475     deactivateActiveObject(*anIt, false);
476   if (anObjects.size() > 0)
477     myDisplayer->updateViewer();
478 }
479
480 //******************************************************
481 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
482 {
483   setGrantedFeatures(theOperation);
484
485   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
486     setPropertyPanel(theOperation);
487   }
488   updateCommandStatus();
489
490   myModule->onOperationResumed(theOperation);
491 }
492
493
494 //******************************************************
495 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
496 {
497   updateCommandStatus();
498
499   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
500                                                                         (theOperation);
501   if (!aFOperation)
502     return;
503
504   ModuleBase_ISelection* aSel = mySelector->selection();
505   QObjectPtrList aObj = aSel->selectedPresentations();
506   //!< No need for property panel
507   hidePropertyPanel();
508   myPropertyPanel->cleanContent();
509
510   myModule->onOperationStopped(aFOperation);
511
512   // the deactivated objects of the current operation should be activated back.
513   // They were deactivated on operation start or an object redisplay
514   QObjectPtrList anObjects;
515   FeaturePtr aFeature = aFOperation->feature();
516   if (aFeature.get()) { // feature may be not created (plugin load fail)
517     if (myDisplayer->isVisible(aFeature) && !myDisplayer->isActive(aFeature))
518       anObjects.append(aFeature);
519     std::list<ResultPtr> aResults = aFeature->results();
520     std::list<ResultPtr>::const_iterator aIt;
521     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
522       ResultPtr anObject = *aIt;
523       if (myDisplayer->isVisible(anObject) && !myDisplayer->isActive(anObject)) {
524         anObjects.append(anObject);
525       }
526     }
527   }
528   QIntList aModes;
529   module()->activeSelectionModes(aModes);
530   myDisplayer->activateObjects(aModes, anObjects);
531 }
532
533
534 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
535 {
536   myModule->onOperationCommitted(theOperation);
537 }
538
539 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
540 {
541   myModule->onOperationAborted(theOperation);
542 }
543
544 void XGUI_Workshop::setGrantedFeatures(ModuleBase_Operation* theOperation)
545 {
546   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
547   if (!aFOperation)
548     return;
549
550   QStringList aGrantedIds;
551   if (isSalomeMode())
552     aGrantedIds = mySalomeConnector->nestedActions(theOperation->id());
553   else
554     aGrantedIds = myActionsMgr->nestedCommands(theOperation->id());
555
556   aFOperation->setGrantedOperationIds(aGrantedIds);
557 }
558
559 void XGUI_Workshop::setPropertyPanel(ModuleBase_Operation* theOperation)
560 {
561   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
562   if (!aFOperation)
563     return;
564
565   showPropertyPanel();
566   QString aXmlRepr = aFOperation->getDescription()->xmlRepresentation();
567   ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), myModuleConnector);
568
569   myPropertyPanel->cleanContent();
570   aFactory.createWidget(myPropertyPanel->contentWidget());
571
572   QList<ModuleBase_ModelWidget*> aWidgets = aFactory.getModelWidgets();
573
574   // check compatibility of feature and widgets
575   FeaturePtr aFeature = aFOperation->feature();
576   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
577     if (!aWidget->attributeID().empty() && !aFeature->attribute(aWidget->attributeID()).get()) {
578       std::string anErrorMsg = "The feature '" + aFeature->getKind() + "' has no attribute '"
579           + aWidget->attributeID() + "' used by widget '"
580           + aWidget->metaObject()->className() + "'.";
581       Events_Error::send(anErrorMsg);
582       myPropertyPanel->cleanContent();
583       return;
584     }
585   }
586
587   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
588     bool isStoreValue = !aFOperation->isEditOperation() &&
589                         !aWidget->getDefaultValue().empty() &&
590                         !aWidget->isComputedDefault();
591     aWidget->setFeature(aFOperation->feature(), isStoreValue);
592     aWidget->enableFocusProcessing();
593   }
594
595   myPropertyPanel->setModelWidgets(aWidgets);
596   aFOperation->setPropertyPanel(myPropertyPanel);
597
598   myModule->propertyPanelDefined(theOperation);
599
600   myPropertyPanel->setWindowTitle(theOperation->getDescription()->description());
601
602   myErrorMgr->setPropertyPanel(myPropertyPanel);
603 }
604
605 /*
606  * Saves document with given name.
607  */
608 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
609 {
610   QApplication::restoreOverrideCursor();
611   SessionPtr aMgr = ModelAPI_Session::get();
612   aMgr->save(theName.toLatin1().constData(), theFileNames);
613   QApplication::restoreOverrideCursor();
614 }
615
616 bool XGUI_Workshop::abortAllOperations()
617 {
618   return myOperationMgr->abortAllOperations();
619 }
620
621 //******************************************************
622 void XGUI_Workshop::onExit()
623 {
624   SessionPtr aMgr = ModelAPI_Session::get();
625   if (aMgr->isModified()) {
626     int anAnswer = QMessageBox::question(
627         myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
628         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
629     if (anAnswer == QMessageBox::Save) {
630       bool saved = onSave();
631       if (!saved) {
632         return;
633       }
634     } else if (anAnswer == QMessageBox::Cancel) {
635       return;
636     }
637   }
638   qApp->exit();
639 }
640
641 //******************************************************
642 void XGUI_Workshop::onNew()
643 {
644   QApplication::setOverrideCursor(Qt::WaitCursor);
645   if (objectBrowser() == 0) {
646     createDockWidgets();
647     mySelector->connectViewers();
648   }
649   myViewerProxy->connectToViewer();
650   showObjectBrowser();
651   if (!isSalomeMode()) {
652     myMainWindow->showPythonConsole();
653     QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
654     aWnd->showMaximized();
655     updateCommandStatus();
656   }
657   myContextMenuMgr->connectViewer();
658   QApplication::restoreOverrideCursor();
659 }
660
661 //******************************************************
662 void XGUI_Workshop::onOpen()
663 {
664   if(!abortAllOperations())
665     return;
666   //save current file before close if modified
667   SessionPtr aSession = ModelAPI_Session::get();
668   if (aSession->isModified()) {
669     //TODO(sbh): re-launch the app?
670     int anAnswer = QMessageBox::question(
671         myMainWindow, tr("Save current file"),
672         tr("The document is modified, save before opening another?"),
673         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
674     if (anAnswer == QMessageBox::Save) {
675       onSave();
676     } else if (anAnswer == QMessageBox::Cancel) {
677       return;
678     }
679     myCurrentDir = "";
680   }
681
682   //show file dialog, check if readable and open
683   myCurrentDir = QFileDialog::getExistingDirectory(mainWindow(), tr("Select directory"));
684   if (myCurrentDir.isEmpty())
685     return;
686   QFileInfo aFileInfo(myCurrentDir);
687   if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
688     QMessageBox::critical(myMainWindow, tr("Warning"), tr("Unable to open the file."));
689     myCurrentDir = "";
690     return;
691   }
692   QApplication::setOverrideCursor(Qt::WaitCursor);
693   aSession->closeAll();
694   aSession->load(myCurrentDir.toLatin1().constData());
695   myObjectBrowser->rebuildDataTree();
696   updateCommandStatus();
697   QApplication::restoreOverrideCursor();
698 }
699
700 //******************************************************
701 bool XGUI_Workshop::onSave()
702 {
703   if(!abortAllOperations())
704     return false;
705   if (myCurrentDir.isEmpty()) {
706     return onSaveAs();
707   }
708   std::list<std::string> aFiles;
709   saveDocument(myCurrentDir, aFiles);
710   updateCommandStatus();
711   if (!isSalomeMode())
712     myMainWindow->setModifiedState(false);
713   return true;
714 }
715
716 //******************************************************
717 bool XGUI_Workshop::onSaveAs()
718 {
719   if(!abortAllOperations())
720     return false;
721   QFileDialog dialog(mainWindow());
722   dialog.setWindowTitle(tr("Select directory to save files..."));
723   dialog.setFileMode(QFileDialog::Directory);
724   dialog.setFilter(tr("Directories (*)"));
725   dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
726   dialog.setViewMode(QFileDialog::Detail);
727
728   if (!dialog.exec()) {
729     return false;
730   }
731
732   QString aTempDir = dialog.selectedFiles().first();
733   QDir aDir(aTempDir);
734   if (aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
735     int answer = QMessageBox::question(
736         myMainWindow,
737         //: Title of the dialog which asks user if he wants to save study in existing non-empty folder
738         tr("Save"),
739         tr("The directory already contains some files, save anyway?"),
740         QMessageBox::Save | QMessageBox::Cancel);
741     if (answer == QMessageBox::Cancel) {
742       return false;
743     }
744   }
745   myCurrentDir = aTempDir;
746   if (!isSalomeMode()) {
747     myMainWindow->setCurrentDir(myCurrentDir, false);
748     myMainWindow->setModifiedState(false);
749   }
750   return onSave();
751 }
752
753 //******************************************************
754 void XGUI_Workshop::onUndo(int theTimes)
755 {
756   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
757   SessionPtr aMgr = ModelAPI_Session::get();
758   if (aMgr->isOperation()) {
759     /// this is important for nested operrations
760     /// when sketch opeation is active, this condition is false and 
761     /// the sketch operation is not aborted
762     operationMgr()->onAbortOperation();
763   }
764   for (int i = 0; i < theTimes; ++i) {
765     aMgr->undo();
766   }
767
768   operationMgr()->updateApplyOfOperations();
769   updateCommandStatus();
770 }
771
772 //******************************************************
773 void XGUI_Workshop::onRedo(int theTimes)
774 {
775   // the viewer update should be blocked in order to avoid the features blinking. For the created
776   // feature a results are created, the flush of the created signal caused the viewer redisplay for
777   // each created result. After a redisplay signal is flushed. So, the viewer update is blocked until
778   // redo of all possible objects happens
779   bool isUpdateEnabled = myDisplayer->enableUpdateViewer(false);
780
781   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
782   SessionPtr aMgr = ModelAPI_Session::get();
783   if (aMgr->isOperation()) {
784     /// this is important for nested operrations
785     /// when sketch opeation is active, this condition is false and 
786     /// the sketch operation is not aborted
787     operationMgr()->onAbortOperation();
788   }
789   for (int i = 0; i < theTimes; ++i) {
790     aMgr->redo();
791   }
792   operationMgr()->updateApplyOfOperations();
793   updateCommandStatus();
794
795   // unblock the viewer update functionality and make update on purpose
796   myDisplayer->enableUpdateViewer(isUpdateEnabled);
797   myDisplayer->updateViewer();
798 }
799
800 //******************************************************
801 void XGUI_Workshop::onRebuild()
802 {
803   SessionPtr aMgr = ModelAPI_Session::get();
804   bool aWasOperation = aMgr->isOperation(); // keep this value
805   if (!aWasOperation) {
806     aMgr->startOperation("Rebuild");
807   }
808   static const Events_ID aRebuildEvent = Events_Loop::loop()->eventByName("Rebuild");
809   Events_Loop::loop()->send(std::shared_ptr<Events_Message>(
810     new Events_Message(aRebuildEvent, this)));
811   if (!aWasOperation) {
812     aMgr->finishOperation();
813   }
814   updateCommandStatus();
815 }
816
817 //******************************************************
818 void XGUI_Workshop::onPreferences()
819 {
820   ModuleBase_Prefs aModif;
821   ModuleBase_Preferences::editPreferences(aModif);
822   if (aModif.size() > 0) {
823     QString aSection;
824     foreach (ModuleBase_Pref aPref, aModif)
825     {
826       aSection = aPref.first;
827       if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
828         if (!isSalomeMode())
829           myMainWindow->viewer()->updateFromResources();
830       } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
831         if (!isSalomeMode())
832           myMainWindow->menuObject()->updateFromResources();
833       }
834     }
835     displayer()->redisplayObjects();
836   }
837 }
838
839 //******************************************************
840 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
841 {
842   QString libName = QString::fromStdString(library(theModule.toStdString()));
843   if (libName.isEmpty()) {
844     qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
845     return 0;
846   }
847
848   QString err;
849   CREATE_FUNC crtInst = 0;
850
851 #ifdef WIN32
852   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
853   if (!modLib) {
854     LPVOID lpMsgBuf;
855     ::FormatMessage(
856         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
857         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
858     QString aMsg((char*) &lpMsgBuf);
859     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
860     ::LocalFree(lpMsgBuf);
861   } else {
862     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
863     if (!crtInst) {
864       LPVOID lpMsgBuf;
865       ::FormatMessage(
866           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
867               | FORMAT_MESSAGE_IGNORE_INSERTS,
868           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
869       QString aMsg((char*) &lpMsgBuf);
870       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
871       ::LocalFree(lpMsgBuf);
872     }
873   }
874 #else
875   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
876   if ( !modLib ) {
877     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
878   } else {
879     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
880     if ( !crtInst ) {
881       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
882     }
883   }
884 #endif
885
886   ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
887
888   if (!err.isEmpty()) {
889     if (mainWindow()) {
890       Events_Error::send(err.toStdString());
891     } else {
892       qWarning(qPrintable(err));
893     }
894   }
895   return aModule;
896 }
897
898 //******************************************************
899 bool XGUI_Workshop::createModule()
900 {
901   Config_ModuleReader aModuleReader;
902   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
903   myModule = loadModule(moduleName);
904   if (!myModule)
905     return false;
906
907   //connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
908   //  myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
909   //connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
910   //  myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
911
912   myModule->createFeatures();
913   //myActionsMgr->update();
914   return true;
915 }
916
917 //******************************************************
918 void XGUI_Workshop::updateCommandStatus()
919 {
920   QList<QAction*> aCommands;
921   if (isSalomeMode()) {  // update commands in SALOME mode
922     aCommands = salomeConnector()->commandList();
923   } else {
924     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
925     foreach (AppElements_Command* aCmd, aMenuBar->features())
926       aCommands.append(aCmd);
927   }
928   SessionPtr aMgr = ModelAPI_Session::get();
929   if (aMgr->hasModuleDocument()) {
930     foreach(QAction* aCmd, aCommands) {
931       QString aId = aCmd->data().toString();
932       if (aId == "UNDO_CMD")
933         aCmd->setEnabled(myModule->canUndo());
934       else if (aId == "REDO_CMD")
935         aCmd->setEnabled(myModule->canRedo());
936       else
937         // Enable all commands
938         aCmd->setEnabled(true);
939     }
940     updateHistory();
941   } else {
942     foreach(QAction* aCmd, aCommands) {
943       QString aId = aCmd->data().toString();
944       if (aId == "NEW_CMD")
945         aCmd->setEnabled(true);
946       else if (aId == "EXIT_CMD")
947         aCmd->setEnabled(true);
948       else
949         aCmd->setEnabled(false);
950     }
951   }
952   myActionsMgr->update();
953   emit commandStatusUpdated();
954 }
955
956 void XGUI_Workshop::updateHistory()
957 {
958   std::list<std::string> aUndoList = ModelAPI_Session::get()->undoList();
959   QList<ActionInfo> aUndoRes = processHistoryList(aUndoList);
960   emit updateUndoHistory(aUndoRes);
961
962   std::list<std::string> aRedoList = ModelAPI_Session::get()->redoList();
963   QList<ActionInfo> aRedoRes = processHistoryList(aRedoList);
964   emit updateRedoHistory(aRedoRes);
965 }
966
967 //******************************************************
968 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
969 {
970   QDockWidget* aObjDock = new QDockWidget(theParent);
971   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
972   aObjDock->setWindowTitle(tr("Object browser"));
973   aObjDock->setStyleSheet(
974       "::title { position: relative; padding-left: 5px; text-align: left center }");
975   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
976 #ifdef ModuleDataModel
977   myObjectBrowser->setDataModel(myModule->dataModel());
978 #endif
979   myModule->customizeObjectBrowser(myObjectBrowser);
980   aObjDock->setWidget(myObjectBrowser);
981
982   myContextMenuMgr->connectObjectBrowser();
983   return aObjDock;
984 }
985
986 //******************************************************
987 /*
988  * Creates dock widgets, places them in corresponding area
989  * and tabifies if necessary.
990  */
991 void XGUI_Workshop::createDockWidgets()
992 {
993   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
994   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
995   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
996   myPropertyPanel = new XGUI_PropertyPanel(aDesktop);
997   myPropertyPanel->setupActions(myActionsMgr);
998   myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea | Qt::RightDockWidgetArea | Qt::BottomDockWidgetArea);
999   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1000   hidePropertyPanel();  ///<! Invisible by default
1001   hideObjectBrowser();
1002   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1003   myPropertyPanel->installEventFilter(myOperationMgr);
1004
1005   QAction* aOkAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
1006   connect(aOkAct, SIGNAL(triggered()), this, SLOT(onAcceptActionClicked()));
1007
1008   QAction* aCancelAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Abort);
1009   connect(aCancelAct, SIGNAL(triggered()), myOperationMgr, SLOT(onAbortOperation()));
1010   connect(myPropertyPanel, SIGNAL(noMoreWidgets()), myModule, SLOT(onNoMoreWidgets()));
1011   connect(myPropertyPanel, SIGNAL(keyReleased(QKeyEvent*)),
1012           myOperationMgr,  SLOT(onKeyReleased(QKeyEvent*)));
1013   //connect(myOperationMgr,  SIGNAL(validationStateChanged(bool)),
1014   //        this, SLOT(onValidationStateChanged(bool)));
1015 }
1016
1017 //******************************************************
1018 void XGUI_Workshop::showPropertyPanel()
1019 {
1020   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1021   ///<! Restore ability to close panel from the window's menu
1022   aViewAct->setEnabled(true);
1023   myPropertyPanel->show();
1024   myPropertyPanel->raise();
1025
1026   // The next code is necessary to made the property panel the active window
1027   // in order to operation manager could process key events of the panel.
1028   // otherwise they are ignored. It happens only if the same(activateWindow) is
1029   // not happend by property panel activation(e.g. resume operaion of Sketch)
1030   myPropertyPanel->activateWindow();
1031   myPropertyPanel->setFocus();
1032 }
1033
1034 //******************************************************
1035 void XGUI_Workshop::hidePropertyPanel()
1036 {
1037   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1038   ///<! Do not allow to show empty property panel
1039   aViewAct->setEnabled(false);
1040   myPropertyPanel->hide();
1041
1042   // the property panel is active window of the desktop, when it is
1043   // hidden, it is undefined which window becomes active. By this reason
1044   // it is defined to perform the desktop as the active window.
1045   // in SALOME mode, workstack made the PyConsole the active window,
1046   // set the focus on it. As a result, shortcuts of the application, like
1047   // are processed by this console. For example Undo actions.
1048   // It is possible that this code is to be moved to NewGeom package
1049   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1050   aDesktop->activateWindow();
1051   aDesktop->setFocus();
1052 }
1053
1054 //******************************************************
1055 void XGUI_Workshop::showObjectBrowser()
1056 {
1057   myObjectBrowser->parentWidget()->show();
1058 }
1059
1060 //******************************************************
1061 void XGUI_Workshop::hideObjectBrowser()
1062 {
1063   myObjectBrowser->parentWidget()->hide();
1064 }
1065
1066 //******************************************************
1067 void XGUI_Workshop::salomeViewerSelectionChanged()
1068 {
1069   emit salomeViewerSelection();
1070 }
1071
1072 //**************************************************************
1073 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1074 {
1075   return mySalomeConnector->viewer();
1076 }
1077
1078 //**************************************************************
1079 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1080 {
1081   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1082   if (theId == "DELETE_CMD")
1083     deleteObjects();
1084   else if (theId == "MOVE_CMD")
1085     moveObjects();
1086   else if (theId == "COLOR_CMD")
1087     changeColor(aObjects);
1088   else if (theId == "SHOW_CMD")
1089     showObjects(aObjects, true);
1090   else if (theId == "HIDE_CMD")
1091     showObjects(aObjects, false);
1092   else if (theId == "SHOW_ONLY_CMD")
1093     showOnlyObjects(aObjects);
1094   else if (theId == "SHADING_CMD")
1095     setDisplayMode(aObjects, XGUI_Displayer::Shading);
1096   else if (theId == "WIREFRAME_CMD")
1097     setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1098   else if (theId == "HIDEALL_CMD") {
1099     QObjectPtrList aList = myDisplayer->displayedObjects();
1100     foreach (ObjectPtr aObj, aList) {
1101       if (module()->canEraseObject(aObj))
1102         aObj->setDisplayed(false);
1103     }
1104     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1105   }
1106 }
1107
1108 //**************************************************************
1109 void XGUI_Workshop::deleteObjects()
1110 {
1111   ModuleBase_IModule* aModule = module();
1112   // 1. allow the module to delete objects, do nothing if it has succeed
1113   if (aModule->deleteObjects()) {
1114     updateCommandStatus();
1115     return;
1116   }
1117
1118   if (!abortAllOperations())
1119     return;
1120   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1121   // It is necessary to clear selection in order to avoid selection changed event during
1122   // deleteion and negative consequences connected with processing of already deleted items
1123   mySelector->clearSelection();
1124   // check whether the object can be deleted. There should not be parts which are not loaded
1125   if (!XGUI_Tools::canRemoveOrRename(myMainWindow, anObjects))
1126     return;
1127
1128   bool hasResult = false;
1129   bool hasFeature = false;
1130   bool hasParameter = false;
1131   bool hasSubFeature = false;
1132   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasSubFeature);
1133   if (!(hasFeature || hasParameter))
1134     return;
1135
1136   // 1. start operation
1137   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1138   aDescription += tr(" %1");
1139   QStringList aObjectNames;
1140   foreach (ObjectPtr aObj, anObjects) {
1141     if (!aObj->data()->isValid())
1142       continue;
1143     aObjectNames << QString::fromStdString(aObj->data()->name());
1144   }
1145   aDescription = aDescription.arg(aObjectNames.join(", "));
1146   ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, module());
1147
1148   operationMgr()->startOperation(anOpAction);
1149   // 3. delete objects
1150   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1151   std::set<FeaturePtr> anIgnoredFeatures;
1152   if (deleteFeatures(anObjects, anIgnoredFeatures, aDesktop, true)) {
1153     operationMgr()->commitOperation();
1154   }
1155   else {
1156     operationMgr()->abortOperation(operationMgr()->currentOperation());
1157   }
1158 }
1159
1160 //**************************************************************
1161 void XGUI_Workshop::moveObjects()
1162 {
1163   if (!abortAllOperations())
1164     return;
1165
1166   SessionPtr aMgr = ModelAPI_Session::get();
1167
1168   QString anActionId = "MOVE_CMD";
1169   QString aDescription = contextMenuMgr()->action(anActionId)->text();
1170   aMgr->startOperation(aDescription.toStdString());
1171
1172   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1173   // It is necessary to clear selection in order to avoid selection changed event during
1174   // moving and negative consequences connected with processing of already moved items
1175   mySelector->clearSelection();
1176   // check whether the object can be moved. There should not be parts which are not loaded
1177   if (!XGUI_Tools::canRemoveOrRename(myMainWindow, anObjects))
1178     return;
1179
1180   DocumentPtr anActiveDocument = aMgr->activeDocument();
1181   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
1182   foreach (ObjectPtr aObject, anObjects) {
1183     if (!myModule->canApplyAction(aObject, anActionId))
1184       continue;
1185
1186     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
1187     if (aFeature.get()) {
1188       anActiveDocument->moveFeature(aFeature, aCurrentFeature);
1189       aCurrentFeature = anActiveDocument->currentFeature(true);
1190     }
1191   }
1192   aMgr->finishOperation();
1193 }
1194
1195 //**************************************************************
1196 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theList,
1197                                    const std::set<FeaturePtr>& theIgnoredFeatures,
1198                                    QWidget* theParent,
1199                                    const bool theAskAboutDeleteReferences)
1200 {
1201 #ifdef DEBUG_DELETE
1202   QStringList aDInfo;
1203   QObjectPtrList::const_iterator aDIt = theList.begin(), aDLast = theList.end();
1204   for (; aDIt != aDLast; ++aDIt) {
1205     aDInfo.append(ModuleBase_Tools::objectInfo((*aDIt)));
1206   }
1207   QString anInfoStr = aDInfo.join(", ");
1208   qDebug(QString("deleteFeatures: %1, %2").arg(theList.size()).arg(anInfoStr).toStdString().c_str());
1209 #endif
1210
1211   // 1. find all referenced features
1212   std::set<FeaturePtr> aDirectRefFeatures, aIndirectRefFeatures;
1213   foreach (ObjectPtr aDeletedObj, theList) {
1214     XGUI_Tools::refsToFeatureInAllDocuments(aDeletedObj, aDeletedObj, aDirectRefFeatures, aIndirectRefFeatures);
1215     std::set<FeaturePtr> aDifference;
1216     std::set_difference(aIndirectRefFeatures.begin(), aIndirectRefFeatures.end(), 
1217                         aDirectRefFeatures.begin(), aDirectRefFeatures.end(), 
1218                         std::inserter(aDifference, aDifference.begin()));
1219     aIndirectRefFeatures = aDifference;
1220   }
1221   // 2. warn about the references remove, break the delete operation if the user chose it
1222   if (theAskAboutDeleteReferences && !aDirectRefFeatures.empty()) {
1223     QStringList aDirectRefNames;
1224     foreach(const FeaturePtr& aFeature, aDirectRefFeatures)
1225       aDirectRefNames.append(aFeature->name().c_str());
1226     QString aDirectNames = aDirectRefNames.join(", ");
1227
1228     QStringList aIndirectRefNames;
1229     foreach(const FeaturePtr& aFeature, aIndirectRefFeatures)
1230       aIndirectRefNames.append(aFeature->name().c_str());
1231     QString aIndirectNames = aIndirectRefNames.join(", ");
1232
1233     QMessageBox::StandardButton aRes = QMessageBox::warning(
1234         theParent, tr("Delete features"),
1235         QString(tr("Selected features are used in the following features: %1.\
1236  These features will be deleted.\n%2Would you like to continue?")).arg(aDirectNames)
1237             .arg(aIndirectNames.isEmpty() ? QString() : QString("Also these features will be deleted: %1.\n").arg(aIndirectNames)),
1238         QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
1239     if (aRes != QMessageBox::Yes)
1240       return false;
1241   }
1242
1243   // 3. remove referenced features
1244   std::set<FeaturePtr> aFeaturesToDelete = aDirectRefFeatures;
1245   aFeaturesToDelete.insert(aIndirectRefFeatures.begin(), aIndirectRefFeatures.end());
1246   std::set<FeaturePtr>::const_iterator anIt = aFeaturesToDelete.begin(),
1247                                        aLast = aFeaturesToDelete.end();
1248 #ifdef DEBUG_DELETE
1249   QStringList anInfo;
1250 #endif
1251   for (; anIt != aLast; anIt++) {
1252     FeaturePtr aFeature = (*anIt);
1253     DocumentPtr aDoc = aFeature->document();
1254     if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end()) {
1255       aDoc->removeFeature(aFeature);
1256 #ifdef DEBUG_DELETE
1257       anInfo.append(ModuleBase_Tools::objectInfo(aFeature).toStdString().c_str());
1258 #endif
1259     }
1260   }
1261 #ifdef DEBUG_DELETE
1262   qDebug(QString("remove references:%1").arg(anInfo.join("; ")).toStdString().c_str());
1263   anInfo.clear();
1264 #endif
1265
1266   QString anActionId = "DELETE_CMD";
1267   QString anId = QString::fromStdString(anActionId.toStdString().c_str());
1268   QStringList anObjectGroups = contextMenuMgr()->actionObjectGroups(anId);
1269   // 4. remove the parameter features
1270   foreach (ObjectPtr aObj, theList) {
1271     // features and parameters can be removed here,
1272     // the results are removed only by a corresponded feature remove
1273     std::string aGroupName = aObj->groupName();
1274     if (!anObjectGroups.contains(aGroupName.c_str()))
1275       continue;
1276
1277     if (!myModule->canApplyAction(aObj, anActionId))
1278       continue;
1279
1280     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1281     if (aFeature) {
1282       /*// TODO: to learn the workshop to delegate the Part object deletion to the PartSet module
1283       // part features are removed in the PartSet module. This condition should be moved there
1284       if (aFeature->getKind() == "Part")
1285         continue;
1286         */
1287       DocumentPtr aDoc = aObj->document();
1288       if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end()) {
1289 #ifdef DEBUG_DELETE
1290         QString anInfoStr = ModuleBase_Tools::objectInfo(aFeature);
1291         anInfo.append(anInfoStr);
1292         qDebug(QString("remove feature :%1").arg(anInfoStr).toStdString().c_str());
1293 #endif
1294         aDoc->removeFeature(aFeature);
1295       }
1296     }
1297   }
1298 #ifdef DEBUG_DELETE
1299   qDebug(QString("remove features:%1").arg(anInfo.join("; ")).toStdString().c_str());
1300 #endif
1301   return true;
1302 }
1303
1304 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1305 {
1306   bool isFoundResultType = false;
1307   foreach(ObjectPtr anObj, theObjects)
1308   {
1309     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1310     if (aResult.get() == NULL)
1311       continue;
1312
1313     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1314     if (isFoundResultType)
1315       break;
1316   }
1317   return isFoundResultType;
1318 }
1319
1320 //**************************************************************
1321 // Returns the list of all features for theDocument and all features of
1322 // all nested parts.
1323 std::list<FeaturePtr> allFeatures(const DocumentPtr& theDocument)
1324 {
1325   std::list<FeaturePtr> aResultList;
1326   std::list<FeaturePtr> anAllFeatures = theDocument->allFeatures();
1327   foreach (const FeaturePtr& aFeature, anAllFeatures) {
1328     // The order of appending features of the part and the part itself is important
1329
1330     // Append features from a part feature
1331     foreach (const ResultPtr& aResult, aFeature->results()) {
1332       ResultPartPtr aResultPart =
1333           std::dynamic_pointer_cast<ModelAPI_ResultPart>(aResult);
1334       if (aResultPart.get() && aResultPart->partDoc().get()) {
1335         // Recursion
1336         std::list<FeaturePtr> anAllFeatures = allFeatures(aResultPart->partDoc());
1337         aResultList.insert(aResultList.end(), anAllFeatures.begin(), anAllFeatures.end());
1338       }
1339     }
1340
1341     aResultList.push_back(aFeature);
1342   }
1343   return aResultList;
1344 }
1345
1346 //**************************************************************
1347 // Returns the list of features placed between theObject and the current feature
1348 // in the same document. Excludes theObject, includes the current feature.
1349 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
1350 {
1351   std::list<FeaturePtr> aResult;
1352   DocumentPtr aDocument = theObject->document();
1353   std::list<FeaturePtr> anAllFeatures = allFeatures(aDocument);
1354   // find the object iterator
1355   std::list<FeaturePtr>::iterator aObjectIt = std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
1356   if (aObjectIt == anAllFeatures.end())
1357     return aResult;
1358   // find the current feature iterator
1359   std::list<FeaturePtr>::iterator aCurrentIt = std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
1360   if (aCurrentIt == anAllFeatures.end())
1361     return aResult;
1362   // check the right order
1363   if (std::distance(aObjectIt, anAllFeatures.end()) <= std::distance(aCurrentIt, anAllFeatures.end()))
1364     return aResult;
1365   // exclude the object
1366   std::advance(aObjectIt, 1);
1367   // include the current feature
1368   std::advance(aCurrentIt, 1);
1369   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
1370 }
1371
1372 bool XGUI_Workshop::canMoveFeature()
1373 {
1374   QString anActionId = "MOVE_CMD";
1375
1376   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1377   QObjectPtrList aValidatedObjects;
1378   foreach (ObjectPtr aObject, aObjects) {
1379     if (!myModule->canApplyAction(aObject, anActionId))
1380       continue;
1381     // To be moved feature should be in active document
1382     if (aObject->document() != ModelAPI_Session::get()->activeDocument())
1383       continue;
1384     aValidatedObjects.append(aObject);
1385   }
1386   if (aValidatedObjects.size() != aObjects.size())
1387     aObjects = aValidatedObjects;
1388
1389   bool aCanMove = !aObjects.empty();
1390
1391   QObjectPtrList::const_iterator anIt = aObjects.begin(), aLast = aObjects.end();
1392   for (; anIt != aLast && aCanMove; anIt++) {
1393     ObjectPtr aObject = *anIt;
1394     // 1. Get features placed between selected and current in the document 
1395     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
1396     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
1397     if (aFeaturesBetween.empty())
1398       aCanMove = false;
1399     else {
1400       std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
1401       // 2. Get all reference features to the selected object in the document 
1402       std::set<FeaturePtr> aRefFeatures;
1403       XGUI_Tools::refsToFeatureInFeatureDocument(aObject, aRefFeatures);
1404
1405       if (aRefFeatures.empty())
1406         continue;
1407       else {
1408         // 3. Find any placed features in all reference features
1409         std::set<FeaturePtr> aIntersectionFeatures;
1410         std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
1411                               aPlacedFeatures.begin(), aPlacedFeatures.end(),
1412                               std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
1413         // 4. Return false if any reference feature is placed before current feature
1414         if (!aIntersectionFeatures.empty())
1415           aCanMove = false;
1416       }
1417     }
1418   }
1419   return aCanMove;
1420 }
1421
1422 //**************************************************************
1423 bool XGUI_Workshop::canBeShaded(const ObjectPtr& theObject) const
1424 {
1425   bool aCanBeShaded = myDisplayer->canBeShaded(theObject);
1426   if (!aCanBeShaded) {
1427     ResultCompSolidPtr aCompsolidResult =
1428                 std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
1429     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
1430       for(int i = 0; i < aCompsolidResult->numberOfSubs() && !aCanBeShaded; i++)
1431         aCanBeShaded = myDisplayer->canBeShaded(aCompsolidResult->subResult(i));
1432     }
1433   }
1434   return aCanBeShaded;
1435 }
1436
1437 //**************************************************************
1438 bool XGUI_Workshop::canChangeColor() const
1439 {
1440   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1441
1442   std::set<std::string> aTypes;
1443   aTypes.insert(ModelAPI_ResultGroup::group());
1444   aTypes.insert(ModelAPI_ResultConstruction::group());
1445   aTypes.insert(ModelAPI_ResultBody::group());
1446   aTypes.insert(ModelAPI_ResultPart::group());
1447
1448   return hasResults(aObjects, aTypes);
1449 }
1450
1451 void setColor(ResultPtr theResult, std::vector<int>& theColor)
1452 {
1453   if (!theResult.get())
1454     return;
1455
1456   AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
1457   if (aColorAttr.get() != NULL) {
1458     if (!aColorAttr->size()) {
1459       aColorAttr->setSize(3);
1460     }
1461     aColorAttr->setValue(0, theColor[0]);
1462     aColorAttr->setValue(1, theColor[1]);
1463     aColorAttr->setValue(2, theColor[2]);
1464   }
1465 }
1466
1467 //**************************************************************
1468 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
1469 {
1470   AttributeIntArrayPtr aColorAttr;
1471   // 1. find the current color of the object. This is a color of AIS presentation
1472   // The objects are iterated until a first valid color is found 
1473   std::vector<int> aColor;
1474   foreach(ObjectPtr anObject, theObjects) {
1475     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1476     if (aResult.get()) {
1477       XGUI_CustomPrs::getResultColor(aResult, aColor);
1478     }
1479     else {
1480       // TODO: remove the obtaining a color from the AIS object
1481       // this does not happen never because:
1482       // 1. The color can be changed only on results
1483       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
1484       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1485       if (anAISObj.get()) {
1486         aColor.resize(3);
1487         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
1488       }
1489     }
1490     if (!aColor.empty())
1491       break;
1492   }
1493   if (aColor.size() != 3)
1494     return;
1495
1496   // 2. show the dialog to change the value
1497   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(mainWindow());
1498   aDlg->setColor(aColor);
1499   aDlg->move(QCursor::pos());
1500   bool isDone = aDlg->exec() == QDialog::Accepted;
1501   if (!isDone)
1502     return;
1503
1504   bool isRandomColor = aDlg->isRandomColor();
1505
1506   // 3. abort the previous operation and start a new one
1507   SessionPtr aMgr = ModelAPI_Session::get();
1508   bool aWasOperation = aMgr->isOperation(); // keep this value
1509   if (!aWasOperation) {
1510     QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
1511     aMgr->startOperation(aDescription.toStdString());
1512   }
1513
1514   // 4. set the value to all results
1515   std::vector<int> aColorResult = aDlg->getColor();
1516   foreach(ObjectPtr anObj, theObjects) {
1517     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1518     if (aResult.get() != NULL) {
1519       ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
1520       if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
1521         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++)
1522           setColor(aCompsolidResult->subResult(i), aColorResult);
1523       }
1524       setColor(aResult, aColorResult);
1525     }
1526   }
1527   if (!aWasOperation)
1528     aMgr->finishOperation();
1529   updateCommandStatus();
1530 }
1531
1532 //**************************************************************
1533 #define SET_DISPLAY_GROUP(aGroupName, aDisplay) \
1534 for (int i = 0; i < aDoc->size(aGroupName); i++) { \
1535   aDoc->object(aGroupName, i)->setDisplayed(aDisplay); \
1536 }
1537 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
1538 {
1539   foreach (ObjectPtr aObj, theList) {
1540     /*
1541     ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1542     if (aPartRes) {
1543       DocumentPtr aDoc = aPartRes->partDoc();
1544       SET_DISPLAY_GROUP(ModelAPI_ResultBody::group(), isVisible)
1545       SET_DISPLAY_GROUP(ModelAPI_ResultConstruction::group(), isVisible)
1546       SET_DISPLAY_GROUP(ModelAPI_ResultGroup::group(), isVisible)
1547     } else {
1548     */
1549       aObj->setDisplayed(isVisible);
1550     //}
1551   }
1552   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1553 }
1554
1555 //**************************************************************
1556 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
1557 {
1558   // Hide all displayed objects
1559   QObjectPtrList aList = myDisplayer->displayedObjects();
1560   foreach (ObjectPtr aObj, aList) {
1561     if (module()->canEraseObject(aObj))
1562       aObj->setDisplayed(false);
1563   }
1564
1565   // Show only objects from the list
1566   foreach (ObjectPtr aObj, theList) {
1567     /*
1568     ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1569     if (aPartRes) {
1570       DocumentPtr aDoc = aPartRes->partDoc();
1571       SET_DISPLAY_GROUP(ModelAPI_ResultBody::group(), true)
1572       SET_DISPLAY_GROUP(ModelAPI_ResultConstruction::group(), true)
1573       SET_DISPLAY_GROUP(ModelAPI_ResultGroup::group(), true)
1574     } else {
1575     */
1576       aObj->setDisplayed(true);
1577     //}
1578   }
1579   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1580
1581 }
1582
1583
1584 //**************************************************************
1585 void XGUI_Workshop::registerValidators() const
1586 {
1587   SessionPtr aMgr = ModelAPI_Session::get();
1588   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
1589 }
1590
1591 //**************************************************************
1592 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
1593 {
1594   if (!theDoc)
1595     return;
1596   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
1597   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
1598 }
1599
1600 //**************************************************************
1601 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
1602 {
1603   for (int i = 0; i < theDoc->size(theGroup); i++) 
1604     theDoc->object(theGroup, i)->setDisplayed(true);
1605     //displayObject(theDoc->object(theGroup, i));
1606   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1607 }
1608
1609 //**************************************************************
1610 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
1611 {
1612   foreach(ObjectPtr aObj, theList) {
1613     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
1614
1615     ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aObj);
1616     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
1617       for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
1618           myDisplayer->setDisplayMode(aCompsolidResult->subResult(i),
1619                                       (XGUI_Displayer::DisplayMode)theMode, false);
1620       }
1621     }
1622   }
1623   if (theList.size() > 0)
1624     myDisplayer->updateViewer();
1625 }
1626
1627 //**************************************************************
1628 void XGUI_Workshop::closeDocument()
1629 {
1630   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
1631   while (anOperation) {
1632     anOperation->abort();
1633     anOperation = operationMgr()->currentOperation();
1634   }
1635   myDisplayer->closeLocalContexts();
1636   myDisplayer->eraseAll();
1637   objectBrowser()->clearContent();
1638
1639   module()->closeDocument();
1640
1641   SessionPtr aMgr = ModelAPI_Session::get();
1642   aMgr->closeAll();
1643 }
1644
1645 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
1646 {
1647   XGUI_HistoryMenu* aMenu = NULL;
1648   if (isSalomeMode()) {
1649     QAction* anAction = qobject_cast<QAction*>(theObject);
1650     if (!anAction)
1651       return;
1652     aMenu = new XGUI_HistoryMenu(anAction);
1653   } else {
1654     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
1655     aMenu = new XGUI_HistoryMenu(aButton);
1656   }
1657   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
1658   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
1659 }
1660
1661 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
1662 {
1663   QList<ActionInfo> aResult;
1664   std::list<std::string>::const_iterator it = theList.cbegin();
1665   for (; it != theList.cend(); it++) {
1666     QString anId = QString::fromStdString(*it);
1667     bool isEditing = anId.endsWith(ModuleBase_OperationFeature::EditSuffix());
1668     if (isEditing) {
1669       anId.chop(ModuleBase_OperationFeature::EditSuffix().size());
1670     }
1671     ActionInfo anInfo;
1672     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
1673     if (aContextMenuAct) {
1674       anInfo.initFrom(aContextMenuAct);
1675     } else {
1676       anInfo = myActionsMgr->actionInfoById(anId);
1677     }
1678     if (isEditing) {
1679       anInfo.text = anInfo.text.prepend("Modify ");
1680     }
1681     aResult << anInfo;
1682   }
1683   return aResult;
1684 }