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