Salome HOME
cb0f7a0992e5c81ba60c1d8231446567d9cc012a
[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     // Necessary for update icons in ObjectBrowser on Linux
1476     myObjectBrowser->updateAllIndexes();
1477   } else if (theId == "SELECT_VERTEX_CMD") {
1478     setViewerSelectionMode(TopAbs_VERTEX);
1479   } else if (theId == "SELECT_EDGE_CMD") {
1480     setViewerSelectionMode(TopAbs_EDGE);
1481   } else if (theId == "SELECT_FACE_CMD") {
1482     setViewerSelectionMode(TopAbs_FACE);
1483   } else if (theId == "INSERT_FOLDER_CMD") {
1484     insertFeatureFolder();
1485   } else if (theId == "ADD_TO_FOLDER_BEFORE_CMD") {
1486     insertToFolder(true);
1487   } else if (theId == "ADD_TO_FOLDER_AFTER_CMD") {
1488     insertToFolder(false);
1489   } else if (theId == "ADD_OUT_FOLDER_BEFORE_CMD") {
1490     moveOutFolder(true);
1491   } else if (theId == "ADD_OUT_FOLDER_AFTER_CMD") {
1492     moveOutFolder(false);
1493   } else if (theId == "SELECT_RESULT_CMD") {
1494     //setViewerSelectionMode(-1);
1495     //IMP: an attempt to use result selection with other selection modes
1496     setViewerSelectionMode(ModuleBase_ResultPrs::Sel_Result);
1497     setViewerSelectionMode(TopAbs_COMPSOLID);
1498   } else if (theId == "SHOW_RESULTS_CMD") {
1499     highlightResults(aObjects);
1500   } else if (theId == "SHOW_FEATURE_CMD") {
1501     highlightFeature(aObjects);
1502   }
1503 #ifdef TINSPECTOR
1504   else if (theId == "TINSPECTOR_VIEW") {
1505     Handle(CDF_Application) anApplication = CDF_Session::CurrentSession()->CurrentApplication();
1506     if (!anApplication.IsNull())
1507     {
1508       if (!MyTCommunicator)
1509       {
1510         MyTCommunicator = new TInspector_Communicator();
1511
1512         NCollection_List<Handle(Standard_Transient)> aParameters;
1513         aParameters.Append(anApplication);
1514         Handle(AIS_InteractiveContext) aContext = viewer()->AISContext();
1515         if (!aContext.IsNull())
1516           aParameters.Append(aContext);
1517
1518 #ifdef DEBUG_WITH_MESSAGE_REPORT
1519         Handle(Message_Report) aContextReport = aContext->GetReport();
1520         aContextReport->SetActive (Standard_True);
1521         aContextReport->SetLimit (1000);
1522         if (!aContextReport.IsNull())
1523           aParameters.Append(aContextReport);
1524 #endif
1525         MyVCallBack = new VInspector_CallBack();
1526         myDisplayer->setCallBack(MyVCallBack);
1527         #ifndef HAVE_SALOME
1528         AppElements_Viewer* aViewer = mainWindow()->viewer();
1529         if (aViewer)
1530           aViewer->setCallBack(MyVCallBack);
1531         #endif
1532         aParameters.Append(MyVCallBack);
1533
1534         MyTCommunicator->RegisterPlugin("TKDFBrowser");
1535         MyTCommunicator->RegisterPlugin("TKShapeView");
1536         MyTCommunicator->RegisterPlugin("TKVInspector");
1537 #ifdef DEBUG_WITH_MESSAGE_REPORT
1538         MyTCommunicator->RegisterPlugin("TKMessageView");
1539 #endif
1540         MyTCommunicator->RegisterPlugin("SMBrowser"); // custom plugin to view ModelAPI
1541         //MyTCommunicator->RegisterPlugin("TKSMBrowser"); // custom plugin to view ModelAPI
1542
1543         MyTCommunicator->Init(aParameters);
1544         MyTCommunicator->Activate("TKSMBrowser"); // to have button in TInspector
1545 #ifndef DEBUG_WITH_MESSAGE_REPORT
1546         MyTCommunicator->Activate("TKVInspector"); // to have filled callback by model
1547 #endif
1548         MyTCommunicator->Activate("TKDFBrowser");
1549
1550 #ifdef DEBUG_WITH_MESSAGE_REPORT
1551         MyTCommunicator->Activate("TKMessageView"); // temporary
1552         MyTCommunicator->Activate("TKVInspector"); // to have filled callback by model
1553 #endif
1554       }
1555       MyTCommunicator->SetVisible(true);
1556     }
1557   }
1558 #endif
1559 }
1560
1561 //**************************************************************
1562 void XGUI_Workshop::setViewerSelectionMode(int theMode)
1563 {
1564   XGUI_ActiveControlSelector* anActiveSelector = activeControlMgr()->activeSelector();
1565   if (anActiveSelector && anActiveSelector->getType() == XGUI_FacesPanelSelector::Type())
1566     facesPanel()->setActivePanel(false);
1567
1568   if (theMode == -1)
1569     myViewerSelMode.clear();
1570   else {
1571     if (myViewerSelMode.contains(theMode))
1572       myViewerSelMode.removeAll(theMode);
1573     else
1574       myViewerSelMode.append(theMode);
1575   }
1576   activateObjectsSelection(myDisplayer->displayedObjects());
1577 }
1578
1579 //**************************************************************
1580 void XGUI_Workshop::activateObjectsSelection(const QObjectPtrList& theList)
1581 {
1582   QIntList aModes;
1583   module()->activeSelectionModes(aModes);
1584   if (aModes.isEmpty() && (myViewerSelMode.length() > 0))
1585     aModes.append(myViewerSelMode);
1586   myDisplayer->activateObjects(aModes, theList);
1587 }
1588
1589 //**************************************************************
1590 bool XGUI_Workshop::prepareForDisplay(const std::set<ObjectPtr>& theObjects) const
1591 {
1592   // generate container of objects taking into account sub elments of compsolid
1593   std::set<ObjectPtr> anAllProcessedObjects;
1594   for (std::set<ObjectPtr>::const_iterator anObjectsIt = theObjects.begin();
1595     anObjectsIt != theObjects.end(); anObjectsIt++) {
1596     ObjectPtr anObject = *anObjectsIt;
1597     ResultCompSolidPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(anObject);
1598     if (aCompRes.get()) {
1599       if (aCompRes->numberOfSubs(true) == 0)
1600         anAllProcessedObjects.insert(anObject);
1601       else {
1602         for (int i = 0; i < aCompRes->numberOfSubs(true); i++) {
1603           ResultPtr aSubRes = aCompRes->subResult(i, true);
1604           anAllProcessedObjects.insert(aCompRes->subResult(i, true));
1605         }
1606       }
1607     }
1608     else
1609       anAllProcessedObjects.insert(anObject);
1610   }
1611
1612   // find hidden objects in faces panel
1613   std::set<ObjectPtr> aHiddenObjects;
1614   QStringList aHiddenObjectNames;
1615   for (std::set<ObjectPtr>::const_iterator anObjectsIt = theObjects.begin();
1616     anObjectsIt != theObjects.end(); anObjectsIt++) {
1617     if (!facesPanel()->isObjectHiddenByPanel(*anObjectsIt))
1618       continue;
1619     aHiddenObjects.insert(*anObjectsIt);
1620     aHiddenObjectNames.append((*anObjectsIt)->data()->name().c_str());
1621   }
1622   if (aHiddenObjects.empty())
1623     return true;
1624
1625   int anAnswer = QMessageBox::question(
1626         desktop(), tr("Show object"),
1627         tr("'%1'\n are hidden by %2:\nRemove objects from the panel to be displayed?")
1628         .arg(aHiddenObjectNames.join(',').arg(facesPanel()->windowTitle()),
1629         QMessageBox::Yes | QMessageBox::No, QMessageBox::No));
1630
1631   bool aToBeDisplayed = anAnswer == QMessageBox::Yes;
1632   if (aToBeDisplayed)
1633     facesPanel()->restoreObjects(aHiddenObjects);
1634
1635   return aToBeDisplayed;
1636 }
1637
1638 //**************************************************************
1639 void XGUI_Workshop::deleteObjects()
1640 {
1641   ModuleBase_IModule* aModule = module();
1642   // allow the module to delete objects, do nothing if it has succeed
1643   if (aModule->deleteObjects()) {
1644     updateCommandStatus();
1645     return;
1646   }
1647
1648   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1649   if (!abortAllOperations())
1650     return;
1651
1652   bool hasResult = false;
1653   bool hasFeature = false;
1654   bool hasParameter = false;
1655   bool hasCompositeOwner = false;
1656   bool hasResultInHistory = false;
1657   bool hasFolder = false;
1658   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasCompositeOwner,
1659                                  hasResultInHistory, hasFolder);
1660   if (!(hasFeature || hasParameter || hasFolder))
1661     return;
1662
1663   // delete objects
1664   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1665   std::set<FeaturePtr> aFeatures;
1666   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1667   ModelAPI_Tools::findAllReferences(aFeatures, aReferences);
1668
1669   std::set<FolderPtr> aFolders;
1670   ModuleBase_Tools::convertToFolders(anObjects, aFolders);
1671
1672   bool aDone = false;
1673   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text() + " %1";
1674   aDescription = aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1675   ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, module());
1676
1677   operationMgr()->startOperation(anOpAction);
1678
1679   std::set<FeaturePtr> aFeatureRefsToDelete;
1680   if (ModuleBase_Tools::askToDelete(aFeatures, aReferences, desktop(), aFeatureRefsToDelete)) {
1681     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1682     // It is necessary to clear selection in order to avoid selection changed event during
1683     // deletion and negative consequences connected with processing of already deleted items
1684     mySelector->clearSelection();
1685
1686     if (!aFeatureRefsToDelete.empty())
1687       aFeatures.insert(aFeatureRefsToDelete.begin(), aFeatureRefsToDelete.end());
1688     aDone = ModelAPI_Tools::removeFeatures(aFeatures, false);
1689   }
1690   if (aFolders.size() > 0) {
1691     std::set<FolderPtr>::const_iterator anIt = aFolders.begin(),
1692                                          aLast = aFolders.end();
1693     for (; anIt != aLast; anIt++) {
1694       FolderPtr aFolder = *anIt;
1695       if (aFolder.get()) {
1696         DocumentPtr aDoc = aFolder->document();
1697         aDoc->removeFolder(aFolder);
1698       }
1699     }
1700   }
1701
1702   if (aDone)
1703     operationMgr()->commitOperation();
1704   else
1705     operationMgr()->abortOperation(operationMgr()->currentOperation());
1706 }
1707
1708 //**************************************************************
1709 void addRefsToFeature(const FeaturePtr& theFeature,
1710                       const std::map<FeaturePtr, std::set<FeaturePtr> >& theMainList,
1711                       std::set<FeaturePtr>& theReferences)
1712 {
1713   //if (theReferences.find(theFeature) != theReferences.end())
1714   //  return;
1715   if (theMainList.find(theFeature) == theMainList.end())
1716     return; // this feature is not in the selection list, so exists without references to it
1717   std::set<FeaturePtr> aMainReferences = theMainList.at(theFeature);
1718
1719   std::set<FeaturePtr>::const_iterator anIt = aMainReferences.begin(),
1720                                        aLast = aMainReferences.end();
1721   for (; anIt != aLast; anIt++) {
1722     FeaturePtr aRefFeature = *anIt;
1723     if (theReferences.find(aRefFeature) == theReferences.end())
1724       theReferences.insert(aRefFeature);
1725     addRefsToFeature(aRefFeature, theMainList, theReferences);
1726   }
1727 }
1728
1729 //**************************************************************
1730 void XGUI_Workshop::cleanHistory()
1731 {
1732   if (!abortAllOperations())
1733     return;
1734
1735   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1736   std::set<FeaturePtr> aFeatures;
1737   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1738
1739 #ifdef DEBUG_CLEAN_HISTORY
1740   QStringList anInfo;
1741   std::set<FeaturePtr>::const_iterator aFIt;
1742   for (aFIt = aFeatures.begin(); aFIt != aFeatures.end(); ++aFIt) {
1743     FeaturePtr aFeature = ModelAPI_Feature::feature(*aFIt);
1744     anInfo.append(aFeature->name().c_str());
1745   }
1746   QString anInfoStr = anInfo.join(";\t");
1747   qDebug(QString("cleanHistory for: [%1] - %2").
1748     arg(aFeatures.size()).arg(anInfoStr).toStdString().c_str());
1749 #endif
1750
1751   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1752   ModelAPI_Tools::findAllReferences(aFeatures, aReferences, true, false);
1753   // find for each object whether all reference values are in the map as key, that means that there
1754   // is no other reference in the model to this object, so it might be removed by cleaning history
1755   // sk_1(ext_1, vertex_1) + (sk_3, bool_1) - cann't be deleted, dependency to bool_1
1756   // ext_1(bool_1, sk_3)  - cann't be deleted, dependency to bool_1
1757   // vertex_1()
1758   // sk_2(ext_2) + (bool_1)  - cann't be deleted, dependency to bool_1
1759   // ext_2(bool_1)  - cann't be deleted, dependency to bool_1
1760   // sk_3()
1761   // Information: bool_1 is not selected
1762   std::set<FeaturePtr> anUnusedObjects;
1763   std::map<FeaturePtr, std::set<FeaturePtr> >::const_iterator aMainIt = aReferences.begin(),
1764                                                               aMainLast = aReferences.end();
1765   for (; aMainIt != aMainLast; aMainIt++) {
1766     FeaturePtr aMainListFeature = aMainIt->first;
1767     std::set<FeaturePtr> aMainRefList = aMainIt->second;
1768     std::set<FeaturePtr>::const_iterator aRefIt = aMainRefList.begin(),
1769                                                   aRefLast = aMainRefList.end();
1770     bool aFeatureOutOfTheList = false;
1771     for (; aRefIt != aRefLast && !aFeatureOutOfTheList; aRefIt++) {
1772       FeaturePtr aRefFeature = *aRefIt;
1773       aFeatureOutOfTheList = aReferences.find(aRefFeature) == aReferences.end();
1774     }
1775     if (!aFeatureOutOfTheList)
1776       anUnusedObjects.insert(aMainListFeature);
1777   }
1778
1779 #ifdef DEBUG_CLEAN_HISTORY
1780   anInfo.clear();
1781   for (aFIt = anUnusedObjects.begin(); aFIt != anUnusedObjects.end(); ++aFIt) {
1782     FeaturePtr aFeature = *aFIt;
1783     anInfo.append(aFeature->name().c_str());
1784   }
1785   qDebug(QString("unused objects: [%1] - %2").
1786     arg(anInfo.size()).arg(anInfo.join(";\t")).toStdString().c_str());
1787 #endif
1788
1789   // warn about the references remove, break the delete operation if the user chose it
1790   if (!anUnusedObjects.empty()) {
1791     QStringList aNames;
1792     foreach (const FeaturePtr& aFeature, anUnusedObjects) {
1793       aNames.append(aFeature->name().c_str());
1794     }
1795     aNames.sort();
1796     QString anUnusedNames = aNames.join(", ");
1797
1798     QString anActionId = "CLEAN_HISTORY_CMD";
1799     QString aDescription = contextMenuMgr()->action(anActionId)->text();
1800
1801     QMessageBox aMessageBox(desktop());
1802     aMessageBox.setWindowTitle(aDescription);
1803     aMessageBox.setIcon(QMessageBox::Warning);
1804     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
1805     aMessageBox.setDefaultButton(QMessageBox::No);
1806
1807     const char* aKeyStr = "Unused features are the following: "
1808                           "%1.\nThese features will be deleted.\nWould you like to continue?";
1809     QString aText = QString(tr(aKeyStr).arg(anUnusedNames));
1810     aMessageBox.setText(aText);
1811     if (aMessageBox.exec() == QMessageBox::No)
1812       return;
1813
1814     // 1. start operation
1815     aDescription += "by deleting of " +
1816       aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1817     ModuleBase_OperationAction* anOpAction = new ModuleBase_OperationAction(aDescription, module());
1818     operationMgr()->startOperation(anOpAction);
1819
1820     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1821     // It is necessary to clear selection in order to avoid selection changed event during
1822     // deletion and negative consequences connected with processing of already deleted items
1823     mySelector->clearSelection();
1824
1825     std::set<FeaturePtr> anIgnoredFeatures;
1826     if (ModelAPI_Tools::removeFeatures(anUnusedObjects, true)) {
1827       operationMgr()->commitOperation();
1828     }
1829     else {
1830       operationMgr()->abortOperation(operationMgr()->currentOperation());
1831     }
1832   }
1833   else {
1834     QString anActionId = "CLEAN_HISTORY_CMD";
1835     QString aDescription = contextMenuMgr()->action(anActionId)->text();
1836
1837     QMessageBox aMessageBox(desktop());
1838     aMessageBox.setWindowTitle(aDescription);
1839     aMessageBox.setIcon(QMessageBox::Warning);
1840     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
1841     aMessageBox.setDefaultButton(QMessageBox::No);
1842
1843     QString aText;
1844     aMessageBox.setStandardButtons(QMessageBox::Ok);
1845     aMessageBox.setDefaultButton(QMessageBox::Ok);
1846
1847     aText = QString(tr("All features are relevant, there is nothing to be deleted"));
1848     aMessageBox.setText(aText);
1849
1850     if (aMessageBox.exec() == QMessageBox::No)
1851       return;
1852   }
1853 }
1854
1855 //**************************************************************
1856 void XGUI_Workshop::moveObjects()
1857 {
1858   if (!abortAllOperations())
1859     return;
1860
1861   SessionPtr aMgr = ModelAPI_Session::get();
1862
1863   QString anActionId = "MOVE_CMD";
1864   QString aDescription = contextMenuMgr()->action(anActionId)->text();
1865   aMgr->startOperation(aDescription.toStdString());
1866
1867   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1868   // It is necessary to clear selection in order to avoid selection changed event during
1869   // moving and negative consequences connected with processing of already moved items
1870   mySelector->clearSelection();
1871   // check whether the object can be moved. There should not be parts which are not loaded
1872   std::set<FeaturePtr> aFeatures;
1873   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1874   if (!XGUI_Tools::canRemoveOrRename(desktop(), aFeatures))
1875     return;
1876
1877   DocumentPtr anActiveDocument = aMgr->activeDocument();
1878   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
1879   std::set<FeaturePtr>::const_iterator anIt = aFeatures.begin(), aLast = aFeatures.end();
1880   for (; anIt != aLast; anIt++) {
1881     FeaturePtr aFeature = *anIt;
1882     if (!aFeature.get() || !myModule->canApplyAction(aFeature, anActionId))
1883       continue;
1884
1885     anActiveDocument->moveFeature(aFeature, aCurrentFeature);
1886     aCurrentFeature = anActiveDocument->currentFeature(true);
1887   }
1888   aMgr->finishOperation();
1889 }
1890
1891 //**************************************************************
1892 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theObjects)
1893 {
1894   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1895   std::set<FeaturePtr> aFeatures;
1896   ModuleBase_Tools::convertToFeatures(theObjects, aFeatures);
1897
1898   return ModelAPI_Tools::removeFeaturesAndReferences(aFeatures);
1899 }
1900
1901 //******************************************************
1902 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
1903 {
1904   bool isFoundResultType = false;
1905   foreach(ObjectPtr anObj, theObjects)
1906   {
1907     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
1908     if (aResult.get() == NULL)
1909       continue;
1910
1911     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
1912     if (isFoundResultType)
1913       break;
1914   }
1915   return isFoundResultType;
1916 }
1917
1918 //**************************************************************
1919 // Returns the list of all features for theDocument and all features of
1920 // all nested parts.
1921 std::list<FeaturePtr> allFeatures(const DocumentPtr& theDocument)
1922 {
1923   std::list<FeaturePtr> aResultList;
1924   std::list<FeaturePtr> anAllFeatures = theDocument->allFeatures();
1925   foreach (const FeaturePtr& aFeature, anAllFeatures) {
1926     // The order of appending features of the part and the part itself is important
1927
1928     // Append features from a part feature
1929     std::list<ResultPtr> aResults;
1930     ModelAPI_Tools::allResults(aFeature, aResults);
1931     foreach (const ResultPtr& aResult, aResults) {
1932       ResultPartPtr aResultPart =
1933           std::dynamic_pointer_cast<ModelAPI_ResultPart>(aResult);
1934       if (aResultPart.get() && aResultPart->partDoc().get()) {
1935         // Recursion
1936         std::list<FeaturePtr> anAllFeatures = allFeatures(aResultPart->partDoc());
1937         aResultList.insert(aResultList.end(), anAllFeatures.begin(), anAllFeatures.end());
1938       }
1939     }
1940
1941     aResultList.push_back(aFeature);
1942   }
1943   return aResultList;
1944 }
1945
1946 //**************************************************************
1947 // Returns the list of features placed between theObject and the current feature
1948 // in the same document. Excludes theObject, includes the current feature.
1949 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
1950 {
1951   std::list<FeaturePtr> aResult;
1952   DocumentPtr aDocument = theObject->document();
1953   std::list<FeaturePtr> anAllFeatures = allFeatures(aDocument);
1954   // find the object iterator
1955   std::list<FeaturePtr>::iterator aObjectIt =
1956     std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
1957   if (aObjectIt == anAllFeatures.end())
1958     return aResult;
1959   // find the current feature iterator
1960   std::list<FeaturePtr>::iterator aCurrentIt =
1961     std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
1962   if (aCurrentIt == anAllFeatures.end())
1963     return aResult;
1964   // check the right order
1965   if (std::distance(aObjectIt, anAllFeatures.end()) <=
1966       std::distance(aCurrentIt, anAllFeatures.end()))
1967     return aResult;
1968   // exclude the object
1969   std::advance(aObjectIt, 1);
1970   // include the current feature
1971   std::advance(aCurrentIt, 1);
1972   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
1973 }
1974
1975 //******************************************************
1976 bool XGUI_Workshop::canMoveFeature()
1977 {
1978   QString anActionId = "MOVE_CMD";
1979
1980   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1981   QObjectPtrList aValidatedObjects;
1982   foreach (ObjectPtr aObject, aObjects) {
1983     if (!myModule->canApplyAction(aObject, anActionId))
1984       continue;
1985     // To be moved feature should be in active document
1986     if (aObject->document() != ModelAPI_Session::get()->activeDocument())
1987       continue;
1988     aValidatedObjects.append(aObject);
1989   }
1990   if (aValidatedObjects.size() != aObjects.size())
1991     aObjects = aValidatedObjects;
1992
1993   bool aCanMove = !aObjects.empty();
1994
1995   QObjectPtrList::const_iterator anIt = aObjects.begin(), aLast = aObjects.end();
1996   for (; anIt != aLast && aCanMove; anIt++) {
1997     ObjectPtr aObject = *anIt;
1998     // 1. Get features placed between selected and current in the document
1999     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
2000     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
2001     if (aFeaturesBetween.empty())
2002       aCanMove = false;
2003     else {
2004       std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
2005       // 2. Get all reference features to the selected object in the document
2006       std::set<FeaturePtr> aRefFeatures;
2007       ModuleBase_Tools::refsToFeatureInFeatureDocument(aObject, aRefFeatures);
2008
2009       if (aRefFeatures.empty())
2010         continue;
2011       else {
2012         // 3. Find any placed features in all reference features
2013         std::set<FeaturePtr> aIntersectionFeatures;
2014         std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
2015                               aPlacedFeatures.begin(), aPlacedFeatures.end(),
2016                               std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
2017         // 4. Return false if any reference feature is placed before current feature
2018         if (!aIntersectionFeatures.empty())
2019           aCanMove = false;
2020       }
2021     }
2022   }
2023   return aCanMove;
2024 }
2025
2026 //**************************************************************
2027 bool XGUI_Workshop::canBeShaded(const ObjectPtr& theObject) const
2028 {
2029   bool aCanBeShaded = myDisplayer->canBeShaded(theObject);
2030   if (!aCanBeShaded) {
2031     ResultCompSolidPtr aCompsolidResult =
2032                 std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(theObject);
2033     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
2034       for(int i = 0; i < aCompsolidResult->numberOfSubs() && !aCanBeShaded; i++)
2035         aCanBeShaded = myDisplayer->canBeShaded(aCompsolidResult->subResult(i));
2036     }
2037   }
2038   return aCanBeShaded;
2039 }
2040
2041 //**************************************************************
2042 bool XGUI_Workshop::canChangeProperty(const QString& theActionName) const
2043 {
2044   if (theActionName == "COLOR_CMD" ||
2045       theActionName == "DEFLECTION_CMD"
2046 #ifdef USE_TRANSPARENCY
2047       || theActionName == "TRANSPARENCY_CMD"
2048 #endif
2049       ) {
2050     QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2051
2052     std::set<std::string> aTypes;
2053     aTypes.insert(ModelAPI_ResultGroup::group());
2054     aTypes.insert(ModelAPI_ResultConstruction::group());
2055     aTypes.insert(ModelAPI_ResultBody::group());
2056     aTypes.insert(ModelAPI_ResultPart::group());
2057
2058     return hasResults(aObjects, aTypes);
2059   }
2060   return false;
2061 }
2062
2063 //******************************************************
2064 void setColor(ResultPtr theResult, const std::vector<int>& theColor)
2065 {
2066   if (!theResult.get())
2067     return;
2068
2069   AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
2070   if (aColorAttr.get() != NULL) {
2071     if (!aColorAttr->size()) {
2072       aColorAttr->setSize(3);
2073     }
2074     aColorAttr->setValue(0, theColor[0]);
2075     aColorAttr->setValue(1, theColor[1]);
2076     aColorAttr->setValue(2, theColor[2]);
2077   }
2078 }
2079
2080 //**************************************************************
2081 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
2082 {
2083
2084   AttributeIntArrayPtr aColorAttr;
2085   // 1. find the current color of the object. This is a color of AIS presentation
2086   // The objects are iterated until a first valid color is found
2087   std::vector<int> aColor;
2088   foreach(ObjectPtr anObject, theObjects) {
2089     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2090     if (aResult.get()) {
2091       XGUI_CustomPrs::getResultColor(aResult, aColor);
2092     }
2093     else {
2094       // TODO: remove the obtaining a color from the AIS object
2095       // this does not happen never because:
2096       // 1. The color can be changed only on results
2097       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2098       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2099       if (anAISObj.get()) {
2100         aColor.resize(3);
2101         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
2102       }
2103     }
2104     if (!aColor.empty())
2105       break;
2106   }
2107   if (aColor.size() != 3)
2108     return;
2109
2110   if (!abortAllOperations())
2111   return;
2112   // 2. show the dialog to change the value
2113   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(desktop());
2114   aDlg->setColor(aColor);
2115   aDlg->move(QCursor::pos());
2116   bool isDone = aDlg->exec() == QDialog::Accepted;
2117   if (!isDone)
2118     return;
2119
2120   bool isRandomColor = aDlg->isRandomColor();
2121
2122   // 3. abort the previous operation and start a new one
2123   SessionPtr aMgr = ModelAPI_Session::get();
2124   QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
2125   aMgr->startOperation(aDescription.toStdString());
2126
2127   // 4. set the value to all results
2128   std::vector<int> aColorResult = aDlg->getColor();
2129   foreach(ObjectPtr anObj, theObjects) {
2130     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2131     if (aResult.get() != NULL) {
2132       ResultCompSolidPtr aCompsolidResult =
2133         std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
2134       if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
2135         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2136           setColor(aCompsolidResult->subResult(i), !isRandomColor ? aColorResult :
2137                                                                     aDlg->getRandomColor());
2138         }
2139       }
2140       setColor(aResult, !isRandomColor ? aColorResult : aDlg->getRandomColor());
2141     }
2142   }
2143   aMgr->finishOperation();
2144   updateCommandStatus();
2145 }
2146
2147 //**************************************************************
2148 void setDeflection(ResultPtr theResult, const double theDeflection)
2149 {
2150   if (!theResult.get())
2151     return;
2152
2153   AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
2154   if (aDeflectionAttr.get() != NULL)
2155     aDeflectionAttr->setValue(theDeflection);
2156 }
2157
2158 //**************************************************************
2159 void setTransparency(ResultPtr theResult, double theTransparency)
2160 {
2161   if (!theResult.get())
2162     return;
2163
2164   AttributeDoublePtr anAttribute = theResult->data()->real(ModelAPI_Result::TRANSPARENCY_ID());
2165   if (anAttribute.get() != NULL)
2166     anAttribute->setValue(theTransparency);
2167 }
2168
2169 //**************************************************************
2170 void setTransparency(double theTransparency, const QObjectPtrList& theObjects)
2171 {
2172   foreach(ObjectPtr anObj, theObjects) {
2173     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2174     if (aResult.get() != NULL) {
2175       ResultCompSolidPtr aCompsolidResult =
2176         std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
2177       if (aCompsolidResult.get() != NULL) { // change property for all sub-solids
2178         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2179           setTransparency(aCompsolidResult->subResult(i), theTransparency);
2180         }
2181       }
2182       setTransparency(aResult, theTransparency);
2183     }
2184   }
2185 }
2186
2187 //**************************************************************
2188 void XGUI_Workshop::changeDeflection(const QObjectPtrList& theObjects)
2189 {
2190   AttributeDoublePtr aDoubleAttr;
2191   // 1. find the current property of the object. This is a property of AIS presentation
2192   // The objects are iterated until a first valid property is found
2193   double aDeflection = -1;
2194   foreach(ObjectPtr anObject, theObjects) {
2195     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2196     if (aResult.get()) {
2197       aDeflection = XGUI_CustomPrs::getResultDeflection(aResult);
2198     }
2199     else {
2200       // TODO: remove the obtaining a property from the AIS object
2201       // this does not happen never because:
2202       // 1. The property can be changed only on results
2203       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2204       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2205       if (anAISObj.get()) {
2206         aDeflection = anAISObj->getDeflection();
2207       }
2208     }
2209     if (aDeflection > 0)
2210       break;
2211   }
2212   if (aDeflection < 0)
2213     return;
2214
2215   if (!abortAllOperations())
2216   return;
2217   // 2. show the dialog to change the value
2218   XGUI_DeflectionDialog* aDlg = new XGUI_DeflectionDialog(desktop());
2219   aDlg->setDeflection(aDeflection);
2220   aDlg->move(QCursor::pos());
2221   bool isDone = aDlg->exec() == QDialog::Accepted;
2222   if (!isDone)
2223     return;
2224
2225   // 3. abort the previous operation and start a new one
2226   SessionPtr aMgr = ModelAPI_Session::get();
2227   QString aDescription = contextMenuMgr()->action("DEFLECTION_CMD")->text();
2228   aMgr->startOperation(aDescription.toStdString());
2229
2230   // 4. set the value to all results
2231   aDeflection = aDlg->getDeflection();
2232   foreach(ObjectPtr anObj, theObjects) {
2233     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2234     if (aResult.get() != NULL) {
2235       ResultCompSolidPtr aCompsolidResult =
2236         std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aResult);
2237       if (aCompsolidResult.get() != NULL) { // change property for all sub-solids
2238         for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2239           setDeflection(aCompsolidResult->subResult(i), aDeflection);
2240         }
2241       }
2242       setDeflection(aResult, aDeflection);
2243     }
2244   }
2245   aMgr->finishOperation();
2246   updateCommandStatus();
2247 }
2248
2249 //**************************************************************
2250 void XGUI_Workshop::changeTransparency(const QObjectPtrList& theObjects)
2251 {
2252   AttributeDoublePtr aDoubleAttr;
2253   // 1. find the current property of the object. This is a property of AIS presentation
2254   // The objects are iterated until a first valid property is found
2255   double aCurrentValue = -1;
2256   foreach(ObjectPtr anObject, theObjects) {
2257     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2258     if (aResult.get()) {
2259       aCurrentValue = XGUI_CustomPrs::getResultTransparency(aResult);
2260     }
2261     else {
2262       // TODO: remove the obtaining a property from the AIS object
2263       // this does not happen never because:
2264       // 1. The property can be changed only on results
2265       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2266       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2267       if (anAISObj.get()) {
2268         aCurrentValue = anAISObj->getDeflection();
2269       }
2270     }
2271     if (aCurrentValue > 0)
2272       break;
2273   }
2274   if (aCurrentValue < 0)
2275     return;
2276
2277   if (!abortAllOperations())
2278   return;
2279
2280   // 2. show the dialog to change the value
2281   XGUI_PropertyDialog* aDlg = new XGUI_PropertyDialog(desktop());
2282   aDlg->setWindowTitle("Transparency");
2283   XGUI_TransparencyWidget* aTransparencyWidget = new XGUI_TransparencyWidget(aDlg);
2284   connect(aTransparencyWidget, SIGNAL(transparencyValueChanged()),
2285           this, SLOT(onTransparencyValueChanged()));
2286   connect(aTransparencyWidget, SIGNAL(previewStateChanged()),
2287           this, SLOT(onPreviewStateChanged()));
2288   aDlg->setContent(aTransparencyWidget);
2289   aTransparencyWidget->setValue(aCurrentValue);
2290
2291   // 3. abort the previous operation and start a new one
2292   SessionPtr aMgr = ModelAPI_Session::get();
2293   QString aDescription = contextMenuMgr()->action("TRANSPARENCY_CMD")->text();
2294   aMgr->startOperation(aDescription.toStdString());
2295
2296   aDlg->move(QCursor::pos());
2297   bool isDone = aDlg->exec() == QDialog::Accepted;
2298   if (!isDone)
2299     return;
2300
2301   // 4. set the value to all results
2302   aCurrentValue = aTransparencyWidget->getValue();
2303   setTransparency(aCurrentValue, theObjects);
2304
2305   aMgr->finishOperation();
2306   updateCommandStatus();
2307 }
2308
2309 //**************************************************************
2310 void XGUI_Workshop::onTransparencyValueChanged()
2311 {
2312   XGUI_TransparencyWidget* aTransparencyWidget = (XGUI_TransparencyWidget*)sender();
2313   if (!aTransparencyWidget || !aTransparencyWidget->isPreviewNeeded())
2314     return;
2315
2316   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2317   setTransparency(aTransparencyWidget->getValue(), anObjects);
2318   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2319 }
2320
2321 //**************************************************************
2322 void XGUI_Workshop::onPreviewStateChanged()
2323 {
2324   XGUI_TransparencyWidget* aTransparencyWidget = (XGUI_TransparencyWidget*)sender();
2325   if (!aTransparencyWidget || !aTransparencyWidget->isPreviewNeeded())
2326     return;
2327
2328   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2329   setTransparency(aTransparencyWidget->getValue(), anObjects);
2330   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2331 }
2332
2333 //**************************************************************
2334 #define SET_DISPLAY_GROUP(aGroupName, aDisplay) \
2335 for (int i = 0; i < aDoc->size(aGroupName); i++) { \
2336   aDoc->object(aGroupName, i)->setDisplayed(aDisplay); \
2337 }
2338
2339 //******************************************************
2340 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
2341 {
2342   if (isVisible) {
2343     std::set<ObjectPtr> anObjects;
2344     foreach (ObjectPtr aObj, theList) {
2345       anObjects.insert(aObj);
2346     }
2347     if (!prepareForDisplay(anObjects))
2348       return;
2349   }
2350
2351   foreach (ObjectPtr aObj, theList) {
2352     aObj->setDisplayed(isVisible);
2353   }
2354   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2355 #ifndef WIN32
2356   // Necessary for update icons in ObjectBrowser on Linux
2357   QModelIndexList aIndexes = mySelector->selection()->selectedIndexes();
2358   foreach (QModelIndex aIdx, aIndexes) {
2359     if (aIdx.column() == 0) {
2360       myObjectBrowser->treeView()->update(aIdx);
2361     }
2362   }
2363 #endif
2364 }
2365
2366 //**************************************************************
2367 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
2368 {
2369   // Hide all displayed objects
2370   QObjectPtrList aList = myDisplayer->displayedObjects();
2371   foreach (ObjectPtr aObj, aList) {
2372     if (module()->canEraseObject(aObj))
2373       aObj->setDisplayed(false);
2374   }
2375   //Do not use eraseAll if you didn't send Redisplay event:
2376   //all objects are erased from viewer, but considered as displayed in displayer
2377   // Problem in bug 2218
2378   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2379 #ifdef HAVE_SALOME
2380     //issue #2159 Hide all incomplete behavior
2381     viewer()->eraseAll();
2382 #endif
2383
2384   std::set<ObjectPtr> anObjects;
2385   foreach (ObjectPtr aObj, theList) {
2386     anObjects.insert(aObj);
2387   }
2388
2389   if (!prepareForDisplay(anObjects))
2390     return;
2391
2392   // Show only objects from the list
2393   foreach (ObjectPtr aObj, theList) {
2394     aObj->setDisplayed(true);
2395   }
2396   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2397
2398   // Necessary for update icons in ObjectBrowser on Linux
2399   myObjectBrowser->updateAllIndexes();
2400 }
2401
2402 //**************************************************************
2403 void XGUI_Workshop::registerValidators() const
2404 {
2405   SessionPtr aMgr = ModelAPI_Session::get();
2406   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
2407 }
2408
2409 //**************************************************************
2410 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
2411 {
2412   if (!theDoc)
2413     return;
2414   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
2415   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
2416 }
2417
2418 //**************************************************************
2419 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
2420 {
2421   for (int i = 0; i < theDoc->size(theGroup); i++)
2422     theDoc->object(theGroup, i)->setDisplayed(true);
2423     //displayObject(theDoc->object(theGroup, i));
2424   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2425 }
2426
2427 //**************************************************************
2428 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
2429 {
2430   foreach(ObjectPtr aObj, theList) {
2431     myDisplayer->setDisplayMode(aObj, (XGUI_Displayer::DisplayMode)theMode, false);
2432
2433     ResultCompSolidPtr aCompsolidResult = std::dynamic_pointer_cast<ModelAPI_ResultCompSolid>(aObj);
2434     if (aCompsolidResult.get() != NULL) { // change colors for all sub-solids
2435       for(int i = 0; i < aCompsolidResult->numberOfSubs(); i++) {
2436           myDisplayer->setDisplayMode(aCompsolidResult->subResult(i),
2437                                       (XGUI_Displayer::DisplayMode)theMode, false);
2438       }
2439     }
2440   }
2441   if (theList.size() > 0)
2442     myDisplayer->updateViewer();
2443 }
2444
2445 //**************************************************************
2446 void XGUI_Workshop::closeDocument()
2447 {
2448   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
2449   while (anOperation) {
2450     anOperation->abort();
2451     anOperation = operationMgr()->currentOperation();
2452   }
2453   //myDisplayer->closeLocalContexts();
2454   myDisplayer->eraseAll();
2455   objectBrowser()->clearContent();
2456
2457   module()->closeDocument();
2458   // we need to clear viewer (with created filters) to do not have problems in 2nd SALOME study
2459   module()->clearViewer();
2460
2461
2462   // data model need not process the document's signals about objects modifications as
2463   // the document is closed
2464   //bool isBlocked = objectBrowser()->dataModel()->blockEventsProcessing(true);
2465
2466   SessionPtr aMgr = ModelAPI_Session::get();
2467   aMgr->closeAll();
2468
2469   //objectBrowser()->dataModel()->blockEventsProcessing(isBlocked);
2470 }
2471
2472 //******************************************************
2473 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
2474 {
2475   XGUI_HistoryMenu* aMenu = NULL;
2476   if (isSalomeMode()) {
2477     QAction* anAction = qobject_cast<QAction*>(theObject);
2478     if (!anAction)
2479       return;
2480     aMenu = new XGUI_HistoryMenu(anAction);
2481   } else {
2482     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
2483     aMenu = new XGUI_HistoryMenu(aButton);
2484   }
2485   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
2486   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
2487 }
2488
2489 //******************************************************
2490 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
2491 {
2492   QList<ActionInfo> aResult;
2493   std::list<std::string>::const_iterator it = theList.cbegin();
2494   for (; it != theList.cend(); it++) {
2495     QString anId = QString::fromStdString(*it);
2496     bool isEditing = anId.endsWith(ModuleBase_OperationFeature::EditSuffix());
2497     if (isEditing) {
2498       anId.chop(ModuleBase_OperationFeature::EditSuffix().size());
2499     }
2500     ActionInfo anInfo;
2501     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
2502     if (aContextMenuAct) {
2503       anInfo.initFrom(aContextMenuAct);
2504     } else {
2505       anInfo = myActionsMgr->actionInfoById(anId);
2506     }
2507     if (isEditing) {
2508       anInfo.text = anInfo.text.prepend("Modify ");
2509     }
2510     aResult << anInfo;
2511   }
2512   return aResult;
2513 }
2514
2515 //******************************************************
2516 void XGUI_Workshop::setStatusBarMessage(const QString& theMessage)
2517 {
2518 #ifdef HAVE_SALOME
2519   salomeConnector()->putInfo(theMessage, -1);
2520 #else
2521   myMainWindow->putInfo(theMessage, -1);
2522 #endif
2523 }
2524
2525 //******************************************************
2526 void XGUI_Workshop::synchronizeViewer()
2527 {
2528   SessionPtr aMgr = ModelAPI_Session::get();
2529   QList<DocumentPtr> aDocs;
2530   aDocs.append(aMgr->activeDocument());
2531   aDocs.append(aMgr->moduleDocument());
2532
2533   foreach(DocumentPtr aDoc, aDocs) {
2534     synchronizeGroupInViewer(aDoc, ModelAPI_ResultConstruction::group(), false);
2535     synchronizeGroupInViewer(aDoc, ModelAPI_ResultBody::group(), false);
2536     synchronizeGroupInViewer(aDoc, ModelAPI_ResultPart::group(), false);
2537     synchronizeGroupInViewer(aDoc, ModelAPI_ResultGroup::group(), false);
2538   }
2539 }
2540
2541 //******************************************************
2542 void XGUI_Workshop::synchronizeGroupInViewer(const DocumentPtr& theDoc,
2543                                              const std::string& theGroup,
2544                                              bool theUpdateViewer)
2545 {
2546   ObjectPtr aObj;
2547   int aSize = theDoc->size(theGroup);
2548   for (int i = 0; i < aSize; i++) {
2549     aObj = theDoc->object(theGroup, i);
2550     if (aObj->isDisplayed()) {
2551       // Hide the presentation with an empty shape. But isDisplayed state of the object should not
2552       // be changed to the object becomes visible when the shape becomes not empty
2553       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
2554       if (aRes.get() && (!aRes->shape().get() || aRes->shape()->isNull()))
2555         continue;
2556       myDisplayer->display(aObj, false);
2557     }
2558   }
2559   if (theUpdateViewer)
2560     myDisplayer->updateViewer();
2561 }
2562
2563 //******************************************************
2564 void XGUI_Workshop::highlightResults(const QObjectPtrList& theObjects)
2565 {
2566   FeaturePtr aFeature;
2567   QObjectPtrList aSelList = theObjects;
2568   bool aHasHidden = false;
2569   foreach(ObjectPtr aObj, theObjects) {
2570     aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
2571     if (aFeature.get()) {
2572       std::list<ResultPtr> aResults;
2573       ModelAPI_Tools::allResults(aFeature, aResults);
2574       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
2575       for(aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
2576         aHasHidden |= (*aIt)->isConcealed();
2577         aSelList.append(*aIt);
2578       }
2579     }
2580   }
2581   if (aSelList.count() > theObjects.count()) {
2582     // if something was found
2583     bool aBlocked = objectBrowser()->blockSignals(true);
2584     objectBrowser()->setObjectsSelected(aSelList);
2585     objectBrowser()->blockSignals(aBlocked);
2586   }
2587   if (aHasHidden)
2588     QMessageBox::information(desktop(), tr("Find results"),
2589                              tr("Results not found"), QMessageBox::Ok);
2590 }
2591
2592 //******************************************************
2593 void XGUI_Workshop::highlightFeature(const QObjectPtrList& theObjects)
2594 {
2595   ResultPtr aResult;
2596   QObjectPtrList aSelList = theObjects;
2597   FeaturePtr aFeature;
2598   foreach(ObjectPtr aObj, theObjects) {
2599     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
2600     if (aResult.get()) {
2601       aFeature = ModelAPI_Feature::feature(aResult);
2602       if (aFeature.get()) {
2603         aSelList.append(aFeature);
2604       }
2605     }
2606   }
2607   if (aSelList.count() > theObjects.count()) {
2608     // if something was found
2609     bool aBlocked = objectBrowser()->blockSignals(true);
2610     objectBrowser()->setObjectsSelected(aSelList);
2611     objectBrowser()->blockSignals(aBlocked);
2612   }
2613 }
2614
2615 void XGUI_Workshop::insertFeatureFolder()
2616 {
2617   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2618   if (aObjects.isEmpty())
2619     return;
2620   ObjectPtr aObj = aObjects.first();
2621   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
2622   if (aFeature.get() == NULL)
2623     return;
2624   SessionPtr aMgr = ModelAPI_Session::get();
2625   DocumentPtr aDoc = aMgr->activeDocument();
2626
2627   aMgr->startOperation();
2628   aDoc->addFolder(aFeature);
2629   aMgr->finishOperation();
2630 }
2631
2632
2633 void XGUI_Workshop::insertToFolder(bool isBefore)
2634 {
2635   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
2636   if (aFeatures.empty())
2637     return;
2638
2639   SessionPtr aMgr = ModelAPI_Session::get();
2640   DocumentPtr aDoc = aMgr->activeDocument();
2641
2642   FolderPtr aFolder = isBefore? aDoc->findFolderAbove(aFeatures):
2643                                 aDoc->findFolderBelow(aFeatures);
2644   if (!aFolder.get())
2645     return;
2646
2647   aMgr->startOperation();
2648   aDoc->moveToFolder(aFeatures, aFolder);
2649   aMgr->finishOperation();
2650 }
2651
2652 void XGUI_Workshop::moveOutFolder(bool isBefore)
2653 {
2654   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
2655   if (aFeatures.empty())
2656     return;
2657
2658   SessionPtr aMgr = ModelAPI_Session::get();
2659   DocumentPtr aDoc = aMgr->activeDocument();
2660
2661   aMgr->startOperation();
2662   aDoc->removeFromFolder(aFeatures, isBefore);
2663   aMgr->finishOperation();
2664 }