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