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