Salome HOME
Issue #3138: Create Import, Export sub-menus in File menu
[modules/shaper.git] / src / XGUI / XGUI_Workshop.cpp
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #include "XGUI_Workshop.h"
21
22 #include "XGUI_ActionsMgr.h"
23 #include "XGUI_ActiveControlMgr.h"
24 #include "XGUI_ActiveControlSelector.h"
25 #include "XGUI_MenuMgr.h"
26 #include "XGUI_ColorDialog.h"
27 #include "XGUI_DeflectionDialog.h"
28 #include "XGUI_TransparencyWidget.h"
29 #include "XGUI_ContextMenuMgr.h"
30 #include "XGUI_Displayer.h"
31 #include "XGUI_ErrorDialog.h"
32 #include "XGUI_ErrorMgr.h"
33 #include "XGUI_FacesPanel.h"
34 #include "XGUI_FacesPanelSelector.h"
35 #include "XGUI_ModuleConnector.h"
36 #include "XGUI_ObjectsBrowser.h"
37 #include "XGUI_OperationMgr.h"
38 #include "XGUI_PropertyPanel.h"
39 #include "XGUI_PropertyPanelSelector.h"
40 #include "XGUI_PropertyDialog.h"
41 #include "XGUI_SalomeConnector.h"
42 #include "XGUI_Selection.h"
43 #include "XGUI_SelectionActivate.h"
44 #include "XGUI_SelectionMgr.h"
45 #include "XGUI_Tools.h"
46 #include "XGUI_ViewerProxy.h"
47 #include "XGUI_WorkshopListener.h"
48 #include <XGUI_HistoryMenu.h>
49 #include <XGUI_QtEvents.h>
50 #include <XGUI_DataModel.h>
51 #include <XGUI_InspectionPanel.h>
52 #include <XGUI_CompressFiles.h>
53
54 #ifndef HAVE_SALOME
55 #include <AppElements_Button.h>
56 #include <AppElements_Command.h>
57 #include <AppElements_MainMenu.h>
58 #include <AppElements_MainWindow.h>
59 #include <AppElements_MenuGroupPanel.h>
60 #include <AppElements_Viewer.h>
61 #include <AppElements_Workbench.h>
62 #endif
63
64 #include <Config_XMLReader.h>
65
66 #include <ModelAPI_AttributeDocRef.h>
67 #include <ModelAPI_AttributeIntArray.h>
68 #include <ModelAPI_AttributeDouble.h>
69 #include <ModelAPI_AttributeString.h>
70 #include <ModelAPI_Data.h>
71 #include <ModelAPI_Events.h>
72 #include <ModelAPI_Feature.h>
73 #include <ModelAPI_Object.h>
74 #include <ModelAPI_ResultBody.h>
75 #include <ModelAPI_ResultConstruction.h>
76 #include <ModelAPI_ResultGroup.h>
77 #include <ModelAPI_ResultParameter.h>
78 #include <ModelAPI_ResultField.h>
79 #include <ModelAPI_Session.h>
80 #include <ModelAPI_Validator.h>
81 #include <ModelAPI_Tools.h>
82 #include <ModelAPI_ResultField.h>
83 #include <ModuleBase_IconFactory.h>
84
85 //#include <PartSetPlugin_Part.h>
86
87 #include <Events_Loop.h>
88 #include <Events_InfoMessage.h>
89 #include <Events_LongOp.h>
90
91 #include <ExchangePlugin_ExportPart.h>
92 #include <ExchangePlugin_ImportPart.h>
93 #include <ExchangePlugin_Import.h>
94 #include <ExchangePlugin_ExportFeature.h>
95
96 #include <GeomAPI_Pnt.h>
97 #include <GeomAPI_ShapeExplorer.h>
98
99 #include <ModuleBase_IModule.h>
100 #include <ModuleBase_IViewer.h>
101 #include <ModuleBase_Operation.h>
102 #include <ModuleBase_OperationDescription.h>
103 #include <ModuleBase_PageBase.h>
104 #include <ModuleBase_Preferences.h>
105 #include <ModuleBase_SelectionValidator.h>
106 #include <ModuleBase_Tools.h>
107 #include <ModuleBase_WidgetFactory.h>
108 #include <ModuleBase_OperationFeature.h>
109 #include <ModuleBase_PagedContainer.h>
110 #include <ModuleBase_WidgetValidated.h>
111 #include <ModuleBase_ModelWidget.h>
112 #include <ModuleBase_ResultPrs.h>
113 #include <ModuleBase_ActionIntParameter.h>
114 #include <ModuleBase_IStepPrs.h>
115
116 #include <Config_Common.h>
117 #include <Config_FeatureMessage.h>
118 #include <Config_ModuleReader.h>
119 #include <Config_PointerMessage.h>
120 #include <Config_PropManager.h>
121 #include <Config_DataModelReader.h>
122 #include <Config_Translator.h>
123 #include <Config_WidgetAPI.h>
124 #include <Config_Keywords.h>
125
126 #include <SUIT_ResourceMgr.h>
127
128 #include <AIS_Trihedron.hxx>
129 #ifdef BEFORE_TRIHEDRON_PATCH
130 #include <AIS_Point.hxx>
131 #include <AIS_Axis.hxx>
132 #endif
133
134 #include <QApplication>
135 #include <QFileDialog>
136 #include <QMessageBox>
137 #include <QMdiSubWindow>
138 #include <QMainWindow>
139 #include <QPushButton>
140 #include <QDockWidget>
141 #include <QLayout>
142 #include <QThread>
143 #include <QObject>
144 #include <QMenu>
145 #include <QToolButton>
146 #include <QAction>
147 #include <QDesktopWidget>
148 #include <QProcess>
149 #include <QDesktopServices>
150 #include <QFormLayout>
151 #include <QSpinBox>
152 #include <QDialogButtonBox>
153
154 #include <iterator>
155
156 #ifdef TINSPECTOR
157 #include <CDF_Session.hxx>
158 #include <CDF_Application.hxx>
159 #include <inspector/TInspector_Communicator.hxx>
160 #include <inspector/VInspector_CallBack.hxx>
161 static TInspector_Communicator* MyTCommunicator;
162 static Handle(VInspector_CallBack) MyVCallBack;
163
164 #endif
165
166 #ifdef _DEBUG
167 #include <QDebug>
168 #include <iostream>
169 #endif
170
171 #ifdef WIN32
172 #include <windows.h>
173 #else
174 #include <dlfcn.h>
175 #endif
176
177 //#define DEBUG_WITH_MESSAGE_REPORT
178
179 QString XGUI_Workshop::MOVE_TO_END_COMMAND = QObject::tr("Move to the end");
180 QString XGUI_Workshop::MOVE_TO_END_SPLIT_COMMAND = QObject::tr("Move to the end and split");
181
182 //#define DEBUG_DELETE
183 //#define DEBUG_FEATURE_NAME
184 //#define DEBUG_CLEAN_HISTORY
185
186 #ifdef HAVE_SALOME
187 static QString MyFilter(QObject::tr("SHAPER files (*.shaper *.cadbld)"));
188 static QString MyFilter2(QObject::tr("SHAPER files (*.shaper)"));
189 static QString MyExtension(".shaper");
190 #else
191 static QString MyFilter(QObject::tr("CAD Builder files (*.cadbld);;All files (*.*)"));
192 static QString MyFilter2(QObject::tr("CAD Builder files (*.cadbld)"));
193 static QString MyExtension(".cadbld");
194 #endif
195
196 static QString MyImportPartFilter(QObject::tr("Part files (*.shaperpart);;All files (*.*)"));
197
198
199 //******************************************************
200 XGUI_Workshop::XGUI_Workshop(XGUI_SalomeConnector* theConnector)
201     : QObject(),
202       myModule(NULL),
203       mySalomeConnector(theConnector),
204       myPropertyPanel(0),
205       myInspectionPanel(0),
206       myFacesPanel(0),
207       myObjectBrowser(0),
208       myDisplayer(0)
209       //myViewerSelMode(TopAbs_FACE)
210 {
211   mySelector = new XGUI_SelectionMgr(this);
212   myModuleConnector = new XGUI_ModuleConnector(this);
213   myOperationMgr = new XGUI_OperationMgr(this, 0);
214   ModuleBase_IWorkshop* aWorkshop = moduleConnector();
215   // Has to be defined first in order to get errors and messages from other components
216   myEventsListener = new XGUI_WorkshopListener(this);
217   mySelectionActivate = new XGUI_SelectionActivate(aWorkshop);
218
219   SUIT_ResourceMgr* aResMgr = ModuleBase_Preferences::resourceMgr();
220 #ifndef HAVE_SALOME
221   myMainWindow = new AppElements_MainWindow();
222
223   bool aCloc = aResMgr->booleanValue("language", "locale", true);
224   if (aCloc)
225     QLocale::setDefault( QLocale::c() );
226   else
227     QLocale::setDefault( QLocale::system() );
228 #endif
229   QString aPath = Config_XMLReader::pluginConfigFile().c_str();
230   QDir aDir(aPath);
231
232   // Load translations
233   QStringList aLangs;
234   aLangs << "*_en.ts"; // load by default eng translations
235
236   /// If version of OCCT is 7.4.0 or more then it means that
237   /// this is version of SALOME older then 9.4.0
238 #if OCC_VERSION_HEX >= 0x070400
239   QString aCurrLang = aResMgr->language();
240 #else
241   QString aCurrLang = aResMgr->stringValue("language", "language", "en");
242 #endif
243
244   if(aCurrLang != "en") {
245     aLangs << "*_" + aCurrLang + ".ts"; // then replace with translated files
246   }
247
248   foreach(QString aLang, aLangs) {
249     QStringList aFilters;
250     aFilters << aLang;
251     QStringList aTsFiles = aDir.entryList(aFilters, QDir::Files);
252     foreach(QString aFileName, aTsFiles) {
253       Config_Translator::load(aFileName.toStdString());
254     }
255   }
256
257   myDataModelXMLReader = new Config_DataModelReader();
258   //myDataModelXMLReader->readAll();
259
260   myDisplayer = new XGUI_Displayer(this);
261
262   connect(mySelector, SIGNAL(selectionChanged()), this, SLOT(updateCommandStatus()));
263
264   myActionsMgr = new XGUI_ActionsMgr(this);
265   myActiveControlMgr = new XGUI_ActiveControlMgr(myModuleConnector);
266   myMenuMgr = new XGUI_MenuMgr(this);
267   myErrorDlg = new XGUI_ErrorDialog(QApplication::desktop());
268   myContextMenuMgr = new XGUI_ContextMenuMgr(this);
269   connect(myContextMenuMgr, SIGNAL(actionTriggered(const QString&, bool)), this,
270           SLOT(onContextMenuCommand(const QString&, bool)));
271
272   myViewerProxy = new XGUI_ViewerProxy(this);
273   //connect(myViewerProxy, SIGNAL(selectionChanged()),
274   //        myActionsMgr,  SLOT(updateOnViewSelection()));
275
276   myOperationMgr->setWorkshop(aWorkshop);
277
278   myErrorMgr = new XGUI_ErrorMgr(this, aWorkshop);
279
280   connect(myOperationMgr, SIGNAL(operationResumed(ModuleBase_Operation*)),
281           SLOT(onOperationResumed(ModuleBase_Operation*)));
282   connect(myOperationMgr, SIGNAL(operationStopped(ModuleBase_Operation*)),
283           SLOT(onOperationStopped(ModuleBase_Operation*)));
284   connect(myOperationMgr, SIGNAL(operationCommitted(ModuleBase_Operation*)),
285           SLOT(onOperationCommitted(ModuleBase_Operation*)));
286   connect(myOperationMgr, SIGNAL(operationAborted(ModuleBase_Operation*)),
287           SLOT(onOperationAborted(ModuleBase_Operation*)));
288
289 #ifndef HAVE_SALOME
290   connect(myMainWindow, SIGNAL(exitKeySequence()), SLOT(onExit()));
291   myDisplayer->displayTrihedron(true);
292 #endif
293
294   connect(myEventsListener, SIGNAL(errorOccurred(std::shared_ptr<Events_InfoMessage>)),
295           myErrorDlg, SLOT(addError(std::shared_ptr<Events_InfoMessage>)));
296
297   Config_PropManager::registerProp("Visualization", "selection_color", "Selection color",
298     Config_Prop::Color, "255,255,255");
299
300   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "face-selection", true))
301     myViewerSelMode.append(TopAbs_FACE);
302   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "edge-selection", true))
303     myViewerSelMode.append(TopAbs_EDGE);
304   if (ModuleBase_Preferences::resourceMgr()->booleanValue("Viewer", "vertex-selection", true))
305     myViewerSelMode.append(TopAbs_VERTEX);
306   //IMP: an attempt to use result selection with other selection modes
307   myViewerSelMode.append(ModuleBase_ResultPrs::Sel_Result);//TopAbs_VERTEX);
308   myViewerSelMode.append(TopAbs_COMPSOLID);
309 }
310
311 //******************************************************
312 XGUI_Workshop::~XGUI_Workshop(void)
313 {
314 #ifdef _DEBUG
315 #ifdef MISSED_TRANSLATION
316   // Save Missed translations
317   Config_Translator::saveMissedTranslations();
318 #endif
319 #endif
320
321   delete myDisplayer;
322   delete myDataModelXMLReader;
323   delete mySelectionActivate;
324   delete myMenuMgr;
325   clearTemporaryDir();
326 }
327
328 //******************************************************
329 void XGUI_Workshop::startApplication()
330 {
331   //Initialize event listening
332   myEventsListener->initializeEventListening();
333
334   myDataModelXMLReader->readAll();
335   initMenu();
336
337   Config_PropManager::registerProp("Plugins", "default_path", "Default Path",
338                                    Config_Prop::Directory, "");
339
340   std::string aDir = Config_XMLReader::resourcesConfigFile();
341   Config_PropManager::registerProp("Plugins", "import_initial_path", "Import initial directory",
342                                    Config_Prop::Directory, aDir);
343
344 #ifdef _DEBUG
345   Config_PropManager::registerProp("Plugins", "create_part_by_start", "Create Part by Start",
346     Config_Prop::Boolean, "false");
347
348   Config_PropManager::registerProp("Plugins", "show_hide_faces", "Show Hide Faces (on the right)",
349     Config_Prop::Boolean, "false");
350 #endif
351   registerValidators();
352
353   // Calling of  loadCustomProps before activating module is required
354   // by Config_PropManger to restore user-defined path to plugins
355   ModuleBase_Preferences::loadCustomProps();
356   std::vector<int> aColor;
357   try {
358     aColor = Config_PropManager::color("Visualization", "selection_color");
359   }
360   catch (...) {
361   }
362   if (aColor.size() == 3)
363     myDisplayer->setSelectionColor(aColor);
364
365   createModule();
366
367 #ifndef HAVE_SALOME
368   myMainWindow->show();
369   updateCommandStatus();
370 #endif
371
372   onNew();
373
374   myViewerProxy->connectViewProxy();
375   connect(myViewerProxy, SIGNAL(trihedronVisibilityChanged(bool)),
376           SLOT(onTrihedronVisibilityChanged(bool)));
377
378   emit applicationStarted();
379
380 #ifdef _DEBUG
381   bool aNewPart = Config_PropManager::boolean("Plugins", "create_part_by_start");
382   if (aNewPart) {
383       module()->launchOperation("Part", false); // PartSetPlugin_Part::ID()
384   }
385 #endif
386 }
387
388 //******************************************************
389 void XGUI_Workshop::activateModule()
390 {
391   selectionActivate()->updateSelectionFilters();
392
393   connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
394     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
395   connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
396     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
397
398   updateCommandStatus();
399
400   // TODO: get default selection mode
401
402   // activate visualized objects in the viewer
403   activateObjectsSelection(displayer()->displayedObjects());
404   myOperationMgr->activate();
405 }
406
407 //******************************************************
408 void XGUI_Workshop::deactivateModule()
409 {
410   // remove internal displayer filter
411   displayer()->deactivateSelectionFilters(false);
412
413   disconnect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
414     myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
415   disconnect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
416     myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
417
418   XGUI_Displayer* aDisplayer = displayer();
419   QObjectPtrList aDisplayed = aDisplayer->displayedObjects();
420   aDisplayer->deactivateObjects(aDisplayed, true);
421   selectionActivate()->deactivateTrihedronInSelectionModes();
422
423 #ifdef BEFORE_TRIHEDRON_PATCH
424   //Handle(AIS_Trihedron) aTrihedron = Handle(AIS_Trihedron)::DownCast(aDisplayer->getTrihedron());
425   /// Trihedron problem: objects stayed in the viewer, should be removed manually
426   /// otherwise in SALOME happens crash by HideAll in the viewer
427   aContext->Remove(aTrihedron->Position(), true);
428   aContext->Remove(aTrihedron->Axis(), true);
429   aContext->Remove(aTrihedron->XAxis(), true);
430   aContext->Remove(aTrihedron->YAxis(), true);
431 #endif
432
433   myOperationMgr->deactivate();
434 }
435
436 //******************************************************
437 void XGUI_Workshop::initMenu()
438 {
439   myContextMenuMgr->createActions();
440
441 #ifdef HAVE_SALOME
442   // Create only Undo, Redo commands
443   QAction* aAction = salomeConnector()->addDesktopCommand("UNDO_CMD", tr("Undo"),
444                                                         tr("Undo last command"),
445                                                         QIcon(":pictures/undo.png"),
446                                                         QKeySequence::Undo, false,
447                                                         "MEN_DESK_EDIT");
448   QString aToolBarTitle = tr( "INF_DESK_TOOLBAR_STANDARD" );
449   salomeConnector()->addActionInToolbar( aAction,aToolBarTitle );
450
451   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onUndo()));
452   addHistoryMenu(aAction, SIGNAL(updateUndoHistory(const QList<ActionInfo>&)), SLOT(onUndo(int)));
453
454   aAction = salomeConnector()->addDesktopCommand("REDO_CMD", tr("Redo"), tr("Redo last command"),
455                                               QIcon(":pictures/redo.png"), QKeySequence::Redo,
456                                               false, "MEN_DESK_EDIT");
457   salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
458
459   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onRedo()));
460   addHistoryMenu(aAction, SIGNAL(updateRedoHistory(const QList<ActionInfo>&)), SLOT(onRedo(int)));
461
462   salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
463
464   //aAction = salomeConnector()->addDesktopCommand("AUTOCOMPUTE_CMD", tr("Auto rebuild"),
465   //                                            tr("Blocks immediate apply of modifications"),
466   //                                            QIcon(":pictures/autoapply.png"), QKeySequence(),
467   //                                            false, "MEN_DESK_EDIT");
468   //salomeConnector()->addActionInToolbar( aAction, aToolBarTitle );
469
470   //connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onAutoApply()));
471
472   salomeConnector()->addDesktopMenuSeparator("MEN_DESK_EDIT");
473
474
475   // Add commands to a file menu
476   // Import sub-menu
477   aAction = salomeConnector()->addDesktopCommand("OPEN_CMD", tr("Part set..."),
478                                               tr("Import native file"),
479                                               QIcon(), QKeySequence(),
480                                               false, "MEN_DESK_FILE", tr("Import"), 10, 10);
481   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onOpen()));
482
483   aAction = salomeConnector()->addDesktopCommand("IMPORT_PART_CMD", tr("Part..."),
484                                           tr("Import structure of a part"),
485                                           QIcon(), QKeySequence(),
486                                           false, "MEN_DESK_FILE", tr("Import"), 10, 10);
487   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onImportPart()));
488
489   aAction = salomeConnector()->addDesktopCommand("IMPORT_SHAPE_CMD", tr("From CAD format..."),
490     tr("Import shape from a CAD format file"),
491     ModuleBase_IconFactory::loadIcon("icons/Exchange/import.png"),
492     QKeySequence(), false, "MEN_DESK_FILE", tr("Import"), 10, 10);
493   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onImportShape()));
494
495   // Export sub-menu
496   aAction = salomeConnector()->addDesktopCommand("SAVEAS_CMD", tr("Part set..."),
497                                              tr("Export the current document into a native file"),
498                                               QIcon(), QKeySequence(),
499                                               false, "MEN_DESK_FILE", tr("Export"), 10, 11);
500   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onSaveAs()));
501
502   aAction = salomeConnector()->addDesktopCommand("EXPORT_PART_CMD", tr("Part..."),
503                                           tr("Export a part of the current document into a file"),
504                                           QIcon(), QKeySequence(),
505                                           false, "MEN_DESK_FILE", tr("Export"), 10, 11);
506   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onExportPart()));
507
508   aAction = salomeConnector()->addDesktopCommand("EXPORT_SHAPE_CMD", tr("To CAD format..."),
509     tr("Export shape to a CAD format file"),
510     ModuleBase_IconFactory::loadIcon("icons/Exchange/export.png"),
511     QKeySequence(), false, "MEN_DESK_FILE", tr("Export"), 10, 11);
512   connect(aAction, SIGNAL(triggered(bool)), this, SLOT(onExportShape()));
513
514 #else
515   // File commands group
516   AppElements_MenuGroupPanel* aGroup = myMainWindow->menuObject()->generalPage();
517
518   AppElements_Command* aCommand;
519
520   aCommand = aGroup->addFeature("SAVE_CMD", tr("Save"), tr("Save the document"),
521                                 QIcon(":pictures/save.png"), QKeySequence::Save);
522   aCommand->connectTo(this, SLOT(onSave()));
523   //aCommand->disable();
524
525   aCommand = aGroup->addFeature("SAVEAS_CMD", tr("Save as..."), tr("Save the document into a file"),
526                                 QIcon(":pictures/save.png"), QKeySequence());
527   aCommand->connectTo(this, SLOT(onSaveAs()));
528
529   QString aUndoId = "UNDO_CMD";
530   aCommand = aGroup->addFeature(aUndoId, tr("Undo"), tr("Undo last command"),
531                                 QIcon(":pictures/undo.png"), QKeySequence::Undo);
532   aCommand->connectTo(this, SLOT(onUndo()));
533   AppElements_Button* aUndoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aUndoId));
534   addHistoryMenu(aUndoButton,
535                  SIGNAL(updateUndoHistory(const QList<ActionInfo>&)),
536                  SLOT(onUndo(int)));
537
538   QString aRedoId = "REDO_CMD";
539   aCommand = aGroup->addFeature(aRedoId, tr("Redo"), tr("Redo last command"),
540                                 QIcon(":pictures/redo.png"), QKeySequence::Redo);
541   aCommand->connectTo(this, SLOT(onRedo()));
542   AppElements_Button* aRedoButton = qobject_cast<AppElements_Button*>(aGroup->widget(aRedoId));
543   addHistoryMenu(aRedoButton,
544                  SIGNAL(updateRedoHistory(const QList<ActionInfo>&)),
545                  SLOT(onRedo(int)));
546
547   aCommand = aGroup->addFeature("OPEN_CMD", tr("Open..."), tr("Open a new document"),
548                                 QIcon(":pictures/open.png"), QKeySequence::Open);
549   aCommand->connectTo(this, SLOT(onOpen()));
550
551
552   aCommand = aGroup->addFeature("AUTOCOMPUTE_CMD", tr("Auto rebuild"),
553                                 tr("Blocks immediate apply of modifications"),
554                                 QIcon(":pictures/autoapply_start.png"), QKeySequence());
555   aCommand->setChecked(ModelAPI_Session::get()->isAutoUpdateBlocked());
556   aCommand->connectTo(this, SLOT(onAutoApply()));
557
558   aCommand = aGroup->addFeature("PREF_CMD", tr("Preferences"), tr("Edit preferences"),
559                                 QIcon(":pictures/preferences.png"), QKeySequence::Preferences);
560   aCommand->connectTo(this, SLOT(onPreferences()));
561
562   aCommand = aGroup->addFeature("EXIT_CMD", tr("Exit"), tr("Exit application"),
563                                 QIcon(":pictures/close.png"), QKeySequence::Close);
564   aCommand->connectTo(this, SLOT(onExit()));
565 #endif
566 }
567
568 #ifndef HAVE_SALOME
569 //******************************************************
570 AppElements_Workbench* XGUI_Workshop::addWorkbench(const QString& theName)
571 {
572   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
573   return aMenuBar->addWorkbench(theName);
574 }
575 #endif
576
577 //******************************************************
578 QMainWindow* XGUI_Workshop::desktop() const
579 {
580 #ifdef HAVE_SALOME
581   return salomeConnector()->desktop();
582 #else
583   return myMainWindow;
584 #endif
585 }
586
587 //******************************************************
588 void XGUI_Workshop::onStartWaiting()
589 {
590   if (Events_LongOp::isPerformed()) {
591     QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
592   }
593 }
594
595 //******************************************************
596 void XGUI_Workshop::onAcceptActionClicked()
597 {
598   QAction* anAction = dynamic_cast<QAction*>(sender());
599   XGUI_OperationMgr* anOperationMgr = operationMgr();
600   if (anOperationMgr) {
601     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
602                                                     (anOperationMgr->currentOperation());
603     if (aFOperation) {
604       //if (errorMgr()->canProcessClick(anAction, aFOperation->feature()))
605       myOperationMgr->commitOperation();
606     }
607   }
608 }
609
610 //******************************************************
611 void XGUI_Workshop::onAcceptPlusActionClicked()
612 {
613   QAction* anAction = dynamic_cast<QAction*>(sender());
614   XGUI_OperationMgr* anOperationMgr = operationMgr();
615   if (anOperationMgr) {
616     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
617                                                     (anOperationMgr->currentOperation());
618     if (aFOperation) {
619       if (myOperationMgr->commitOperation())
620         module()->launchOperation(aFOperation->id(), false);
621     }
622   }
623 }
624
625 //******************************************************
626 void XGUI_Workshop::onPreviewActionClicked()
627 {
628   ModuleBase_IPropertyPanel* aPanel = propertyPanel();
629   if (aPanel) {
630     ModuleBase_ModelWidget* anActiveWidget = aPanel->activeWidget();
631     if (anActiveWidget && anActiveWidget->getValueState() == ModuleBase_ModelWidget::ModifiedInPP) {
632       anActiveWidget->storeValue();
633     }
634   }
635   std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
636                 new Events_Message(Events_Loop::eventByName(EVENT_PREVIEW_REQUESTED)));
637   Events_Loop::loop()->send(aMsg);
638 }
639
640
641 //******************************************************
642 void XGUI_Workshop::onHelpActionClicked()
643 {
644   XGUI_OperationMgr* anOperationMgr = operationMgr();
645   if (anOperationMgr) {
646     ModuleBase_Operation* aOperation = anOperationMgr->currentOperation();
647     if (aOperation) {
648       QString aHelpPage = aOperation->helpFileName();
649       if (!aHelpPage.isEmpty()) {
650         QString aDocDir;
651         const QChar aSep = QDir::separator();
652 //        QString platform;
653 //        SUIT_ResourceMgr* aResMgr = ModuleBase_Preferences::resourceMgr();
654 //#ifdef WIN32
655 //        platform = "winapplication";
656 //#else
657 //        platform = "application";
658 //#endif
659 //        QString aBrowserName = aResMgr->stringValue("ExternalBrowser", platform);
660
661 #ifdef HAVE_SALOME
662         QString aDir(getenv("SHAPER_ROOT_DIR"));
663         if (!aDir.isEmpty()) {
664           aDocDir = aDir + aSep + "share" + aSep + "doc" + aSep +
665             "salome" + aSep + "gui" + aSep + "SHAPER";
666         }
667 #else
668         QString aDir(getenv("CADBUILDER_ROOT_DIR"));
669         aDocDir = aDir + aSep + "doc" + aSep + "gui";
670 #endif
671         QString aFileName = aDocDir + aSep + aHelpPage;
672         if (QFile::exists(aFileName)) {
673           QUrl aUrl = QUrl::fromLocalFile(aFileName);
674           QDesktopServices::openUrl(aUrl);
675         }
676       }
677     }
678   }
679 }
680
681
682 //******************************************************
683 void XGUI_Workshop::deactivateActiveObject(const ObjectPtr& theObject, const bool theUpdateViewer)
684 {
685   if (!myModule->canActivateSelection(theObject)) {
686     if (selectionActivate()->isActive(theObject)) {
687       QObjectPtrList anObjects;
688       anObjects.append(theObject);
689       myDisplayer->deactivateObjects(anObjects, theUpdateViewer);
690     }
691   }
692 }
693
694 //******************************************************
695 bool XGUI_Workshop::isFeatureOfNested(const FeaturePtr& theFeature)
696 {
697   bool aHasNested = false;
698   std::string aFeatureKind = theFeature->getKind();
699 #ifdef HAVE_SALOME
700     XGUI_SalomeConnector* aSalomeConnector = salomeConnector();
701     if (aSalomeConnector->isFeatureOfNested(actionsMgr()->action(aFeatureKind.c_str())))
702       aHasNested = true;
703 #else
704     AppElements_MainMenu* aMenuBar = mainWindow()->menuObject();
705     AppElements_Command* aCommand = aMenuBar->feature(aFeatureKind.c_str());
706     if (aCommand && aCommand->button()->additionalButtonWidget())
707       aHasNested = true;
708 #endif
709   return aHasNested;
710 }
711
712 //******************************************************
713 void XGUI_Workshop::fillPropertyPanel(ModuleBase_Operation* theOperation)
714 {
715   ModuleBase_OperationFeature* aFOperation =
716     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
717   if (!aFOperation)
718     return;
719
720   myPropertyPanel->cleanContent();
721
722   QList<ModuleBase_ModelWidget*> aWidgets;
723   QString aXmlRepr = aFOperation->getDescription()->xmlRepresentation();
724   if (!module()->createWidgets(aFOperation->feature(), aXmlRepr, aWidgets)) {
725     ModuleBase_WidgetFactory aFactory(aXmlRepr.toStdString(), myModuleConnector);
726     aFactory.createWidget(myPropertyPanel->contentWidget());
727     aWidgets = aFactory.getModelWidgets();
728   }
729
730   // check compatibility of feature and widgets
731   FeaturePtr aFeature = aFOperation->feature();
732   std::string aFeatureKind = aFeature->getKind();
733   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
734     if (aWidget->usesAttribute()) {
735       if (!aWidget->attributeID().empty() && !aFeature->attribute(aWidget->attributeID()).get()) {
736         std::string anErrorMsg = "The feature '%1' has no attribute '%2' used by widget '%3'.";
737         Events_InfoMessage("XGUI_Workshop", anErrorMsg)
738           .arg(aFeatureKind).arg(aWidget->attributeID())
739           .arg(aWidget->metaObject()->className()).send();
740         myPropertyPanel->cleanContent();
741         return;
742       }
743     }
744   }
745   // for performance purpose, flush should be done after all controls are filled
746   bool isUpdateFlushed = false;
747   foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
748     bool isStoreValue = !aFOperation->isEditOperation() &&
749                         !aWidget->getDefaultValue().empty() &&
750                         !aWidget->isComputedDefault();
751     aWidget->setFeature(aFeature, isStoreValue, isUpdateFlushed);
752     if (!isStoreValue)
753       aWidget->restoreValue();
754     aWidget->enableFocusProcessing();
755   }
756   // update visible state of Preview button
757   std::shared_ptr<Config_FeatureMessage> aFeatureInfo;
758 #ifdef HAVE_SALOME
759   aFeatureInfo = mySalomeConnector->featureInfo(aFeatureKind.c_str());
760 #else
761   AppElements_MainMenu* aMenuBar = mainWindow()->menuObject();
762   AppElements_Command* aCommand = aMenuBar->feature(aFeatureKind.c_str());
763   if (aCommand)
764     aFeatureInfo = aCommand->featureMessage();
765 #endif
766   bool anIsAutoPreview = true;
767   if (aFeatureInfo.get()) {
768     anIsAutoPreview = aFeatureInfo->isAutoPreview();
769     theOperation->setHelpFileName(aFeatureInfo->helpFileName().c_str());
770   } else {
771     std::string aXmlCfg, aDescription;
772     module()->getXMLRepresentation(aFeatureKind, aXmlCfg, aDescription);
773     ModuleBase_WidgetFactory aFactory(aXmlCfg, moduleConnector());
774     anIsAutoPreview = aFactory.widgetAPI()->getBooleanAttribute(FEATURE_AUTO_PREVIEW, true);
775   }
776
777   if (!anIsAutoPreview) {
778     myPropertyPanel->findButton(PROP_PANEL_PREVIEW)->setVisible(true);
779     // send signal about preview should not be computed automatically, click on preview
780     // button should initiate it
781     std::shared_ptr<Events_Message> aMsg = std::shared_ptr<Events_Message>(
782                   new Events_Message(Events_Loop::eventByName(EVENT_PREVIEW_BLOCKED)));
783     Events_Loop::loop()->send(aMsg);
784   }
785   // if update happens after preview is blocked, it does nothing when blocked
786   // it improves performance for valid objects on feature start
787   ModuleBase_Tools::flushUpdated(aFeature);
788
789   myPropertyPanel->setModelWidgets(aWidgets);
790   aFOperation->setPropertyPanel(myPropertyPanel);
791
792   myModule->propertyPanelDefined(theOperation);
793
794 #ifndef DEBUG_FEATURE_NAME
795   myPropertyPanel->setWindowTitle(ModuleBase_Tools::translate("workshop",
796     theOperation->getDescription()->description().toStdString()));
797 #else
798   std::string aFeatureName = aFeature->name();
799   myPropertyPanel->setWindowTitle(QString("%1: %2")
800     .arg(translate(theOperation->getDescription()->description()))
801     .arg(translate(aFeatureName.c_str())));
802 #endif
803
804   myErrorMgr->setPropertyPanel(myPropertyPanel);
805   if (Config_PropManager::boolean("Windows", "use_hide_faces_panel")) {
806     theOperation->setHideFacesVisible(myFacesPanel->isVisible());
807     if (aFeatureInfo.get() && aFeatureInfo->isHideFacesPanel() && !myFacesPanel->isVisible())
808       myFacesPanel->show();
809   }
810   showPanel(myPropertyPanel);
811 }
812
813 //******************************************************
814 void XGUI_Workshop::connectToPropertyPanel(const bool isToConnect)
815 {
816   XGUI_PropertyPanel* aPropertyPanel = propertyPanel();
817   if (aPropertyPanel) {
818     const QList<ModuleBase_ModelWidget*>& aWidgets = aPropertyPanel->modelWidgets();
819     foreach (ModuleBase_ModelWidget* aWidget, aWidgets) {
820        myModule->connectToPropertyPanel(aWidget, isToConnect);
821        if (isToConnect) {
822         connect(aWidget, SIGNAL(valueStateChanged(int)), this, SLOT(onWidgetStateChanged(int)));
823         connect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
824         connect(aWidget, SIGNAL(objectUpdated()), this, SLOT(onWidgetObjectUpdated()));
825        }
826       else {
827         disconnect(aWidget, SIGNAL(valueStateChanged(int)), this, SLOT(onWidgetStateChanged(int)));
828         disconnect(aWidget, SIGNAL(valuesChanged()), this, SLOT(onValuesChanged()));
829         disconnect(aWidget, SIGNAL(objectUpdated()), this, SLOT(onWidgetObjectUpdated()));
830       }
831     }
832   }
833 }
834
835 //******************************************************
836 void XGUI_Workshop::onOperationResumed(ModuleBase_Operation* theOperation)
837 {
838   setGrantedFeatures(theOperation);
839
840   if (theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
841     fillPropertyPanel(theOperation);
842     connectToPropertyPanel(true);
843     ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
844       (theOperation);
845     if (aFOperation)
846       myPropertyPanel->updateApplyPlusButton(aFOperation->feature());
847     else
848       myPropertyPanel->updateApplyPlusButton(FeaturePtr());
849   }
850   updateCommandStatus();
851
852   myModule->operationResumed(theOperation);
853 }
854
855 //******************************************************
856 void XGUI_Workshop::onOperationStopped(ModuleBase_Operation* theOperation)
857 {
858   updateCommandStatus();
859
860   ModuleBase_OperationFeature* aFOperation = dynamic_cast<ModuleBase_OperationFeature*>
861                                                                         (theOperation);
862   if (!aFOperation)
863     return;
864
865   ModuleBase_ISelection* aSel = mySelector->selection();
866   QObjectPtrList aObj = aSel->selectedPresentations();
867   //!< No need for property panel
868   hidePanel(myPropertyPanel);
869   myPropertyPanel->cleanContent();
870
871   connectToPropertyPanel(false);
872   myModule->operationStopped(aFOperation);
873
874   // the deactivated objects of the current operation should be activated back.
875   // They were deactivated on operation start or an object redisplay
876   QObjectPtrList anObjects;
877   FeaturePtr aFeature = aFOperation->feature();
878   if (aFeature.get()) { // feature may be not created (plugin load fail)
879     if (myDisplayer->isVisible(aFeature) && !selectionActivate()->isActive(aFeature))
880       anObjects.append(aFeature);
881     std::list<ResultPtr> aResults;
882     ModelAPI_Tools::allResults(aFeature, aResults);
883     std::list<ResultPtr>::const_iterator aIt;
884     for (aIt = aResults.begin(); aIt != aResults.end(); ++aIt) {
885       ResultPtr anObject = *aIt;
886       if (myDisplayer->isVisible(anObject) && !selectionActivate()->isActive(anObject)) {
887         anObjects.append(anObject);
888       }
889     }
890   }
891   activateObjectsSelection(anObjects);
892
893   if (Config_PropManager::boolean("Windows", "use_hide_faces_panel")) {
894     if (!theOperation->isHideFacesVisible())
895       myFacesPanel->close();
896   }
897 }
898
899 //******************************************************
900 void XGUI_Workshop::onOperationCommitted(ModuleBase_Operation* theOperation)
901 {
902   myModule->operationCommitted(theOperation);
903 }
904
905 //******************************************************
906 void XGUI_Workshop::onOperationAborted(ModuleBase_Operation* theOperation)
907 {
908   myModule->operationAborted(theOperation);
909 }
910
911 //******************************************************
912 void XGUI_Workshop::setGrantedFeatures(ModuleBase_Operation* theOperation)
913 {
914   ModuleBase_OperationFeature* aFOperation =
915     dynamic_cast<ModuleBase_OperationFeature*>(theOperation);
916   if (!aFOperation)
917     return;
918
919   QStringList aGrantedIds;
920   if (isSalomeMode()) {
921     const std::shared_ptr<Config_FeatureMessage>& anInfo =
922                          mySalomeConnector->featureInfo(theOperation->id());
923     if (anInfo.get())
924       aGrantedIds = QString::fromStdString(anInfo->nestedFeatures())
925                                    .split(" ", QString::SkipEmptyParts);
926   }
927   else
928     aGrantedIds = myActionsMgr->nestedCommands(theOperation->id());
929
930   ModuleBase_IModule* aModule = module();
931   if (aModule)
932     aModule->grantedOperationIds(theOperation, aGrantedIds);
933
934   aFOperation->setGrantedOperationIds(aGrantedIds);
935 }
936
937 //******************************************************
938 void XGUI_Workshop::saveDocument(const QString& theName, std::list<std::string>& theFileNames)
939 {
940   QApplication::restoreOverrideCursor();
941   SessionPtr aMgr = ModelAPI_Session::get();
942
943   std::list<DocumentPtr> aDocList = aMgr->allOpenedDocuments();
944   std::list<DocumentPtr>::const_iterator aIt;
945   for (aIt = aDocList.cbegin(); aIt != aDocList.cend(); aIt++) {
946     std::list<bool> aState = myObjectBrowser->getStateForDoc(*aIt);
947     (*aIt)->storeNodesState(aState);
948   }
949
950   aMgr->save(theName.toLatin1().constData(), theFileNames);
951
952   QApplication::restoreOverrideCursor();
953 }
954
955 //******************************************************
956 bool XGUI_Workshop::abortAllOperations()
957 {
958   return myOperationMgr->abortAllOperations();
959 }
960
961 //******************************************************
962 void XGUI_Workshop::operationStarted(ModuleBase_Operation* theOperation)
963 {
964   setGrantedFeatures(theOperation);
965   if (!theOperation->getDescription()->hasXmlRepresentation()) {  //!< No need for property panel
966     updateCommandStatus();
967   }
968   else {
969     myModule->operationStarted(theOperation);
970   }
971 }
972
973 //******************************************************
974 void XGUI_Workshop::onOpen()
975 {
976   if(!abortAllOperations())
977     return;
978   //save current file before close if modified
979   SessionPtr aSession = ModelAPI_Session::get();
980   if (aSession->isModified()) {
981     int anAnswer = QMessageBox::question(
982         desktop(), tr("Save current file"),
983         tr("The document is modified, save before opening another?"),
984         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
985     if (anAnswer == QMessageBox::Save) {
986       onSave();
987     } else if (anAnswer == QMessageBox::Cancel) {
988       return;
989     }
990     myCurrentFile = QString();
991   }
992
993   //show file dialog, check if readable and open
994   qreal aRatio = ModuleBase_Tools::currentPixelRatio();
995   // If the ratio is > 1 (HD screen) then QT has a bug in
996   // displaying of system open file dialog (too small)
997   QString aFile = QFileDialog::getOpenFileName(desktop(), tr("Open file"), QString(), MyFilter,
998     Q_NULLPTR, ((aRatio > 1)? QFileDialog::DontUseNativeDialog : QFileDialog::Options()));
999   if (!aFile.isNull())
1000     openFile(aFile);
1001 }
1002
1003 //******************************************************
1004 void XGUI_Workshop::openFile(const QString& theDirectory)
1005 {
1006   myCurrentFile = theDirectory;
1007   if (myCurrentFile.isEmpty())
1008     return;
1009
1010   QFileInfo aFileInfo(myCurrentFile);
1011   if (!aFileInfo.exists() || !aFileInfo.isReadable()) {
1012     QMessageBox::critical(desktop(), tr("Warning"), tr("Unable to open the file."));
1013     myCurrentFile = QString();
1014     return;
1015   }
1016
1017   QApplication::setOverrideCursor(Qt::WaitCursor);
1018   module()->closeDocument();
1019   SessionPtr aSession = ModelAPI_Session::get();
1020   aSession->closeAll();
1021
1022   clearTemporaryDir();
1023   if (!XGUI_CompressFiles::uncompress(myCurrentFile, myTmpDir.path()))
1024     return;
1025
1026   aSession->load(myTmpDir.path().toLatin1().constData());
1027   myObjectBrowser->rebuildDataTree();
1028
1029   // Open first level of data tree
1030   DocumentPtr aRootDoc = aSession->moduleDocument();
1031   std::list<bool> aStates;
1032   aRootDoc->restoreNodesState(aStates);
1033   myObjectBrowser->setStateForDoc(aRootDoc, aStates);
1034
1035   updateCommandStatus();
1036 #ifndef HAVE_SALOME
1037   myMainWindow->setCurrentDir(myCurrentFile, true);
1038 #endif
1039
1040 #ifdef _DEBUG
1041   bool aNewPart = Config_PropManager::boolean("Plugins", "create_part_by_start");
1042   if (aNewPart) {
1043
1044     DocumentPtr aRootDoc = ModelAPI_Session::get()->moduleDocument();
1045     int aSize = aRootDoc->size(ModelAPI_ResultPart::group());
1046     if (aSize > 0 ) {
1047       ObjectPtr aObject = aRootDoc->object(ModelAPI_ResultPart::group(), 0);
1048       ResultPartPtr aPart = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
1049       if (aPart.get())
1050         aPart->activate();
1051     }
1052   }
1053 #endif
1054
1055   QApplication::restoreOverrideCursor();
1056 }
1057
1058 //******************************************************
1059 void XGUI_Workshop::onNew()
1060 {
1061   QApplication::setOverrideCursor(Qt::WaitCursor);
1062   if (objectBrowser() == 0) {
1063     createDockWidgets();
1064     mySelector->connectViewers();
1065   }
1066   myViewerProxy->connectToViewer();
1067   showObjectBrowser();
1068 #ifndef HAVE_SALOME
1069   myMainWindow->showPythonConsole();
1070   QMdiSubWindow* aWnd = myMainWindow->viewer()->createView();
1071   aWnd->showMaximized();
1072   updateCommandStatus();
1073   PyConsole_Console* aConsole = myMainWindow->pythonConsole();
1074   connect(aConsole, SIGNAL(scriptLoaded()), SLOT(updateCommandStatus()));
1075 #endif
1076   myContextMenuMgr->connectViewer();
1077   QApplication::restoreOverrideCursor();
1078 }
1079
1080 #ifndef HAVE_SALOME
1081 //******************************************************
1082 void XGUI_Workshop::onExit()
1083 {
1084   SessionPtr aMgr = ModelAPI_Session::get();
1085   if (aMgr->isModified()) {
1086     int anAnswer = QMessageBox::question(
1087         myMainWindow, tr("Save current file"), tr("The document is modified, save before exit?"),
1088         QMessageBox::Save | QMessageBox::Discard | QMessageBox::Cancel, QMessageBox::Cancel);
1089     if (anAnswer == QMessageBox::Save) {
1090       bool saved = onSave();
1091       if (!saved) {
1092         return;
1093       }
1094     } else if (anAnswer == QMessageBox::Cancel) {
1095       return;
1096     }
1097   }
1098   qApp->exit();
1099 }
1100
1101 //******************************************************
1102 void XGUI_Workshop::onPreferences()
1103 {
1104   ModuleBase_Prefs aModif;
1105   ModuleBase_Preferences::editPreferences(aModif);
1106   if (aModif.size() > 0) {
1107     QString aSection;
1108     foreach (ModuleBase_Pref aPref, aModif) {
1109       aSection = aPref.first;
1110       if (aSection == ModuleBase_Preferences::VIEWER_SECTION) {
1111         myMainWindow->viewer()->updateFromResources();
1112       } else if (aSection == ModuleBase_Preferences::MENU_SECTION) {
1113         myMainWindow->menuObject()->updateFromResources();
1114       }
1115     }
1116     std::vector<int> aColor;
1117     try {
1118       aColor = Config_PropManager::color("Visualization", "selection_color");
1119     }
1120     catch (...) {
1121     }
1122     if (aColor.size() == 3)
1123       displayer()->setSelectionColor(aColor);
1124
1125     displayer()->redisplayObjects();
1126   }
1127 }
1128 #endif
1129
1130 //******************************************************
1131 void XGUI_Workshop::onTrihedronVisibilityChanged(bool theState)
1132 {
1133   XGUI_Displayer* aDisplayer = displayer();
1134   if (aDisplayer) {
1135     aDisplayer->displayTrihedron(theState);
1136     aDisplayer->updateViewer();
1137   }
1138 }
1139
1140 //******************************************************
1141 bool XGUI_Workshop::onSave()
1142 {
1143   if(!myOperationMgr->abortAllOperations(XGUI_OperationMgr::XGUI_InformationMessage))
1144     return false;
1145   if (myCurrentFile.isEmpty()) {
1146     return onSaveAs();
1147   }
1148   SessionPtr aMgr = ModelAPI_Session::get();
1149   if (aMgr->isAutoUpdateBlocked())
1150     aMgr->blockAutoUpdate(false);
1151
1152   std::list<std::string> aFiles;
1153   // issue #2899: create a temporary directory, save and then remove it
1154 #ifdef HAVE_SALOME
1155   std::string aTmpDir = XGUI_Tools::getTmpDirByEnv("SALOME_TMP_DIR");
1156 #else
1157   std::string aTmpDir = XGUI_Tools::getTmpDirByEnv("");
1158 #endif
1159   saveDocument(QString(aTmpDir.c_str()), aFiles);
1160   bool aResult = XGUI_CompressFiles::compress(myCurrentFile, aFiles);
1161   XGUI_Tools::removeTemporaryFiles(aTmpDir, aFiles);
1162
1163   if (aResult) {
1164     updateCommandStatus();
1165 #ifndef HAVE_SALOME
1166     myMainWindow->setModifiedState(false);
1167 #endif
1168   }
1169   return aResult;
1170 }
1171
1172 //******************************************************
1173 bool XGUI_Workshop::onSaveAs()
1174 {
1175   if(!myOperationMgr->abortAllOperations(XGUI_OperationMgr::XGUI_InformationMessage))
1176     return false;
1177   qreal aRatio = ModuleBase_Tools::currentPixelRatio();
1178   myCurrentFile = QFileDialog::getSaveFileName(desktop(), tr("Select name to save file..."),
1179     QString(), MyFilter2,
1180     Q_NULLPTR, ((aRatio > 1) ? QFileDialog::DontUseNativeDialog : QFileDialog::Options()));
1181   if (!myCurrentFile.isNull()) {
1182     if (!myCurrentFile.endsWith(MyExtension)) {
1183       myCurrentFile += MyExtension;
1184     }
1185   }
1186   else
1187     return false;
1188 #ifndef HAVE_SALOME
1189     myMainWindow->setCurrentDir(myCurrentFile, false);
1190     myMainWindow->setModifiedState(false);
1191 #endif
1192   return onSave();
1193 }
1194
1195 //******************************************************
1196 void XGUI_Workshop::onUndo(int theTimes)
1197 {
1198   processUndoRedo(ActionUndo, theTimes);
1199   myObjectBrowser->updateAllIndexes(1);
1200 }
1201
1202 //******************************************************
1203 void XGUI_Workshop::onRedo(int theTimes)
1204 {
1205   processUndoRedo(ActionRedo, theTimes);
1206   myObjectBrowser->updateAllIndexes(1);
1207 }
1208
1209 //******************************************************
1210 void XGUI_Workshop::processUndoRedo(const ModuleBase_ActionType theActionType, int theTimes)
1211 {
1212   ModuleBase_ModelWidget* anActiveWidget = myOperationMgr->activeWidget();
1213   if (anActiveWidget) {
1214     ActionIntParamPtr aParam(new ModuleBase_ActionIntParameter(theTimes));
1215     if (anActiveWidget->processAction(theActionType, aParam))
1216       return;
1217   }
1218   // the viewer update should be blocked in order to avoid the features blinking. For the created
1219   // feature a results are created, the flush of the created signal caused the viewer redisplay for
1220   // each created result. After a redisplay signal is flushed. So, the viewer update is blocked
1221   // until redo of all possible objects happens
1222   bool isUpdateEnabled = myDisplayer->enableUpdateViewer(false);
1223
1224   SessionPtr aMgr = ModelAPI_Session::get();
1225   if (aMgr->isOperation()) {
1226     XGUI_OperationMgr* aOpMgr = operationMgr();
1227     /// this is important for nested operations
1228     /// when sketch operation is active, this condition is false and
1229     /// the sketch operation is not aborted
1230     if (aOpMgr->canStopOperation(aOpMgr->currentOperation()))
1231       aOpMgr->abortOperation(aOpMgr->currentOperation());
1232     else
1233     {
1234       myDisplayer->enableUpdateViewer(isUpdateEnabled);
1235       return;
1236     }
1237   }
1238   objectBrowser()->treeView()->setCurrentIndex(QModelIndex());
1239   std::list<std::string> anActionList = theActionType == ActionUndo ? aMgr->undoList()
1240     : aMgr->redoList();
1241   std::list<std::string>::const_iterator aIt = anActionList.cbegin();
1242   for (int i = 0; (i < theTimes) && (aIt != anActionList.cend()); ++i, ++aIt) {
1243     if (theActionType == ActionUndo)
1244       aMgr->undo();
1245     else
1246       aMgr->redo();
1247
1248     if (QString((*aIt).c_str()) == MOVE_TO_END_COMMAND ||
1249         QString((*aIt).c_str()) == MOVE_TO_END_SPLIT_COMMAND)
1250       myObjectBrowser->rebuildDataTree();
1251   }
1252   operationMgr()->updateApplyOfOperations();
1253   facesPanel()->reset(true);
1254   updateCommandStatus();
1255
1256   // unblock the viewer update functionality and make update on purpose
1257   myDisplayer->enableUpdateViewer(isUpdateEnabled);
1258   myDisplayer->updateViewer();
1259   // Clear messages in status bar from previous operations if exists
1260   setStatusBarMessage("");
1261 }
1262
1263 //******************************************************
1264 void XGUI_Workshop::onWidgetStateChanged(int thePreviousState)
1265 {
1266   ModuleBase_ModelWidget* anActiveWidget = myOperationMgr->activeWidget();
1267   //ModuleBase_Operation* anOperation = myOperationMgr->currentOperation();
1268   //if (anOperation) {
1269   //  ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1270   //  if (aPanel)
1271   //    anActiveWidget = aPanel->activeWidget();
1272   //}
1273   if (anActiveWidget)
1274     operationMgr()->onValidateOperation();
1275
1276   myModule->widgetStateChanged(thePreviousState);
1277 }
1278
1279 //******************************************************
1280 void XGUI_Workshop::onValuesChanged()
1281 {
1282   ModuleBase_ModelWidget* aSenderWidget = (ModuleBase_ModelWidget*)(sender());
1283   if (!aSenderWidget || aSenderWidget->canAcceptFocus())
1284     return;
1285
1286   ModuleBase_ModelWidget* anActiveWidget = 0;
1287   ModuleBase_Operation* anOperation = myOperationMgr->currentOperation();
1288   if (anOperation) {
1289     ModuleBase_IPropertyPanel* aPanel = anOperation->propertyPanel();
1290     if (aPanel)
1291       anActiveWidget = aPanel->activeWidget();
1292   }
1293   if (anActiveWidget) {
1294     ModuleBase_WidgetValidated* aWidgetValidated = dynamic_cast<ModuleBase_WidgetValidated*>
1295                                                                            (anActiveWidget);
1296     if (aWidgetValidated)
1297       aWidgetValidated->clearValidatedCash();
1298   }
1299 }
1300
1301 //******************************************************
1302 void XGUI_Workshop::onWidgetObjectUpdated()
1303 {
1304   operationMgr()->onValidateOperation();
1305   myDisplayer->updateViewer();
1306 }
1307
1308 //******************************************************
1309 void XGUI_Workshop::onImportPart()
1310 {
1311   if (abortAllOperations()) {
1312     ModuleBase_OperationFeature* anImportPartOp = dynamic_cast<ModuleBase_OperationFeature*>(
1313         module()->createOperation(ExchangePlugin_ImportPart::ID()));
1314     myPropertyPanel->updateApplyPlusButton(anImportPartOp->feature());
1315     operationMgr()->startOperation(anImportPartOp);
1316   }
1317 }
1318
1319 //******************************************************
1320 void XGUI_Workshop::onImportShape()
1321 {
1322   if (abortAllOperations()) {
1323     ModuleBase_OperationFeature* anImportOp = dynamic_cast<ModuleBase_OperationFeature*>(
1324         module()->createOperation(ExchangePlugin_Import::ID()));
1325     myPropertyPanel->updateApplyPlusButton(anImportOp->feature());
1326     operationMgr()->startOperation(anImportOp);
1327   }
1328 }
1329
1330 //******************************************************
1331 void XGUI_Workshop::onExportShape()
1332 {
1333   if (abortAllOperations()) {
1334     ModuleBase_OperationFeature* anExportOp = dynamic_cast<ModuleBase_OperationFeature*>(
1335         module()->createOperation(ExchangePlugin_ExportFeature::ID()));
1336     myPropertyPanel->updateApplyPlusButton(anExportOp->feature());
1337     operationMgr()->startOperation(anExportOp);
1338   }
1339 }
1340
1341 //******************************************************
1342 void XGUI_Workshop::onExportPart()
1343 {
1344   if (abortAllOperations()) {
1345     ModuleBase_OperationFeature* anExportPartOp = dynamic_cast<ModuleBase_OperationFeature*>(
1346         module()->createOperation(ExchangePlugin_ExportPart::ID()));
1347     myPropertyPanel->updateApplyPlusButton(anExportPartOp->feature());
1348     operationMgr()->startOperation(anExportPartOp);
1349   }
1350 }
1351
1352 //******************************************************
1353 ModuleBase_IModule* XGUI_Workshop::loadModule(const QString& theModule)
1354 {
1355   QString libName = QString::fromStdString(library(theModule.toStdString()));
1356   if (libName.isEmpty()) {
1357     qWarning(qPrintable(tr("Information about module \"%1\" doesn't exist.").arg(theModule)));
1358     return 0;
1359   }
1360
1361   QString err;
1362   CREATE_FUNC crtInst = 0;
1363
1364 #ifdef WIN32
1365   HINSTANCE modLib = ::LoadLibraryA(qPrintable(libName));
1366   if (!modLib) {
1367     LPVOID lpMsgBuf;
1368     ::FormatMessage(
1369         FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS,
1370         0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1371     QString aMsg((char*) &lpMsgBuf);
1372     err = QString("Failed to load  %1. %2").arg(libName).arg(aMsg);
1373     ::LocalFree(lpMsgBuf);
1374   } else {
1375     crtInst = (CREATE_FUNC) ::GetProcAddress(modLib, CREATE_MODULE);
1376     if (!crtInst) {
1377       LPVOID lpMsgBuf;
1378       ::FormatMessage(
1379           FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM
1380               | FORMAT_MESSAGE_IGNORE_INSERTS,
1381           0, ::GetLastError(), 0, (LPTSTR) & lpMsgBuf, 0, 0);
1382       QString aMsg((char*) &lpMsgBuf);
1383       err = QString("Failed to find  %1 function. %2").arg( CREATE_MODULE).arg(aMsg);
1384       ::LocalFree(lpMsgBuf);
1385     }
1386   }
1387 #else
1388   void* modLib = dlopen( libName.toLatin1(), RTLD_LAZY | RTLD_GLOBAL );
1389   if ( !modLib ) {
1390     err = QString( "Can not load library %1. %2" ).arg( libName ).arg( dlerror() );
1391   } else {
1392     crtInst = (CREATE_FUNC)dlsym( modLib, CREATE_MODULE );
1393     if ( !crtInst ) {
1394       err = QString( "Failed to find function %1. %2" ).arg( CREATE_MODULE ).arg( dlerror() );
1395     }
1396   }
1397 #endif
1398
1399   ModuleBase_IModule* aModule = crtInst ? crtInst(myModuleConnector) : 0;
1400
1401   if (!err.isEmpty()) {
1402     if (desktop()) {
1403       Events_InfoMessage("XGUI_Workshop", err.toStdString()).send();
1404     } else {
1405       qWarning(qPrintable(err));
1406     }
1407   }
1408   return aModule;
1409 }
1410
1411 //******************************************************
1412 bool XGUI_Workshop::createModule()
1413 {
1414   Config_ModuleReader aModuleReader;
1415   QString moduleName = QString::fromStdString(aModuleReader.getModuleName());
1416   myModule = loadModule(moduleName);
1417   if (!myModule)
1418     return false;
1419
1420   //connect(myDisplayer, SIGNAL(objectDisplayed(ObjectPtr, AISObjectPtr)),
1421   //  myModule, SLOT(onObjectDisplayed(ObjectPtr, AISObjectPtr)));
1422   //connect(myDisplayer, SIGNAL(beforeObjectErase(ObjectPtr, AISObjectPtr)),
1423   //  myModule, SLOT(onBeforeObjectErase(ObjectPtr, AISObjectPtr)));
1424
1425   myModule->createFeatures();
1426 #ifdef HAVE_SALOME
1427   salomeConnector()->createFeatureActions();
1428 #endif
1429   //myActionsMgr->update();
1430   return true;
1431 }
1432
1433 //******************************************************
1434 void XGUI_Workshop::updateCommandStatus()
1435 {
1436   QList<QAction*> aCommands;
1437 #ifdef HAVE_SALOME
1438     aCommands = salomeConnector()->commandList();
1439 #else
1440     AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
1441     foreach (AppElements_Command* aCmd, aMenuBar->features())
1442       aCommands.append(aCmd);
1443 #endif
1444   SessionPtr aMgr = ModelAPI_Session::get();
1445   if (aMgr->hasModuleDocument()) {
1446     foreach(QAction* aCmd, aCommands) {
1447       QString aId = aCmd->data().toString();
1448       if (aId == "UNDO_CMD") {
1449         bool isActionEnabled = false;
1450         // if ultimate is true -> using result of operation only, or using OR combination
1451         ModuleBase_ModelWidget* anActiveWidget = myOperationMgr->activeWidget();
1452         if (anActiveWidget && anActiveWidget->canProcessAction(ActionUndo, isActionEnabled))
1453           aCmd->setEnabled(isActionEnabled);
1454         else
1455           aCmd->setEnabled(myModule->canUndo());
1456       }
1457       else if (aId == "REDO_CMD") {
1458         bool isActionEnabled = false;
1459         // if ultimate is true -> using result of operation only, or using OR combination
1460         ModuleBase_ModelWidget* anActiveWidget = myOperationMgr->activeWidget();
1461         if (anActiveWidget && anActiveWidget->canProcessAction(ActionRedo, isActionEnabled))
1462           aCmd->setEnabled(isActionEnabled);
1463         else
1464           aCmd->setEnabled(myModule->canRedo());
1465       }
1466       else if (aId == "AUTOCOMPUTE_CMD") {
1467         aCmd->setIcon(aMgr->isAutoUpdateBlocked() ?
1468           QIcon(":pictures/autoapply_stop.png") :
1469           QIcon(":pictures/autoapply_start.png"));
1470       }
1471       else
1472         // Enable all commands
1473         aCmd->setEnabled(true);
1474     }
1475     updateHistory();
1476   } else {
1477     foreach(QAction* aCmd, aCommands) {
1478       QString aId = aCmd->data().toString();
1479       if (aId == "NEW_CMD")
1480         aCmd->setEnabled(true);
1481       else if (aId == "EXIT_CMD")
1482         aCmd->setEnabled(true);
1483       else
1484         aCmd->setEnabled(false);
1485     }
1486   }
1487   myActionsMgr->updateCommandsStatus();
1488   emit commandStatusUpdated();
1489 }
1490
1491 //******************************************************
1492 void XGUI_Workshop::updateHistory()
1493 {
1494   bool isActionEnabled = false;
1495   ModuleBase_ModelWidget* anActiveWidget = myOperationMgr->activeWidget();
1496   QList<ActionInfo> aUndoRes;
1497   QList<ActionInfo> aRedoRes;
1498   if (anActiveWidget && anActiveWidget->canProcessAction(ActionUndo, isActionEnabled)) {
1499     aUndoRes = anActiveWidget->actionsList(ActionUndo);
1500     aRedoRes = anActiveWidget->actionsList(ActionRedo);
1501   } else {
1502     std::list<std::string> aUndoList = ModelAPI_Session::get()->undoList();
1503     aUndoRes = processHistoryList(aUndoList);
1504
1505     std::list<std::string> aRedoList = ModelAPI_Session::get()->redoList();
1506     aRedoRes = processHistoryList(aRedoList);
1507   }
1508   emit updateUndoHistory(aUndoRes);
1509   emit updateRedoHistory(aRedoRes);
1510 }
1511
1512 //******************************************************
1513 QDockWidget* XGUI_Workshop::createObjectBrowser(QWidget* theParent)
1514 {
1515   QDockWidget* aObjDock = new QDockWidget(theParent);
1516   aObjDock->setAllowedAreas(Qt::LeftDockWidgetArea |
1517                             Qt::RightDockWidgetArea);
1518   aObjDock->setWindowTitle(tr("Object browser"));
1519   aObjDock->setStyleSheet(
1520       "::title { position: relative; padding-left: 5px; text-align: left center }");
1521   myObjectBrowser = new XGUI_ObjectsBrowser(aObjDock, this);
1522   myObjectBrowser->initialize(myModule->rootNode());
1523   myModule->customizeObjectBrowser(myObjectBrowser);
1524   aObjDock->setWidget(myObjectBrowser);
1525   aObjDock->setObjectName("Object browser");
1526
1527   connect(myObjectBrowser, SIGNAL(sizeChanged()), SLOT(onDockSizeChanged()));
1528
1529   myContextMenuMgr->connectObjectBrowser();
1530   return aObjDock;
1531 }
1532
1533 //******************************************************
1534 /*
1535  * Creates dock widgets, places them in corresponding area
1536  * and tabifies if necessary.
1537  */
1538 void XGUI_Workshop::createDockWidgets()
1539 {
1540   QMainWindow* aDesktop = desktop();
1541   QDockWidget* aObjDock = createObjectBrowser(aDesktop);
1542   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, aObjDock);
1543   myPropertyPanel = new XGUI_PropertyPanel(aDesktop, myOperationMgr);
1544   myActiveControlMgr->addSelector(new XGUI_PropertyPanelSelector(myPropertyPanel));
1545
1546   myPropertyPanel->setupActions(myActionsMgr);
1547   myPropertyPanel->setAllowedAreas(Qt::LeftDockWidgetArea |
1548                                    Qt::RightDockWidgetArea);
1549   aDesktop->addDockWidget(Qt::LeftDockWidgetArea, myPropertyPanel);
1550
1551   hidePanel(myPropertyPanel);  ///<! Invisible by default
1552
1553   myFacesPanel = new XGUI_FacesPanel(aDesktop, this);
1554   myActiveControlMgr->addSelector(new XGUI_FacesPanelSelector(myFacesPanel));
1555   myFacesPanel->setAllowedAreas(Qt::LeftDockWidgetArea |
1556                                 Qt::RightDockWidgetArea |
1557                                 Qt::BottomDockWidgetArea);
1558   connect(myFacesPanel, SIGNAL(closed()), myFacesPanel, SLOT(onClosed()));
1559
1560   myInspectionPanel = new XGUI_InspectionPanel(aDesktop, this);
1561   myInspectionPanel->setAllowedAreas(Qt::LeftDockWidgetArea |
1562     Qt::RightDockWidgetArea);
1563   aDesktop->addDockWidget(Qt::RightDockWidgetArea, myInspectionPanel);
1564
1565   myInspectionPanel->hide();
1566
1567   aDesktop->addDockWidget(
1568 #ifdef HAVE_SALOME
1569     Qt::RightDockWidgetArea,
1570 #else
1571     Qt::LeftDockWidgetArea,
1572 #endif
1573     myFacesPanel);
1574   hidePanel(myFacesPanel);  ///<! Invisible by default
1575
1576 #ifdef _DEBUG
1577   bool aShowOnTheRight = Config_PropManager::boolean("Plugins", "show_hide_faces");
1578   if (aShowOnTheRight) {
1579     aDesktop->addDockWidget(Qt::RightDockWidgetArea, myFacesPanel);
1580     showPanel(myFacesPanel);
1581   }
1582 #endif
1583   hideObjectBrowser();
1584
1585 #ifndef HAVE_SALOME
1586 #ifdef _DEBUG
1587   if (!aShowOnTheRight)
1588   {
1589 #endif // _DEBUG
1590   aDesktop->tabifyDockWidget(myFacesPanel, aObjDock);
1591 #ifdef _DEBUG
1592   }
1593 #endif // _DEBUG
1594
1595 #endif // HAVE_SALOME
1596
1597   aDesktop->tabifyDockWidget(aObjDock, myPropertyPanel);
1598   myPropertyPanel->installEventFilter(myOperationMgr);
1599
1600   QAction* aOkAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Accept);
1601   connect(aOkAct, SIGNAL(triggered()), this, SLOT(onAcceptActionClicked()));
1602
1603   QAction* aOkContAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::AcceptPlus);
1604   connect(aOkContAct, SIGNAL(triggered()), this, SLOT(onAcceptPlusActionClicked()));
1605
1606   QAction* aCancelAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Abort);
1607   connect(aCancelAct, SIGNAL(triggered()), myOperationMgr, SLOT(onAbortOperation()));
1608
1609   QAction* aPreviewAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Preview);
1610   connect(aPreviewAct, SIGNAL(triggered()), this, SLOT(onPreviewActionClicked()));
1611
1612   QAction* aHelpAct = myActionsMgr->operationStateAction(XGUI_ActionsMgr::Help);
1613   connect(aHelpAct, SIGNAL(triggered()), this, SLOT(onHelpActionClicked()));
1614
1615   connect(myPropertyPanel, SIGNAL(keyReleased(QObject*, QKeyEvent*)),
1616           myOperationMgr,  SLOT(onKeyReleased(QObject*, QKeyEvent*)));
1617   connect(myPropertyPanel, SIGNAL(enterClicked(QObject*)),
1618           myOperationMgr,  SLOT(onProcessEnter(QObject*)));
1619 }
1620
1621 //******************************************************
1622 void XGUI_Workshop::showPanel(QDockWidget* theDockWidget)
1623 {
1624   if (theDockWidget == myPropertyPanel) {
1625     QAction* aViewAct = myPropertyPanel->toggleViewAction();
1626     ///<! Restore ability to close panel from the window's menu
1627     aViewAct->setEnabled(true);
1628   }
1629   theDockWidget->show();
1630   theDockWidget->raise();
1631
1632   // The next code is necessary to made the property panel the active window
1633   // in order to operation manager could process key events of the panel.
1634   // otherwise they are ignored. It happens only if the same(activateWindow) is
1635   // not happened by property panel activation(e.g. resume operation of Sketch)
1636   //ModuleBase_Tools::setFocus(theDockWidget, "XGUI_Workshop::showPanel()");
1637 }
1638
1639 //******************************************************
1640 void XGUI_Workshop::hidePanel(QDockWidget* theDockWidget)
1641 {
1642   if (theDockWidget && theDockWidget == myPropertyPanel) {
1643     QAction* aViewAct = theDockWidget->toggleViewAction();
1644     ///<! Do not allow to show empty property panel
1645     aViewAct->setEnabled(false);
1646   }
1647   theDockWidget->hide();
1648
1649   // the property panel is active window of the desktop, when it is
1650   // hidden, it is undefined which window becomes active. By this reason
1651   // it is defined to perform the desktop as the active window.
1652   // in SALOME mode, work-stack made the PyConsole the active window,
1653   // set the focus on it. As a result, shortcuts of the application, like
1654   // are processed by this console. For example Undo actions.
1655   // It is possible that this code is to be moved to SHAPER package
1656   QMainWindow* aDesktop = desktop();
1657   ModuleBase_Tools::setFocus(aDesktop, "XGUI_Workshop::hidePanel()");
1658 }
1659
1660 //******************************************************
1661 void XGUI_Workshop::showObjectBrowser()
1662 {
1663   if (!isSalomeMode()) {
1664     myObjectBrowser->parentWidget()->show();
1665   }
1666 }
1667
1668 //******************************************************
1669 void XGUI_Workshop::hideObjectBrowser()
1670 {
1671   if (!isSalomeMode())
1672     myObjectBrowser->parentWidget()->hide();
1673 }
1674
1675 //******************************************************
1676 void XGUI_Workshop::salomeViewerSelectionChanged()
1677 {
1678   emit salomeViewerSelection();
1679 }
1680
1681 //**************************************************************
1682 ModuleBase_IViewer* XGUI_Workshop::salomeViewer() const
1683 {
1684   return mySalomeConnector->viewer();
1685 }
1686
1687 //**************************************************************
1688 void XGUI_Workshop::onContextMenuCommand(const QString& theId, bool isChecked)
1689 {
1690   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
1691   if (theId == "DELETE_CMD")
1692     deleteObjects();
1693   else if (theId == "CLEAN_HISTORY_CMD")
1694     cleanHistory();
1695   else if (theId == "MOVE_CMD" || theId == "MOVE_SPLIT_CMD")
1696     moveObjects(theId == "MOVE_SPLIT_CMD");
1697   else if (theId == "COLOR_CMD")
1698     changeColor(aObjects);
1699   else if (theId == "ISOLINES_CMD")
1700     changeIsoLines(aObjects);
1701   else if (theId == "DEFLECTION_CMD")
1702     changeDeflection(aObjects);
1703   else if (theId == "TRANSPARENCY_CMD")
1704     changeTransparency(aObjects);
1705   else if (theId == "SHOW_CMD") {
1706     showObjects(aObjects, true);
1707     mySelector->updateSelectionBy(ModuleBase_ISelection::Browser);
1708     updateCommandStatus();
1709   }
1710   else if (theId == "HIDE_CMD") {
1711     showObjects(aObjects, false);
1712     updateCommandStatus();
1713   }
1714   else if (theId == "SHOW_ONLY_CMD") {
1715     showOnlyObjects(aObjects);
1716     mySelector->updateSelectionBy(ModuleBase_ISelection::Browser);
1717     updateCommandStatus();
1718   }
1719   else if (theId == "SHADING_CMD")
1720     setDisplayMode(aObjects, XGUI_Displayer::Shading);
1721   else if (theId == "WIREFRAME_CMD")
1722     setDisplayMode(aObjects, XGUI_Displayer::Wireframe);
1723   else if (theId == "HIDEALL_CMD") {
1724     QObjectPtrList aList = myDisplayer->displayedObjects();
1725     foreach (ObjectPtr aObj, aList) {
1726       if (module()->canEraseObject(aObj))
1727         aObj->setDisplayed(false);
1728     }
1729     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
1730 #ifdef HAVE_SALOME
1731     //issue #2159 Hide all incomplete behavior
1732     viewer()->eraseAll();
1733 #endif
1734     updateCommandStatus();
1735     // Necessary for update icons in ObjectBrowser on Linux
1736     myObjectBrowser->updateAllIndexes();
1737   } else if (theId == "SELECT_VERTEX_CMD") {
1738     setViewerSelectionMode(TopAbs_VERTEX);
1739   } else if (theId == "SELECT_EDGE_CMD") {
1740     setViewerSelectionMode(TopAbs_EDGE);
1741   } else if (theId == "SELECT_FACE_CMD") {
1742     setViewerSelectionMode(TopAbs_FACE);
1743   } else if (theId == "INSERT_FOLDER_CMD") {
1744     insertFeatureFolder();
1745   } else if (theId == "ADD_TO_FOLDER_BEFORE_CMD") {
1746     insertToFolder(true);
1747   } else if (theId == "ADD_TO_FOLDER_AFTER_CMD") {
1748     insertToFolder(false);
1749   } else if (theId == "ADD_OUT_FOLDER_BEFORE_CMD") {
1750     moveOutFolder(true);
1751   } else if (theId == "ADD_OUT_FOLDER_AFTER_CMD") {
1752     moveOutFolder(false);
1753   } else if (theId == "SELECT_RESULT_CMD") {
1754     //setViewerSelectionMode(-1);
1755     //IMP: an attempt to use result selection with other selection modes
1756     setViewerSelectionMode(ModuleBase_ResultPrs::Sel_Result);
1757     setViewerSelectionMode(TopAbs_COMPSOLID);
1758   } else if (theId == "SHOW_RESULTS_CMD") {
1759     highlightResults(aObjects);
1760   } else if (theId == "SHOW_FEATURE_CMD") {
1761     highlightFeature(aObjects);
1762   } else if (theId == "SET_VIEW_NORMAL_CMD") {
1763     setNormalView();
1764   } else if (theId == "SET_VIEW_INVERTEDNORMAL_CMD") {
1765     setNormalView(true);
1766   }
1767 #ifdef TINSPECTOR
1768   else if (theId == "TINSPECTOR_VIEW") {
1769     Handle(CDF_Application) anApplication = CDF_Session::CurrentSession()->CurrentApplication();
1770     if (!anApplication.IsNull())
1771     {
1772       if (!MyTCommunicator)
1773       {
1774         MyTCommunicator = new TInspector_Communicator();
1775
1776         NCollection_List<Handle(Standard_Transient)> aParameters;
1777         aParameters.Append(anApplication);
1778         Handle(AIS_InteractiveContext) aContext = viewer()->AISContext();
1779         if (!aContext.IsNull())
1780           aParameters.Append(aContext);
1781
1782 #ifdef DEBUG_WITH_MESSAGE_REPORT
1783         Handle(Message_Report) aContextReport = aContext->GetReport();
1784         aContext->SetReportActive (Standard_True);
1785         aContextReport->SetLimit (1000);
1786         if (!aContextReport.IsNull())
1787           aParameters.Append(aContextReport);
1788 #endif
1789         MyVCallBack = new VInspector_CallBack();
1790         myDisplayer->setCallBack(MyVCallBack);
1791         #ifndef HAVE_SALOME
1792         AppElements_Viewer* aViewer = mainWindow()->viewer();
1793         if (aViewer)
1794           aViewer->setCallBack(MyVCallBack);
1795         #endif
1796         aParameters.Append(MyVCallBack);
1797
1798         MyTCommunicator->RegisterPlugin("TKDFBrowser");
1799         MyTCommunicator->RegisterPlugin("TKShapeView");
1800         MyTCommunicator->RegisterPlugin("TKVInspector");
1801 #ifdef DEBUG_WITH_MESSAGE_REPORT
1802         MyTCommunicator->RegisterPlugin("TKMessageView");
1803 #endif
1804         //MyTCommunicator->RegisterPlugin("SMBrowser"); // custom plugin to view ModelAPI
1805         //MyTCommunicator->RegisterPlugin("TKSMBrowser"); // custom plugin to view ModelAPI
1806
1807         MyTCommunicator->Init(aParameters);
1808         MyTCommunicator->Activate("TKSMBrowser"); // to have button in TInspector
1809 #ifndef DEBUG_WITH_MESSAGE_REPORT
1810         MyTCommunicator->Activate("TKVInspector"); // to have filled callback by model
1811 #endif
1812         MyTCommunicator->Activate("TKDFBrowser");
1813
1814 #ifdef DEBUG_WITH_MESSAGE_REPORT
1815         MyTCommunicator->Activate("TKMessageView"); // temporary
1816         MyTCommunicator->Activate("TKVInspector"); // to have filled callback by model
1817 #endif
1818       }
1819       MyTCommunicator->SetVisible(true);
1820     }
1821   }
1822 #endif
1823 }
1824
1825 //**************************************************************
1826 void XGUI_Workshop::setViewerSelectionMode(int theMode)
1827 {
1828   if (theMode == -1)
1829     myViewerSelMode.clear();
1830   else {
1831     if (myViewerSelMode.contains(theMode))
1832       myViewerSelMode.removeAll(theMode);
1833     else
1834       myViewerSelMode.append(theMode);
1835   }
1836   selectionActivate()->updateSelectionModes();
1837 }
1838
1839 //**************************************************************
1840 void XGUI_Workshop::activateObjectsSelection(const QObjectPtrList& theList)
1841 {
1842   QIntList aModes;
1843   module()->activeSelectionModes(aModes);
1844   if (aModes.isEmpty() && (myViewerSelMode.length() > 0))
1845     aModes.append(myViewerSelMode);
1846   selectionActivate()->activateObjects(aModes, theList);
1847 }
1848
1849 //**************************************************************
1850 bool XGUI_Workshop::prepareForDisplay(const std::set<ObjectPtr>& theObjects) const
1851 {
1852   if (facesPanel()->isEmpty())
1853     return true;
1854
1855   // generate container of objects taking into account sub elments of compsolid
1856   std::set<ObjectPtr> anAllProcessedObjects;
1857   for (std::set<ObjectPtr>::const_iterator anObjectsIt = theObjects.begin();
1858     anObjectsIt != theObjects.end(); anObjectsIt++) {
1859     ObjectPtr anObject = *anObjectsIt;
1860     ResultBodyPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anObject);
1861     if (aCompRes.get()) {
1862       std::list<ResultPtr> allRes;
1863       ModelAPI_Tools::allSubs(aCompRes, allRes);
1864       if (allRes.empty()) {
1865         anAllProcessedObjects.insert(anObject);
1866       } else {
1867         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
1868           ResultBodyPtr aBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(*aRes);
1869           if (aBody.get() && aBody->numberOfSubs() == 0)
1870             anAllProcessedObjects.insert(aBody);
1871         }
1872       }
1873     } else
1874       anAllProcessedObjects.insert(anObject);
1875   }
1876
1877   // find hidden objects in faces panel
1878   std::set<ObjectPtr> aHiddenObjects;
1879   QStringList aHiddenObjectNames;
1880   for (std::set<ObjectPtr>::const_iterator anObjectsIt = anAllProcessedObjects.begin();
1881        anObjectsIt != anAllProcessedObjects.end(); anObjectsIt++) {
1882     if (!facesPanel()->isObjectHiddenByPanel(*anObjectsIt))
1883       continue;
1884     aHiddenObjects.insert(*anObjectsIt);
1885     aHiddenObjectNames.append((*anObjectsIt)->data()->name().c_str());
1886   }
1887   if (aHiddenObjects.empty()) // in parameter objects there are no hidden objects in hide face
1888     return true;
1889
1890   int anAnswer = QMessageBox::question(
1891         desktop(), tr("Show object"),
1892         tr("'%1'\n are hidden by %2:\nRemove objects from the panel to be displayed?")
1893         .arg(aHiddenObjectNames.join(", ")).arg(facesPanel()->windowTitle()),
1894         QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
1895
1896   bool aToBeDisplayed = anAnswer == QMessageBox::Yes;
1897   if (aToBeDisplayed)
1898     facesPanel()->restoreObjects(aHiddenObjects);
1899
1900   return aToBeDisplayed;
1901 }
1902
1903 //**************************************************************
1904 void XGUI_Workshop::deleteObjects()
1905 {
1906   ModuleBase_IModule* aModule = module();
1907   // allow the module to delete objects, do nothing if it has succeed
1908   if (aModule->deleteObjects()) {
1909     updateCommandStatus();
1910     myDisplayer->updateViewer();
1911     return;
1912   }
1913
1914   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1915   if (anObjects.isEmpty())
1916     return;
1917
1918   if (!abortAllOperations())
1919     return;
1920
1921   bool hasResult = false;
1922   bool hasFeature = false;
1923   bool hasParameter = false;
1924   bool hasCompositeOwner = false;
1925   bool hasResultInHistory = false;
1926   bool hasFolder = false;
1927   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasCompositeOwner,
1928                                  hasResultInHistory, hasFolder);
1929   if (!(hasResult || hasFeature || hasParameter || hasFolder))
1930     return;
1931
1932   // Remove from the list non-deletable objects: infinite constructions which are not in history
1933   bool notDelete = true;
1934   QObjectPtrList::iterator aIt;
1935   for (aIt = anObjects.begin(); aIt != anObjects.end(); aIt++) {
1936     ObjectPtr aObj = (*aIt);
1937     ResultConstructionPtr aConstr = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aObj);
1938     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1939     if (aFeature) {
1940       notDelete = (!aFeature->isInHistory()) && aConstr->isInfinite();
1941       if (notDelete) {
1942         anObjects.removeAll(aObj);
1943         aIt--;
1944       }
1945     }
1946   }
1947   // delete objects
1948   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1949   std::set<FeaturePtr> aFeatures;
1950   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1951   ModelAPI_Tools::findAllReferences(aFeatures, aReferences);
1952
1953   std::set<FolderPtr> aFolders;
1954   ModuleBase_Tools::convertToFolders(anObjects, aFolders);
1955
1956   bool aDone = false;
1957   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text() + " %1";
1958   aDescription = aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1959   ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, module());
1960
1961   operationMgr()->startOperation(anOpAction);
1962
1963   std::set<FeaturePtr> aFeatureRefsToDelete;
1964   if (ModuleBase_Tools::askToDelete(aFeatures, aReferences, desktop(), aFeatureRefsToDelete)) {
1965     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1966     // It is necessary to clear selection in order to avoid selection changed event during
1967     // deletion and negative consequences connected with processing of already deleted items
1968     mySelector->clearSelection();
1969
1970     if (!aFeatureRefsToDelete.empty())
1971       aFeatures.insert(aFeatureRefsToDelete.begin(), aFeatureRefsToDelete.end());
1972     aDone = ModelAPI_Tools::removeFeatures(aFeatures, false);
1973   }
1974   if (aFolders.size() > 0) {
1975     std::set<FolderPtr>::const_iterator anIt = aFolders.begin(),
1976                                          aLast = aFolders.end();
1977     for (; anIt != aLast; anIt++) {
1978       FolderPtr aFolder = *anIt;
1979       if (aFolder.get()) {
1980         DocumentPtr aDoc = aFolder->document();
1981         aDoc->removeFolder(aFolder);
1982       }
1983     }
1984   }
1985   // remove results selected
1986   std::list<ResultPtr> aResults;
1987   for(QObjectPtrList::const_iterator anIt = anObjects.begin(); anIt != anObjects.end(); anIt++) {
1988     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(*anIt);
1989     if (aRes.get() && aRes->data()->isValid() && !aRes->data()->isDeleted() &&
1990         aRes->groupName() != ModelAPI_ResultGroup::group() && // don't remove groups and fields
1991         aRes->groupName() != ModelAPI_ResultField::group()) // because they are badly selected
1992       aResults.push_back(aRes);
1993   }
1994   if (!aResults.empty()) {
1995     ModelAPI_Tools::removeResults(aResults);
1996   }
1997
1998   if (aDone)
1999     operationMgr()->commitOperation();
2000   else
2001     operationMgr()->abortOperation(operationMgr()->currentOperation());
2002
2003   myDisplayer->updateViewer();
2004 }
2005
2006 //**************************************************************
2007 void addRefsToFeature(const FeaturePtr& theFeature,
2008                       const std::map<FeaturePtr, std::set<FeaturePtr> >& theMainList,
2009                       std::set<FeaturePtr>& theReferences)
2010 {
2011   //if (theReferences.find(theFeature) != theReferences.end())
2012   //  return;
2013   if (theMainList.find(theFeature) == theMainList.end())
2014     return; // this feature is not in the selection list, so exists without references to it
2015   std::set<FeaturePtr> aMainReferences = theMainList.at(theFeature);
2016
2017   std::set<FeaturePtr>::const_iterator anIt = aMainReferences.begin(),
2018                                        aLast = aMainReferences.end();
2019   for (; anIt != aLast; anIt++) {
2020     FeaturePtr aRefFeature = *anIt;
2021     if (theReferences.find(aRefFeature) == theReferences.end())
2022       theReferences.insert(aRefFeature);
2023     addRefsToFeature(aRefFeature, theMainList, theReferences);
2024   }
2025 }
2026
2027 //**************************************************************
2028 void XGUI_Workshop::cleanHistory()
2029 {
2030   if (!abortAllOperations())
2031     return;
2032
2033   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2034   std::set<FeaturePtr> aFeatures;
2035   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
2036
2037 #ifdef DEBUG_CLEAN_HISTORY
2038   QStringList anInfo;
2039   std::set<FeaturePtr>::const_iterator aFIt;
2040   for (aFIt = aFeatures.begin(); aFIt != aFeatures.end(); ++aFIt) {
2041     FeaturePtr aFeature = ModelAPI_Feature::feature(*aFIt);
2042     anInfo.append(aFeature->name().c_str());
2043   }
2044   QString anInfoStr = anInfo.join(";\t");
2045   qDebug(QString("cleanHistory for: [%1] - %2").
2046     arg(aFeatures.size()).arg(anInfoStr).toStdString().c_str());
2047 #endif
2048
2049   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
2050   ModelAPI_Tools::findAllReferences(aFeatures, aReferences, true, false);
2051   // find for each object whether all reference values are in the map as key, that means that there
2052   // is no other reference in the model to this object, so it might be removed by cleaning history
2053   // sk_1(ext_1, vertex_1) + (sk_3, bool_1) - can't be deleted, dependency to bool_1
2054   // ext_1(bool_1, sk_3)  - can't be deleted, dependency to bool_1
2055   // vertex_1()
2056   // sk_2(ext_2) + (bool_1)  - can't be deleted, dependency to bool_1
2057   // ext_2(bool_1)  - can't be deleted, dependency to bool_1
2058   // sk_3()
2059   // Information: bool_1 is not selected
2060   std::set<FeaturePtr> anUnusedObjects;
2061   std::map<FeaturePtr, std::set<FeaturePtr> >::const_iterator aMainIt = aReferences.begin(),
2062                                                               aMainLast = aReferences.end();
2063   for (; aMainIt != aMainLast; aMainIt++) {
2064     FeaturePtr aMainListFeature = aMainIt->first;
2065     std::set<FeaturePtr> aMainRefList = aMainIt->second;
2066     std::set<FeaturePtr>::const_iterator aRefIt = aMainRefList.begin(),
2067                                                   aRefLast = aMainRefList.end();
2068     bool aFeatureOutOfTheList = false;
2069     for (; aRefIt != aRefLast && !aFeatureOutOfTheList; aRefIt++) {
2070       FeaturePtr aRefFeature = *aRefIt;
2071       aFeatureOutOfTheList = aReferences.find(aRefFeature) == aReferences.end();
2072     }
2073     if (!aFeatureOutOfTheList)
2074       anUnusedObjects.insert(aMainListFeature);
2075   }
2076
2077 #ifdef DEBUG_CLEAN_HISTORY
2078   anInfo.clear();
2079   for (aFIt = anUnusedObjects.begin(); aFIt != anUnusedObjects.end(); ++aFIt) {
2080     FeaturePtr aFeature = *aFIt;
2081     anInfo.append(aFeature->name().c_str());
2082   }
2083   qDebug(QString("unused objects: [%1] - %2").
2084     arg(anInfo.size()).arg(anInfo.join(";\t")).toStdString().c_str());
2085 #endif
2086
2087   // warn about the references remove, break the delete operation if the user chose it
2088   if (!anUnusedObjects.empty()) {
2089     QStringList aNames;
2090     foreach (const FeaturePtr& aFeature, anUnusedObjects) {
2091       aNames.append(aFeature->name().c_str());
2092     }
2093     aNames.sort();
2094     QString anUnusedNames = aNames.join(", ");
2095
2096     QString anActionId = "CLEAN_HISTORY_CMD";
2097     QString aDescription = ModuleBase_Tools::translate("workshop",
2098         contextMenuMgr()->action(anActionId)->text().toStdString());
2099
2100     QMessageBox aMessageBox(desktop());
2101     aMessageBox.setWindowTitle(aDescription);
2102     aMessageBox.setIcon(QMessageBox::Warning);
2103     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
2104     aMessageBox.setDefaultButton(QMessageBox::No);
2105
2106     const char* aKeyStr = "Unused features are the following: "
2107                           "%1.\nThese features will be deleted.\nWould you like to continue?";
2108     QString aText = QString(tr(aKeyStr).arg(anUnusedNames));
2109     aMessageBox.setText(aText);
2110     if (aMessageBox.exec() == QMessageBox::No)
2111       return;
2112
2113     // 1. start operation
2114     aDescription += "by deleting of " +
2115       aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
2116     ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, module());
2117     operationMgr()->startOperation(anOpAction);
2118
2119     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
2120     // It is necessary to clear selection in order to avoid selection changed event during
2121     // deletion and negative consequences connected with processing of already deleted items
2122     mySelector->clearSelection();
2123
2124     std::set<FeaturePtr> anIgnoredFeatures;
2125     if (ModelAPI_Tools::removeFeatures(anUnusedObjects, true)) {
2126       operationMgr()->commitOperation();
2127     }
2128     else {
2129       operationMgr()->abortOperation(operationMgr()->currentOperation());
2130     }
2131   }
2132   else {
2133     QString anActionId = "CLEAN_HISTORY_CMD";
2134     QString aDescription = contextMenuMgr()->action(anActionId)->text();
2135
2136     QMessageBox aMessageBox(desktop());
2137     aMessageBox.setWindowTitle(aDescription);
2138     aMessageBox.setIcon(QMessageBox::Warning);
2139     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
2140     aMessageBox.setDefaultButton(QMessageBox::No);
2141
2142     QString aText;
2143     aMessageBox.setStandardButtons(QMessageBox::Ok);
2144     aMessageBox.setDefaultButton(QMessageBox::Ok);
2145
2146     aText = QString(tr("All features are relevant, there is nothing to be deleted"));
2147     aMessageBox.setText(aText);
2148
2149     if (aMessageBox.exec() == QMessageBox::No)
2150       return;
2151   }
2152 }
2153
2154 //**************************************************************
2155 bool compareFeature(const FeaturePtr& theF1, const FeaturePtr& theF2) {
2156   DocumentPtr aDoc = theF1->document();
2157   return aDoc->index(theF1) < aDoc->index(theF2);
2158 }
2159 void XGUI_Workshop::moveObjects(const bool theSplit)
2160 {
2161   if (!abortAllOperations())
2162     return;
2163
2164   SessionPtr aMgr = ModelAPI_Session::get();
2165
2166   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2167   // It is necessary to clear selection in order to avoid selection changed event during
2168   // moving and negative consequences connected with processing of already moved items
2169   mySelector->clearSelection();
2170   // check whether the object can be moved. There should not be parts which are not loaded
2171   std::set<FeaturePtr> aFeatures;
2172   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
2173   if (!XGUI_Tools::canRemoveOrRename(desktop(), aFeatures))
2174     return;
2175
2176   QString anActionId = theSplit ? "MOVE_CMD" : "MOVE_SPLIT_CMD";
2177   QString aDescription = contextMenuMgr()->action(anActionId)->text();
2178   aMgr->startOperation(aDescription.toStdString());
2179
2180   // Sort features by index in document
2181   std::list<FeaturePtr> aFList(aFeatures.begin(), aFeatures.end());
2182   aFList.sort(compareFeature);
2183
2184   DocumentPtr anActiveDocument = aMgr->activeDocument();
2185   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
2186   std::list<FeaturePtr>::const_iterator anIt = aFList.begin(), aLast = aFList.end();
2187   for (; anIt != aLast; anIt++) {
2188     FeaturePtr aFeature = *anIt;
2189     if (!aFeature.get() || !myModule->canApplyAction(aFeature, anActionId))
2190       continue;
2191
2192     anActiveDocument->moveFeature(aFeature, aCurrentFeature, theSplit);
2193     aCurrentFeature = anActiveDocument->currentFeature(true);
2194   }
2195   aMgr->finishOperation();
2196   updateCommandStatus();
2197   myViewerProxy->update();
2198 }
2199
2200 //**************************************************************
2201 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theObjects)
2202 {
2203   std::set<FeaturePtr> aFeatures;
2204   ModuleBase_Tools::convertToFeatures(theObjects, aFeatures);
2205
2206   return ModelAPI_Tools::removeFeaturesAndReferences(aFeatures);
2207 }
2208
2209 //******************************************************
2210 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
2211 {
2212   bool isFoundResultType = false;
2213   foreach(ObjectPtr anObj, theObjects)
2214   {
2215     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2216     if (aResult.get() == NULL)
2217       continue;
2218
2219     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
2220     if (isFoundResultType)
2221       break;
2222   }
2223   return isFoundResultType;
2224 }
2225
2226 //**************************************************************
2227 // Returns the list of all features for theDocument and all features of
2228 // all nested parts.
2229 std::list<FeaturePtr> allFeatures(const DocumentPtr& theDocument)
2230 {
2231   std::list<FeaturePtr> aResultList;
2232   std::list<FeaturePtr> anAllFeatures = theDocument->allFeatures();
2233   foreach (const FeaturePtr& aFeature, anAllFeatures) {
2234     // The order of appending features of the part and the part itself is important
2235
2236     // Append features from a part feature
2237     std::list<ResultPtr> aResults;
2238     ModelAPI_Tools::allResults(aFeature, aResults);
2239     foreach (const ResultPtr& aResult, aResults) {
2240       ResultPartPtr aResultPart =
2241           std::dynamic_pointer_cast<ModelAPI_ResultPart>(aResult);
2242       if (aResultPart.get() && aResultPart->partDoc().get()) {
2243         // Recursion
2244         std::list<FeaturePtr> anAllFeatures = allFeatures(aResultPart->partDoc());
2245         aResultList.insert(aResultList.end(), anAllFeatures.begin(), anAllFeatures.end());
2246       }
2247     }
2248
2249     aResultList.push_back(aFeature);
2250   }
2251   return aResultList;
2252 }
2253
2254 //**************************************************************
2255 // Returns the list of features placed between theObject and the current feature
2256 // in the same document. Excludes theObject, includes the current feature.
2257 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
2258 {
2259   std::list<FeaturePtr> aResult;
2260   DocumentPtr aDocument = theObject->document();
2261   std::list<FeaturePtr> anAllFeatures = allFeatures(aDocument);
2262   // find the object iterator
2263   std::list<FeaturePtr>::iterator aObjectIt =
2264     std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
2265   if (aObjectIt == anAllFeatures.end())
2266     return aResult;
2267   // find the current feature iterator
2268   std::list<FeaturePtr>::iterator aCurrentIt =
2269     std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
2270   if (aCurrentIt == anAllFeatures.end())
2271     return aResult;
2272   // check the right order
2273   if (std::distance(aObjectIt, anAllFeatures.end()) <=
2274       std::distance(aCurrentIt, anAllFeatures.end()))
2275     return aResult;
2276   // exclude the object
2277   std::advance(aObjectIt, 1);
2278   // include the current feature
2279   std::advance(aCurrentIt, 1);
2280   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
2281 }
2282
2283 //******************************************************
2284 bool XGUI_Workshop::canMoveFeature()
2285 {
2286   QString anActionId = "MOVE_CMD";
2287
2288   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2289   QObjectPtrList aValidatedObjects;
2290   foreach (ObjectPtr aObject, aObjects) {
2291     if (!myModule->canApplyAction(aObject, anActionId))
2292       continue;
2293     // To be moved feature should be in active document
2294     if (aObject->document() != ModelAPI_Session::get()->activeDocument())
2295       continue;
2296     aValidatedObjects.append(aObject);
2297   }
2298   if (aValidatedObjects.size() != aObjects.size())
2299     aObjects = aValidatedObjects;
2300
2301   bool aCanMove = !aObjects.empty();
2302
2303   QObjectPtrList::const_iterator anIt = aObjects.begin(), aLast = aObjects.end();
2304   for (; anIt != aLast && aCanMove; anIt++) {
2305     ObjectPtr aObject = *anIt;
2306     if (!aObject.get() || !aObject->data().get() || !aObject->data()->isValid()) {
2307       aCanMove = false;
2308       break;
2309     }
2310     FeaturePtr aFeat = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
2311     // only groups can be moved to the end for now (#2451)
2312     if (aFeat.get() && aFeat->getKind() != "Group") {
2313       aCanMove = false;
2314       break;
2315     }
2316
2317     // 1. Get features placed between selected and current in the document
2318     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
2319     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
2320     if (aFeaturesBetween.empty())
2321       aCanMove = false;
2322     else {
2323       std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
2324       // 2. Get all reference features to the selected object in the document
2325       std::set<FeaturePtr> aRefFeatures;
2326       ModuleBase_Tools::refsToFeatureInFeatureDocument(aObject, aRefFeatures);
2327
2328       if (aRefFeatures.empty())
2329         continue;
2330       else {
2331         // 3. Find any placed features in all reference features
2332         std::set<FeaturePtr> aIntersectionFeatures;
2333         std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
2334                               aPlacedFeatures.begin(), aPlacedFeatures.end(),
2335                               std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
2336         // 4. Return false if any reference feature is placed before current feature
2337         if (!aIntersectionFeatures.empty())
2338           aCanMove = false;
2339       }
2340     }
2341   }
2342   return aCanMove;
2343 }
2344
2345 //**************************************************************
2346 bool XGUI_Workshop::canBeShaded(const ObjectPtr& theObject) const
2347 {
2348   bool aCanBeShaded = myDisplayer->canBeShaded(theObject);
2349   if (!aCanBeShaded) {
2350     ResultBodyPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObject);
2351     if (aCompRes.get() != NULL) { // change colors for all sub-solids
2352       std::list<ResultPtr> allRes;
2353       ModelAPI_Tools::allSubs(aCompRes, allRes);
2354       std::list<ResultPtr>::iterator aRes = allRes.begin();
2355       for(; aRes != allRes.end() && !aCanBeShaded; aRes++) {
2356         aCanBeShaded = myDisplayer->canBeShaded(*aRes);
2357       }
2358     }
2359   }
2360   return aCanBeShaded;
2361 }
2362
2363 //**************************************************************
2364 bool XGUI_Workshop::canChangeProperty(const QString& theActionName) const
2365 {
2366   if (theActionName == "COLOR_CMD" ||
2367       theActionName == "DEFLECTION_CMD" ||
2368       theActionName == "TRANSPARENCY_CMD") {
2369     QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2370
2371     std::set<std::string> aTypes;
2372     aTypes.insert(ModelAPI_ResultGroup::group());
2373     aTypes.insert(ModelAPI_ResultConstruction::group());
2374     aTypes.insert(ModelAPI_ResultBody::group());
2375     aTypes.insert(ModelAPI_ResultPart::group());
2376
2377     return hasResults(aObjects, aTypes);
2378   }
2379   return false;
2380 }
2381
2382
2383 //**************************************************************
2384 void getDefaultColor(ObjectPtr theObject, const bool isEmptyColorValid,
2385   std::vector<int>& theColor)
2386 {
2387   theColor.clear();
2388   // get default color from the preferences manager for the given result
2389   if (theColor.empty()) {
2390     std::string aSection, aName, aDefault;
2391     theObject->colorConfigInfo(aSection, aName, aDefault);
2392     if (!aSection.empty() && !aName.empty()) {
2393       theColor = Config_PropManager::color(aSection, aName);
2394     }
2395   }
2396   if (!isEmptyColorValid && theColor.empty()) {
2397     // all AIS objects, where the color is not set, are in black.
2398     // The color should be defined in XML or set in the attribute
2399     theColor = Config_PropManager::color("Visualization", "object_default_color");
2400     Events_InfoMessage("XGUI_CustomPrs",
2401       "A default color is not defined in the preferences for this kind of result").send();
2402   }
2403 }
2404
2405 //**************************************************************
2406 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
2407 {
2408
2409   AttributeIntArrayPtr aColorAttr;
2410   // 1. find the current color of the object. This is a color of AIS presentation
2411   // The objects are iterated until a first valid color is found
2412   std::vector<int> aColor;
2413   foreach(ObjectPtr anObject, theObjects) {
2414     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2415     if (aResult.get()) {
2416       ModelAPI_Tools::getColor(aResult, aColor);
2417       if (aColor.empty())
2418         getDefaultColor(aResult, false, aColor);
2419     }
2420     else {
2421       // TODO: remove the obtaining a color from the AIS object
2422       // this does not happen never because:
2423       // 1. The color can be changed only on results
2424       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2425       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2426       if (anAISObj.get()) {
2427         aColor.resize(3);
2428         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
2429       }
2430     }
2431     if (!aColor.empty())
2432       break;
2433   }
2434   if (aColor.size() != 3)
2435     return;
2436
2437   if (!abortAllOperations())
2438   return;
2439   // 2. show the dialog to change the value
2440   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(desktop());
2441   aDlg->setColor(aColor);
2442   aDlg->move(QCursor::pos());
2443   bool isDone = aDlg->exec() == QDialog::Accepted;
2444   if (!isDone)
2445     return;
2446
2447   bool isRandomColor = aDlg->isRandomColor();
2448
2449   // 3. abort the previous operation and start a new one
2450   SessionPtr aMgr = ModelAPI_Session::get();
2451   QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
2452   aMgr->startOperation(aDescription.toStdString());
2453
2454   // 4. set the value to all results
2455   std::vector<int> aColorResult = aDlg->getColor();
2456   foreach(ObjectPtr anObj, theObjects) {
2457     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2458     if (aResult.get() != NULL) {
2459       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2460       if (aBodyResult.get() != NULL) { // change colors for all sub-solids
2461         std::list<ResultPtr> allRes;
2462         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2463         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2464           ModelAPI_Tools::setColor(*aRes, !isRandomColor ? aColorResult : aDlg->getRandomColor());
2465         }
2466       }
2467       ModelAPI_Tools::setColor(aResult, !isRandomColor ? aColorResult : aDlg->getRandomColor());
2468     }
2469   }
2470   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2471   aMgr->finishOperation();
2472   updateCommandStatus();
2473   myViewerProxy->update();
2474 }
2475
2476 //**************************************************************
2477 void setTransparency(double theTransparency, const QObjectPtrList& theObjects)
2478 {
2479   foreach(ObjectPtr anObj, theObjects) {
2480     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2481     if (aResult.get() != NULL) {
2482       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2483       if (aBodyResult.get() != NULL) { // change property for all sub-solids
2484         std::list<ResultPtr> allRes;
2485         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2486         std::list<ResultPtr>::iterator aRes;
2487         for(aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2488           ModelAPI_Tools::setTransparency(*aRes, theTransparency);
2489         }
2490       }
2491       ModelAPI_Tools::setTransparency(aResult, theTransparency);
2492     }
2493   }
2494 }
2495
2496 //**************************************************************
2497 double getDefaultDeflection(const ObjectPtr& theObject)
2498 {
2499   double aDeflection = -1;
2500   ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(theObject);
2501   if (aResult.get()) {
2502     bool isConstruction = false;
2503
2504     std::string aResultGroup = aResult->groupName();
2505     if (aResultGroup == ModelAPI_ResultConstruction::group())
2506       isConstruction = true;
2507     else if (aResultGroup == ModelAPI_ResultBody::group()) {
2508       GeomShapePtr aGeomShape = aResult->shape();
2509       if (aGeomShape.get()) {
2510         // if the shape could not be exploded on faces, it contains only wires, edges, and vertices
2511         // correction of deviation for them should not influence to the application performance
2512         GeomAPI_ShapeExplorer anExp(aGeomShape, GeomAPI_Shape::FACE);
2513         isConstruction = !anExp.more();
2514       }
2515     }
2516     if (isConstruction)
2517       aDeflection = Config_PropManager::real("Visualization", "construction_deflection");
2518     else
2519       aDeflection = Config_PropManager::real("Visualization", "body_deflection");
2520   }
2521   return aDeflection;
2522 }
2523
2524 //**************************************************************
2525 void XGUI_Workshop::changeDeflection(const QObjectPtrList& theObjects)
2526 {
2527   AttributeDoublePtr aDoubleAttr;
2528   // 1. find the current property of the object. This is a property of AIS presentation
2529   // The objects are iterated until a first valid property is found
2530   double aDeflection = -1;
2531   foreach(ObjectPtr anObject, theObjects) {
2532     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2533     if (aResult.get()) {
2534       aDeflection = ModelAPI_Tools::getDeflection(aResult);
2535       if (aDeflection < 0)
2536         aDeflection = getDefaultDeflection(aResult);
2537     }
2538     else {
2539       // TODO: remove the obtaining a property from the AIS object
2540       // this does not happen never because:
2541       // 1. The property can be changed only on results
2542       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2543       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2544       if (anAISObj.get()) {
2545         aDeflection = anAISObj->getDeflection();
2546       }
2547     }
2548     if (aDeflection > 0)
2549       break;
2550   }
2551   if (aDeflection < 0)
2552     return;
2553
2554   if (!abortAllOperations())
2555   return;
2556   // 2. show the dialog to change the value
2557   XGUI_DeflectionDialog* aDlg = new XGUI_DeflectionDialog(desktop());
2558   aDlg->setDeflection(aDeflection);
2559   aDlg->move(QCursor::pos());
2560   bool isDone = aDlg->exec() == QDialog::Accepted;
2561   if (!isDone)
2562     return;
2563
2564   // 3. abort the previous operation and start a new one
2565   SessionPtr aMgr = ModelAPI_Session::get();
2566   QString aDescription = contextMenuMgr()->action("DEFLECTION_CMD")->text();
2567   aMgr->startOperation(aDescription.toStdString());
2568
2569   // 4. set the value to all results
2570   aDeflection = aDlg->getDeflection();
2571   foreach(ObjectPtr anObj, theObjects) {
2572     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2573     if (aResult.get() != NULL) {
2574       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2575       if (aBodyResult.get() != NULL) { // change property for all sub-solids
2576         std::list<ResultPtr> allRes;
2577         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2578         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2579           ModelAPI_Tools::setDeflection(*aRes, aDeflection);
2580         }
2581       }
2582       ModelAPI_Tools::setDeflection(aResult, aDeflection);
2583     }
2584   }
2585   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2586   aMgr->finishOperation();
2587   updateCommandStatus();
2588 }
2589
2590 //**************************************************************
2591 double getDefaultTransparency(const ResultPtr& theResult)
2592 {
2593   return Config_PropManager::integer("Visualization", "shaper_default_transparency") / 100.;
2594 }
2595
2596 //**************************************************************
2597 void XGUI_Workshop::changeTransparency(const QObjectPtrList& theObjects)
2598 {
2599   AttributeDoublePtr aDoubleAttr;
2600   // 1. find the current property of the object. This is a property of AIS presentation
2601   // The objects are iterated until a first valid property is found
2602   double aCurrentValue = -1;
2603   foreach(ObjectPtr anObject, theObjects) {
2604     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2605     if (aResult.get()) {
2606       aCurrentValue = ModelAPI_Tools::getTransparency(aResult);
2607       if (aCurrentValue < 0)
2608         aCurrentValue = getDefaultTransparency(aResult);
2609     }
2610     if (aCurrentValue > 0)
2611       break;
2612   }
2613   if (aCurrentValue < 0)
2614     return;
2615
2616   if (!abortAllOperations())
2617     return;
2618
2619   // 2. show the dialog to change the value
2620   XGUI_PropertyDialog* aDlg = new XGUI_PropertyDialog(desktop());
2621   aDlg->setWindowTitle(tr("Transparency"));
2622   XGUI_TransparencyWidget* aTransparencyWidget = new XGUI_TransparencyWidget(aDlg);
2623   connect(aTransparencyWidget, SIGNAL(transparencyValueChanged()),
2624           this, SLOT(onTransparencyValueChanged()));
2625   aDlg->setContent(aTransparencyWidget);
2626   aTransparencyWidget->setValue(aCurrentValue);
2627
2628   // 3. abort the previous operation and start a new one
2629   SessionPtr aMgr = ModelAPI_Session::get();
2630   QString aDescription = contextMenuMgr()->action("TRANSPARENCY_CMD")->text();
2631   aMgr->startOperation(aDescription.toStdString());
2632
2633   if (aDlg->exec() == QDialog::Accepted) {
2634     // 4. set the value to all results
2635     aCurrentValue = aTransparencyWidget->getValue();
2636     setTransparency(aCurrentValue, theObjects);
2637     aMgr->finishOperation();
2638   } else {
2639     aMgr->abortOperation();
2640     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2641   }
2642
2643   updateCommandStatus();
2644 }
2645
2646 //**************************************************************
2647 void XGUI_Workshop::onTransparencyValueChanged()
2648 {
2649   XGUI_TransparencyWidget* aTransparencyWidget = (XGUI_TransparencyWidget*)sender();
2650   if (!aTransparencyWidget)
2651     return;
2652
2653   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2654   setTransparency(aTransparencyWidget->getValue(), anObjects);
2655   static const Events_ID kRedisplayEvent =
2656     Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
2657   Events_Loop::loop()->flush(kRedisplayEvent);
2658
2659   myViewerProxy->update();
2660 }
2661
2662
2663 //******************************************************
2664 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
2665 {
2666   if (isVisible) {
2667     std::set<ObjectPtr> anObjects;
2668     foreach (ObjectPtr aObj, theList) {
2669       anObjects.insert(aObj);
2670     }
2671     if (!prepareForDisplay(anObjects))
2672       return;
2673   }
2674
2675   foreach (ObjectPtr aObj, theList) {
2676     aObj->setDisplayed(isVisible);
2677   }
2678   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2679   myObjectBrowser->updateAllIndexes();
2680
2681   updateColorScaleVisibility();
2682   displayer()->updateViewer();
2683 }
2684
2685 //**************************************************************
2686 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
2687 {
2688   QObjectPtrList aSrcList = theList;
2689   // Hide all displayed objects
2690   QObjectPtrList aList = myDisplayer->displayedObjects();
2691   foreach (ObjectPtr aObj, aList) {
2692     if ((!aSrcList.contains(aObj)) && (module()->canEraseObject(aObj)))
2693       aObj->setDisplayed(false);
2694     else
2695       aSrcList.removeAll(aObj);
2696   }
2697   //Do not use eraseAll if you didn't send Redisplay event:
2698   //all objects are erased from viewer, but considered as displayed in displayer
2699   // Problem in bug 2218
2700   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2701 #ifdef HAVE_SALOME
2702     //issue #2159 Hide all incomplete behavior
2703     viewer()->eraseAll();
2704 #endif
2705
2706   std::set<ObjectPtr> anObjects;
2707   foreach (ObjectPtr aObj, aSrcList) {
2708     anObjects.insert(aObj);
2709   }
2710
2711   if (!prepareForDisplay(anObjects))
2712     return;
2713
2714   // Show only objects from the list
2715   foreach (ObjectPtr aObj, aSrcList) {
2716     aObj->setDisplayed(true);
2717   }
2718   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2719
2720   // Necessary for update icons in ObjectBrowser on Linux
2721   myObjectBrowser->updateAllIndexes();
2722   updateColorScaleVisibility();
2723   displayer()->updateViewer();
2724 }
2725
2726
2727 //**************************************************************
2728 void XGUI_Workshop::updateColorScaleVisibility()
2729 {
2730   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2731   viewer()->setColorScaleShown(false);
2732   if (aObjects.size() == 1) {
2733     FieldStepPtr aStep =
2734       std::dynamic_pointer_cast<ModelAPI_ResultField::ModelAPI_FieldStep>(aObjects.first());
2735     if (aStep.get() && myDisplayer->isVisible(aStep)) {
2736       AISObjectPtr aAisPtr = myDisplayer->getAISObject(aStep);
2737       Handle(AIS_InteractiveObject) aIO = aAisPtr->impl<Handle(AIS_InteractiveObject)>();
2738       ModuleBase_IStepPrs* aPrs = dynamic_cast<ModuleBase_IStepPrs*>(aIO.get());
2739       if (aPrs) {
2740         ModelAPI_AttributeTables::ValueType aType = aPrs->dataType();
2741         if ((aType == ModelAPI_AttributeTables::DOUBLE) ||
2742           (aType == ModelAPI_AttributeTables::INTEGER) ||
2743           (aType == ModelAPI_AttributeTables::BOOLEAN)) {
2744           myViewerProxy->setupColorScale();
2745           if (aType == ModelAPI_AttributeTables::BOOLEAN) {
2746             myViewerProxy->setColorScaleIntervals(2);
2747             myViewerProxy->setColorScaleRange(0., 1.);
2748           }
2749           else {
2750             double aMin, aMax;
2751             aPrs->dataRange(aMin, aMax);
2752             myViewerProxy->setColorScaleRange(aMin, aMax);
2753           }
2754           myViewerProxy->setColorScaleTitle(aStep->name().c_str());
2755           myViewerProxy->setColorScaleShown(true);
2756         }
2757       }
2758     }
2759   }
2760 }
2761
2762
2763 //**************************************************************
2764 void XGUI_Workshop::setNormalView(bool toInvert)
2765 {
2766   QList<ModuleBase_ViewerPrsPtr> aPrsList =
2767     mySelector->selection()->getSelected(ModuleBase_ISelection::Viewer);
2768   GeomShapePtr aPlanarFace;
2769   foreach(ModuleBase_ViewerPrsPtr aPrs, aPrsList) {
2770     GeomShapePtr aShape = aPrs->shape();
2771     if (aShape.get() && aShape->isPlanar()) {
2772       aPlanarFace = aShape;
2773       break;
2774     }
2775   }
2776   if (aPlanarFace.get()) {
2777     GeomFacePtr aFace(new GeomAPI_Face(aPlanarFace));
2778     GeomPlanePtr aPlane = aFace->getPlane();
2779     GeomDirPtr aNormal = aPlane->direction();
2780     if (toInvert)
2781       aNormal->reverse();
2782     GeomPointPtr aPos = aPlane->location();
2783
2784     double aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
2785     aFace->computeSize(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
2786
2787     Handle(V3d_View) aView = myViewerProxy->activeView();
2788     double aScale = aView->Scale();
2789     aView->SetAt(aPos->x(), aPos->y(), aPos->z());
2790     aView->SetProj(aNormal->x(), aNormal->y(), aNormal->z());
2791     Bnd_Box aBox;
2792     aBox.Update(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
2793     aView->FitAll(aBox);
2794   }
2795 }
2796
2797 //**************************************************************
2798 void XGUI_Workshop::registerValidators() const
2799 {
2800   SessionPtr aMgr = ModelAPI_Session::get();
2801   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
2802 }
2803
2804 //**************************************************************
2805 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
2806 {
2807   if (!theDoc)
2808     return;
2809   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
2810   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
2811 }
2812
2813 //**************************************************************
2814 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
2815 {
2816   for (int i = 0; i < theDoc->size(theGroup); i++)
2817     theDoc->object(theGroup, i)->setDisplayed(true);
2818     //displayObject(theDoc->object(theGroup, i));
2819   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2820 }
2821
2822 //**************************************************************
2823 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
2824 {
2825   foreach(ObjectPtr anObj, theList) {
2826     myDisplayer->setDisplayMode(anObj, (XGUI_Displayer::DisplayMode)theMode, false);
2827
2828     ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anObj);
2829     if (aBodyResult.get() != NULL) { // change display mode for all sub-solids
2830       std::list<ResultPtr> allRes;
2831       ModelAPI_Tools::allSubs(aBodyResult, allRes);
2832       for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2833         myDisplayer->setDisplayMode(*aRes, (XGUI_Displayer::DisplayMode)theMode, false);
2834       }
2835     }
2836   }
2837   if (theList.size() > 0)
2838     myDisplayer->updateViewer();
2839 }
2840
2841 //**************************************************************
2842 void XGUI_Workshop::closeDocument()
2843 {
2844   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
2845   while (anOperation) {
2846     anOperation->abort();
2847     anOperation = operationMgr()->currentOperation();
2848   }
2849   //myDisplayer->closeLocalContexts();
2850   myDisplayer->eraseAll();
2851   objectBrowser()->clearContent();
2852
2853   module()->closeDocument();
2854   // we need to clear viewer (with created filters) to do not have problems in 2nd SALOME study
2855   module()->clearViewer();
2856
2857
2858   // data model need not process the document's signals about objects modifications as
2859   // the document is closed
2860   //bool isBlocked = objectBrowser()->dataModel()->blockEventsProcessing(true);
2861
2862   SessionPtr aMgr = ModelAPI_Session::get();
2863   aMgr->closeAll();
2864
2865   //objectBrowser()->dataModel()->blockEventsProcessing(isBlocked);
2866 }
2867
2868 //******************************************************
2869 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
2870 {
2871   XGUI_HistoryMenu* aMenu = NULL;
2872   if (isSalomeMode()) {
2873     QAction* anAction = qobject_cast<QAction*>(theObject);
2874     if (!anAction)
2875       return;
2876     aMenu = new XGUI_HistoryMenu(anAction);
2877   } else {
2878     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
2879     aMenu = new XGUI_HistoryMenu(aButton);
2880   }
2881   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
2882   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
2883 }
2884
2885 //******************************************************
2886 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
2887 {
2888   QList<ActionInfo> aResult;
2889   std::list<std::string>::const_iterator it = theList.cbegin();
2890   for (; it != theList.cend(); it++) {
2891     QString anId = QString::fromStdString(*it);
2892     bool isEditing = anId.endsWith(ModuleBase_OperationFeature::EditSuffix());
2893     if (isEditing) {
2894       anId.chop(ModuleBase_OperationFeature::EditSuffix().size());
2895     }
2896     ActionInfo anInfo;
2897     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
2898     if (aContextMenuAct) {
2899       anInfo.initFrom(aContextMenuAct);
2900     } else {
2901       anInfo = myActionsMgr->actionInfoById(anId);
2902     }
2903     if (isEditing) {
2904       anInfo.text = anInfo.text.prepend("Modify ");
2905     }
2906     aResult << anInfo;
2907   }
2908   return aResult;
2909 }
2910
2911 //******************************************************
2912 void XGUI_Workshop::setStatusBarMessage(const QString& theMessage)
2913 {
2914 #ifdef HAVE_SALOME
2915   salomeConnector()->putInfo(theMessage, -1);
2916 #else
2917   myMainWindow->putInfo(theMessage, -1);
2918 #endif
2919 }
2920
2921 #ifdef HAVE_SALOME
2922 //******************************************************
2923 void XGUI_Workshop::synchronizeViewer()
2924 {
2925   SessionPtr aMgr = ModelAPI_Session::get();
2926   QList<DocumentPtr> aDocs;
2927   aDocs.append(aMgr->activeDocument());
2928   aDocs.append(aMgr->moduleDocument());
2929
2930   foreach(DocumentPtr aDoc, aDocs) {
2931     synchronizeGroupInViewer(aDoc, false);
2932   }
2933 }
2934
2935 //******************************************************
2936 void XGUI_Workshop::synchronizeGroupInViewer(const DocumentPtr& theDoc,
2937                                              bool theUpdateViewer)
2938 {
2939   FeaturePtr aFeature;
2940   ResultPtr aRes;
2941   int aSize = theDoc->numInternalFeatures();
2942   for (int i = 0; i < aSize; i++) {
2943     aFeature = theDoc->internalFeature(i);
2944     if (!aFeature.get())
2945       continue;
2946     const std::list<ResultPtr>& aResults = aFeature->results();
2947     std::list<ResultPtr>::const_iterator aIt;
2948     aFeature->setDisplayed(false);
2949     for (aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
2950       aRes = (*aIt);
2951       if (aRes->isDisplayed() && !aRes->isConcealed()) {
2952         // Hide the presentation with an empty shape. But isDisplayed state of the object should not
2953         // be changed to the object becomes visible when the shape becomes not empty
2954         if (!aRes->shape().get() || aRes->shape()->isNull())
2955           continue;
2956         ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aRes);
2957         if (aResBody.get())
2958           synchronizeResultTree(aResBody, false);
2959         else {
2960           if (aRes->isInHistory()) {
2961             if (aRes->isDisplayed())
2962               myDisplayer->display(aRes, false);
2963             else
2964               myDisplayer->erase(aRes, false);
2965           }
2966           else
2967             aRes->setDisplayed(false);
2968         }
2969       }
2970     }
2971   }
2972   if (theUpdateViewer)
2973     myDisplayer->updateViewer();
2974 }
2975
2976 void XGUI_Workshop::synchronizeResultTree(const ResultBodyPtr& theRes, bool theUpdateViewer)
2977 {
2978   if (theRes->numberOfSubs() > 0)
2979     for (int i = 0; i < theRes->numberOfSubs(); i++) {
2980       ResultBodyPtr aRes = theRes->subResult(i);
2981       if (aRes.get())
2982         synchronizeResultTree(aRes, theUpdateViewer);
2983     }
2984   else {
2985     if (theRes->isDisplayed())
2986       myDisplayer->display(theRes, theUpdateViewer);
2987     else
2988       myDisplayer->erase(theRes, theUpdateViewer);
2989   }
2990 }
2991 #endif
2992
2993 //******************************************************
2994 void XGUI_Workshop::highlightResults(const QObjectPtrList& theObjects)
2995 {
2996   FeaturePtr aFeature;
2997   QObjectPtrList aSelList = theObjects;
2998   QObjectPtrList aNewSel;
2999   bool aHasHidden = false;
3000   foreach(ObjectPtr aObj, theObjects) {
3001     aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
3002     if (aFeature.get()) {
3003       std::list<ResultPtr> aResults;
3004       ModelAPI_Tools::allResults(aFeature, aResults);
3005       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
3006       for(aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
3007         aHasHidden |= (*aIt)->isConcealed();
3008         aSelList.append(*aIt);
3009         aNewSel.append(*aIt);
3010       }
3011     }
3012   }
3013   if (aSelList.count() > theObjects.count()) {
3014     // if something was found
3015     objectBrowser()->setObjectsSelected(aSelList);
3016     objectBrowser()->ensureVisible(aNewSel.first());
3017   }
3018   if (aHasHidden)
3019     QMessageBox::information(desktop(), tr("Find results"),
3020                              tr("Results not found"), QMessageBox::Ok);
3021 }
3022
3023 //******************************************************
3024 void XGUI_Workshop::highlightFeature(const QObjectPtrList& theObjects)
3025 {
3026   ResultPtr aResult;
3027   QObjectPtrList aSelList = theObjects;
3028   QObjectPtrList aNewSel;
3029   FeaturePtr aFeature;
3030   foreach(ObjectPtr aObj, theObjects) {
3031     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
3032     if (aResult.get()) {
3033       aFeature = ModelAPI_Feature::feature(aResult);
3034       if (aFeature.get()) {
3035         aSelList.append(aFeature);
3036         aNewSel.append(aFeature);
3037       }
3038     }
3039   }
3040   if (aSelList.count() > theObjects.count()) {
3041     // if something was found
3042     objectBrowser()->setObjectsSelected(aSelList);
3043     objectBrowser()->ensureVisible(aNewSel.first());
3044   }
3045 }
3046
3047 void XGUI_Workshop::insertFeatureFolder()
3048 {
3049   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
3050   if (aObjects.isEmpty())
3051     return;
3052   ObjectPtr aObj = aObjects.first();
3053   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
3054   if (aFeature.get() == NULL)
3055     return;
3056   SessionPtr aMgr = ModelAPI_Session::get();
3057   DocumentPtr aDoc = aMgr->activeDocument();
3058
3059   QString aDescription = contextMenuMgr()->action("INSERT_FOLDER_CMD")->text();
3060
3061   aMgr->startOperation(aDescription.toStdString());
3062   aDoc->addFolder(aFeature);
3063   aMgr->finishOperation();
3064
3065   updateCommandStatus();
3066 }
3067
3068
3069 void XGUI_Workshop::insertToFolder(bool isBefore)
3070 {
3071   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
3072   if (aFeatures.empty())
3073     return;
3074
3075   SessionPtr aMgr = ModelAPI_Session::get();
3076   DocumentPtr aDoc = aMgr->activeDocument();
3077
3078   FolderPtr aFolder = isBefore? aDoc->findFolderAbove(aFeatures):
3079                                 aDoc->findFolderBelow(aFeatures);
3080   if (!aFolder.get())
3081     return;
3082
3083   QString aDescription = contextMenuMgr()->action(
3084     isBefore ? "ADD_TO_FOLDER_BEFORE_CMD" : "ADD_TO_FOLDER_AFTER_CMD")->text();
3085
3086   QMap<ObjectPtr, bool> aStates = myObjectBrowser->getFoldersState(aDoc);
3087
3088   aMgr->startOperation(aDescription.toStdString());
3089   aDoc->moveToFolder(aFeatures, aFolder);
3090   aMgr->finishOperation();
3091
3092   myObjectBrowser->setFoldersState(aStates);
3093
3094   updateCommandStatus();
3095 }
3096
3097 void XGUI_Workshop::moveOutFolder(bool isBefore)
3098 {
3099   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
3100   if (aFeatures.empty())
3101     return;
3102
3103   SessionPtr aMgr = ModelAPI_Session::get();
3104   DocumentPtr aDoc = aMgr->activeDocument();
3105
3106   QString aDescription = contextMenuMgr()->action(
3107     isBefore ? "ADD_OUT_FOLDER_BEFORE_CMD" : "ADD_OUT_FOLDER_AFTER_CMD")->text();
3108
3109   QMap<ObjectPtr, bool> aStates = myObjectBrowser->getFoldersState(aDoc);
3110
3111   aMgr->startOperation(aDescription.toStdString());
3112   aDoc->removeFromFolder(aFeatures, isBefore);
3113   aMgr->finishOperation();
3114
3115   myObjectBrowser->setFoldersState(aStates);
3116
3117   updateCommandStatus();
3118 }
3119
3120 void XGUI_Workshop::onAutoApply()
3121 {
3122   SessionPtr aMgr = ModelAPI_Session::get();
3123   bool isBlocked = aMgr->isAutoUpdateBlocked();
3124   aMgr->blockAutoUpdate(!isBlocked);
3125 }
3126
3127 void XGUI_Workshop::updateAutoComputeState()
3128 {
3129   SessionPtr aMgr = ModelAPI_Session::get();
3130   bool isComputeBlocked = aMgr->isAutoUpdateBlocked();
3131 #ifdef HAVE_SALOME
3132 //  QAction* aUpdateCmd;
3133 //  QList<QAction*> aCommands = mySalomeConnector->commandList();
3134 //  foreach(QAction* aCmd, aCommands) {
3135 //    if (aCmd->data().toString() == "AUTOCOMPUTE_CMD") {
3136 //      aUpdateCmd = aCmd;
3137 //      break;
3138 //    }
3139 //  }
3140 //  aUpdateCmd->setIcon(isComputeBlocked? QIcon(":pictures/autoapply_stop.png") :
3141 //    QIcon(":pictures/autoapply_start.png"));
3142 #else
3143   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
3144   AppElements_Command* aUpdateCmd = aMenuBar->feature("AUTOCOMPUTE_CMD");
3145   aUpdateCmd->button()->setIcon(isComputeBlocked? QIcon(":pictures/autoapply_stop.png") :
3146     QIcon(":pictures/autoapply_start.png"));
3147 #endif
3148 }
3149
3150
3151 void XGUI_Workshop::clearTemporaryDir()
3152 {
3153   QDir aDir(myTmpDir.path());
3154   if (!aDir.isEmpty()) {
3155     QStringList aEntries;
3156     aDir.entryList(aEntries);
3157     foreach(QString aFile, aEntries) {
3158       aDir.remove(aFile);
3159     }
3160   }
3161 }
3162
3163
3164 void XGUI_Workshop::onDockSizeChanged()
3165 {
3166   QDockWidget* aDockWgt = dynamic_cast<QDockWidget*>(myObjectBrowser->parentWidget());
3167   int aObWidth = aDockWgt->size().width();
3168   if (myPropertyPanel->width() != aObWidth) {
3169     QList<QDockWidget*> aWgtList;
3170     aWgtList << myPropertyPanel << aDockWgt;
3171     QList<int> aSizeList;
3172     aSizeList << aObWidth << aObWidth;
3173     desktop()->resizeDocks(aWgtList, aSizeList, Qt::Horizontal);
3174     disconnect(myObjectBrowser, SIGNAL(sizeChanged()), this, SLOT(onDockSizeChanged()));
3175   }
3176 }
3177
3178 void XGUI_Workshop::deactivateCurrentSelector()
3179 {
3180   myActiveControlMgr->deactivateSelector(myActiveControlMgr->activeSelector());
3181 }
3182
3183 void XGUI_Workshop::changeIsoLines(const QObjectPtrList& theObjects)
3184 {
3185   if (theObjects.isEmpty())
3186     return;
3187
3188   std::vector<int> aValues;
3189   if (theObjects.size() == 1) {
3190     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(theObjects.first());
3191     if (aRes.get())
3192       ModelAPI_Tools::getIsoLines(aRes, aValues);
3193     else
3194       return;
3195   }
3196   if (aValues.size() == 0) {
3197     aValues.push_back(1);
3198     aValues.push_back(1);
3199   }
3200
3201   if (!abortAllOperations())
3202     return;
3203
3204   QDialog aDlg;
3205   aDlg.setWindowTitle(tr("Number of Iso-lines"));
3206   QFormLayout* aLayout = new QFormLayout(&aDlg);
3207
3208   QSpinBox* aUNb = new QSpinBox(&aDlg);
3209   aUNb->setValue(aValues[0]);
3210   aLayout->addRow("U:", aUNb);
3211
3212   QSpinBox* aVNb = new QSpinBox(&aDlg);
3213   aVNb->setValue(aValues[1]);
3214   aLayout->addRow("V:", aVNb);
3215
3216   QDialogButtonBox* aButtons =
3217     new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel, Qt::Horizontal, &aDlg);
3218   connect(aButtons, SIGNAL(accepted()), &aDlg, SLOT(accept()));
3219   connect(aButtons, SIGNAL(rejected()), &aDlg, SLOT(reject()));
3220   aLayout->addRow(aButtons);
3221
3222   if (aDlg.exec() == QDialog::Accepted) {
3223     SessionPtr aMgr = ModelAPI_Session::get();
3224     QString aDescription = contextMenuMgr()->action("ISOLINES_CMD")->text();
3225     aMgr->startOperation(aDescription.toStdString());
3226
3227     aValues[0] = aUNb->value();
3228     aValues[1] = aVNb->value();
3229     ResultPtr aRes;
3230     foreach(ObjectPtr aObj, theObjects) {
3231       aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
3232       if (aRes.get()) {
3233         ModelAPI_Tools::setIsoLines(aRes, aValues);
3234       }
3235     }
3236     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
3237     aMgr->finishOperation();
3238     updateCommandStatus();
3239   }
3240 }