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