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