Salome HOME
Issue #3091: Enable DOF objects for selection list.
[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     myDisplayer->updateViewer();
1865     return;
1866   }
1867
1868   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1869   if (!abortAllOperations())
1870     return;
1871
1872   bool hasResult = false;
1873   bool hasFeature = false;
1874   bool hasParameter = false;
1875   bool hasCompositeOwner = false;
1876   bool hasResultInHistory = false;
1877   bool hasFolder = false;
1878   ModuleBase_Tools::checkObjects(anObjects, hasResult, hasFeature, hasParameter, hasCompositeOwner,
1879                                  hasResultInHistory, hasFolder);
1880   if (!(hasResult || hasFeature || hasParameter || hasFolder))
1881     return;
1882
1883   // Remove from the list non-deletable objects: infinite constructions which are not in history
1884   bool notDelete = true;
1885   QObjectPtrList::iterator aIt;
1886   for (aIt = anObjects.begin(); aIt != anObjects.end(); aIt++) {
1887     ObjectPtr aObj = (*aIt);
1888     ResultConstructionPtr aConstr = std::dynamic_pointer_cast<ModelAPI_ResultConstruction>(aObj);
1889     FeaturePtr aFeature = ModelAPI_Feature::feature(aObj);
1890     if (aFeature) {
1891       notDelete = (!aFeature->isInHistory()) && aConstr->isInfinite();
1892       if (notDelete) {
1893         anObjects.removeAll(aObj);
1894         aIt--;
1895       }
1896     }
1897   }
1898   // delete objects
1899   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
1900   std::set<FeaturePtr> aFeatures;
1901   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1902   ModelAPI_Tools::findAllReferences(aFeatures, aReferences);
1903
1904   std::set<FolderPtr> aFolders;
1905   ModuleBase_Tools::convertToFolders(anObjects, aFolders);
1906
1907   bool aDone = false;
1908   QString aDescription = contextMenuMgr()->action("DELETE_CMD")->text() + " %1";
1909   aDescription = aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
1910   ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, module());
1911
1912   operationMgr()->startOperation(anOpAction);
1913
1914   std::set<FeaturePtr> aFeatureRefsToDelete;
1915   if (ModuleBase_Tools::askToDelete(aFeatures, aReferences, desktop(), aFeatureRefsToDelete)) {
1916     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
1917     // It is necessary to clear selection in order to avoid selection changed event during
1918     // deletion and negative consequences connected with processing of already deleted items
1919     mySelector->clearSelection();
1920
1921     if (!aFeatureRefsToDelete.empty())
1922       aFeatures.insert(aFeatureRefsToDelete.begin(), aFeatureRefsToDelete.end());
1923     aDone = ModelAPI_Tools::removeFeatures(aFeatures, false);
1924   }
1925   if (aFolders.size() > 0) {
1926     std::set<FolderPtr>::const_iterator anIt = aFolders.begin(),
1927                                          aLast = aFolders.end();
1928     for (; anIt != aLast; anIt++) {
1929       FolderPtr aFolder = *anIt;
1930       if (aFolder.get()) {
1931         DocumentPtr aDoc = aFolder->document();
1932         aDoc->removeFolder(aFolder);
1933       }
1934     }
1935   }
1936   // remove results selected
1937   std::list<ResultPtr> aResults;
1938   for(QObjectPtrList::const_iterator anIt = anObjects.begin(); anIt != anObjects.end(); anIt++) {
1939     ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(*anIt);
1940     if (aRes.get() && aRes->data()->isValid() && !aRes->data()->isDeleted() &&
1941         aRes->groupName() != ModelAPI_ResultGroup::group() && // don't remove groups and fields
1942         aRes->groupName() != ModelAPI_ResultField::group()) // because they are badly selected
1943       aResults.push_back(aRes);
1944   }
1945   if (!aResults.empty()) {
1946     ModelAPI_Tools::removeResults(aResults);
1947   }
1948
1949   if (aDone)
1950     operationMgr()->commitOperation();
1951   else
1952     operationMgr()->abortOperation(operationMgr()->currentOperation());
1953
1954   myDisplayer->updateViewer();
1955 }
1956
1957 //**************************************************************
1958 void addRefsToFeature(const FeaturePtr& theFeature,
1959                       const std::map<FeaturePtr, std::set<FeaturePtr> >& theMainList,
1960                       std::set<FeaturePtr>& theReferences)
1961 {
1962   //if (theReferences.find(theFeature) != theReferences.end())
1963   //  return;
1964   if (theMainList.find(theFeature) == theMainList.end())
1965     return; // this feature is not in the selection list, so exists without references to it
1966   std::set<FeaturePtr> aMainReferences = theMainList.at(theFeature);
1967
1968   std::set<FeaturePtr>::const_iterator anIt = aMainReferences.begin(),
1969                                        aLast = aMainReferences.end();
1970   for (; anIt != aLast; anIt++) {
1971     FeaturePtr aRefFeature = *anIt;
1972     if (theReferences.find(aRefFeature) == theReferences.end())
1973       theReferences.insert(aRefFeature);
1974     addRefsToFeature(aRefFeature, theMainList, theReferences);
1975   }
1976 }
1977
1978 //**************************************************************
1979 void XGUI_Workshop::cleanHistory()
1980 {
1981   if (!abortAllOperations())
1982     return;
1983
1984   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
1985   std::set<FeaturePtr> aFeatures;
1986   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
1987
1988 #ifdef DEBUG_CLEAN_HISTORY
1989   QStringList anInfo;
1990   std::set<FeaturePtr>::const_iterator aFIt;
1991   for (aFIt = aFeatures.begin(); aFIt != aFeatures.end(); ++aFIt) {
1992     FeaturePtr aFeature = ModelAPI_Feature::feature(*aFIt);
1993     anInfo.append(aFeature->name().c_str());
1994   }
1995   QString anInfoStr = anInfo.join(";\t");
1996   qDebug(QString("cleanHistory for: [%1] - %2").
1997     arg(aFeatures.size()).arg(anInfoStr).toStdString().c_str());
1998 #endif
1999
2000   std::map<FeaturePtr, std::set<FeaturePtr> > aReferences;
2001   ModelAPI_Tools::findAllReferences(aFeatures, aReferences, true, false);
2002   // find for each object whether all reference values are in the map as key, that means that there
2003   // is no other reference in the model to this object, so it might be removed by cleaning history
2004   // sk_1(ext_1, vertex_1) + (sk_3, bool_1) - can't be deleted, dependency to bool_1
2005   // ext_1(bool_1, sk_3)  - can't be deleted, dependency to bool_1
2006   // vertex_1()
2007   // sk_2(ext_2) + (bool_1)  - can't be deleted, dependency to bool_1
2008   // ext_2(bool_1)  - can't be deleted, dependency to bool_1
2009   // sk_3()
2010   // Information: bool_1 is not selected
2011   std::set<FeaturePtr> anUnusedObjects;
2012   std::map<FeaturePtr, std::set<FeaturePtr> >::const_iterator aMainIt = aReferences.begin(),
2013                                                               aMainLast = aReferences.end();
2014   for (; aMainIt != aMainLast; aMainIt++) {
2015     FeaturePtr aMainListFeature = aMainIt->first;
2016     std::set<FeaturePtr> aMainRefList = aMainIt->second;
2017     std::set<FeaturePtr>::const_iterator aRefIt = aMainRefList.begin(),
2018                                                   aRefLast = aMainRefList.end();
2019     bool aFeatureOutOfTheList = false;
2020     for (; aRefIt != aRefLast && !aFeatureOutOfTheList; aRefIt++) {
2021       FeaturePtr aRefFeature = *aRefIt;
2022       aFeatureOutOfTheList = aReferences.find(aRefFeature) == aReferences.end();
2023     }
2024     if (!aFeatureOutOfTheList)
2025       anUnusedObjects.insert(aMainListFeature);
2026   }
2027
2028 #ifdef DEBUG_CLEAN_HISTORY
2029   anInfo.clear();
2030   for (aFIt = anUnusedObjects.begin(); aFIt != anUnusedObjects.end(); ++aFIt) {
2031     FeaturePtr aFeature = *aFIt;
2032     anInfo.append(aFeature->name().c_str());
2033   }
2034   qDebug(QString("unused objects: [%1] - %2").
2035     arg(anInfo.size()).arg(anInfo.join(";\t")).toStdString().c_str());
2036 #endif
2037
2038   // warn about the references remove, break the delete operation if the user chose it
2039   if (!anUnusedObjects.empty()) {
2040     QStringList aNames;
2041     foreach (const FeaturePtr& aFeature, anUnusedObjects) {
2042       aNames.append(aFeature->name().c_str());
2043     }
2044     aNames.sort();
2045     QString anUnusedNames = aNames.join(", ");
2046
2047     QString anActionId = "CLEAN_HISTORY_CMD";
2048     QString aDescription = ModuleBase_Tools::translate("workshop",
2049         contextMenuMgr()->action(anActionId)->text().toStdString());
2050
2051     QMessageBox aMessageBox(desktop());
2052     aMessageBox.setWindowTitle(aDescription);
2053     aMessageBox.setIcon(QMessageBox::Warning);
2054     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
2055     aMessageBox.setDefaultButton(QMessageBox::No);
2056
2057     const char* aKeyStr = "Unused features are the following: "
2058                           "%1.\nThese features will be deleted.\nWould you like to continue?";
2059     QString aText = QString(tr(aKeyStr).arg(anUnusedNames));
2060     aMessageBox.setText(aText);
2061     if (aMessageBox.exec() == QMessageBox::No)
2062       return;
2063
2064     // 1. start operation
2065     aDescription += "by deleting of " +
2066       aDescription.arg(XGUI_Tools::unionOfObjectNames(anObjects, ", "));
2067     ModuleBase_Operation* anOpAction = new ModuleBase_Operation(aDescription, module());
2068     operationMgr()->startOperation(anOpAction);
2069
2070     // WORKAROUND, should be done before each object remove, if it presents in XGUI_DataModel tree
2071     // It is necessary to clear selection in order to avoid selection changed event during
2072     // deletion and negative consequences connected with processing of already deleted items
2073     mySelector->clearSelection();
2074
2075     std::set<FeaturePtr> anIgnoredFeatures;
2076     if (ModelAPI_Tools::removeFeatures(anUnusedObjects, true)) {
2077       operationMgr()->commitOperation();
2078     }
2079     else {
2080       operationMgr()->abortOperation(operationMgr()->currentOperation());
2081     }
2082   }
2083   else {
2084     QString anActionId = "CLEAN_HISTORY_CMD";
2085     QString aDescription = contextMenuMgr()->action(anActionId)->text();
2086
2087     QMessageBox aMessageBox(desktop());
2088     aMessageBox.setWindowTitle(aDescription);
2089     aMessageBox.setIcon(QMessageBox::Warning);
2090     aMessageBox.setStandardButtons(QMessageBox::No | QMessageBox::Yes);
2091     aMessageBox.setDefaultButton(QMessageBox::No);
2092
2093     QString aText;
2094     aMessageBox.setStandardButtons(QMessageBox::Ok);
2095     aMessageBox.setDefaultButton(QMessageBox::Ok);
2096
2097     aText = QString(tr("All features are relevant, there is nothing to be deleted"));
2098     aMessageBox.setText(aText);
2099
2100     if (aMessageBox.exec() == QMessageBox::No)
2101       return;
2102   }
2103 }
2104
2105 //**************************************************************
2106 bool compareFeature(const FeaturePtr& theF1, const FeaturePtr& theF2) {
2107   DocumentPtr aDoc = theF1->document();
2108   return aDoc->index(theF1) < aDoc->index(theF2);
2109 }
2110 void XGUI_Workshop::moveObjects()
2111 {
2112   if (!abortAllOperations())
2113     return;
2114
2115   SessionPtr aMgr = ModelAPI_Session::get();
2116
2117   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2118   // It is necessary to clear selection in order to avoid selection changed event during
2119   // moving and negative consequences connected with processing of already moved items
2120   mySelector->clearSelection();
2121   // check whether the object can be moved. There should not be parts which are not loaded
2122   std::set<FeaturePtr> aFeatures;
2123   ModuleBase_Tools::convertToFeatures(anObjects, aFeatures);
2124   if (!XGUI_Tools::canRemoveOrRename(desktop(), aFeatures))
2125     return;
2126
2127   QString anActionId = "MOVE_CMD";
2128   QString aDescription = contextMenuMgr()->action(anActionId)->text();
2129   aMgr->startOperation(aDescription.toStdString());
2130
2131   // Sort features by index in document
2132   std::list<FeaturePtr> aFList(aFeatures.begin(), aFeatures.end());
2133   aFList.sort(compareFeature);
2134
2135   DocumentPtr anActiveDocument = aMgr->activeDocument();
2136   FeaturePtr aCurrentFeature = anActiveDocument->currentFeature(true);
2137   std::list<FeaturePtr>::const_iterator anIt = aFList.begin(), aLast = aFList.end();
2138   for (; anIt != aLast; anIt++) {
2139     FeaturePtr aFeature = *anIt;
2140     if (!aFeature.get() || !myModule->canApplyAction(aFeature, anActionId))
2141       continue;
2142
2143     anActiveDocument->moveFeature(aFeature, aCurrentFeature);
2144     aCurrentFeature = anActiveDocument->currentFeature(true);
2145   }
2146   aMgr->finishOperation();
2147   updateCommandStatus();
2148 }
2149
2150 //**************************************************************
2151 bool XGUI_Workshop::deleteFeatures(const QObjectPtrList& theObjects)
2152 {
2153   std::set<FeaturePtr> aFeatures;
2154   ModuleBase_Tools::convertToFeatures(theObjects, aFeatures);
2155
2156   return ModelAPI_Tools::removeFeaturesAndReferences(aFeatures);
2157 }
2158
2159 //******************************************************
2160 bool hasResults(QObjectPtrList theObjects, const std::set<std::string>& theTypes)
2161 {
2162   bool isFoundResultType = false;
2163   foreach(ObjectPtr anObj, theObjects)
2164   {
2165     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2166     if (aResult.get() == NULL)
2167       continue;
2168
2169     isFoundResultType = theTypes.find(aResult->groupName()) != theTypes.end();
2170     if (isFoundResultType)
2171       break;
2172   }
2173   return isFoundResultType;
2174 }
2175
2176 //**************************************************************
2177 // Returns the list of all features for theDocument and all features of
2178 // all nested parts.
2179 std::list<FeaturePtr> allFeatures(const DocumentPtr& theDocument)
2180 {
2181   std::list<FeaturePtr> aResultList;
2182   std::list<FeaturePtr> anAllFeatures = theDocument->allFeatures();
2183   foreach (const FeaturePtr& aFeature, anAllFeatures) {
2184     // The order of appending features of the part and the part itself is important
2185
2186     // Append features from a part feature
2187     std::list<ResultPtr> aResults;
2188     ModelAPI_Tools::allResults(aFeature, aResults);
2189     foreach (const ResultPtr& aResult, aResults) {
2190       ResultPartPtr aResultPart =
2191           std::dynamic_pointer_cast<ModelAPI_ResultPart>(aResult);
2192       if (aResultPart.get() && aResultPart->partDoc().get()) {
2193         // Recursion
2194         std::list<FeaturePtr> anAllFeatures = allFeatures(aResultPart->partDoc());
2195         aResultList.insert(aResultList.end(), anAllFeatures.begin(), anAllFeatures.end());
2196       }
2197     }
2198
2199     aResultList.push_back(aFeature);
2200   }
2201   return aResultList;
2202 }
2203
2204 //**************************************************************
2205 // Returns the list of features placed between theObject and the current feature
2206 // in the same document. Excludes theObject, includes the current feature.
2207 std::list<FeaturePtr> toCurrentFeatures(const ObjectPtr& theObject)
2208 {
2209   std::list<FeaturePtr> aResult;
2210   DocumentPtr aDocument = theObject->document();
2211   std::list<FeaturePtr> anAllFeatures = allFeatures(aDocument);
2212   // find the object iterator
2213   std::list<FeaturePtr>::iterator aObjectIt =
2214     std::find(anAllFeatures.begin(), anAllFeatures.end(), theObject);
2215   if (aObjectIt == anAllFeatures.end())
2216     return aResult;
2217   // find the current feature iterator
2218   std::list<FeaturePtr>::iterator aCurrentIt =
2219     std::find(anAllFeatures.begin(), anAllFeatures.end(), aDocument->currentFeature(true));
2220   if (aCurrentIt == anAllFeatures.end())
2221     return aResult;
2222   // check the right order
2223   if (std::distance(aObjectIt, anAllFeatures.end()) <=
2224       std::distance(aCurrentIt, anAllFeatures.end()))
2225     return aResult;
2226   // exclude the object
2227   std::advance(aObjectIt, 1);
2228   // include the current feature
2229   std::advance(aCurrentIt, 1);
2230   return std::list<FeaturePtr>(aObjectIt, aCurrentIt);
2231 }
2232
2233 //******************************************************
2234 bool XGUI_Workshop::canMoveFeature()
2235 {
2236   QString anActionId = "MOVE_CMD";
2237
2238   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2239   QObjectPtrList aValidatedObjects;
2240   foreach (ObjectPtr aObject, aObjects) {
2241     if (!myModule->canApplyAction(aObject, anActionId))
2242       continue;
2243     // To be moved feature should be in active document
2244     if (aObject->document() != ModelAPI_Session::get()->activeDocument())
2245       continue;
2246     aValidatedObjects.append(aObject);
2247   }
2248   if (aValidatedObjects.size() != aObjects.size())
2249     aObjects = aValidatedObjects;
2250
2251   bool aCanMove = !aObjects.empty();
2252
2253   QObjectPtrList::const_iterator anIt = aObjects.begin(), aLast = aObjects.end();
2254   for (; anIt != aLast && aCanMove; anIt++) {
2255     ObjectPtr aObject = *anIt;
2256     if (!aObject.get() || !aObject->data().get() || !aObject->data()->isValid()) {
2257       aCanMove = false;
2258       break;
2259     }
2260     FeaturePtr aFeat = std::dynamic_pointer_cast<ModelAPI_Feature>(aObject);
2261     // only groups can be moved to the end for now (#2451)
2262     if (aFeat.get() && aFeat->getKind() != "Group") {
2263       aCanMove = false;
2264       break;
2265     }
2266
2267     // 1. Get features placed between selected and current in the document
2268     std::list<FeaturePtr> aFeaturesBetween = toCurrentFeatures(aObject);
2269     // if aFeaturesBetween is empty it means wrong order or aObject is the current feature
2270     if (aFeaturesBetween.empty())
2271       aCanMove = false;
2272     else {
2273       std::set<FeaturePtr> aPlacedFeatures(aFeaturesBetween.begin(), aFeaturesBetween.end());
2274       // 2. Get all reference features to the selected object in the document
2275       std::set<FeaturePtr> aRefFeatures;
2276       ModuleBase_Tools::refsToFeatureInFeatureDocument(aObject, aRefFeatures);
2277
2278       if (aRefFeatures.empty())
2279         continue;
2280       else {
2281         // 3. Find any placed features in all reference features
2282         std::set<FeaturePtr> aIntersectionFeatures;
2283         std::set_intersection(aRefFeatures.begin(), aRefFeatures.end(),
2284                               aPlacedFeatures.begin(), aPlacedFeatures.end(),
2285                               std::inserter(aIntersectionFeatures, aIntersectionFeatures.begin()));
2286         // 4. Return false if any reference feature is placed before current feature
2287         if (!aIntersectionFeatures.empty())
2288           aCanMove = false;
2289       }
2290     }
2291   }
2292   return aCanMove;
2293 }
2294
2295 //**************************************************************
2296 bool XGUI_Workshop::canBeShaded(const ObjectPtr& theObject) const
2297 {
2298   bool aCanBeShaded = myDisplayer->canBeShaded(theObject);
2299   if (!aCanBeShaded) {
2300     ResultBodyPtr aCompRes = std::dynamic_pointer_cast<ModelAPI_ResultBody>(theObject);
2301     if (aCompRes.get() != NULL) { // change colors for all sub-solids
2302       std::list<ResultPtr> allRes;
2303       ModelAPI_Tools::allSubs(aCompRes, allRes);
2304       std::list<ResultPtr>::iterator aRes = allRes.begin();
2305       for(; aRes != allRes.end() && !aCanBeShaded; aRes++) {
2306         aCanBeShaded = myDisplayer->canBeShaded(*aRes);
2307       }
2308     }
2309   }
2310   return aCanBeShaded;
2311 }
2312
2313 //**************************************************************
2314 bool XGUI_Workshop::canChangeProperty(const QString& theActionName) const
2315 {
2316   if (theActionName == "COLOR_CMD" ||
2317       theActionName == "DEFLECTION_CMD" ||
2318       theActionName == "TRANSPARENCY_CMD") {
2319     QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2320
2321     std::set<std::string> aTypes;
2322     aTypes.insert(ModelAPI_ResultGroup::group());
2323     aTypes.insert(ModelAPI_ResultConstruction::group());
2324     aTypes.insert(ModelAPI_ResultBody::group());
2325     aTypes.insert(ModelAPI_ResultPart::group());
2326
2327     return hasResults(aObjects, aTypes);
2328   }
2329   return false;
2330 }
2331
2332 //******************************************************
2333 void setColor(ResultPtr theResult, const std::vector<int>& theColor)
2334 {
2335   if (!theResult.get())
2336     return;
2337
2338   AttributeIntArrayPtr aColorAttr = theResult->data()->intArray(ModelAPI_Result::COLOR_ID());
2339   if (aColorAttr.get() != NULL) {
2340     if (!aColorAttr->size()) {
2341       aColorAttr->setSize(3);
2342     }
2343     aColorAttr->setValue(0, theColor[0]);
2344     aColorAttr->setValue(1, theColor[1]);
2345     aColorAttr->setValue(2, theColor[2]);
2346   }
2347   static const Events_ID kRedisplayEvent =
2348     Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
2349   ModelAPI_EventCreator::get()->sendUpdated(theResult, kRedisplayEvent);
2350 }
2351
2352 //**************************************************************
2353 void XGUI_Workshop::changeColor(const QObjectPtrList& theObjects)
2354 {
2355
2356   AttributeIntArrayPtr aColorAttr;
2357   // 1. find the current color of the object. This is a color of AIS presentation
2358   // The objects are iterated until a first valid color is found
2359   std::vector<int> aColor;
2360   foreach(ObjectPtr anObject, theObjects) {
2361     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2362     if (aResult.get()) {
2363       ModelAPI_Tools::getColor(aResult, aColor);
2364     }
2365     else {
2366       // TODO: remove the obtaining a color from the AIS object
2367       // this does not happen never because:
2368       // 1. The color can be changed only on results
2369       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2370       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2371       if (anAISObj.get()) {
2372         aColor.resize(3);
2373         anAISObj->getColor(aColor[0], aColor[1], aColor[2]);
2374       }
2375     }
2376     if (!aColor.empty())
2377       break;
2378   }
2379   if (aColor.size() != 3)
2380     return;
2381
2382   if (!abortAllOperations())
2383   return;
2384   // 2. show the dialog to change the value
2385   XGUI_ColorDialog* aDlg = new XGUI_ColorDialog(desktop());
2386   aDlg->setColor(aColor);
2387   aDlg->move(QCursor::pos());
2388   bool isDone = aDlg->exec() == QDialog::Accepted;
2389   if (!isDone)
2390     return;
2391
2392   bool isRandomColor = aDlg->isRandomColor();
2393
2394   // 3. abort the previous operation and start a new one
2395   SessionPtr aMgr = ModelAPI_Session::get();
2396   QString aDescription = contextMenuMgr()->action("COLOR_CMD")->text();
2397   aMgr->startOperation(aDescription.toStdString());
2398
2399   // 4. set the value to all results
2400   std::vector<int> aColorResult = aDlg->getColor();
2401   foreach(ObjectPtr anObj, theObjects) {
2402     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2403     if (aResult.get() != NULL) {
2404       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2405       if (aBodyResult.get() != NULL) { // change colors for all sub-solids
2406         std::list<ResultPtr> allRes;
2407         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2408         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2409           setColor(*aRes, !isRandomColor ? aColorResult : aDlg->getRandomColor());
2410         }
2411       }
2412       setColor(aResult, !isRandomColor ? aColorResult : aDlg->getRandomColor());
2413     }
2414   }
2415   aMgr->finishOperation();
2416   updateCommandStatus();
2417 }
2418
2419 //**************************************************************
2420 void setDeflection(ResultPtr theResult, const double theDeflection)
2421 {
2422   if (!theResult.get())
2423     return;
2424
2425   AttributeDoublePtr aDeflectionAttr = theResult->data()->real(ModelAPI_Result::DEFLECTION_ID());
2426   if (aDeflectionAttr.get() != NULL)
2427     aDeflectionAttr->setValue(theDeflection);
2428   static const Events_ID kRedisplayEvent =
2429     Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
2430   ModelAPI_EventCreator::get()->sendUpdated(theResult, kRedisplayEvent);
2431 }
2432
2433 //**************************************************************
2434 void setTransparency(ResultPtr theResult, double theTransparency)
2435 {
2436   if (!theResult.get())
2437     return;
2438
2439   AttributeDoublePtr anAttribute = theResult->data()->real(ModelAPI_Result::TRANSPARENCY_ID());
2440   if (anAttribute.get() != NULL)
2441     anAttribute->setValue(theTransparency);
2442   static const Events_ID kRedisplayEvent =
2443     Events_Loop::loop()->eventByName(EVENT_OBJECT_TO_REDISPLAY);
2444   ModelAPI_EventCreator::get()->sendUpdated(theResult, kRedisplayEvent);
2445 }
2446
2447 //**************************************************************
2448 void setTransparency(double theTransparency, const QObjectPtrList& theObjects)
2449 {
2450   foreach(ObjectPtr anObj, theObjects) {
2451     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2452     if (aResult.get() != NULL) {
2453       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2454       if (aBodyResult.get() != NULL) { // change property for all sub-solids
2455         std::list<ResultPtr> allRes;
2456         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2457         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2458           setTransparency(*aRes, theTransparency);
2459         }
2460       }
2461       setTransparency(aResult, theTransparency);
2462     }
2463   }
2464 }
2465
2466 //**************************************************************
2467 void XGUI_Workshop::changeDeflection(const QObjectPtrList& theObjects)
2468 {
2469   AttributeDoublePtr aDoubleAttr;
2470   // 1. find the current property of the object. This is a property of AIS presentation
2471   // The objects are iterated until a first valid property is found
2472   double aDeflection = -1;
2473   foreach(ObjectPtr anObject, theObjects) {
2474     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2475     if (aResult.get()) {
2476       aDeflection = ModelAPI_Tools::getDeflection(aResult);
2477     }
2478     else {
2479       // TODO: remove the obtaining a property from the AIS object
2480       // this does not happen never because:
2481       // 1. The property can be changed only on results
2482       // 2. The result can be not visualized in the viewer(e.g. Origin Construction)
2483       AISObjectPtr anAISObj = myDisplayer->getAISObject(anObject);
2484       if (anAISObj.get()) {
2485         aDeflection = anAISObj->getDeflection();
2486       }
2487     }
2488     if (aDeflection > 0)
2489       break;
2490   }
2491   if (aDeflection < 0)
2492     return;
2493
2494   if (!abortAllOperations())
2495   return;
2496   // 2. show the dialog to change the value
2497   XGUI_DeflectionDialog* aDlg = new XGUI_DeflectionDialog(desktop());
2498   aDlg->setDeflection(aDeflection);
2499   aDlg->move(QCursor::pos());
2500   bool isDone = aDlg->exec() == QDialog::Accepted;
2501   if (!isDone)
2502     return;
2503
2504   // 3. abort the previous operation and start a new one
2505   SessionPtr aMgr = ModelAPI_Session::get();
2506   QString aDescription = contextMenuMgr()->action("DEFLECTION_CMD")->text();
2507   aMgr->startOperation(aDescription.toStdString());
2508
2509   // 4. set the value to all results
2510   aDeflection = aDlg->getDeflection();
2511   foreach(ObjectPtr anObj, theObjects) {
2512     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObj);
2513     if (aResult.get() != NULL) {
2514       ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aResult);
2515       if (aBodyResult.get() != NULL) { // change property for all sub-solids
2516         std::list<ResultPtr> allRes;
2517         ModelAPI_Tools::allSubs(aBodyResult, allRes);
2518         for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2519           setDeflection(*aRes, aDeflection);
2520         }
2521       }
2522       setDeflection(aResult, aDeflection);
2523     }
2524   }
2525   aMgr->finishOperation();
2526   updateCommandStatus();
2527 }
2528
2529 //**************************************************************
2530 void XGUI_Workshop::changeTransparency(const QObjectPtrList& theObjects)
2531 {
2532   AttributeDoublePtr aDoubleAttr;
2533   // 1. find the current property of the object. This is a property of AIS presentation
2534   // The objects are iterated until a first valid property is found
2535   double aCurrentValue = -1;
2536   foreach(ObjectPtr anObject, theObjects) {
2537     ResultPtr aResult = std::dynamic_pointer_cast<ModelAPI_Result>(anObject);
2538     if (aResult.get()) {
2539       aCurrentValue = ModelAPI_Tools::getTransparency(aResult);
2540     }
2541     if (aCurrentValue > 0)
2542       break;
2543   }
2544   if (aCurrentValue < 0)
2545     return;
2546
2547   if (!abortAllOperations())
2548     return;
2549
2550   // 2. show the dialog to change the value
2551   XGUI_PropertyDialog* aDlg = new XGUI_PropertyDialog(desktop());
2552   aDlg->setWindowTitle(tr("Transparency"));
2553   XGUI_TransparencyWidget* aTransparencyWidget = new XGUI_TransparencyWidget(aDlg);
2554   connect(aTransparencyWidget, SIGNAL(transparencyValueChanged()),
2555           this, SLOT(onTransparencyValueChanged()));
2556   aDlg->setContent(aTransparencyWidget);
2557   aTransparencyWidget->setValue(aCurrentValue);
2558
2559   // 3. abort the previous operation and start a new one
2560   SessionPtr aMgr = ModelAPI_Session::get();
2561   QString aDescription = contextMenuMgr()->action("TRANSPARENCY_CMD")->text();
2562   aMgr->startOperation(aDescription.toStdString());
2563
2564   if (aDlg->exec() == QDialog::Accepted) {
2565     // 4. set the value to all results
2566     aCurrentValue = aTransparencyWidget->getValue();
2567     setTransparency(aCurrentValue, theObjects);
2568     aMgr->finishOperation();
2569   } else {
2570     aMgr->abortOperation();
2571     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2572   }
2573
2574   updateCommandStatus();
2575 }
2576
2577 //**************************************************************
2578 void XGUI_Workshop::onTransparencyValueChanged()
2579 {
2580   XGUI_TransparencyWidget* aTransparencyWidget = (XGUI_TransparencyWidget*)sender();
2581   if (!aTransparencyWidget)
2582     return;
2583
2584   QObjectPtrList anObjects = mySelector->selection()->selectedObjects();
2585   setTransparency(aTransparencyWidget->getValue(), anObjects);
2586   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2587 }
2588
2589
2590 //******************************************************
2591 void XGUI_Workshop::showObjects(const QObjectPtrList& theList, bool isVisible)
2592 {
2593   if (isVisible) {
2594     std::set<ObjectPtr> anObjects;
2595     foreach (ObjectPtr aObj, theList) {
2596       anObjects.insert(aObj);
2597     }
2598     if (!prepareForDisplay(anObjects))
2599       return;
2600   }
2601
2602   foreach (ObjectPtr aObj, theList) {
2603     aObj->setDisplayed(isVisible);
2604   }
2605   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2606   myObjectBrowser->updateAllIndexes();
2607
2608   updateColorScaleVisibility();
2609   displayer()->updateViewer();
2610 }
2611
2612 //**************************************************************
2613 void XGUI_Workshop::showOnlyObjects(const QObjectPtrList& theList)
2614 {
2615   QObjectPtrList aSrcList = theList;
2616   // Hide all displayed objects
2617   QObjectPtrList aList = myDisplayer->displayedObjects();
2618   foreach (ObjectPtr aObj, aList) {
2619     if ((!aSrcList.contains(aObj)) && (module()->canEraseObject(aObj)))
2620       aObj->setDisplayed(false);
2621     else
2622       aSrcList.removeAll(aObj);
2623   }
2624   //Do not use eraseAll if you didn't send Redisplay event:
2625   //all objects are erased from viewer, but considered as displayed in displayer
2626   // Problem in bug 2218
2627   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2628 #ifdef HAVE_SALOME
2629     //issue #2159 Hide all incomplete behavior
2630     viewer()->eraseAll();
2631 #endif
2632
2633   std::set<ObjectPtr> anObjects;
2634   foreach (ObjectPtr aObj, aSrcList) {
2635     anObjects.insert(aObj);
2636   }
2637
2638   if (!prepareForDisplay(anObjects))
2639     return;
2640
2641   // Show only objects from the list
2642   foreach (ObjectPtr aObj, aSrcList) {
2643     aObj->setDisplayed(true);
2644   }
2645   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2646
2647   // Necessary for update icons in ObjectBrowser on Linux
2648   myObjectBrowser->updateAllIndexes();
2649   updateColorScaleVisibility();
2650   displayer()->updateViewer();
2651 }
2652
2653
2654 //**************************************************************
2655 void XGUI_Workshop::updateColorScaleVisibility()
2656 {
2657   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2658   viewer()->setColorScaleShown(false);
2659   if (aObjects.size() == 1) {
2660     FieldStepPtr aStep =
2661       std::dynamic_pointer_cast<ModelAPI_ResultField::ModelAPI_FieldStep>(aObjects.first());
2662     if (aStep.get() && myDisplayer->isVisible(aStep)) {
2663       AISObjectPtr aAisPtr = myDisplayer->getAISObject(aStep);
2664       Handle(AIS_InteractiveObject) aIO = aAisPtr->impl<Handle(AIS_InteractiveObject)>();
2665       ModuleBase_IStepPrs* aPrs = dynamic_cast<ModuleBase_IStepPrs*>(aIO.get());
2666       if (aPrs) {
2667         ModelAPI_AttributeTables::ValueType aType = aPrs->dataType();
2668         if ((aType == ModelAPI_AttributeTables::DOUBLE) ||
2669           (aType == ModelAPI_AttributeTables::INTEGER) ||
2670           (aType == ModelAPI_AttributeTables::BOOLEAN)) {
2671           myViewerProxy->setupColorScale();
2672           if (aType == ModelAPI_AttributeTables::BOOLEAN) {
2673             myViewerProxy->setColorScaleIntervals(2);
2674             myViewerProxy->setColorScaleRange(0., 1.);
2675           }
2676           else {
2677             double aMin, aMax;
2678             aPrs->dataRange(aMin, aMax);
2679             myViewerProxy->setColorScaleRange(aMin, aMax);
2680           }
2681           myViewerProxy->setColorScaleTitle(aStep->name().c_str());
2682           myViewerProxy->setColorScaleShown(true);
2683         }
2684       }
2685     }
2686   }
2687 }
2688
2689
2690 //**************************************************************
2691 void XGUI_Workshop::setNormalView(bool toInvert)
2692 {
2693   QList<ModuleBase_ViewerPrsPtr> aPrsList =
2694     mySelector->selection()->getSelected(ModuleBase_ISelection::Viewer);
2695   GeomShapePtr aPlanarFace;
2696   foreach(ModuleBase_ViewerPrsPtr aPrs, aPrsList) {
2697     GeomShapePtr aShape = aPrs->shape();
2698     if (aShape.get() && aShape->isPlanar()) {
2699       aPlanarFace = aShape;
2700       break;
2701     }
2702   }
2703   if (aPlanarFace.get()) {
2704     GeomFacePtr aFace(new GeomAPI_Face(aPlanarFace));
2705     GeomPlanePtr aPlane = aFace->getPlane();
2706     GeomDirPtr aNormal = aPlane->direction();
2707     if (toInvert)
2708       aNormal->reverse();
2709     GeomPointPtr aPos = aPlane->location();
2710
2711     double aXmin, aYmin, aZmin, aXmax, aYmax, aZmax;
2712     aFace->computeSize(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
2713
2714     Handle(V3d_View) aView = myViewerProxy->activeView();
2715     double aScale = aView->Scale();
2716     aView->SetAt(aPos->x(), aPos->y(), aPos->z());
2717     aView->SetProj(aNormal->x(), aNormal->y(), aNormal->z());
2718     Bnd_Box aBox;
2719     aBox.Update(aXmin, aYmin, aZmin, aXmax, aYmax, aZmax);
2720     aView->FitAll(aBox);
2721   }
2722 }
2723
2724 //**************************************************************
2725 void XGUI_Workshop::registerValidators() const
2726 {
2727   SessionPtr aMgr = ModelAPI_Session::get();
2728   ModelAPI_ValidatorsFactory* aFactory = aMgr->validators();
2729 }
2730
2731 //**************************************************************
2732 void XGUI_Workshop::displayDocumentResults(DocumentPtr theDoc)
2733 {
2734   if (!theDoc)
2735     return;
2736   displayGroupResults(theDoc, ModelAPI_ResultConstruction::group());
2737   displayGroupResults(theDoc, ModelAPI_ResultBody::group());
2738 }
2739
2740 //**************************************************************
2741 void XGUI_Workshop::displayGroupResults(DocumentPtr theDoc, std::string theGroup)
2742 {
2743   for (int i = 0; i < theDoc->size(theGroup); i++)
2744     theDoc->object(theGroup, i)->setDisplayed(true);
2745     //displayObject(theDoc->object(theGroup, i));
2746   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
2747 }
2748
2749 //**************************************************************
2750 void XGUI_Workshop::setDisplayMode(const QObjectPtrList& theList, int theMode)
2751 {
2752   foreach(ObjectPtr anObj, theList) {
2753     myDisplayer->setDisplayMode(anObj, (XGUI_Displayer::DisplayMode)theMode, false);
2754
2755     ResultBodyPtr aBodyResult = std::dynamic_pointer_cast<ModelAPI_ResultBody>(anObj);
2756     if (aBodyResult.get() != NULL) { // change display mode for all sub-solids
2757       std::list<ResultPtr> allRes;
2758       ModelAPI_Tools::allSubs(aBodyResult, allRes);
2759       for(std::list<ResultPtr>::iterator aRes = allRes.begin(); aRes != allRes.end(); aRes++) {
2760         myDisplayer->setDisplayMode(*aRes, (XGUI_Displayer::DisplayMode)theMode, false);
2761       }
2762     }
2763   }
2764   if (theList.size() > 0)
2765     myDisplayer->updateViewer();
2766 }
2767
2768 //**************************************************************
2769 void XGUI_Workshop::closeDocument()
2770 {
2771   ModuleBase_Operation* anOperation = operationMgr()->currentOperation();
2772   while (anOperation) {
2773     anOperation->abort();
2774     anOperation = operationMgr()->currentOperation();
2775   }
2776   //myDisplayer->closeLocalContexts();
2777   myDisplayer->eraseAll();
2778   objectBrowser()->clearContent();
2779
2780   module()->closeDocument();
2781   // we need to clear viewer (with created filters) to do not have problems in 2nd SALOME study
2782   module()->clearViewer();
2783
2784
2785   // data model need not process the document's signals about objects modifications as
2786   // the document is closed
2787   //bool isBlocked = objectBrowser()->dataModel()->blockEventsProcessing(true);
2788
2789   SessionPtr aMgr = ModelAPI_Session::get();
2790   aMgr->closeAll();
2791
2792   //objectBrowser()->dataModel()->blockEventsProcessing(isBlocked);
2793 }
2794
2795 //******************************************************
2796 void XGUI_Workshop::addHistoryMenu(QObject* theObject, const char* theSignal, const char* theSlot)
2797 {
2798   XGUI_HistoryMenu* aMenu = NULL;
2799   if (isSalomeMode()) {
2800     QAction* anAction = qobject_cast<QAction*>(theObject);
2801     if (!anAction)
2802       return;
2803     aMenu = new XGUI_HistoryMenu(anAction);
2804   } else {
2805     QToolButton* aButton =  qobject_cast<QToolButton*>(theObject);
2806     aMenu = new XGUI_HistoryMenu(aButton);
2807   }
2808   connect(this, theSignal, aMenu, SLOT(setHistory(const QList<ActionInfo>&)));
2809   connect(aMenu, SIGNAL(actionSelected(int)), this, theSlot);
2810 }
2811
2812 //******************************************************
2813 QList<ActionInfo> XGUI_Workshop::processHistoryList(const std::list<std::string>& theList) const
2814 {
2815   QList<ActionInfo> aResult;
2816   std::list<std::string>::const_iterator it = theList.cbegin();
2817   for (; it != theList.cend(); it++) {
2818     QString anId = QString::fromStdString(*it);
2819     bool isEditing = anId.endsWith(ModuleBase_OperationFeature::EditSuffix());
2820     if (isEditing) {
2821       anId.chop(ModuleBase_OperationFeature::EditSuffix().size());
2822     }
2823     ActionInfo anInfo;
2824     QAction* aContextMenuAct = myContextMenuMgr->actionByName(anId);
2825     if (aContextMenuAct) {
2826       anInfo.initFrom(aContextMenuAct);
2827     } else {
2828       anInfo = myActionsMgr->actionInfoById(anId);
2829     }
2830     if (isEditing) {
2831       anInfo.text = anInfo.text.prepend("Modify ");
2832     }
2833     aResult << anInfo;
2834   }
2835   return aResult;
2836 }
2837
2838 //******************************************************
2839 void XGUI_Workshop::setStatusBarMessage(const QString& theMessage)
2840 {
2841 #ifdef HAVE_SALOME
2842   salomeConnector()->putInfo(theMessage, -1);
2843 #else
2844   myMainWindow->putInfo(theMessage, -1);
2845 #endif
2846 }
2847
2848 #ifdef HAVE_SALOME
2849 //******************************************************
2850 void XGUI_Workshop::synchronizeViewer()
2851 {
2852   SessionPtr aMgr = ModelAPI_Session::get();
2853   QList<DocumentPtr> aDocs;
2854   aDocs.append(aMgr->activeDocument());
2855   aDocs.append(aMgr->moduleDocument());
2856
2857   foreach(DocumentPtr aDoc, aDocs) {
2858     synchronizeGroupInViewer(aDoc, false);
2859   }
2860 }
2861
2862 //******************************************************
2863 void XGUI_Workshop::synchronizeGroupInViewer(const DocumentPtr& theDoc,
2864                                              bool theUpdateViewer)
2865 {
2866   FeaturePtr aFeature;
2867   ResultPtr aRes;
2868   int aSize = theDoc->numInternalFeatures();
2869   for (int i = 0; i < aSize; i++) {
2870     aFeature = theDoc->internalFeature(i);
2871     if (!aFeature.get())
2872       continue;
2873     const std::list<ResultPtr>& aResults = aFeature->results();
2874     std::list<ResultPtr>::const_iterator aIt;
2875     aFeature->setDisplayed(false);
2876     for (aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
2877       aRes = (*aIt);
2878       if (aRes->isDisplayed() && !aRes->isConcealed()) {
2879         // Hide the presentation with an empty shape. But isDisplayed state of the object should not
2880         // be changed to the object becomes visible when the shape becomes not empty
2881         if (!aRes->shape().get() || aRes->shape()->isNull())
2882           continue;
2883         ResultBodyPtr aResBody = std::dynamic_pointer_cast<ModelAPI_ResultBody>(aRes);
2884         if (aResBody.get())
2885           synchronizeResultTree(aResBody, false);
2886         else {
2887           if (aRes->isInHistory()) {
2888             if (aRes->isDisplayed())
2889               myDisplayer->display(aRes, false);
2890             else
2891               myDisplayer->erase(aRes, false);
2892           }
2893           else
2894             aRes->setDisplayed(false);
2895         }
2896       }
2897     }
2898   }
2899   if (theUpdateViewer)
2900     myDisplayer->updateViewer();
2901 }
2902
2903 void XGUI_Workshop::synchronizeResultTree(const ResultBodyPtr& theRes, bool theUpdateViewer)
2904 {
2905   if (theRes->numberOfSubs() > 0)
2906     for (int i = 0; i < theRes->numberOfSubs(); i++) {
2907       ResultBodyPtr aRes = theRes->subResult(i);
2908       if (aRes.get())
2909         synchronizeResultTree(aRes, theUpdateViewer);
2910     }
2911   else {
2912     if (theRes->isDisplayed())
2913       myDisplayer->display(theRes, theUpdateViewer);
2914     else
2915       myDisplayer->erase(theRes, theUpdateViewer);
2916   }
2917 }
2918 #endif
2919
2920 //******************************************************
2921 void XGUI_Workshop::highlightResults(const QObjectPtrList& theObjects)
2922 {
2923   FeaturePtr aFeature;
2924   QObjectPtrList aSelList = theObjects;
2925   QObjectPtrList aNewSel;
2926   bool aHasHidden = false;
2927   foreach(ObjectPtr aObj, theObjects) {
2928     aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
2929     if (aFeature.get()) {
2930       std::list<ResultPtr> aResults;
2931       ModelAPI_Tools::allResults(aFeature, aResults);
2932       std::list<std::shared_ptr<ModelAPI_Result> >::const_iterator aIt;
2933       for(aIt = aResults.cbegin(); aIt != aResults.cend(); aIt++) {
2934         aHasHidden |= (*aIt)->isConcealed();
2935         aSelList.append(*aIt);
2936         aNewSel.append(*aIt);
2937       }
2938     }
2939   }
2940   if (aSelList.count() > theObjects.count()) {
2941     // if something was found
2942     objectBrowser()->setObjectsSelected(aSelList);
2943     objectBrowser()->ensureVisible(aNewSel.first());
2944   }
2945   if (aHasHidden)
2946     QMessageBox::information(desktop(), tr("Find results"),
2947                              tr("Results not found"), QMessageBox::Ok);
2948 }
2949
2950 //******************************************************
2951 void XGUI_Workshop::highlightFeature(const QObjectPtrList& theObjects)
2952 {
2953   ResultPtr aResult;
2954   QObjectPtrList aSelList = theObjects;
2955   QObjectPtrList aNewSel;
2956   FeaturePtr aFeature;
2957   foreach(ObjectPtr aObj, theObjects) {
2958     aResult = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
2959     if (aResult.get()) {
2960       aFeature = ModelAPI_Feature::feature(aResult);
2961       if (aFeature.get()) {
2962         aSelList.append(aFeature);
2963         aNewSel.append(aFeature);
2964       }
2965     }
2966   }
2967   if (aSelList.count() > theObjects.count()) {
2968     // if something was found
2969     objectBrowser()->setObjectsSelected(aSelList);
2970     objectBrowser()->ensureVisible(aNewSel.first());
2971   }
2972 }
2973
2974 void XGUI_Workshop::insertFeatureFolder()
2975 {
2976   QObjectPtrList aObjects = mySelector->selection()->selectedObjects();
2977   if (aObjects.isEmpty())
2978     return;
2979   ObjectPtr aObj = aObjects.first();
2980   FeaturePtr aFeature = std::dynamic_pointer_cast<ModelAPI_Feature>(aObj);
2981   if (aFeature.get() == NULL)
2982     return;
2983   SessionPtr aMgr = ModelAPI_Session::get();
2984   DocumentPtr aDoc = aMgr->activeDocument();
2985
2986   QString aDescription = contextMenuMgr()->action("INSERT_FOLDER_CMD")->text();
2987
2988   aMgr->startOperation(aDescription.toStdString());
2989   aDoc->addFolder(aFeature);
2990   aMgr->finishOperation();
2991
2992   updateCommandStatus();
2993 }
2994
2995
2996 void XGUI_Workshop::insertToFolder(bool isBefore)
2997 {
2998   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
2999   if (aFeatures.empty())
3000     return;
3001
3002   SessionPtr aMgr = ModelAPI_Session::get();
3003   DocumentPtr aDoc = aMgr->activeDocument();
3004
3005   FolderPtr aFolder = isBefore? aDoc->findFolderAbove(aFeatures):
3006                                 aDoc->findFolderBelow(aFeatures);
3007   if (!aFolder.get())
3008     return;
3009
3010   QString aDescription = contextMenuMgr()->action(
3011     isBefore ? "ADD_TO_FOLDER_BEFORE_CMD" : "ADD_TO_FOLDER_AFTER_CMD")->text();
3012
3013   QMap<ObjectPtr, bool> aStates = myObjectBrowser->getFoldersState(aDoc);
3014
3015   aMgr->startOperation(aDescription.toStdString());
3016   aDoc->moveToFolder(aFeatures, aFolder);
3017   aMgr->finishOperation();
3018
3019   myObjectBrowser->setFoldersState(aStates);
3020
3021   updateCommandStatus();
3022 }
3023
3024 void XGUI_Workshop::moveOutFolder(bool isBefore)
3025 {
3026   std::list<FeaturePtr> aFeatures = mySelector->getSelectedFeatures();
3027   if (aFeatures.empty())
3028     return;
3029
3030   SessionPtr aMgr = ModelAPI_Session::get();
3031   DocumentPtr aDoc = aMgr->activeDocument();
3032
3033   QString aDescription = contextMenuMgr()->action(
3034     isBefore ? "ADD_OUT_FOLDER_BEFORE_CMD" : "ADD_OUT_FOLDER_AFTER_CMD")->text();
3035
3036   QMap<ObjectPtr, bool> aStates = myObjectBrowser->getFoldersState(aDoc);
3037
3038   aMgr->startOperation(aDescription.toStdString());
3039   aDoc->removeFromFolder(aFeatures, isBefore);
3040   aMgr->finishOperation();
3041
3042   myObjectBrowser->setFoldersState(aStates);
3043
3044   updateCommandStatus();
3045 }
3046
3047 void XGUI_Workshop::onAutoApply()
3048 {
3049   SessionPtr aMgr = ModelAPI_Session::get();
3050   bool isBlocked = aMgr->isAutoUpdateBlocked();
3051   aMgr->blockAutoUpdate(!isBlocked);
3052 }
3053
3054 void XGUI_Workshop::updateAutoComputeState()
3055 {
3056   SessionPtr aMgr = ModelAPI_Session::get();
3057   bool isComputeBlocked = aMgr->isAutoUpdateBlocked();
3058 #ifdef HAVE_SALOME
3059 //  QAction* aUpdateCmd;
3060 //  QList<QAction*> aCommands = mySalomeConnector->commandList();
3061 //  foreach(QAction* aCmd, aCommands) {
3062 //    if (aCmd->data().toString() == "AUTOCOMPUTE_CMD") {
3063 //      aUpdateCmd = aCmd;
3064 //      break;
3065 //    }
3066 //  }
3067 //  aUpdateCmd->setIcon(isComputeBlocked? QIcon(":pictures/autoapply_stop.png") :
3068 //    QIcon(":pictures/autoapply_start.png"));
3069 #else
3070   AppElements_MainMenu* aMenuBar = myMainWindow->menuObject();
3071   AppElements_Command* aUpdateCmd = aMenuBar->feature("AUTOCOMPUTE_CMD");
3072   aUpdateCmd->button()->setIcon(isComputeBlocked? QIcon(":pictures/autoapply_stop.png") :
3073     QIcon(":pictures/autoapply_start.png"));
3074 #endif
3075 }
3076
3077
3078 void XGUI_Workshop::clearTemporaryDir()
3079 {
3080   QDir aDir(myTmpDir.path());
3081   if (!aDir.isEmpty()) {
3082     QStringList aEntries;
3083     aDir.entryList(aEntries);
3084     foreach(QString aFile, aEntries) {
3085       aDir.remove(aFile);
3086     }
3087   }
3088 }
3089
3090
3091 void XGUI_Workshop::onDockSizeChanged()
3092 {
3093   QDockWidget* aDockWgt = dynamic_cast<QDockWidget*>(myObjectBrowser->parentWidget());
3094   int aObWidth = aDockWgt->size().width();
3095   if (myPropertyPanel->width() != aObWidth) {
3096     QList<QDockWidget*> aWgtList;
3097     aWgtList << myPropertyPanel << aDockWgt;
3098     QList<int> aSizeList;
3099     aSizeList << aObWidth << aObWidth;
3100     desktop()->resizeDocks(aWgtList, aSizeList, Qt::Horizontal);
3101     disconnect(myObjectBrowser, SIGNAL(sizeChanged()), this, SLOT(onDockSizeChanged()));
3102   }
3103 }
3104
3105 void XGUI_Workshop::deactivateCurrentSelector()
3106 {
3107   myActiveControlMgr->deactivateSelector(myActiveControlMgr->activeSelector());
3108 }