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