Salome HOME
c694ae2b8500a3b31ec985689be110f7d301748b
[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   bool hasResult = false;
1015   bool hasFeature = false;
1016   bool hasParameter = false;
1017   bool hasSubFeature = false;
1018   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasSubFeature);
1019   if (!(hasFeature || hasParameter))
1020     return;
1021
1022   // 1. start operation
1023   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text();
1024   aDescription += tr(" %1");
1025   QStringList aObjectNames;
1026   foreach (ObjectPtr aObj, anObjects) {
1027     if (!aObj->data()->isValid())
1028       continue;
1029     aObjectNames << QString::fromStdString(aObj->data()->name());
1030   }
1031   aDescription = aDescription.arg(aObjectNames.join(", "));
1032
1033   SessionPtr aMgr = ModelAPI_Session::get();
1034   aMgr->startOperation(aDescription.toStdString());
1035   // 2. close the documents of the removed parts if the result part is in a list of selected objects
1036   // this is performed in the RemoveFeature of Part object.
1037   /*foreach (ObjectPtr aObj, anObjects)
1038   {
1039     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1040     if (aPart) {
1041       DocumentPtr aDoc = aObj->document();
1042       if (aDoc == aMgr->activeDocument()) {
1043         aDoc->close();
1044       }
1045     }
1046   }*/
1047   // 3. delete objects
1048   QMainWindow* aDesktop = isSalomeMode() ? salomeConnector()->desktop() : myMainWindow;
1049   std::set<FeaturePtr> anIgnoredFeatures;
1050   if (deleteFeatures(anObjects, anIgnoredFeatures, aDesktop, true)) {
1051     myDisplayer->updateViewer();
1052     aMgr->finishOperation();
1053     updateCommandStatus();
1054   }
1055   else {
1056     aMgr->abortOperation();
1057   }
1058 }
1059
1060 //**************************************************************
1061 void XGUI_Workshop::moveObjects()
1062 {
1063   if (!isActiveOperationAborted())
1064     return;
1065
1066   SessionPtr aMgr = ModelAPI_Session::get();
1067
1068   QString aDescription = contextMenuMgr()->action("MOVE_CMD")->text();
1069   aMgr->startOperation(aDescription.toStdString());
1070
1071   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1072   DocumentPtr anActiveDocument = aMgr->activeDocument();
1073
1074   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
1075   foreach (ObjectPtr aObj, anObjects) {
1076     FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
1077     if (aFeature.get()) {
1078       anActiveDocument->moveFeature(aFeature, aCurrentFeature);
1079       aCurrentFeature = anActiveDocument->currentFeature(true);
1080     }
1081   }
1082   aMgr->finishOperation();
1083 }
1084
1085 //**************************************************************
1086 std::set<FeaturePtr> refFeatures(const ObjectPtr& theObject, 
1087                                  bool checkAllDocuments = true,
1088                                  bool useRecursion = false)
1089 {
1090   std::set<FeaturePtr> aRefFeatures;
1091   FeaturePtr aFeature = ModelAPI_Feature::feature(theObject);
1092   if (!aFeature.get())
1093     return aRefFeatures;
1094
1095   DocumentPtr aFeatureDoc = aFeature->document();
1096   // 1. find references in the current document
1097   aFeatureDoc->refsToFeature(aFeature, aRefFeatures, false);
1098
1099   // 2. find references in all documents if the document of the feature is
1100   // "PartSet". Features of this document can be used in all other documents
1101   if (checkAllDocuments) {
1102     SessionPtr aMgr = ModelAPI_Session::get();
1103     DocumentPtr aModuleDoc = aMgr->moduleDocument();
1104     if (aFeatureDoc == aModuleDoc) {
1105       // the feature and results of the feature should be found in references
1106       std::list<ObjectPtr> aObjects;
1107       aObjects.push_back(aFeature);
1108       typedef std::list<std::shared_ptr<ModelAPI_Result> > ResultsList;
1109       const ResultsList& aResults = aFeature->results();
1110       ResultsList::const_iterator aRIter = aResults.begin();
1111       for (; aRIter != aResults.cend(); aRIter++) {
1112         ResultPtr aRes = *aRIter;
1113         if (aRes.get())
1114           aObjects.push_back(aRes);
1115       }
1116       // get all opened documents; found features in the documents;
1117       // get a list of objects where a feature refers;
1118       // search in these objects the deleted objects.
1119       std::list<DocumentPtr> anOpenedDocs = aMgr->allOpenedDocuments();
1120       std::list<DocumentPtr>::const_iterator anIt = anOpenedDocs.begin(),
1121                                               aLast = anOpenedDocs.end();
1122       std::list<std::pair<std::string, std::list<ObjectPtr> > > aRefs;
1123       for (; anIt != aLast; anIt++) {
1124         DocumentPtr aDocument = *anIt;
1125         if (aDocument == aFeatureDoc)
1126           continue; // this document has been already processed in 1.1
1127
1128         int aFeaturesCount = aDocument->size(ModelAPI_Feature::group());
1129         for (int aId = 0; aId < aFeaturesCount; aId++) {
1130           ObjectPtr anObject = aDocument->object(ModelAPI_Feature::group(), aId);
1131           FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(anObject);
1132           if (!aFeature.get())
1133             continue;
1134
1135           aRefs.clear();
1136           aFeature->data()->referencesToObjects(aRefs);
1137           std::list<std::pair<std::string, std::list<ObjectPtr> > >::iterator aRef = aRefs.begin();
1138           bool aHasReferenceToObjetc = false;
1139           for(; aRef != aRefs.end() && !aHasReferenceToObjetc; aRef++) {
1140             std::list<ObjectPtr>::iterator aRefObj = aRef->second.begin();
1141             for(; aRefObj != aRef->second.end() && !aHasReferenceToObjetc; aRefObj++) {
1142               std::list<ObjectPtr>::const_iterator aObjIt = aObjects.begin();
1143               for(; aObjIt != aObjects.end() && !aHasReferenceToObjetc; aObjIt++) {
1144                 aHasReferenceToObjetc = *aObjIt == *aRefObj;
1145               }
1146             }
1147           }
1148           if (aHasReferenceToObjetc)
1149             aRefFeatures.insert(aFeature);
1150         }
1151       }
1152     }
1153   }
1154
1155   // Run recursion 
1156   if (useRecursion) {
1157     std::set<FeaturePtr>::const_iterator aFeatureIt = aRefFeatures.begin();
1158     for (; aFeatureIt != aRefFeatures.end(); ++aFeatureIt) {
1159       std::set<FeaturePtr> aRecursiveRefFeatures = refFeatures(*aFeatureIt, checkAllDocuments, useRecursion);
1160       aRefFeatures.insert(aRecursiveRefFeatures.begin(), aRecursiveRefFeatures.end());
1161     } 
1162   }
1163
1164   return aRefFeatures;
1165 }
1166
1167 //**************************************************************
1168 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theList,
1169                                    const std::set<FeaturePtr>& theIgnoredFeatures,
1170                                    QWidget* theParent,
1171                                    const bool theAskAboutDeleteReferences)
1172 {
1173 #ifdef DEBUG_DELETE
1174   QStringList aDInfo;
1175   QObjectPtrList::const_iterator aDIt = theList.begin(), aDLast = theList.end();
1176   for (; aDIt != aDLast; ++aDIt) {
1177     aDInfo.append(ModuleBase_Tools::objectInfo((*aDIt)));
1178   }
1179   QString anInfoStr = aDInfo.join(", ");
1180   qDebug(QString("deleteFeatures: %1, %2").arg(theList.size()).arg(anInfoStr).toStdString().c_str());
1181 #endif
1182
1183   // 1. find all referenced features
1184   std::set<FeaturePtr> aRefFeatures;
1185   foreach (ObjectPtr aDeletedObj, theList) {
1186     std::set<FeaturePtr> aFeatures = refFeatures(aDeletedObj, true, true);
1187     aRefFeatures.insert(aFeatures.begin(), aFeatures.end());
1188   }
1189   // 2. warn about the references remove, break the delete operation if the user chose it
1190   if (theAskAboutDeleteReferences && !aRefFeatures.empty()) {
1191     QStringList aRefNames;
1192     std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1193                                          aLast = aRefFeatures.end();
1194     for (; anIt != aLast; anIt++) {
1195       aRefNames.append((*anIt)->name().c_str());
1196     }
1197     QString aNames = aRefNames.join(", ");
1198
1199     QMessageBox::StandardButton aRes = QMessageBox::warning(
1200         theParent, tr("Delete features"),
1201         QString(tr("Selected features are used in the following features: %1.\
1202 These features will be deleted also. Would you like to continue?")).arg(aNames),
1203         QMessageBox::No | QMessageBox::Yes, QMessageBox::No);
1204     if (aRes != QMessageBox::Yes)
1205       return false;
1206   }
1207
1208   // 3. remove referenced features
1209   std::set<FeaturePtr>::const_iterator anIt = aRefFeatures.begin(),
1210                                        aLast = aRefFeatures.end();
1211 #ifdef DEBUG_DELETE
1212   QStringList anInfo;
1213 #endif
1214   for (; anIt != aLast; anIt++) {
1215     FeaturePtr aFeature = (*anIt);
1216     DocumentPtr aDoc = aFeature->document();
1217     if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end()) {
1218       aDoc->removeFeature(aFeature);
1219 #ifdef DEBUG_DELETE
1220       anInfo.append(ModuleBase_Tools::objectInfo(aFeature).toStdString().c_str());
1221 #endif
1222     }
1223   }
1224 #ifdef DEBUG_DELETE
1225   qDebug(QString("remove references:%1").arg(anInfo.join("; ")).toStdString().c_str());
1226   anInfo.clear();
1227 #endif
1228
1229   QString anId = QString::fromStdString("DELETE_CMD");
1230   QStringList anObjectGroups = contextMenuMgr()->actionObjectGroups(anId);
1231   // 4. remove the parameter features
1232   foreach (ObjectPtr aObj, theList) {
1233     // features and parameters can be removed here,
1234     // the results are removed only by a corresponded feature remove
1235     std::string aGroupName = aObj->groupName();
1236     if (!anObjectGroups.contains(aGroupName.c_str()))
1237       continue;
1238
1239     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1240     if (aFeature) {
1241       // TODO: to learn the workshop to delegate the Part object deletion to the PartSet module
1242       // part features are removed in the PartSet module. This condition should be moved there
1243       if (aFeature->getKind() == "Part")
1244         continue;
1245
1246       DocumentPtr aDoc = aObj->document();
1247       if (theIgnoredFeatures.find(aFeature) == theIgnoredFeatures.end()) {
1248 #ifdef DEBUG_DELETE
1249         QString anInfoStr = ModuleBase_Tools::objectInfo(aFeature);
1250         anInfo.append(anInfoStr);
1251         qDebug(QString("remove feature :%1").arg(anInfoStr).toStdString().c_str());
1252 #endif
1253         aDoc->removeFeature(aFeature);
1254       }
1255     }
1256   }
1257 #ifdef DEBUG_DELETE
1258   qDebug(QString("remove features:%1").arg(anInfo.join("; ")).toStdString().c_str());
1259 #endif
1260   return true;
1261 }
1262
1263 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1264 {
1265   bool isFoundResultType = false;
1266   foreach(ObjectPtr anObj, theObjects)
1267   {
1268     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1269     if (aResult.get() == NULL)
1270       continue;
1271
1272     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1273     if (isFoundResultType)
1274       break;
1275   }
1276   return isFoundResultType;
1277 }
1278
1279 //**************************************************************
1280 // Returns the list of features placed between theObject and the current feature
1281 // in the same document. Excludes theObject, includes the current feature.
1282 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
1283 {
1284   std::list<FeaturePtr> aResult;
1285   DocumentPtr aDocument = theObject->document();
1286   std::list<FeaturePtr> anAllFeatures = aDocument->allFeatures();
1287   // find the object iterator
1288   std::list<FeaturePtr>::iterator aObjectIt = std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
1289   if (aObjectIt == anAllFeatures.end()) 
1290     return aResult;
1291   // find the current feature iterator
1292   std::list<FeaturePtr>::iterator aCurrentIt = std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
1293   if (aCurrentIt == anAllFeatures.end()) 
1294     return aResult;
1295   // check the right order
1296   if (std::distance(aObjectIt, anAllFeatures.end()) <= std::distance(aCurrentIt, anAllFeatures.end()))
1297     return aResult;
1298   // exclude the object
1299   std::advance(aObjectIt, 1);
1300   // include the current feature
1301   std::advance(aCurrentIt, 1);
1302   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
1303 }
1304
1305 bool XGUI_Workshop::canMoveFeature()
1306 {
1307   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1308   foreach (ObjectPtr aObject, aObjects) {
1309     // 1. Get features placed between selected and current in the document 
1310     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
1311     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
1312     if (aFeaturesBetween.empty())
1313       return false;
1314     std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
1315     // 2. Get all reference features to the selected object in the document 
1316     std::set<FeaturePtr> aRefFeatures = refFeatures(aObject, false);
1317     if (aRefFeatures.empty())
1318       continue;
1319     // 3. Find any placed features in all reference features
1320     std::set<FeaturePtr> aIntersectionFeatures;
1321     std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
1322                           aPlacedFeatures.begin(), aPlacedFeatures.end(),
1323                           std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
1324     // 4. Return false if any reference feature is placed before curent feature
1325     if (!aIntersectionFeatures.empty())
1326       return false;
1327   }
1328   return true;
1329 }
1330
1331 //**************************************************************
1332 bool XGUI_Workshop::canChangeColor() const
1333 {
1334   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1335
1336   std::set<std::string> aTypes;
1337   aTypes.insert(ModelAPI_ResultGroup::group());
1338   aTypes.insert(ModelAPI_ResultConstruction::group());
1339   aTypes.insert(ModelAPI_ResultBody::group());
1340   aTypes.insert(ModelAPI_ResultPart::group());
1341
1342   return hasResults(aObjects, aTypes);
1343 }
1344
1345 void setColor(ResultPtr theResult, std::vector<int>& theColor)
1346 {
1347   if (!theResult.get())
1348     return;
1349
1350   AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
1351   if (aColorAttr.get() != NULL) {
1352     if (!aColorAttr->size()) {
1353       aColorAttr->setSize(3);
1354     }
1355     aColorAttr->setValue(0, theColor[0]);
1356     aColorAttr->setValue(1, theColor[1]);
1357     aColorAttr->setValue(2, theColor[2]);
1358   }
1359 }
1360
1361 //**************************************************************
1362 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
1363 {
1364   AttributeIntArrayPtr aColorAttr;
1365   // 1. find the current color of the object. This is a color of AIS presentation
1366   // The objects are iterated until a first valid color is found 
1367   std::vector<int> aColor;
1368   foreach(ObjectPtr anObject, theObjects) {
1369     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1370     if (aResult.get())
1371       XGUI_CustomPrs::getResultColor(aResult, aColor);
1372     else {
1373       // TODO: remove the obtaining a color from the AIS object
1374       // this does not happen never because:
1375       // 1. The color can be changed only on results
1376       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
1377       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1378       if (anAISObj.get()) {
1379         aColor.resize(3);
1380         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
1381       }
1382     }
1383     if (!aColor.empty())
1384       break;
1385   }
1386   if (aColor.size() != 3)
1387     return;
1388
1389   // 2. show the dialog to change the value
1390   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(mainWindow());
1391   aDlg->setColor(aColor);
1392   aDlg->move(QCursor::pos());
1393   bool isDone = aDlg->exec() == QDialog::Accepted;
1394   if (!isDone)
1395     return;
1396
1397   bool isRandomColor = aDlg->isRandomColor();
1398
1399   // 3. abort the previous operation and start a new one
1400   SessionPtr aMgr = ModelAPI_Session::get();
1401   bool aWasOperation = aMgr->isOperation(); // keep this value
1402   if (!aWasOperation) {
1403     QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
1404     aMgr->startOperation(aDescription.toStdString());
1405   }
1406
1407   // 4. set the value to all results
1408   foreach(ObjectPtr anObj, theObjects) {
1409     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1410     if (aResult.get() != NULL) {
1411       std::vector<int> aColorResult = aDlg->getColor();
1412       setColor(aResult, aColorResult);
1413     }
1414   }
1415   if (!aWasOperation)
1416     aMgr->finishOperation();
1417   updateCommandStatus();
1418 }
1419
1420 //**************************************************************
1421 #define SET_DISPLAY_GROUP(aGroupName, aDisplay) \
1422 for (int i = 0; i < aDoc->size(aGroupName); i++) { \
1423   aDoc->object(aGroupName, i)->setDisplayed(aDisplay); \
1424 }
1425 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
1426 {
1427   foreach (ObjectPtr aObj, theList) {
1428     /*
1429     ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1430     if (aPartRes) {
1431       DocumentPtr aDoc = aPartRes->partDoc();
1432       SET_DISPLAY_GROUP(ModelAPI_ResultBody::group(), isVisible)
1433       SET_DISPLAY_GROUP(ModelAPI_ResultConstruction::group(), isVisible)
1434       SET_DISPLAY_GROUP(ModelAPI_ResultGroup::group(), isVisible)
1435     } else {
1436     */
1437       aObj->setDisplayed(isVisible);
1438     //}
1439   }
1440   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1441 }
1442
1443 //**************************************************************
1444 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
1445 {
1446   // Hide all displayed objects
1447   QObjectPtrList aList = myDisplayer->displayedObjects();
1448   foreach (ObjectPtr aObj, aList)
1449     aObj->setDisplayed(false);
1450
1451   // Show only objects from the list
1452   foreach (ObjectPtr aObj, theList) {
1453     /*
1454     ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObj);
1455     if (aPartRes) {
1456       DocumentPtr aDoc = aPartRes->partDoc();
1457       SET_DISPLAY_GROUP(ModelAPI_ResultBody::group(), true)
1458       SET_DISPLAY_GROUP(ModelAPI_ResultConstruction::group(), true)
1459       SET_DISPLAY_GROUP(ModelAPI_ResultGroup::group(), true)
1460     } else {
1461     */
1462       aObj->setDisplayed(true);
1463     //}
1464   }
1465   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1466
1467 }
1468
1469
1470 //**************************************************************
1471 void XGUI_Workshop::registerValidators() const
1472 {
1473   SessionPtr aMgr = ModelAPI_Session::get();
1474   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
1475 }
1476
1477 //**************************************************************
1478 /*void XGUI_Workshop::displayAllResults()
1479 {
1480   SessionPtr aMgr = ModelAPI_Session::get();
1481   DocumentPtr aRootDoc = aMgr->moduleDocument();
1482   displayDocumentResults(aRootDoc);
1483   for (int i = 0; i < aRootDoc->size(ModelAPI_ResultPart::group()); i++) {
1484     ObjectPtr aObject = aRootDoc->object(ModelAPI_ResultPart::group(), i);
1485     ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1486     displayDocumentResults(aPart->partDoc());
1487   }
1488   myDisplayer->updateViewer();
1489 }*/
1490
1491 //**************************************************************
1492 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
1493 {
1494   if (!theDoc)
1495     return;
1496   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
1497   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
1498 }
1499
1500 //**************************************************************
1501 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
1502 {
1503   for (int i = 0; i < theDoc->size(theGroup); i++) 
1504     theDoc->object(theGroup, i)->setDisplayed(true);
1505     //displayObject(theDoc->object(theGroup, i));
1506   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1507 }
1508
1509 //**************************************************************
1510 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
1511 {
1512   foreach(ObjectPtr aObj, theList) {
1513     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
1514   }
1515   if (theList.size() > 0)
1516     myDisplayer->updateViewer();
1517 }
1518
1519 //**************************************************************
1520 void XGUI_Workshop::closeDocument()
1521 {
1522   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
1523   while (anOperation) {
1524     anOperation->abort();
1525     anOperation = operationMgr()->currentOperation();
1526   }
1527   myDisplayer->closeLocalContexts();
1528   myDisplayer->eraseAll();
1529   objectBrowser()->clearContent();
1530
1531   SessionPtr aMgr = ModelAPI_Session::get();
1532   aMgr->closeAll();
1533 }
1534
1535 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
1536 {
1537   XGUI_HistoryMenu* aMenu = NULL;
1538   if (isSalomeMode()) {
1539     QAction* anAction = qobject_cast<QAction*>(theObject);
1540     if (!anAction)
1541       return;
1542     aMenu = new XGUI_HistoryMenu(anAction);
1543   } else {
1544     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
1545     aMenu = new XGUI_HistoryMenu(aButton);
1546   }
1547   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
1548   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
1549 }
1550
1551 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
1552 {
1553   QList<ActionInfo> aResult;
1554   std::list<std::string>::const_iterator it = theList.cbegin();
1555   for (; it != theList.cend(); it++) {
1556     QString anId = QString::fromStdString(*it);
1557     bool isEditing = anId.endsWith(ModuleBase_Operation::EditSuffix());
1558     if (isEditing) {
1559       anId.chop(ModuleBase_Operation::EditSuffix().size());
1560     }
1561     ActionInfo anInfo;
1562     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
1563     if (aContextMenuAct) {
1564       anInfo.initFrom(aContextMenuAct);
1565     } else {
1566       anInfo = myActionsMgr->actionInfoById(anId);
1567     }
1568     if (isEditing) {
1569       anInfo.text = anInfo.text.prepend("Modify ");
1570     }
1571     aResult << anInfo;
1572   }
1573   return aResult;
1574 }