]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_Workshop.cpp
Salome HOME
Issue #2214 Show only must not make zoom fit all.
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #include "XGUI_Workshop.h"
22
23 #include "XGUI_ActionsMgr.h"
24 #include "XGUI_MenuMgr.h"
25 #include "XGUI_ColorDialog.h"
26 #include "XGUI_DeflectionDialog.h"
27 #include "XGUI_ContextMenuMgr.h"
28 #include "XGUI_Displayer.h"
29 #include "XGUI_ErrorDialog.h"
30 #include "XGUI_ErrorMgr.h"
31 #include "XGUI_ModuleConnector.h"
32 #include "XGUI_ObjectsBrowser.h"
33 #include "XGUI_OperationMgr.h"
34 #include "XGUI_PropertyPanel.h"
35 #include "XGUI_SalomeConnector.h"
36 #include "XGUI_Selection.h"
37 #include "XGUI_SelectionMgr.h"
38 #include "XGUI_Tools.h"
39 #include "XGUI_ViewerProxy.h"
40 #include "XGUI_WorkshopListener.h"
41 #include <XGUI_CustomPrs.h>
42 #include <XGUI_HistoryMenu.h>
43 #include <XGUI_QtEvents.h>
44 #include <XGUI_DataModel.h>
45
46 #ifndef HAVE_SALOME
47 #include <AppElements_Button.h>
48 #include <AppElements_Command.h>
49 #include <AppElements_MainMenu.h>
50 #include <AppElements_MainWindow.h>
51 #include <AppElements_MenuGroupPanel.h>
52 #include <AppElements_Viewer.h>
53 #include <AppElements_Workbench.h>
54 #endif
55
56 #include <ModelAPI_AttributeDocRef.h>
57 #include <ModelAPI_AttributeIntArray.h>
58 #include <ModelAPI_AttributeDouble.h>
59 #include <ModelAPI_Data.h>
60 #include <ModelAPI_Events.h>
61 #include <ModelAPI_Feature.h>
62 #include <ModelAPI_Object.h>
63 #include <ModelAPI_ResultBody.h>
64 #include <ModelAPI_ResultConstruction.h>
65 #include <ModelAPI_ResultGroup.h>
66 #include <ModelAPI_ResultParameter.h>
67 #include <ModelAPI_ResultField.h>
68 #include <ModelAPI_Session.h>
69 #include <ModelAPI_Validator.h>
70 #include <ModelAPI_ResultCompSolid.h>
71 #include <ModelAPI_Tools.h>
72
73 //#include <PartSetPlugin_Part.h>
74
75 #include <Events_Loop.h>
76 #include <Events_InfoMessage.h>
77 #include <Events_LongOp.h>
78
79 #include <ModuleBase_IModule.h>
80 #include <ModuleBase_IViewer.h>
81 #include <ModuleBase_Operation.h>
82 #include <ModuleBase_OperationDescription.h>
83 #include <ModuleBase_PageBase.h>
84 #include <ModuleBase_Preferences.h>
85 #include <ModuleBase_SelectionValidator.h>
86 #include <ModuleBase_Tools.h>
87 #include <ModuleBase_WidgetFactory.h>
88 #include <ModuleBase_OperationFeature.h>
89 #include <ModuleBase_OperationAction.h>
90 #include <ModuleBase_PagedContainer.h>
91 #include <ModuleBase_WidgetValidated.h>
92 #include <ModuleBase_ModelWidget.h>
93 #include <ModuleBase_ResultPrs.h>
94
95 #include <Config_Common.h>
96 #include <Config_FeatureMessage.h>
97 #include <Config_ModuleReader.h>
98 #include <Config_PointerMessage.h>
99 #include <Config_PropManager.h>
100 #include <Config_DataModelReader.h>
101 #include <Config_Translator.h>
102 #include <Config_WidgetAPI.h>
103 #include <Config_Keywords.h>
104
105 #include <SUIT_ResourceMgr.h>
106
107 #include <AIS_Trihedron.hxx>
108 #ifdef BEFORE_TRIHEDRON_PATCH
109 #include <AIS_Point.hxx>
110 #include <AIS_Axis.hxx>
111 #endif
112
113 #include <QApplication>
114 #include <QFileDialog>
115 #include <QMessageBox>
116 #include <QMdiSubWindow>
117 #include <QMainWindow>
118 #include <QPushButton>
119 #include <QDockWidget>
120 #include <QLayout>
121 #include <QThread>
122 #include <QObject>
123 #include <QMenu>
124 #include <QToolButton>
125 #include <QAction>
126 #include <QDesktopWidget>
127
128 #include <iterator>
129
130 #ifdef TINSPECTOR
131 #include <CDF_Session.hxx>
132 #include <CDF_Application.hxx>
133 #include <TInspector_Communicator.hxx>
134 #include <VInspector_CallBack.hxx>
135 static TInspector_Communicator* MyTCommunicator;
136 static Handle(VInspector_CallBack) MyVCallBack;
137
138 #endif
139
140 #ifdef _DEBUG
141 #include <QDebug>
142 #include <iostream>
143 #endif
144
145 #ifdef WIN32
146 #include <windows.h>
147 #else
148 #include <dlfcn.h>
149 #endif
150
151 QString XGUI_Workshop::MOVE_TO_END_COMMAND = QObject::tr("Move to the end");
152
153 //#define DEBUG_DELETE
154 //#define DEBUG_FEATURE_NAME
155 //#define DEBUG_CLEAN_HISTORY
156
157 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
158     : QObject(),
159       myCurrentDir(QString()),
160       myModule(NULL),
161       mySalomeConnector(theConnector),
162       myPropertyPanel(0),
163       myObjectBrowser(0),
164       myDisplayer(0)
165       //myViewerSelMode(TopAbs_FACE)
166 {
167   mySelector = new XGUI_SelectionMgr(this);
168   myModuleConnector = new XGUI_ModuleConnector(this);
169   myOperationMgr = new XGUI_OperationMgr(this, 0);
170   ModuleBase_IWorkshop* aWorkshop = moduleConnector();
171   // Has to be defined first in order to get errors and messages from other components
172   myEventsListener = new XGUI_WorkshopListener(aWorkshop);
173
174   SUIT_ResourceMgr* aResMgr = ModuleBase_Preferences::resourceMgr();
175 #ifndef HAVE_SALOME
176   myMainWindow = new AppElements_MainWindow();
177
178   bool aCloc = aResMgr->booleanValue("language", "locale", true);
179   if (aCloc)
180     QLocale::setDefault( QLocale::c() );
181   else
182     QLocale::setDefault( QLocale::system() );
183 #endif
184   QString aPath = Config_XMLReader::pluginConfigFile().c_str();
185   QDir aDir(aPath);
186
187   // Load translations
188   QStringList aLangs;
189   aLangs << "*_en.ts"; // load by default eng translations
190   QString aCurrLang = aResMgr->stringValue("language", "language", "en");
191   if(aCurrLang != "en") {
192     aLangs << "*_" + aCurrLang + ".ts"; // then replace with translated files
193   }
194
195   foreach(QString aLang, aLangs) {
196     QStringList aFilters;
197     aFilters << aLang;
198     QStringList aTsFiles = aDir.entryList(aFilters, QDir::Files);
199     foreach(QString aFileName, aTsFiles) {
200       Config_Translator::load(aFileName.toStdString());
201     }
202   }
203
204   myDataModelXMLReader = new Config_DataModelReader();
205   //myDataModelXMLReader->readAll();
206
207   myDisplayer = new XGUI_Displayer(this);
208
209   connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateCommandStatus()));
210
211   myActionsMgr = new XGUI_ActionsMgr(this);
212   myMenuMgr = new XGUI_MenuMgr(this);
213   myErrorDlg = new XGUI_ErrorDialog(QApplication::desktop());
214   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
215   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
216           SLOT(onContextMenuCommand(const QString&, bool)));
217
218   myViewerProxy = new XGUI_ViewerProxy(this);
219   //connect(myViewerProxy, SIGNAL(selectionChanged()),
220   //        myActionsMgr,  SLOT(updateOnViewSelection()));
221
222   myOperationMgr->setWorkshop(aWorkshop);
223
224   myErrorMgr = new XGUI_ErrorMgr(this, aWorkshop);
225
226   connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
227           SLOT(onOperationResumed(ModuleBase_Operation*)));
228   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
229           SLOT(onOperationStopped(ModuleBase_Operation*)));
230   connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)),
231           SLOT(onOperationCommitted(ModuleBase_Operation*)));
232   connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)),
233           SLOT(onOperationAborted(ModuleBase_Operation*)));
234
235 #ifndef HAVE_SALOME
236   connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
237   onTrihedronVisibilityChanged(true);
238 #endif
239
240   connect(myEventsListener, SIGNAL(errorOccurred(std::shared_ptr<Events_InfoMessage>)),
241           myErrorDlg, SLOT(addError(std::shared_ptr<Events_InfoMessage>)));
242
243   //Config_PropManager::registerProp("Visualization", "object_default_color", "Object color",
244   //                                 Config_Prop::Color, "225,225,225");
245
246   Config_PropManager::registerProp("Visualization", "result_body_color", "Result color",
247                                    Config_Prop::Color, ModelAPI_ResultBody::DEFAULT_COLOR());
248   Config_PropManager::registerProp("Visualization", "result_group_color", "Group color",
249                                    Config_Prop::Color, ModelAPI_ResultGroup::DEFAULT_COLOR());
250   Config_PropManager::registerProp("Visualization", "result_construction_color",
251                                    "Construction color",
252                                    Config_Prop::Color,
253                                    ModelAPI_ResultConstruction::DEFAULT_COLOR());
254   Config_PropManager::registerProp("Visualization", "result_part_color", "Part color",
255                                    Config_Prop::Color, ModelAPI_ResultPart::DEFAULT_COLOR());
256   Config_PropManager::registerProp("Visualization", "result_field_color", "Field color",
257                                    Config_Prop::Color, ModelAPI_ResultField::DEFAULT_COLOR());
258
259   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "face-selection", true))
260     myViewerSelMode.append(TopAbs_FACE);
261   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "edge-selection", true))
262     myViewerSelMode.append(TopAbs_EDGE);
263   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "vertex-selection", true))
264     myViewerSelMode.append(TopAbs_VERTEX);
265   //IMP: an attempt to use result selection with other selection modes
266   myViewerSelMode.append(ModuleBase_ResultPrs::Sel_Result);//TopAbs_VERTEX);
267   myViewerSelMode.append(TopAbs_COMPSOLID);
268 }
269
270 //******************************************************
271 XGUI_Workshop::~XGUI_Workshop(void)
272 {
273 #ifdef _DEBUG
274 #ifdef MISSED_TRANSLATION
275   // Save Missed translations
276   Config_Translator::saveMissedTranslations();
277 #endif
278 #endif
279
280   delete myDisplayer;
281   delete myDataModelXMLReader;
282 }
283
284 //******************************************************
285 void XGUI_Workshop::startApplication()
286 {
287   //Initialize event listening
288   myEventsListener->initializeEventListening();
289
290   myDataModelXMLReader->readAll();
291   initMenu();
292
293   Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
294                                    Config_Prop::Directory, "");
295
296
297   registerValidators();
298
299   // Calling of  loadCustomProps before activating module is required
300   // by Config_PropManger to restore user-defined path to plugins
301   ModuleBase_Preferences::loadCustomProps();
302   createModule();
303
304 #ifndef HAVE_SALOME
305   myMainWindow->show();
306   updateCommandStatus();
307 #endif
308
309   onNew();
310
311   myViewerProxy->connectViewProxy();
312   connect(myViewerProxy, SIGNAL(trihedronVisibilityChanged(bool)),
313           SLOT(onTrihedronVisibilityChanged(bool)));
314
315   emit applicationStarted();
316 }
317
318 void XGUI_Workshop::activateModule()
319 {
320   myModule->activateSelectionFilters();
321
322   connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
323     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
324   connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
325     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
326
327   updateCommandStatus();
328
329   // TODO: get default selection mode
330
331   // activate visualized objects in the viewer
332   activateObjectsSelection(displayer()->displayedObjects());
333   myOperationMgr->activate();
334 }
335
336 void XGUI_Workshop::deactivateModule()
337 {
338   myModule->deactivateSelectionFilters();
339
340   // remove internal displayer filter
341   displayer()->deactivateSelectionFilters();
342
343   disconnect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
344     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
345   disconnect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
346     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
347
348   XGUI_Displayer* aDisplayer = displayer();
349   QObjectPtrList aDisplayed = aDisplayer->displayedObjects();
350   aDisplayer->deactivateObjects(aDisplayed, true);
351   Handle(AIS_InteractiveContext) aContext = viewer()->AISContext();
352   Handle(AIS_Trihedron) aTrihedron = Handle(AIS_Trihedron)::DownCast(aDisplayer->getTrihedron());
353   /// deactivate trihedron in selection modes
354   TColStd_ListOfInteger aTColModes;
355   aContext->ActivatedModes(aTrihedron, aTColModes);
356   TColStd_ListIteratorOfListOfInteger itr( aTColModes );
357   for (; itr.More(); itr.Next() ) {
358     Standard_Integer aMode = itr.Value();
359     aContext->Deactivate(aTrihedron, aMode);
360   }
361 #ifdef BEFORE_TRIHEDRON_PATCH
362   /// Trihedron problem: objects stayed in the viewer, should be removed manually
363   /// otherwise in SALOME happens crash by HideAll in the viewer
364   aContext->Remove(aTrihedron->Position(), true);
365   aContext->Remove(aTrihedron->Axis(), true);
366   aContext->Remove(aTrihedron->XAxis(), true);
367   aContext->Remove(aTrihedron->YAxis(), true);
368 #endif
369
370   myOperationMgr->deactivate();
371 }
372
373 //******************************************************
374 void XGUI_Workshop::initMenu()
375 {
376   myContextMenuMgr->createActions();
377
378 #ifdef HAVE_SALOME
379   // Create only Undo, Redo commands
380   QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
381                                                         tr("Undo last command"),
382                                                         QIcon(":pictures/undo.png"),
383                                                         QKeySequence::Undo, false,
384                                                         "MEN_DESK_EDIT");
385   QString aToolBarTitle = tr( "INF_DESK_TOOLBAR_STANDARD" );
386   salomeConnector()->addActionInToolbar( aAction,aToolBarTitle  );
387
388   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
389   addHistoryMenu(aAction, SIGNAL(updateUndoHistory(const QList<ActionInfo>&)), SLOT(onUndo(int)));
390
391   aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
392                                               QIcon(":pictures/redo.png"), QKeySequence::Redo,
393                                               false, "MEN_DESK_EDIT");
394   salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
395
396   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
397   addHistoryMenu(aAction, SIGNAL(updateRedoHistory(const QList<ActionInfo>&)), SLOT(onRedo(int)));
398
399   salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
400   //aAction = salomeConnector()->addDesktopCommand("REBUILD_CMD", tr("Rebuild"),
401   //                                            tr("Rebuild data objects"),
402   //                                            QIcon(":pictures/rebuild.png"), QKeySequence(),
403   //                                            false, "MEN_DESK_EDIT");
404   //salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
405
406   //connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRebuild()));
407   //salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
408
409   aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Export native..."),
410                                              tr("Export the current document into a native file"),
411                                               QIcon(), QKeySequence(),
412                                               false, "MEN_DESK_FILE");
413   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
414
415   aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Import native..."),
416                                               tr("Import native file"),
417                                               QIcon(), QKeySequence(),
418                                               false, "MEN_DESK_FILE");
419   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
420   salomeConnector()->addDesktopMenuSeparator("MEN_DESK_FILE");
421
422 #else
423   // File commands group
424   AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
425
426   AppElements_Command* aCommand;
427
428   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save"), tr("Save the document"),
429                                 QIcon(":pictures/save.png"), QKeySequence::Save);
430   aCommand->connectTo(this, SLOT(onSave()));
431   //aCommand->disable();
432
433   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
434                                 QIcon(":pictures/save.png"), QKeySequence());
435   aCommand->connectTo(this, SLOT(onSaveAs()));
436
437   QString aUndoId = "UNDO_CMD";
438   aCommand = aGroup->addFeature(aUndoId, tr("Undo"), tr("Undo last command"),
439                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
440   aCommand->connectTo(this, SLOT(onUndo()));
441   AppElements_Button* aUndoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aUndoId));
442   addHistoryMenu(aUndoButton,
443                  SIGNAL(updateUndoHistory(const QList<ActionInfo>&)),
444                  SLOT(onUndo(int)));
445
446   QString aRedoId = "REDO_CMD";
447   aCommand = aGroup->addFeature(aRedoId, tr("Redo"), tr("Redo last command"),
448                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
449   aCommand->connectTo(this, SLOT(onRedo()));
450   AppElements_Button* aRedoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aRedoId));
451   addHistoryMenu(aRedoButton,
452                  SIGNAL(updateRedoHistory(const QList<ActionInfo>&)),
453                  SLOT(onRedo(int)));
454
455   //aCommand = aGroup->addFeature("REBUILD_CMD", tr("Rebuild"), tr("Rebuild data objects"),
456   //  QIcon(":pictures/rebuild.png"), QKeySequence());
457   //aCommand->connectTo(this, SLOT(onRebuild()));
458
459   //aCommand->disable();
460
461   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
462                                 QIcon(":pictures/open.png"), QKeySequence::Open);
463   aCommand->connectTo(this, SLOT(onOpen()));
464
465   aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
466                                 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
467   aCommand->connectTo(this, SLOT(onPreferences()));
468
469   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
470                                 QIcon(":pictures/close.png"), QKeySequence::Close);
471   aCommand->connectTo(this, SLOT(onExit()));
472 #endif
473 }
474
475 #ifndef HAVE_SALOME
476 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
477 {
478   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
479   return aMenuBar->addWorkbench(theName);
480 }
481 #endif
482
483 //******************************************************
484 QMainWindow* XGUI_Workshop::desktop() const
485 {
486 #ifdef HAVE_SALOME
487   return salomeConnector()->desktop();
488 #else
489   return myMainWindow;
490 #endif
491 }
492
493 //******************************************************
494 void XGUI_Workshop::onStartWaiting()
495 {
496   if (Events_LongOp::isPerformed()) {
497     QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
498   }
499 }
500
501 //******************************************************
502 void XGUI_Workshop::onAcceptActionClicked()
503 {
504   QAction* anAction = dynamic_cast<QAction*>(sender());
505   XGUI_OperationMgr* anOperationMgr = operationMgr();
506   if (anOperationMgr) {
507     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
508                                                     (anOperationMgr->currentOperation());
509     if (aFOperation) {
510       //if (errorMgr()->canProcessClick(anAction, aFOperation->feature()))
511       myOperationMgr->onCommitOperation();
512     }
513   }
514 }
515
516 //******************************************************
517 void XGUI_Workshop::onPreviewActionClicked()
518 {
519   ModuleBase_IPropertyPanel* aPanel = propertyPanel();
520   if (aPanel) {
521     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
522     if (anActiveWidget && anActiveWidget->getValueState() == ModuleBase_ModelWidget::ModifiedInPP) {
523       anActiveWidget->storeValue();
524     }
525   }
526   std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
527                 new Events_Message(Events_Loop::eventByName(EVENT_PREVIEW_REQUESTED)));
528   Events_Loop::loop()->send(aMsg);
529 }
530
531 //******************************************************
532 void XGUI_Workshop::deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer)
533 {
534   if (!myModule->canActivateSelection(theObject)) {
535     if (myDisplayer->isActive(theObject)) {
536       QObjectPtrList anObjects;
537       anObjects.append(theObject);
538       myDisplayer->deactivateObjects(anObjects, theUpdateViewer);
539     }
540   }
541 }
542
543 //******************************************************
544 bool XGUI_Workshop::isFeatureOfNested(const FeaturePtr& theFeature)
545 {
546   bool aHasNested = false;
547   std::string aFeatureKind = theFeature->getKind();
548 #ifdef HAVE_SALOME
549     XGUI_SalomeConnector* aSalomeConnector = salomeConnector();
550     if (aSalomeConnector->isFeatureOfNested(actionsMgr()->action(aFeatureKind.c_str())))
551       aHasNested = true;
552 #else
553     AppElements_MainMenu* aMenuBar = mainWindow()->menuObject();
554     AppElements_Command* aCommand = aMenuBar->feature(aFeatureKind.c_str());
555     if (aCommand && aCommand->button()->additionalButtonWidget())
556       aHasNested = true;
557 #endif
558   return aHasNested;
559 }
560
561 void XGUI_Workshop::fillPropertyPanel(ModuleBase_Operation* theOperation)
562 {
563   ModuleBase_OperationFeature* aFOperation =
564     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
565   if (!aFOperation)
566     return;
567
568   showPropertyPanel();
569   myPropertyPanel->cleanContent();
570
571   QList<ModuleBase_ModelWidget*> aWidgets;
572   if (!module()->createWidgets(theOperation, aWidgets)) {
573     QString aXmlRepr = aFOperation->getDescription()->xmlRepresentation();
574     ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), myModuleConnector);
575     aFactory.createWidget(myPropertyPanel->contentWidget());
576     aWidgets = aFactory.getModelWidgets();
577   }
578
579   // check compatibility of feature and widgets
580   FeaturePtr aFeature = aFOperation->feature();
581   std::string aFeatureKind = aFeature->getKind();
582   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
583     if (!aWidget->attributeID().empty() && !aFeature->attribute(aWidget->attributeID()).get()) {
584       std::string anErrorMsg = "The feature '%1' has no attribute '%2' used by widget '%3'.";
585       Events_InfoMessage("XGUI_Workshop", anErrorMsg)
586         .arg(aFeatureKind).arg(aWidget->attributeID())
587         .arg(aWidget->metaObject()->className()).send();
588       myPropertyPanel->cleanContent();
589       return;
590     }
591   }
592   // for performance purpose, flush should be done after all controls are filled
593   bool isUpdateFlushed = false;
594   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
595     bool isStoreValue = !aFOperation->isEditOperation() &&
596                         !aWidget->getDefaultValue().empty() &&
597                         !aWidget->isComputedDefault();
598     aWidget->setFeature(aFeature, isStoreValue, isUpdateFlushed);
599     if (!isStoreValue)
600       aWidget->restoreValue();
601     aWidget->enableFocusProcessing();
602   }
603   ModuleBase_Tools::flushUpdated(aFeature);
604
605   // update visible state of Preview button
606   std::shared_ptr<Config_FeatureMessage> aFeatureInfo;
607 #ifdef HAVE_SALOME
608   aFeatureInfo = mySalomeConnector->featureInfo(aFeatureKind.c_str());
609 #else
610   AppElements_MainMenu* aMenuBar = mainWindow()->menuObject();
611   AppElements_Command* aCommand = aMenuBar->feature(aFeatureKind.c_str());
612   if (aCommand)
613     aFeatureInfo = aCommand->featureMessage();
614 #endif
615   bool anIsAutoPreview = true;
616   if (aFeatureInfo.get())
617     anIsAutoPreview = aFeatureInfo->isAutoPreview();
618   else {
619     std::string aXmlCfg, aDescription;
620     module()->getXMLRepresentation(aFeatureKind, aXmlCfg, aDescription);
621     ModuleBase_WidgetFactory aFactory(aXmlCfg, moduleConnector());
622     anIsAutoPreview = aFactory.widgetAPI()->getBooleanAttribute(FEATURE_AUTO_PREVIEW, true);
623   }
624
625   if (!anIsAutoPreview) {
626     myPropertyPanel->findButton(PROP_PANEL_PREVIEW)->setVisible(true);
627     // send signal about preview should not be computed automatically, click on preview
628     // button should initiate it
629     std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
630                   new Events_Message(Events_Loop::eventByName(EVENT_PREVIEW_BLOCKED)));
631     Events_Loop::loop()->send(aMsg);
632   }
633   myPropertyPanel->setModelWidgets(aWidgets);
634   aFOperation->setPropertyPanel(myPropertyPanel);
635
636   myModule->propertyPanelDefined(theOperation);
637
638 #ifndef DEBUG_FEATURE_NAME
639   myPropertyPanel->setWindowTitle(theOperation->getDescription()->description());
640 #else
641   std::string aFeatureName = aFeature->name();
642   myPropertyPanel->setWindowTitle(QString("%1: %2")
643     .arg(theOperation->getDescription()->description())
644     .arg(aFeatureName.c_str()));
645 #endif
646
647   myErrorMgr->setPropertyPanel(myPropertyPanel);
648 }
649
650 void XGUI_Workshop::connectToPropertyPanel(const bool isToConnect)
651 {
652   XGUI_PropertyPanel* aPropertyPanel = propertyPanel();
653   if (aPropertyPanel) {
654     const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
655     foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
656        myModule->connectToPropertyPanel(aWidget, isToConnect);
657        if (isToConnect) {
658         connect(aWidget, SIGNAL(valueStateChanged(int)), this, SLOT(onWidgetStateChanged(int)));
659         connect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
660         connect(aWidget, SIGNAL(objectUpdated()), this, SLOT(onWidgetObjectUpdated()));
661        }
662       else {
663         disconnect(aWidget, SIGNAL(valueStateChanged(int)), this, SLOT(onWidgetStateChanged(int)));
664         disconnect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
665         disconnect(aWidget, SIGNAL(objectUpdated()), this, SLOT(onWidgetObjectUpdated()));
666       }
667     }
668   }
669 }
670
671 //******************************************************
672 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
673 {
674   setGrantedFeatures(theOperation);
675
676   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
677     fillPropertyPanel(theOperation);
678     connectToPropertyPanel(true);
679   }
680   updateCommandStatus();
681
682   myModule->operationResumed(theOperation);
683 }
684
685
686 //******************************************************
687 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
688 {
689   updateCommandStatus();
690
691   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
692                                                                         (theOperation);
693   if (!aFOperation)
694     return;
695
696   ModuleBase_ISelection* aSel = mySelector->selection();
697   QObjectPtrList aObj = aSel->selectedPresentations();
698   //!< No need for property panel
699   hidePropertyPanel();
700   myPropertyPanel->cleanContent();
701
702   connectToPropertyPanel(false);
703   myModule->operationStopped(aFOperation);
704
705   // the deactivated objects of the current operation should be activated back.
706   // They were deactivated on operation start or an object redisplay
707   QObjectPtrList anObjects;
708   FeaturePtr aFeature = aFOperation->feature();
709   if (aFeature.get()) { // feature may be not created (plugin load fail)
710     if (myDisplayer->isVisible(aFeature) && !myDisplayer->isActive(aFeature))
711       anObjects.append(aFeature);
712     std::list<ResultPtr> aResults;
713     ModelAPI_Tools::allResults(aFeature, aResults);
714     std::list<ResultPtr>::const_iterator aIt;
715     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
716       ResultPtr anObject = *aIt;
717       if (myDisplayer->isVisible(anObject) && !myDisplayer->isActive(anObject)) {
718         anObjects.append(anObject);
719       }
720     }
721   }
722   activateObjectsSelection(anObjects);
723 }
724
725
726 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
727 {
728   myModule->operationCommitted(theOperation);
729 }
730
731 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
732 {
733   myModule->operationAborted(theOperation);
734 }
735
736 void XGUI_Workshop::setGrantedFeatures(ModuleBase_Operation* theOperation)
737 {
738   ModuleBase_OperationFeature* aFOperation =
739     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
740   if (!aFOperation)
741     return;
742
743   QStringList aGrantedIds;
744   if (isSalomeMode()) {
745     const std::shared_ptr<Config_FeatureMessage>& anInfo =
746                          mySalomeConnector->featureInfo(theOperation->id());
747     if (anInfo.get())
748       aGrantedIds = QString::fromStdString(anInfo->nestedFeatures())
749                                    .split(" ", QString::SkipEmptyParts);
750   }
751   else
752     aGrantedIds = myActionsMgr->nestedCommands(theOperation->id());
753
754   ModuleBase_IModule* aModule = module();
755   if (aModule)
756     aModule->grantedOperationIds(theOperation, aGrantedIds);
757
758   aFOperation->setGrantedOperationIds(aGrantedIds);
759 }
760
761 //******************************************************
762 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
763 {
764   QApplication::restoreOverrideCursor();
765   SessionPtr aMgr = ModelAPI_Session::get();
766
767   std::list<DocumentPtr> aDocList = aMgr->allOpenedDocuments();
768   std::list<DocumentPtr>::const_iterator aIt;
769   for (aIt = aDocList.cbegin(); aIt != aDocList.cend(); aIt++) {
770     std::list<bool> aState = myObjectBrowser->getStateForDoc(*aIt);
771     (*aIt)->storeNodesState(aState);
772   }
773
774   aMgr->save(theName.toLatin1().constData(), theFileNames);
775
776   QApplication::restoreOverrideCursor();
777 }
778
779 //******************************************************
780 bool XGUI_Workshop::abortAllOperations()
781 {
782   return myOperationMgr->abortAllOperations();
783 }
784
785 //******************************************************
786 void XGUI_Workshop::operationStarted(ModuleBase_Operation* theOperation)
787 {
788   setGrantedFeatures(theOperation);
789   if (!theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
790     updateCommandStatus();
791   }
792   else {
793     myModule->operationStarted(theOperation);
794   }
795 }
796
797 //******************************************************
798 void XGUI_Workshop::onOpen()
799 {
800   if(!abortAllOperations())
801     return;
802   //save current file before close if modified
803   SessionPtr aSession = ModelAPI_Session::get();
804   if (aSession->isModified()) {
805     //TODO(sbh): re-launch the app?
806     int anAnswer = QMessageBox::question(
807         desktop(), tr("Save current file"),
808         tr("The document is modified, save before opening another?"),
809         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
810     if (anAnswer == QMessageBox::Save) {
811       onSave();
812     } else if (anAnswer == QMessageBox::Cancel) {
813       return;
814     }
815     myCurrentDir = "";
816   }
817
818   //show file dialog, check if readable and open
819   QString aDirectory = QFileDialog::getExistingDirectory(desktop(), tr("Select directory"));
820   openDirectory(aDirectory);
821 }
822
823 //******************************************************
824 void XGUI_Workshop::openDirectory(const QString& theDirectory)
825 {
826   myCurrentDir = theDirectory;
827   if (myCurrentDir.isEmpty())
828     return;
829
830   QFileInfo aFileInfo(myCurrentDir);
831   if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
832     QMessageBox::critical(desktop(), tr("Warning"), tr("Unable to open the file."));
833     myCurrentDir = "";
834     return;
835   }
836
837   QApplication::setOverrideCursor(Qt::WaitCursor);
838   module()->closeDocument();
839   SessionPtr aSession = ModelAPI_Session::get();
840   aSession->closeAll();
841   aSession->load(myCurrentDir.toLatin1().constData());
842   myObjectBrowser->rebuildDataTree();
843
844   // Open first level of data tree
845   DocumentPtr aRootDoc = aSession->moduleDocument();
846   std::list<bool> aStates;
847   aRootDoc->restoreNodesState(aStates);
848   myObjectBrowser->setStateForDoc(aRootDoc, aStates);
849
850   updateCommandStatus();
851 #ifndef HAVE_SALOME
852   myMainWindow->setCurrentDir(myCurrentDir, true);
853 #endif
854   QApplication::restoreOverrideCursor();
855 }
856
857 //******************************************************
858 void XGUI_Workshop::onNew()
859 {
860   QApplication::setOverrideCursor(Qt::WaitCursor);
861   if (objectBrowser() == 0) {
862     createDockWidgets();
863     mySelector->connectViewers();
864   }
865   myViewerProxy->connectToViewer();
866   showObjectBrowser();
867 #ifndef HAVE_SALOME
868   myMainWindow->showPythonConsole();
869   QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
870   aWnd->showMaximized();
871   updateCommandStatus();
872 #endif
873   myContextMenuMgr->connectViewer();
874   QApplication::restoreOverrideCursor();
875 }
876
877 #ifndef HAVE_SALOME
878 //******************************************************
879 void XGUI_Workshop::onExit()
880 {
881   SessionPtr aMgr = ModelAPI_Session::get();
882   if (aMgr->isModified()) {
883     int anAnswer = QMessageBox::question(
884         myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
885         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
886     if (anAnswer == QMessageBox::Save) {
887       bool saved = onSave();
888       if (!saved) {
889         return;
890       }
891     } else if (anAnswer == QMessageBox::Cancel) {
892       return;
893     }
894   }
895   qApp->exit();
896 }
897
898 //******************************************************
899 void XGUI_Workshop::onPreferences()
900 {
901   ModuleBase_Prefs aModif;
902   ModuleBase_Preferences::editPreferences(aModif);
903   if (aModif.size() > 0) {
904     QString aSection;
905     foreach (ModuleBase_Pref aPref, aModif)
906     {
907       aSection = aPref.first;
908       if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
909         myMainWindow->viewer()->updateFromResources();
910       } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
911         myMainWindow->menuObject()->updateFromResources();
912       }
913     }
914     displayer()->redisplayObjects();
915   }
916 }
917 #endif
918
919 //******************************************************
920 void XGUI_Workshop::onTrihedronVisibilityChanged(bool theState)
921 {
922   XGUI_Displayer* aDisplayer = displayer();
923   if (aDisplayer)
924     aDisplayer->displayTrihedron(theState);
925 }
926
927 //******************************************************
928 bool XGUI_Workshop::onSave()
929 {
930   if(!abortAllOperations())
931     return false;
932   if (myCurrentDir.isEmpty()) {
933     return onSaveAs();
934   }
935   std::list<std::string> aFiles;
936   saveDocument(myCurrentDir, aFiles);
937   updateCommandStatus();
938 #ifndef HAVE_SALOME
939     myMainWindow->setModifiedState(false);
940 #endif
941   return true;
942 }
943
944 //******************************************************
945 bool XGUI_Workshop::onSaveAs()
946 {
947   if(!abortAllOperations())
948     return false;
949   QFileDialog dialog(desktop());
950   dialog.setWindowTitle(tr("Select directory to save files..."));
951   dialog.setFileMode(QFileDialog::Directory);
952   dialog.setFilter(QDir::AllDirs);
953   dialog.setOptions(QFileDialog::HideNameFilterDetails | QFileDialog::ShowDirsOnly);
954   dialog.setViewMode(QFileDialog::Detail);
955
956   if (!dialog.exec()) {
957     return false;
958   }
959
960   QString aTempDir = dialog.selectedFiles().first();
961   QDir aDir(aTempDir);
962   if (aDir.exists() && !aDir.entryInfoList(QDir::NoDotAndDotDot | QDir::AllEntries).isEmpty()) {
963     int answer = QMessageBox::question(
964         desktop(),
965         // Title of the dialog which asks user if he wants to save study
966         // in existing non-empty folder
967         tr("Save"),
968         tr("The directory already contains some files, save anyway?"),
969         QMessageBox::Save | QMessageBox::Cancel);
970     if (answer == QMessageBox::Cancel) {
971       return false;
972     }
973   }
974   myCurrentDir = aTempDir;
975 #ifndef HAVE_SALOME
976     myMainWindow->setCurrentDir(myCurrentDir, false);
977     myMainWindow->setModifiedState(false);
978 #endif
979   return onSave();
980 }
981
982 //******************************************************
983 void XGUI_Workshop::onUndo(int theTimes)
984 {
985   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
986   SessionPtr aMgr = ModelAPI_Session::get();
987   std::list<std::string> aUndoList = aMgr->undoList();
988   if (aMgr->isOperation()) {
989     /// this is important for nested operations
990     /// when sketch operation is active, this condition is false and
991     /// the sketch operation is not aborted
992     operationMgr()->onAbortOperation();
993   }
994   std::list<std::string>::const_iterator aIt = aUndoList.cbegin();
995   for (int i = 0; (i < theTimes) && (aIt != aUndoList.cend()); ++i, ++aIt) {
996     aMgr->undo();
997     if (QString((*aIt).c_str()) == MOVE_TO_END_COMMAND)
998       myObjectBrowser->rebuildDataTree();
999   }
1000
1001   operationMgr()->updateApplyOfOperations();
1002   updateCommandStatus();
1003 }
1004
1005 //******************************************************
1006 void XGUI_Workshop::onRedo(int theTimes)
1007 {
1008   // the viewer update should be blocked in order to avoid the features blinking. For the created
1009   // feature a results are created, the flush of the created signal caused the viewer redisplay for
1010   // each created result. After a redisplay signal is flushed. So, the viewer update is blocked
1011   // until redo of all possible objects happens
1012   bool isUpdateEnabled = myDisplayer->enableUpdateViewer(false);
1013
1014   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
1015   SessionPtr aMgr = ModelAPI_Session::get();
1016   std::list<std::string> aRedoList = aMgr->redoList();
1017   if (aMgr->isOperation()) {
1018     /// this is important for nested operations
1019     /// when sketch operation is active, this condition is false and
1020     /// the sketch operation is not aborted
1021     operationMgr()->onAbortOperation();
1022   }
1023   std::list<std::string>::const_iterator aIt = aRedoList.cbegin();
1024   for (int i = 0; (i < theTimes) && (aIt != aRedoList.cend()); ++i, ++aIt) {
1025     aMgr->redo();
1026     if (QString((*aIt).c_str()) == MOVE_TO_END_COMMAND)
1027       myObjectBrowser->rebuildDataTree();
1028   }
1029   operationMgr()->updateApplyOfOperations();
1030   updateCommandStatus();
1031
1032   // unblock the viewer update functionality and make update on purpose
1033   myDisplayer->enableUpdateViewer(isUpdateEnabled);
1034   myDisplayer->updateViewer();
1035 }
1036
1037 //******************************************************
1038 //void XGUI_Workshop::onRebuild()
1039 //{
1040 //  SessionPtr aMgr = ModelAPI_Session::get();
1041 //  bool aWasOperation = aMgr->isOperation(); // keep this value
1042 //  if (!aWasOperation) {
1043 //    aMgr->startOperation("Rebuild");
1044 //  }
1045 //  static const Events_ID aRebuildEvent = Events_Loop::loop()->eventByName("Rebuild");
1046 //  Events_Loop::loop()->send(std::shared_ptr<Events_Message>(
1047 //    new Events_Message(aRebuildEvent, this)));
1048 //  if (!aWasOperation) {
1049 //    aMgr->finishOperation();
1050 //  }
1051 //  updateCommandStatus();
1052 //}
1053
1054 //******************************************************
1055 void XGUI_Workshop::onWidgetStateChanged(int thePreviousState)
1056 {
1057   ModuleBase_ModelWidget* anActiveWidget = 0;
1058   ModuleBase_Operation* anOperation = myOperationMgr->currentOperation();
1059   if (anOperation) {
1060     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1061     if (aPanel)
1062       anActiveWidget = aPanel->activeWidget();
1063   }
1064   if (anActiveWidget)
1065     operationMgr()->onValidateOperation();
1066
1067   myModule->widgetStateChanged(thePreviousState);
1068 }
1069
1070 //******************************************************
1071 void XGUI_Workshop::onValuesChanged()
1072 {
1073   ModuleBase_ModelWidget* aSenderWidget = (ModuleBase_ModelWidget*)(sender());
1074   if (!aSenderWidget || aSenderWidget->canAcceptFocus())
1075     return;
1076
1077   ModuleBase_ModelWidget* anActiveWidget = 0;
1078   ModuleBase_Operation* anOperation = myOperationMgr->currentOperation();
1079   if (anOperation) {
1080     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1081     if (aPanel)
1082       anActiveWidget = aPanel->activeWidget();
1083   }
1084   if (anActiveWidget) {
1085     ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
1086                                                                            (anActiveWidget);
1087     if (aWidgetValidated)
1088       aWidgetValidated->clearValidatedCash();
1089   }
1090 }
1091
1092 void XGUI_Workshop::onWidgetObjectUpdated()
1093 {
1094   operationMgr()->onValidateOperation();
1095 }
1096
1097 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
1098 {
1099   QString libName = QString::fromStdString(library(theModule.toStdString()));
1100   if (libName.isEmpty()) {
1101     qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
1102     return 0;
1103   }
1104
1105   QString err;
1106   CREATE_FUNC crtInst = 0;
1107
1108 #ifdef WIN32
1109   HINSTANCE modLib = ::LoadLibrary((LPTSTR) qPrintable(libName));
1110   if (!modLib) {
1111     LPVOID lpMsgBuf;
1112     ::FormatMessage(
1113         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
1114         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1115     QString aMsg((char*) &lpMsgBuf);
1116     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
1117     ::LocalFree(lpMsgBuf);
1118   } else {
1119     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
1120     if (!crtInst) {
1121       LPVOID lpMsgBuf;
1122       ::FormatMessage(
1123           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
1124               | FORMAT_MESSAGE_IGNORE_INSERTS,
1125           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1126       QString aMsg((char*) &lpMsgBuf);
1127       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
1128       ::LocalFree(lpMsgBuf);
1129     }
1130   }
1131 #else
1132   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
1133   if ( !modLib ) {
1134     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
1135   } else {
1136     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
1137     if ( !crtInst ) {
1138       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
1139     }
1140   }
1141 #endif
1142
1143   ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
1144
1145   if (!err.isEmpty()) {
1146     if (desktop()) {
1147       Events_InfoMessage("XGUI_Workshop", err.toStdString()).send();
1148     } else {
1149       qWarning(qPrintable(err));
1150     }
1151   }
1152   return aModule;
1153 }
1154
1155 //******************************************************
1156 bool XGUI_Workshop::createModule()
1157 {
1158   Config_ModuleReader aModuleReader;
1159   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
1160   myModule = loadModule(moduleName);
1161   if (!myModule)
1162     return false;
1163
1164   //connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
1165   //  myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
1166   //connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
1167   //  myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
1168
1169   myModule->createFeatures();
1170 #ifdef HAVE_SALOME
1171   salomeConnector()->createFeatureActions();
1172 #endif
1173   //myActionsMgr->update();
1174   return true;
1175 }
1176
1177 //******************************************************
1178 void XGUI_Workshop::updateCommandStatus()
1179 {
1180   QList<QAction*> aCommands;
1181 #ifdef HAVE_SALOME
1182     aCommands = salomeConnector()->commandList();
1183 #else
1184     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
1185     foreach (AppElements_Command* aCmd, aMenuBar->features())
1186       aCommands.append(aCmd);
1187 #endif
1188   SessionPtr aMgr = ModelAPI_Session::get();
1189   if (aMgr->hasModuleDocument()) {
1190     foreach(QAction* aCmd, aCommands) {
1191       QString aId = aCmd->data().toString();
1192       if (aId == "UNDO_CMD")
1193         aCmd->setEnabled(myModule->canUndo());
1194       else if (aId == "REDO_CMD")
1195         aCmd->setEnabled(myModule->canRedo());
1196       else
1197         // Enable all commands
1198         aCmd->setEnabled(true);
1199     }
1200     updateHistory();
1201   } else {
1202     foreach(QAction* aCmd, aCommands) {
1203       QString aId = aCmd->data().toString();
1204       if (aId == "NEW_CMD")
1205         aCmd->setEnabled(true);
1206       else if (aId == "EXIT_CMD")
1207         aCmd->setEnabled(true);
1208       else
1209         aCmd->setEnabled(false);
1210     }
1211   }
1212   myActionsMgr->updateCommandsStatus();
1213   emit commandStatusUpdated();
1214 }
1215
1216 void XGUI_Workshop::updateHistory()
1217 {
1218   std::list<std::string> aUndoList = ModelAPI_Session::get()->undoList();
1219   QList<ActionInfo> aUndoRes = processHistoryList(aUndoList);
1220   emit updateUndoHistory(aUndoRes);
1221
1222   std::list<std::string> aRedoList = ModelAPI_Session::get()->redoList();
1223   QList<ActionInfo> aRedoRes = processHistoryList(aRedoList);
1224   emit updateRedoHistory(aRedoRes);
1225 }
1226
1227 //******************************************************
1228 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
1229 {
1230   QDockWidget* aObjDock = new QDockWidget(theParent);
1231   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea |
1232                             Qt::RightDockWidgetArea |
1233                             Qt::BottomDockWidgetArea);
1234   aObjDock->setWindowTitle(tr("Object browser"));
1235   aObjDock->setStyleSheet(
1236       "::title { position: relative; padding-left: 5px; text-align: left center }");
1237   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock);
1238   myObjectBrowser->setXMLReader(myDataModelXMLReader);
1239   myModule->customizeObjectBrowser(myObjectBrowser);
1240   aObjDock->setWidget(myObjectBrowser);
1241
1242   myContextMenuMgr->connectObjectBrowser();
1243   return aObjDock;
1244 }
1245
1246 //******************************************************
1247 /*
1248  * Creates dock widgets, places them in corresponding area
1249  * and tabifies if necessary.
1250  */
1251 void XGUI_Workshop::createDockWidgets()
1252 {
1253   QMainWindow* aDesktop = desktop();
1254   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
1255   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
1256   myPropertyPanel = new XGUI_PropertyPanel(aDesktop, myOperationMgr);
1257   myPropertyPanel->setupActions(myActionsMgr);
1258   myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea |
1259                                    Qt::RightDockWidgetArea |
1260                                    Qt::BottomDockWidgetArea);
1261   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1262   hidePropertyPanel();  ///<! Invisible by default
1263   hideObjectBrowser();
1264   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1265   myPropertyPanel->installEventFilter(myOperationMgr);
1266
1267   QAction* aOkAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
1268   connect(aOkAct, SIGNAL(triggered()), this, SLOT(onAcceptActionClicked()));
1269
1270   QAction* aCancelAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Abort);
1271   connect(aCancelAct, SIGNAL(triggered()), myOperationMgr, SLOT(onAbortOperation()));
1272
1273   QAction* aPreviewAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Preview);
1274   connect(aPreviewAct, SIGNAL(triggered()), this, SLOT(onPreviewActionClicked()));
1275
1276   connect(myPropertyPanel, SIGNAL(keyReleased(QObject*, QKeyEvent*)),
1277           myOperationMgr,  SLOT(onKeyReleased(QObject*, QKeyEvent*)));
1278   connect(myPropertyPanel, SIGNAL(enterClicked(QObject*)),
1279           myOperationMgr,  SLOT(onProcessEnter(QObject*)));
1280 }
1281
1282 //******************************************************
1283 void XGUI_Workshop::showPropertyPanel()
1284 {
1285   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1286   ///<! Restore ability to close panel from the window's menu
1287   aViewAct->setEnabled(true);
1288   myPropertyPanel->show();
1289   myPropertyPanel->raise();
1290
1291   // The next code is necessary to made the property panel the active window
1292   // in order to operation manager could process key events of the panel.
1293   // otherwise they are ignored. It happens only if the same(activateWindow) is
1294   // not happened by property panel activation(e.g. resume operation of Sketch)
1295   ModuleBase_Tools::setFocus(myPropertyPanel, "XGUI_Workshop::showPropertyPanel()");
1296 }
1297
1298 //******************************************************
1299 void XGUI_Workshop::hidePropertyPanel()
1300 {
1301   QAction* aViewAct = myPropertyPanel->toggleViewAction();
1302   ///<! Do not allow to show empty property panel
1303   aViewAct->setEnabled(false);
1304   myPropertyPanel->hide();
1305
1306   // the property panel is active window of the desktop, when it is
1307   // hidden, it is undefined which window becomes active. By this reason
1308   // it is defined to perform the desktop as the active window.
1309   // in SALOME mode, workstack made the PyConsole the active window,
1310   // set the focus on it. As a result, shortcuts of the application, like
1311   // are processed by this console. For example Undo actions.
1312   // It is possible that this code is to be moved to SHAPER package
1313   QMainWindow* aDesktop = desktop();
1314   ModuleBase_Tools::setFocus(aDesktop, "XGUI_Workshop::showPropertyPanel()");
1315 }
1316
1317 //******************************************************
1318 void XGUI_Workshop::showObjectBrowser()
1319 {
1320   if (!isSalomeMode())
1321     myObjectBrowser->parentWidget()->show();
1322 }
1323
1324 //******************************************************
1325 void XGUI_Workshop::hideObjectBrowser()
1326 {
1327   if (!isSalomeMode())
1328     myObjectBrowser->parentWidget()->hide();
1329 }
1330
1331 //******************************************************
1332 void XGUI_Workshop::salomeViewerSelectionChanged()
1333 {
1334   emit salomeViewerSelection();
1335 }
1336
1337 //**************************************************************
1338 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1339 {
1340   return mySalomeConnector->viewer();
1341 }
1342
1343 //**************************************************************
1344 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1345 {
1346   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1347   if (theId == "DELETE_CMD")
1348     deleteObjects();
1349   else if (theId == "CLEAN_HISTORY_CMD")
1350     cleanHistory();
1351   else if (theId == "MOVE_CMD")
1352     moveObjects();
1353   else if (theId == "COLOR_CMD")
1354     changeColor(aObjects);
1355   else if (theId == "DEFLECTION_CMD")
1356     changeDeflection(aObjects);
1357   else if (theId == "SHOW_CMD") {
1358     showObjects(aObjects, true);
1359     mySelector->updateSelectionBy(ModuleBase_ISelection::Browser);
1360     updateCommandStatus();
1361   }
1362   else if (theId == "HIDE_CMD") {
1363     showObjects(aObjects, false);
1364     updateCommandStatus();
1365   }
1366   else if (theId == "SHOW_ONLY_CMD") {
1367     showOnlyObjects(aObjects);
1368     mySelector->updateSelectionBy(ModuleBase_ISelection::Browser);
1369     updateCommandStatus();
1370   }
1371   else if (theId == "SHADING_CMD")
1372     setDisplayMode(aObjects, XGUI_Displayer::Shading);
1373   else if (theId == "WIREFRAME_CMD")
1374     setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1375   else if (theId == "HIDEALL_CMD") {
1376     QObjectPtrList aList = myDisplayer->displayedObjects();
1377     foreach (ObjectPtr aObj, aList) {
1378       if (module()->canEraseObject(aObj))
1379         aObj->setDisplayed(false);
1380     }
1381     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1382 #ifdef HAVE_SALOME
1383     //issue #2159 Hide all incomplete behavior
1384     viewer()->eraseAll();
1385 #endif
1386     updateCommandStatus();
1387   } else if (theId == "SELECT_VERTEX_CMD") {
1388     setViewerSelectionMode(TopAbs_VERTEX);
1389   } else if (theId == "SELECT_EDGE_CMD") {
1390     setViewerSelectionMode(TopAbs_EDGE);
1391   } else if (theId == "SELECT_FACE_CMD") {
1392     setViewerSelectionMode(TopAbs_FACE);
1393   } else if (theId == "SELECT_RESULT_CMD") {
1394     //setViewerSelectionMode(-1);
1395     //IMP: an attempt to use result selection with other selection modes
1396     setViewerSelectionMode(ModuleBase_ResultPrs::Sel_Result);
1397     setViewerSelectionMode(TopAbs_COMPSOLID);
1398   } else if (theId == "SHOW_RESULTS_CMD") {
1399     highlightResults(aObjects);
1400   } else if (theId == "SHOW_FEATURE_CMD") {
1401     highlightFeature(aObjects);
1402   }
1403 #ifdef TINSPECTOR
1404   else if (theId == "TINSPECTOR_VIEW") {
1405     Handle(CDF_Application) anApplication = CDF_Session::CurrentSession()->CurrentApplication();
1406     if (!anApplication.IsNull())
1407     {
1408       if (!MyTCommunicator)
1409       {
1410         MyTCommunicator = new TInspector_Communicator();
1411
1412         NCollection_List<Handle(Standard_Transient)> aParameters;
1413         aParameters.Append(anApplication);
1414         Handle(AIS_InteractiveContext) aContext = viewer()->AISContext();
1415         if (!aContext.IsNull())
1416           aParameters.Append(aContext);
1417
1418         MyVCallBack = new VInspector_CallBack();
1419         MyTCommunicator->RegisterPlugin("TKDFBrowser");
1420         MyTCommunicator->RegisterPlugin("TKVInspector");
1421         MyTCommunicator->RegisterPlugin("TKShapeView");
1422         myDisplayer->setCallBack(MyVCallBack);
1423         #ifndef HAVE_SALOME
1424         AppElements_Viewer* aViewer = mainWindow()->viewer();
1425         if (aViewer)
1426           aViewer->setCallBack(MyVCallBack);
1427         #endif
1428         aParameters.Append(MyVCallBack);
1429
1430         MyTCommunicator->RegisterPlugin("SMBrowser"); // custom plugin to view ModelAPI
1431
1432         MyTCommunicator->Init(aParameters);
1433         MyTCommunicator->Activate("SMBrowser"); // to have button in TInspector
1434         MyTCommunicator->Activate("TKVInspector"); // to have filled callback by model
1435         MyTCommunicator->Activate("TKDFBrowser");
1436       }
1437       MyTCommunicator->SetVisible(true);
1438     }
1439   }
1440 #endif
1441 }
1442
1443 //**************************************************************
1444 void XGUI_Workshop::setViewerSelectionMode(int theMode)
1445 {
1446   if (theMode == -1)
1447     myViewerSelMode.clear();
1448   else {
1449     if (myViewerSelMode.contains(theMode))
1450       myViewerSelMode.removeAll(theMode);
1451     else
1452       myViewerSelMode.append(theMode);
1453   }
1454   activateObjectsSelection(myDisplayer->displayedObjects());
1455 }
1456
1457 //**************************************************************
1458 void XGUI_Workshop::activateObjectsSelection(const QObjectPtrList& theList)
1459 {
1460   QIntList aModes;
1461   module()->activeSelectionModes(aModes);
1462   if (aModes.isEmpty() && (myViewerSelMode.length() > 0))
1463     aModes.append(myViewerSelMode);
1464   myDisplayer->activateObjects(aModes, theList);
1465 }
1466
1467 //**************************************************************
1468 void XGUI_Workshop::deleteObjects()
1469 {
1470   ModuleBase_IModule* aModule = module();
1471   // allow the module to delete objects, do nothing if it has succeed
1472   if (aModule->deleteObjects()) {
1473     updateCommandStatus();
1474     return;
1475   }
1476
1477   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1478   if (!abortAllOperations())
1479     return;
1480
1481   bool hasResult = false;
1482   bool hasFeature = false;
1483   bool hasParameter = false;
1484   bool hasCompositeOwner = false;
1485   bool hasResultInHistory = false;
1486   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasCompositeOwner,
1487                                  hasResultInHistory);
1488   if (!(hasFeature || hasParameter))
1489     return;
1490
1491   // delete objects
1492   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1493   std::set<FeaturePtr> aFeatures;
1494   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1495   ModelAPI_Tools::findAllReferences(aFeatures, aReferences);
1496
1497   bool aDone = false;
1498   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text() + " %1";
1499   aDescription = aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1500   ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, module());
1501
1502   operationMgr()->startOperation(anOpAction);
1503
1504   std::set<FeaturePtr> aFeatureRefsToDelete;
1505   if (ModuleBase_Tools::askToDelete(aFeatures, aReferences, desktop(), aFeatureRefsToDelete)) {
1506     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1507     // It is necessary to clear selection in order to avoid selection changed event during
1508     // deletion and negative consequences connected with processing of already deleted items
1509     mySelector->clearSelection();
1510
1511     if (!aFeatureRefsToDelete.empty())
1512       aFeatures.insert(aFeatureRefsToDelete.begin(), aFeatureRefsToDelete.end());
1513     aDone = ModelAPI_Tools::removeFeatures(aFeatures, false);
1514   }
1515   if (aDone)
1516     operationMgr()->commitOperation();
1517   else
1518     operationMgr()->abortOperation(operationMgr()->currentOperation());
1519 }
1520
1521 //**************************************************************
1522 void addRefsToFeature(const FeaturePtr& theFeature,
1523                       const std::map<FeaturePtr, std::set<FeaturePtr> >& theMainList,
1524                       std::set<FeaturePtr>& theReferences)
1525 {
1526   //if (theReferences.find(theFeature) != theReferences.end())
1527   //  return;
1528   if (theMainList.find(theFeature) == theMainList.end())
1529     return; // this feature is not in the selection list, so exists without references to it
1530   std::set<FeaturePtr> aMainReferences = theMainList.at(theFeature);
1531
1532   std::set<FeaturePtr>::const_iterator anIt = aMainReferences.begin(),
1533                                        aLast = aMainReferences.end();
1534   for (; anIt != aLast; anIt++) {
1535     FeaturePtr aRefFeature = *anIt;
1536     if (theReferences.find(aRefFeature) == theReferences.end())
1537       theReferences.insert(aRefFeature);
1538     addRefsToFeature(aRefFeature, theMainList, theReferences);
1539   }
1540 }
1541
1542 //**************************************************************
1543 void XGUI_Workshop::cleanHistory()
1544 {
1545   if (!abortAllOperations())
1546     return;
1547
1548   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1549   std::set<FeaturePtr> aFeatures;
1550   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1551
1552 #ifdef DEBUG_CLEAN_HISTORY
1553   QStringList anInfo;
1554   std::set<FeaturePtr>::const_iterator aFIt;
1555   for (aFIt = aFeatures.begin(); aFIt != aFeatures.end(); ++aFIt) {
1556     FeaturePtr aFeature = ModelAPI_Feature::feature(*aFIt);
1557     anInfo.append(aFeature->name().c_str());
1558   }
1559   QString anInfoStr = anInfo.join(";\t");
1560   qDebug(QString("cleanHistory for: [%1] - %2").
1561     arg(aFeatures.size()).arg(anInfoStr).toStdString().c_str());
1562 #endif
1563
1564   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1565   ModelAPI_Tools::findAllReferences(aFeatures, aReferences, true, false);
1566   // find for each object whether all reference values are in the map as key, that means that there
1567   // is no other reference in the model to this object, so it might be removed by cleaning history
1568   // sk_1(ext_1, vertex_1) + (sk_3, bool_1) - cann't be deleted, dependency to bool_1
1569   // ext_1(bool_1, sk_3)  - cann't be deleted, dependency to bool_1
1570   // vertex_1()
1571   // sk_2(ext_2) + (bool_1)  - cann't be deleted, dependency to bool_1
1572   // ext_2(bool_1)  - cann't be deleted, dependency to bool_1
1573   // sk_3()
1574   // Information: bool_1 is not selected
1575   std::set<FeaturePtr> anUnusedObjects;
1576   std::map<FeaturePtr, std::set<FeaturePtr> >::const_iterator aMainIt = aReferences.begin(),
1577                                                               aMainLast = aReferences.end();
1578   for (; aMainIt != aMainLast; aMainIt++) {
1579     FeaturePtr aMainListFeature = aMainIt->first;
1580     std::set<FeaturePtr> aMainRefList = aMainIt->second;
1581     std::set<FeaturePtr>::const_iterator aRefIt = aMainRefList.begin(),
1582                                                   aRefLast = aMainRefList.end();
1583     bool aFeatureOutOfTheList = false;
1584     for (; aRefIt != aRefLast && !aFeatureOutOfTheList; aRefIt++) {
1585       FeaturePtr aRefFeature = *aRefIt;
1586       aFeatureOutOfTheList = aReferences.find(aRefFeature) == aReferences.end();
1587     }
1588     if (!aFeatureOutOfTheList)
1589       anUnusedObjects.insert(aMainListFeature);
1590   }
1591
1592 #ifdef DEBUG_CLEAN_HISTORY
1593   anInfo.clear();
1594   for (aFIt = anUnusedObjects.begin(); aFIt != anUnusedObjects.end(); ++aFIt) {
1595     FeaturePtr aFeature = *aFIt;
1596     anInfo.append(aFeature->name().c_str());
1597   }
1598   qDebug(QString("unused objects: [%1] - %2").
1599     arg(anInfo.size()).arg(anInfo.join(";\t")).toStdString().c_str());
1600 #endif
1601
1602   // warn about the references remove, break the delete operation if the user chose it
1603   if (!anUnusedObjects.empty()) {
1604     QStringList aNames;
1605     foreach (const FeaturePtr& aFeature, anUnusedObjects) {
1606       aNames.append(aFeature->name().c_str());
1607     }
1608     aNames.sort();
1609     QString anUnusedNames = aNames.join(", ");
1610
1611     QString anActionId = "CLEAN_HISTORY_CMD";
1612     QString aDescription = contextMenuMgr()->action(anActionId)->text();
1613
1614     QMessageBox aMessageBox(desktop());
1615     aMessageBox.setWindowTitle(aDescription);
1616     aMessageBox.setIcon(QMessageBox::Warning);
1617     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
1618     aMessageBox.setDefaultButton(QMessageBox::No);
1619
1620     const char* aKeyStr = "Unused features are the following: "
1621                           "%1.\nThese features will be deleted.\nWould you like to continue?";
1622     QString aText = QString(tr(aKeyStr).arg(anUnusedNames));
1623     aMessageBox.setText(aText);
1624     if (aMessageBox.exec() == QMessageBox::No)
1625       return;
1626
1627     // 1. start operation
1628     aDescription += "by deleting of " +
1629       aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1630     ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, module());
1631     operationMgr()->startOperation(anOpAction);
1632
1633     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1634     // It is necessary to clear selection in order to avoid selection changed event during
1635     // deletion and negative consequences connected with processing of already deleted items
1636     mySelector->clearSelection();
1637
1638     std::set<FeaturePtr> anIgnoredFeatures;
1639     if (ModelAPI_Tools::removeFeatures(anUnusedObjects, true)) {
1640       operationMgr()->commitOperation();
1641     }
1642     else {
1643       operationMgr()->abortOperation(operationMgr()->currentOperation());
1644     }
1645   }
1646   else {
1647     QString anActionId = "CLEAN_HISTORY_CMD";
1648     QString aDescription = contextMenuMgr()->action(anActionId)->text();
1649
1650     QMessageBox aMessageBox(desktop());
1651     aMessageBox.setWindowTitle(aDescription);
1652     aMessageBox.setIcon(QMessageBox::Warning);
1653     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
1654     aMessageBox.setDefaultButton(QMessageBox::No);
1655
1656     QString aText;
1657     aMessageBox.setStandardButtons(QMessageBox::Ok);
1658     aMessageBox.setDefaultButton(QMessageBox::Ok);
1659
1660     aText = QString(tr("All features are relevant, there is nothing to be deleted"));
1661     aMessageBox.setText(aText);
1662
1663     if (aMessageBox.exec() == QMessageBox::No)
1664       return;
1665   }
1666 }
1667
1668 //**************************************************************
1669 void XGUI_Workshop::moveObjects()
1670 {
1671   if (!abortAllOperations())
1672     return;
1673
1674   SessionPtr aMgr = ModelAPI_Session::get();
1675
1676   QString anActionId = "MOVE_CMD";
1677   QString aDescription = contextMenuMgr()->action(anActionId)->text();
1678   aMgr->startOperation(aDescription.toStdString());
1679
1680   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1681   // It is necessary to clear selection in order to avoid selection changed event during
1682   // moving and negative consequences connected with processing of already moved items
1683   mySelector->clearSelection();
1684   // check whether the object can be moved. There should not be parts which are not loaded
1685   std::set<FeaturePtr> aFeatures;
1686   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1687   if (!XGUI_Tools::canRemoveOrRename(desktop(), aFeatures))
1688     return;
1689
1690   DocumentPtr anActiveDocument = aMgr->activeDocument();
1691   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
1692   std::set<FeaturePtr>::const_iterator anIt = aFeatures.begin(), aLast = aFeatures.end();
1693   for (; anIt != aLast; anIt++) {
1694     FeaturePtr aFeature = *anIt;
1695     if (!aFeature.get() || !myModule->canApplyAction(aFeature, anActionId))
1696       continue;
1697
1698     anActiveDocument->moveFeature(aFeature, aCurrentFeature);
1699     aCurrentFeature = anActiveDocument->currentFeature(true);
1700   }
1701   aMgr->finishOperation();
1702 }
1703
1704 //**************************************************************
1705 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theObjects)
1706 {
1707   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1708   std::set<FeaturePtr> aFeatures;
1709   ModuleBase_Tools::convertToFeatures(theObjects, aFeatures);
1710
1711   return ModelAPI_Tools::removeFeaturesAndReferences(aFeatures);
1712 }
1713
1714 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1715 {
1716   bool isFoundResultType = false;
1717   foreach(ObjectPtr anObj, theObjects)
1718   {
1719     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1720     if (aResult.get() == NULL)
1721       continue;
1722
1723     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1724     if (isFoundResultType)
1725       break;
1726   }
1727   return isFoundResultType;
1728 }
1729
1730 //**************************************************************
1731 // Returns the list of all features for theDocument and all features of
1732 // all nested parts.
1733 std::list<FeaturePtr> allFeatures(const DocumentPtr& theDocument)
1734 {
1735   std::list<FeaturePtr> aResultList;
1736   std::list<FeaturePtr> anAllFeatures = theDocument->allFeatures();
1737   foreach (const FeaturePtr& aFeature, anAllFeatures) {
1738     // The order of appending features of the part and the part itself is important
1739
1740     // Append features from a part feature
1741     std::list<ResultPtr> aResults;
1742     ModelAPI_Tools::allResults(aFeature, aResults);
1743     foreach (const ResultPtr& aResult, aResults) {
1744       ResultPartPtr aResultPart =
1745           std::dynamic_pointer_cast<ModelAPI_ResultPart>(aResult);
1746       if (aResultPart.get() && aResultPart->partDoc().get()) {
1747         // Recursion
1748         std::list<FeaturePtr> anAllFeatures = allFeatures(aResultPart->partDoc());
1749         aResultList.insert(aResultList.end(), anAllFeatures.begin(), anAllFeatures.end());
1750       }
1751     }
1752
1753     aResultList.push_back(aFeature);
1754   }
1755   return aResultList;
1756 }
1757
1758 //**************************************************************
1759 // Returns the list of features placed between theObject and the current feature
1760 // in the same document. Excludes theObject, includes the current feature.
1761 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
1762 {
1763   std::list<FeaturePtr> aResult;
1764   DocumentPtr aDocument = theObject->document();
1765   std::list<FeaturePtr> anAllFeatures = allFeatures(aDocument);
1766   // find the object iterator
1767   std::list<FeaturePtr>::iterator aObjectIt =
1768     std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
1769   if (aObjectIt == anAllFeatures.end())
1770     return aResult;
1771   // find the current feature iterator
1772   std::list<FeaturePtr>::iterator aCurrentIt =
1773     std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
1774   if (aCurrentIt == anAllFeatures.end())
1775     return aResult;
1776   // check the right order
1777   if (std::distance(aObjectIt, anAllFeatures.end()) <=
1778       std::distance(aCurrentIt, anAllFeatures.end()))
1779     return aResult;
1780   // exclude the object
1781   std::advance(aObjectIt, 1);
1782   // include the current feature
1783   std::advance(aCurrentIt, 1);
1784   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
1785 }
1786
1787 bool XGUI_Workshop::canMoveFeature()
1788 {
1789   QString anActionId = "MOVE_CMD";
1790
1791   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1792   QObjectPtrList aValidatedObjects;
1793   foreach (ObjectPtr aObject, aObjects) {
1794     if (!myModule->canApplyAction(aObject, anActionId))
1795       continue;
1796     // To be moved feature should be in active document
1797     if (aObject->document() != ModelAPI_Session::get()->activeDocument())
1798       continue;
1799     aValidatedObjects.append(aObject);
1800   }
1801   if (aValidatedObjects.size() != aObjects.size())
1802     aObjects = aValidatedObjects;
1803
1804   bool aCanMove = !aObjects.empty();
1805
1806   QObjectPtrList::const_iterator anIt = aObjects.begin(), aLast = aObjects.end();
1807   for (; anIt != aLast && aCanMove; anIt++) {
1808     ObjectPtr aObject = *anIt;
1809     // 1. Get features placed between selected and current in the document
1810     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
1811     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
1812     if (aFeaturesBetween.empty())
1813       aCanMove = false;
1814     else {
1815       std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
1816       // 2. Get all reference features to the selected object in the document
1817       std::set<FeaturePtr> aRefFeatures;
1818       ModuleBase_Tools::refsToFeatureInFeatureDocument(aObject, aRefFeatures);
1819
1820       if (aRefFeatures.empty())
1821         continue;
1822       else {
1823         // 3. Find any placed features in all reference features
1824         std::set<FeaturePtr> aIntersectionFeatures;
1825         std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
1826                               aPlacedFeatures.begin(), aPlacedFeatures.end(),
1827                               std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
1828         // 4. Return false if any reference feature is placed before current feature
1829         if (!aIntersectionFeatures.empty())
1830           aCanMove = false;
1831       }
1832     }
1833   }
1834   return aCanMove;
1835 }
1836
1837 //**************************************************************
1838 bool XGUI_Workshop::canBeShaded(const ObjectPtr& theObject) const
1839 {
1840   bool aCanBeShaded = myDisplayer->canBeShaded(theObject);
1841   if (!aCanBeShaded) {
1842     ResultCompSolidPtr aCompsolidResult =
1843                 std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
1844     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
1845       for(int i = 0; i < aCompsolidResult->numberOfSubs() && !aCanBeShaded; i++)
1846         aCanBeShaded = myDisplayer->canBeShaded(aCompsolidResult->subResult(i));
1847     }
1848   }
1849   return aCanBeShaded;
1850 }
1851
1852 //**************************************************************
1853 bool XGUI_Workshop::canChangeColor() const
1854 {
1855   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1856
1857   std::set<std::string> aTypes;
1858   aTypes.insert(ModelAPI_ResultGroup::group());
1859   aTypes.insert(ModelAPI_ResultConstruction::group());
1860   aTypes.insert(ModelAPI_ResultBody::group());
1861   aTypes.insert(ModelAPI_ResultPart::group());
1862
1863   return hasResults(aObjects, aTypes);
1864 }
1865
1866 void setColor(ResultPtr theResult, const std::vector<int>& theColor)
1867 {
1868   if (!theResult.get())
1869     return;
1870
1871   AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
1872   if (aColorAttr.get() != NULL) {
1873     if (!aColorAttr->size()) {
1874       aColorAttr->setSize(3);
1875     }
1876     aColorAttr->setValue(0, theColor[0]);
1877     aColorAttr->setValue(1, theColor[1]);
1878     aColorAttr->setValue(2, theColor[2]);
1879   }
1880 }
1881
1882 //**************************************************************
1883 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
1884 {
1885
1886   AttributeIntArrayPtr aColorAttr;
1887   // 1. find the current color of the object. This is a color of AIS presentation
1888   // The objects are iterated until a first valid color is found
1889   std::vector<int> aColor;
1890   foreach(ObjectPtr anObject, theObjects) {
1891     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1892     if (aResult.get()) {
1893       XGUI_CustomPrs::getResultColor(aResult, aColor);
1894     }
1895     else {
1896       // TODO: remove the obtaining a color from the AIS object
1897       // this does not happen never because:
1898       // 1. The color can be changed only on results
1899       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
1900       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1901       if (anAISObj.get()) {
1902         aColor.resize(3);
1903         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
1904       }
1905     }
1906     if (!aColor.empty())
1907       break;
1908   }
1909   if (aColor.size() != 3)
1910     return;
1911
1912   if (!abortAllOperations())
1913   return;
1914   // 2. show the dialog to change the value
1915   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(desktop());
1916   aDlg->setColor(aColor);
1917   aDlg->move(QCursor::pos());
1918   bool isDone = aDlg->exec() == QDialog::Accepted;
1919   if (!isDone)
1920     return;
1921
1922   bool isRandomColor = aDlg->isRandomColor();
1923
1924   // 3. abort the previous operation and start a new one
1925   SessionPtr aMgr = ModelAPI_Session::get();
1926   QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
1927   aMgr->startOperation(aDescription.toStdString());
1928
1929   // 4. set the value to all results
1930   std::vector<int> aColorResult = aDlg->getColor();
1931   foreach(ObjectPtr anObj, theObjects) {
1932     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1933     if (aResult.get() != NULL) {
1934       ResultCompSolidPtr aCompsolidResult =
1935         std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
1936       if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
1937         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
1938           setColor(aCompsolidResult->subResult(i), !isRandomColor ? aColorResult :
1939                                                                     aDlg->getRandomColor());
1940         }
1941       }
1942       setColor(aResult, !isRandomColor ? aColorResult : aDlg->getRandomColor());
1943     }
1944   }
1945   aMgr->finishOperation();
1946   updateCommandStatus();
1947 }
1948
1949 //**************************************************************
1950 bool XGUI_Workshop::canChangeDeflection() const
1951 {
1952   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1953
1954   std::set<std::string> aTypes;
1955   aTypes.insert(ModelAPI_ResultGroup::group());
1956   aTypes.insert(ModelAPI_ResultConstruction::group());
1957   aTypes.insert(ModelAPI_ResultBody::group());
1958   aTypes.insert(ModelAPI_ResultPart::group());
1959
1960   return hasResults(aObjects, aTypes);
1961 }
1962
1963 void setDeflection(ResultPtr theResult, const double theDeflection)
1964 {
1965   if (!theResult.get())
1966     return;
1967
1968   AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
1969   if (aDeflectionAttr.get() != NULL)
1970     aDeflectionAttr->setValue(theDeflection);
1971 }
1972
1973
1974 //**************************************************************
1975 void XGUI_Workshop::changeDeflection(const QObjectPtrList& theObjects)
1976 {
1977   AttributeDoublePtr aDoubleAttr;
1978   // 1. find the current color of the object. This is a color of AIS presentation
1979   // The objects are iterated until a first valid color is found
1980   double aDeflection = -1;
1981   foreach(ObjectPtr anObject, theObjects) {
1982     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
1983     if (aResult.get()) {
1984       aDeflection = XGUI_CustomPrs::getResultDeflection(aResult);
1985     }
1986     else {
1987       // TODO: remove the obtaining a color from the AIS object
1988       // this does not happen never because:
1989       // 1. The color can be changed only on results
1990       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
1991       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
1992       if (anAISObj.get()) {
1993         aDeflection = anAISObj->getDeflection();
1994       }
1995     }
1996     if (aDeflection > 0)
1997       break;
1998   }
1999   if (aDeflection < 0)
2000     return;
2001
2002   if (!abortAllOperations())
2003   return;
2004   // 2. show the dialog to change the value
2005   XGUI_DeflectionDialog* aDlg = new XGUI_DeflectionDialog(desktop());
2006   aDlg->setDeflection(aDeflection);
2007   aDlg->move(QCursor::pos());
2008   bool isDone = aDlg->exec() == QDialog::Accepted;
2009   if (!isDone)
2010     return;
2011
2012   // 3. abort the previous operation and start a new one
2013   SessionPtr aMgr = ModelAPI_Session::get();
2014   QString aDescription = contextMenuMgr()->action("DEFLECTION_CMD")->text();
2015   aMgr->startOperation(aDescription.toStdString());
2016
2017   // 4. set the value to all results
2018   aDeflection = aDlg->getDeflection();
2019   foreach(ObjectPtr anObj, theObjects) {
2020     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2021     if (aResult.get() != NULL) {
2022       ResultCompSolidPtr aCompsolidResult =
2023         std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
2024       if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
2025         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2026           setDeflection(aCompsolidResult->subResult(i), aDeflection);
2027         }
2028       }
2029       setDeflection(aResult, aDeflection);
2030     }
2031   }
2032   aMgr->finishOperation();
2033   updateCommandStatus();
2034 }
2035
2036 //**************************************************************
2037 #define SET_DISPLAY_GROUP(aGroupName, aDisplay) \
2038 for (int i = 0; i < aDoc->size(aGroupName); i++) { \
2039   aDoc->object(aGroupName, i)->setDisplayed(aDisplay); \
2040 }
2041 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
2042 {
2043   foreach (ObjectPtr aObj, theList) {
2044     aObj->setDisplayed(isVisible);
2045   }
2046   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2047 }
2048
2049 //**************************************************************
2050 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
2051 {
2052   // Hide all displayed objects
2053   QObjectPtrList aList = myDisplayer->displayedObjects();
2054   foreach (ObjectPtr aObj, aList) {
2055     if (module()->canEraseObject(aObj))
2056       aObj->setDisplayed(false);
2057   }
2058   //Do not use eraseAll if you didn't send Redisplay event:
2059   //all objects are erased from viewer, but considered as displayed in displayer
2060   // Problem in bug 2218
2061   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2062 #ifdef HAVE_SALOME
2063     //issue #2159 Hide all incomplete behavior
2064     viewer()->eraseAll();
2065 #endif
2066
2067   // Show only objects from the list
2068   foreach (ObjectPtr aObj, theList) {
2069     aObj->setDisplayed(true);
2070   }
2071   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2072 }
2073
2074
2075 //**************************************************************
2076 void XGUI_Workshop::registerValidators() const
2077 {
2078   SessionPtr aMgr = ModelAPI_Session::get();
2079   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
2080 }
2081
2082 //**************************************************************
2083 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
2084 {
2085   if (!theDoc)
2086     return;
2087   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
2088   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
2089 }
2090
2091 //**************************************************************
2092 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
2093 {
2094   for (int i = 0; i < theDoc->size(theGroup); i++)
2095     theDoc->object(theGroup, i)->setDisplayed(true);
2096     //displayObject(theDoc->object(theGroup, i));
2097   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2098 }
2099
2100 //**************************************************************
2101 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
2102 {
2103   foreach(ObjectPtr aObj, theList) {
2104     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
2105
2106     ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aObj);
2107     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
2108       for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2109           myDisplayer->setDisplayMode(aCompsolidResult->subResult(i),
2110                                       (XGUI_Displayer::DisplayMode)theMode, false);
2111       }
2112     }
2113   }
2114   if (theList.size() > 0)
2115     myDisplayer->updateViewer();
2116 }
2117
2118 //**************************************************************
2119 void XGUI_Workshop::closeDocument()
2120 {
2121   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
2122   while (anOperation) {
2123     anOperation->abort();
2124     anOperation = operationMgr()->currentOperation();
2125   }
2126   //myDisplayer->closeLocalContexts();
2127   myDisplayer->eraseAll();
2128   objectBrowser()->clearContent();
2129
2130   module()->closeDocument();
2131
2132   // data model need not process the document's signals about objects modifications as
2133   // the document is closed
2134   //bool isBlocked = objectBrowser()->dataModel()->blockEventsProcessing(true);
2135
2136   SessionPtr aMgr = ModelAPI_Session::get();
2137   aMgr->closeAll();
2138
2139   //objectBrowser()->dataModel()->blockEventsProcessing(isBlocked);
2140 }
2141
2142 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
2143 {
2144   XGUI_HistoryMenu* aMenu = NULL;
2145   if (isSalomeMode()) {
2146     QAction* anAction = qobject_cast<QAction*>(theObject);
2147     if (!anAction)
2148       return;
2149     aMenu = new XGUI_HistoryMenu(anAction);
2150   } else {
2151     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
2152     aMenu = new XGUI_HistoryMenu(aButton);
2153   }
2154   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
2155   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
2156 }
2157
2158 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
2159 {
2160   QList<ActionInfo> aResult;
2161   std::list<std::string>::const_iterator it = theList.cbegin();
2162   for (; it != theList.cend(); it++) {
2163     QString anId = QString::fromStdString(*it);
2164     bool isEditing = anId.endsWith(ModuleBase_OperationFeature::EditSuffix());
2165     if (isEditing) {
2166       anId.chop(ModuleBase_OperationFeature::EditSuffix().size());
2167     }
2168     ActionInfo anInfo;
2169     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
2170     if (aContextMenuAct) {
2171       anInfo.initFrom(aContextMenuAct);
2172     } else {
2173       anInfo = myActionsMgr->actionInfoById(anId);
2174     }
2175     if (isEditing) {
2176       anInfo.text = anInfo.text.prepend("Modify ");
2177     }
2178     aResult << anInfo;
2179   }
2180   return aResult;
2181 }
2182
2183 void XGUI_Workshop::setStatusBarMessage(const QString& theMessage)
2184 {
2185 #ifdef HAVE_SALOME
2186   salomeConnector()->putInfo(theMessage, -1);
2187 #else
2188   myMainWindow->putInfo(theMessage, -1);
2189 #endif
2190 }
2191
2192 void XGUI_Workshop::synchronizeViewer()
2193 {
2194   SessionPtr aMgr = ModelAPI_Session::get();
2195   QList<DocumentPtr> aDocs;
2196   aDocs.append(aMgr->activeDocument());
2197   aDocs.append(aMgr->moduleDocument());
2198
2199   foreach(DocumentPtr aDoc, aDocs) {
2200     synchronizeGroupInViewer(aDoc, ModelAPI_ResultConstruction::group(), false);
2201     synchronizeGroupInViewer(aDoc, ModelAPI_ResultBody::group(), false);
2202     synchronizeGroupInViewer(aDoc, ModelAPI_ResultPart::group(), false);
2203     synchronizeGroupInViewer(aDoc, ModelAPI_ResultGroup::group(), false);
2204   }
2205 }
2206
2207 void XGUI_Workshop::synchronizeGroupInViewer(const DocumentPtr& theDoc,
2208                                              const std::string& theGroup,
2209                                              bool theUpdateViewer)
2210 {
2211   ObjectPtr aObj;
2212   int aSize = theDoc->size(theGroup);
2213   for (int i = 0; i < aSize; i++) {
2214     aObj = theDoc->object(theGroup, i);
2215     if (aObj->isDisplayed()) {
2216       // Hide the presentation with an empty shape. But isDisplayed state of the object should not
2217       // be changed to the object becomes visible when the shape becomes not empty
2218       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
2219       if (aRes.get() && (!aRes->shape().get() || aRes->shape()->isNull()))
2220         continue;
2221       myDisplayer->display(aObj, false);
2222     }
2223   }
2224   if (theUpdateViewer)
2225     myDisplayer->updateViewer();
2226 }
2227
2228 void XGUI_Workshop::highlightResults(const QObjectPtrList& theObjects)
2229 {
2230   FeaturePtr aFeature;
2231   QObjectPtrList aSelList = theObjects;
2232   bool aHasHidden = false;
2233   foreach(ObjectPtr aObj, theObjects) {
2234     aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
2235     if (aFeature.get()) {
2236       std::list<ResultPtr> aResults;
2237       ModelAPI_Tools::allResults(aFeature, aResults);
2238       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
2239       for(aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
2240         aHasHidden |= (*aIt)->isConcealed();
2241         aSelList.append(*aIt);
2242       }
2243     }
2244   }
2245   if (aSelList.count() > theObjects.count()) {
2246     // if something was found
2247     bool aBlocked = objectBrowser()->blockSignals(true);
2248     objectBrowser()->setObjectsSelected(aSelList);
2249     objectBrowser()->blockSignals(aBlocked);
2250   }
2251   if (aHasHidden)
2252     QMessageBox::information(desktop(), tr("Find results"),
2253                              tr("Results not found"), QMessageBox::Ok);
2254 }
2255
2256 void XGUI_Workshop::highlightFeature(const QObjectPtrList& theObjects)
2257 {
2258   ResultPtr aResult;
2259   QObjectPtrList aSelList = theObjects;
2260   FeaturePtr aFeature;
2261   foreach(ObjectPtr aObj, theObjects) {
2262     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
2263     if (aResult.get()) {
2264       aFeature = ModelAPI_Feature::feature(aResult);
2265       if (aFeature.get()) {
2266         aSelList.append(aFeature);
2267       }
2268     }
2269   }
2270   if (aSelList.count() > theObjects.count()) {
2271     // if something was found
2272     bool aBlocked = objectBrowser()->blockSignals(true);
2273     objectBrowser()->setObjectsSelected(aSelList);
2274     objectBrowser()->blockSignals(aBlocked);
2275   }
2276 }