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