Salome HOME
Merge branch 'occ/shaper2smesh'
[modules/shaper.git] / src / SHAPERGUI / SHAPERGUI.cpp
1 // Copyright (C) 2014-2019  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "SHAPERGUI.h"
21 #include "SHAPERGUI_DataModel.h"
22 #include "SHAPERGUI_OCCSelector.h"
23 #include "SHAPERGUI_NestedButton.h"
24 #include "SHAPERGUI_ToolbarsMgr.h"
25
26 #include <XGUI_Workshop.h>
27 #include <XGUI_PropertyPanel.h>
28 #include <XGUI_ContextMenuMgr.h>
29 #include <XGUI_ObjectsBrowser.h>
30 #include <XGUI_OperationMgr.h>
31 #include <XGUI_Displayer.h>
32 #include <XGUI_MenuMgr.h>
33 #include <XGUI_FacesPanel.h>
34 #include <XGUI_SelectionActivate.h>
35 #include <XGUI_InspectionPanel.h>
36 #include <XGUI_ViewerProxy.h>
37
38 #include <ModuleBase_Operation.h>
39 #include <ModuleBase_Preferences.h>
40 #include <ModuleBase_ActionInfo.h>
41 #include <ModuleBase_IModule.h>
42
43 #include <ModelAPI_Tools.h>
44
45 #include <LightApp_Application.h>
46 #include <LightApp_SelectionMgr.h>
47 #include <LightApp_OCCSelector.h>
48 #include <LightApp_Study.h>
49
50 #include <OCCViewer_ViewModel.h>
51 #include <OCCViewer_ViewPort3d.h>
52
53 #include <SUIT_Selector.h>
54 #include <SUIT_Desktop.h>
55 #include <SUIT_ViewManager.h>
56 #include <SUIT_ViewWindow.h>
57 #include <SUIT_ResourceMgr.h>
58 #include <SUIT_DataBrowser.h>
59
60 #include <QtxPopupMgr.h>
61 #include <QtxActionMenuMgr.h>
62 #include <QtxActionToolMgr.h>
63 #include <QtxResourceMgr.h>
64
65 #include <Config_PropManager.h>
66 #include <Config_ModuleReader.h>
67
68 #include <AIS_ListOfInteractive.hxx>
69 #include <AIS_ListIteratorOfListOfInteractive.hxx>
70
71 #include <QDockWidget>
72 #include <QAction>
73 #include <QTimer>
74 #include <QMenu>
75 #include <QToolBar>
76
77 #if OCC_VERSION_HEX < 0x070400
78   #define SALOME_PATCH_FOR_CTRL_WHEEL
79 #endif
80
81 extern "C" {
82 SHAPERGUI_EXPORT CAM_Module* createModule()
83 {
84   return new SHAPERGUI();
85 }
86
87 SHAPERGUI_EXPORT char* getModuleVersion()
88 {
89   return (char*)"0.0";
90 }
91 } // extern "C"
92
93
94 static const QString ToolbarsSection("SHAPER_Toolbars");
95 static const QString FreeCommandsParam("OutOFToolbars");
96
97
98 /** 
99 * Class for preferences management
100 */
101 class SHAPERGUI_PrefMgr: public ModuleBase_IPrefMgr
102 {
103 public:
104   /// Constructor
105   /// \param theMgr preferences manager of SALOME
106   /// \param theModName name of the module
107   SHAPERGUI_PrefMgr(LightApp_Preferences* theMgr, const QString& theModName):
108     myMgr(theMgr), myModName(theModName) {}
109
110   virtual int addPreference(const QString& theLbl, int pId,
111                             SUIT_PreferenceMgr::PrefItemType theType,
112                             const QString& theSection, const QString& theName )
113   {
114     return myMgr->addPreference(myModName, theLbl, pId, theType, theSection, theName);
115   }
116
117   virtual void setItemProperty(const QString& thePropName,
118                                const QVariant& theValue,
119                                const int theId = -1)
120   {
121     myMgr->setItemProperty(thePropName, theValue, theId);
122   }
123
124
125   virtual SUIT_PreferenceMgr* prefMgr() const { return myMgr; }
126
127 private:
128   LightApp_Preferences* myMgr;
129   QString myModName;
130 };
131
132
133
134
135 //******************************************************
136 SHAPERGUI::SHAPERGUI()
137     : LightApp_Module("SHAPER"),
138       mySelector(0), myIsOpened(0), myPopupMgr(0), myIsInspectionVisible(false),
139   myInspectionPanel(0), myIsToolbarsModified(false)
140 {
141   myWorkshop = new XGUI_Workshop(this);
142   connect(myWorkshop, SIGNAL(commandStatusUpdated()),
143           this, SLOT(onUpdateCommandStatus()));
144
145   myProxyViewer = new SHAPERGUI_SalomeViewer(this);
146
147   ModuleBase_Preferences::setResourceMgr(application()->resourceMgr());
148
149   // It will be called in XGUI_Workshop::startApplication
150   // ModuleBase_Preferences::loadCustomProps();
151 }
152
153 //******************************************************
154 SHAPERGUI::~SHAPERGUI()
155 {
156   delete myWorkshop;
157   delete myProxyViewer;
158 }
159
160 //******************************************************
161 void SHAPERGUI::initialize(CAM_Application* theApp)
162 {
163   LightApp_Module::initialize(theApp);
164
165   myWorkshop->startApplication();
166   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>(theApp);
167   if (anApp)
168   {
169     connect(anApp, SIGNAL(preferenceResetToDefaults()), this, SLOT(onDefaultPreferences()));
170   }
171
172   int aMenu = createMenu(tr("Inspection"), -1, -1, 30);
173   int aSubMenu = createMenu(tr("Information"), aMenu, -1, -1, 0);
174
175   int aId = getNextCommandId();
176   myActionsList.append(aId);
177   SUIT_Desktop* aDesk = application()->desktop();
178   QString aTip = tr("Show inspection window");
179   myWhatIsAction = createAction(aId, aTip, QIcon(":pictures/whatis.png"), tr("What Is"),
180     aTip, QKeySequence(), aDesk, true, this, SLOT(onWhatIs(bool)));
181   myWhatIsAction->setStatusTip(aTip);
182   myWhatIsAction->setData("INSPECTION_CMD");
183   createMenu(aId, aSubMenu, 0);
184
185   QString aToolName = tr("Inspection");
186   int aTool = createTool(aToolName);
187   int aToolId = createTool(myWhatIsAction, aTool);
188   registerCommandToolbar(aToolName, aId);
189
190   // Define Edit toolbars command
191   aId = getNextCommandId();
192   //myActionsList.append(aId); Do not use it for editing of toolbars
193   aTip = tr("Edit toolbars of the module");
194   QAction* aAction = createAction(aId, aTip, QIcon(":pictures/configure_toolbars.png"),
195     tr("Edit toolbars..."), aTip, QKeySequence(), aDesk, false, this, SLOT(onEditToolbars()));
196   int aEditMenu = createMenu(tr("MEN_DESK_EDIT"), -1, -1, 30);
197   int aEditItem = createMenu(aId, aEditMenu);
198
199   // Initialize viewer proxy if OCC viewer is already exist
200   ViewManagerList aOCCViewManagers;
201   application()->viewManagers(OCCViewer_Viewer::Type(), aOCCViewManagers);
202   if (aOCCViewManagers.size() > 0) {
203     SUIT_ViewManager* aMgr = aOCCViewManagers.first();
204     SUIT_ViewWindow* aWnd = aMgr->getActiveView();
205     if (aWnd) {
206       OCCViewer_ViewWindow* aOccWnd = static_cast<OCCViewer_ViewWindow*>(aWnd);
207       OCCViewer_ViewPort3d* aViewPort = aOccWnd->getViewPort();
208       if (aViewPort) {
209         XGUI_ViewerProxy* aViewer = myWorkshop->viewer();
210         aViewPort->installEventFilter(aViewer);
211         Handle(V3d_View) aView = aViewPort->getView();
212         aViewer->SetScale(aView, aView->Camera()->Scale());
213         // We can not create selector here because other modules will be deactivated later
214         //onViewManagerAdded(aMgr);
215       }
216     }
217   }
218 }
219
220 //******************************************************
221 void SHAPERGUI::windows(QMap<int, int>& theWndMap) const
222 {
223   theWndMap.insert(LightApp_Application::WT_PyConsole, Qt::BottomDockWidgetArea);
224 }
225
226 //******************************************************
227 void SHAPERGUI::viewManagers(QStringList& theList) const
228 {
229   theList.append(OCCViewer_Viewer::Type());
230 }
231
232 //******************************************************
233 // We can not create selector in this method because it can be called when
234 // SHAPER module is not active. Take into account that creation of our selector
235 // leads to switching OFF all other selectors
236 //void SHAPERGUI::connectToStudy(CAM_Study* theStudy)
237 //{
238 //  // if there are created viewer managers, we should try to create viewer
239 //  // selector and initialize viewer with it. It sets interactive context to the
240 //  // proxy viewer. If study is opened, CAM application calls this method before the open()
241 //  // of data model
242 //  // the SHAPER data model is specific and during open(load) redisplay signals are flushed, so
243 //  // we need to connect to the viewer before it. Here,
244 //  // it seems the most appropriate place for this
245 //  // according to SALOME architecture.
246 //  if (!mySelector) {
247 //    ViewManagerList OCCViewManagers;
248 //    application()->viewManagers(OCCViewer_Viewer::Type(), OCCViewManagers);
249 //    if (OCCViewManagers.size() > 0) {
250 //      mySelector = createSelector(OCCViewManagers.first());
251 //    }
252 //  }
253 //  LightApp_Module::connectToStudy(theStudy);
254 //}
255
256 //******************************************************
257 bool SHAPERGUI::activateModule(SUIT_Study* theStudy)
258 {
259   bool isDone = LightApp_Module::activateModule(theStudy);
260   loadToolbarsConfig();
261
262   SHAPERGUI_DataModel* aDataModel = dynamic_cast<SHAPERGUI_DataModel*>(dataModel());
263   aDataModel->initRootObject();
264
265   if (isDone) {
266     setMenuShown(true);
267     setToolShown(true);
268
269     QObject* aObj = myWorkshop->objectBrowser()->parent();
270     QDockWidget* aObjDoc = dynamic_cast<QDockWidget*>(aObj);
271     if (aObjDoc) {
272       QAction* aViewAct = aObjDoc->toggleViewAction();
273       aViewAct->setEnabled(true);
274       myWorkshop->objectBrowser()->setVisible(true);
275       aObjDoc->setVisible(true);
276       desktop()->tabifyDockWidget(aObjDoc, myWorkshop->propertyPanel());
277     }
278
279     if (!myInspectionPanel) {
280       myInspectionPanel = myWorkshop->inspectionPanel();
281       QAction* aViewAct = myInspectionPanel->toggleViewAction();
282       connect(aViewAct, SIGNAL(toggled(bool)), this, SLOT(onWhatIs(bool)));
283     }
284     myInspectionPanel->toggleViewAction()->setEnabled(true);
285
286     if (!mySelector) {
287       ViewManagerList OCCViewManagers;
288       application()->viewManagers(OCCViewer_Viewer::Type(), OCCViewManagers);
289       if (OCCViewManagers.size() > 0) {
290         onViewManagerAdded(OCCViewManagers.first());
291       }
292     }
293     // it should be performed after the selector creation in order to have AISContext
294     myWorkshop->activateModule();
295     //action(myEraseAll)->setEnabled(false);
296
297     if (myIsOpened) {
298       myWorkshop->objectBrowser()->rebuildDataTree();
299       myWorkshop->updateCommandStatus();
300       myIsOpened = false;
301     }
302     else
303       myWorkshop->updateCommandStatus();
304   }
305   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
306   myIsStorePositions = aResMgr->booleanValue("Study", "store_positions", true);
307   myIsEditEnabled = getApp()->isEditEnabled();
308   getApp()->setEditEnabled(false);
309
310   // this following row is caused by #187 bug.
311   // SALOME saves the dock widget positions before deactivateModule() and
312   // load it after the module activation. So, if the panel is visible before
313   // deactivate, it becomes visible after activate.
314   // In order to avoid the visible property panel, the widget position save is
315   // switch off in this module
316   aResMgr->setValue("Study", "store_positions", false);
317
318   // Synchronize displayed objects
319   Handle(AIS_InteractiveContext) aContext;
320   if (mySelector && mySelector->viewer())
321     aContext = mySelector->viewer()->getAISContext();
322
323   if (!aContext.IsNull()) {
324     XGUI_Displayer* aDisp = myWorkshop->displayer();
325     QObjectPtrList aObjList = aDisp->displayedObjects();
326
327     //if (myHighlightPointAspect.IsNull()) {
328     //  Handle(AIS_Trihedron) aTrihedron = mySelector->viewer()->getTrihedron();
329     //  myHighlightPointAspect =
330     //    new Graphic3d_AspectMarker3d(aTrihedron->getHighlightPointAspect()->Aspect().operator*());
331     //}
332     if (myOldSelectionColor.size() == 0)
333       myOldSelectionColor = aDisp->selectionColor();
334
335     AIS_ListOfInteractive aList;
336     aContext->DisplayedObjects(aList);
337     AIS_ListIteratorOfListOfInteractive aLIt;
338     Handle(AIS_InteractiveObject) anAISIO;
339     foreach (ObjectPtr aObj, aObjList) {
340       AISObjectPtr aPrs = aDisp->getAISObject(aObj);
341       Handle(AIS_InteractiveObject) aAIS = aPrs->impl<Handle(AIS_InteractiveObject)>();
342       bool aFound = false;
343       for (aLIt.Initialize(aList); aLIt.More(); aLIt.Next()) {
344         anAISIO = aLIt.Value();
345         if (anAISIO.get() == aAIS.get()) {
346           aFound = true;
347           break;
348         }
349       }
350       if (!aFound) {
351         aObj->setDisplayed(false);
352         //aDisp->erase(aObj, false);
353       }
354     }
355     Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
356   }
357   myProxyViewer->activateViewer(true);
358
359   // Post-processing for LoadScriptId to remove created(if it was created) SALOME Object Browser
360   connect(getApp()->action(LightApp_Application::UserID+1), SIGNAL(triggered(bool)),
361           this, SLOT(onScriptLoaded()));
362
363   disconnect(getApp()->action(LightApp_Application::FileSaveId), SIGNAL(triggered(bool)),
364              getApp(), SLOT(onSaveDoc()));
365   disconnect(getApp()->action(LightApp_Application::FileSaveAsId), SIGNAL(triggered(bool)),
366              getApp(), SLOT(onSaveAsDoc()));
367
368   connect(getApp()->action(LightApp_Application::FileSaveId), SIGNAL(triggered(bool)),
369           this, SLOT(onSaveDocByShaper()));
370   connect(getApp()->action(LightApp_Application::FileSaveAsId), SIGNAL(triggered(bool)),
371           this, SLOT(onSaveAsDocByShaper()));
372
373   return isDone;
374 }
375
376 //******************************************************
377 bool SHAPERGUI::deactivateModule(SUIT_Study* theStudy)
378 {
379   saveToolbarsConfig();
380
381   myProxyViewer->activateViewer(false);
382   setMenuShown(false);
383   setToolShown(false);
384
385   myWorkshop->deactivateModule();
386
387   QObject* aObj = myWorkshop->objectBrowser()->parent();
388   QDockWidget* aObjDoc = dynamic_cast<QDockWidget*>(aObj);
389   if (aObjDoc) {
390     aObjDoc->setVisible(false);
391     myWorkshop->objectBrowser()->setVisible(false);
392     QAction* aViewAct = aObjDoc->toggleViewAction();
393     aViewAct->setEnabled(false);
394   }
395
396   myIsInspectionVisible = myInspectionPanel->isVisible();
397   myInspectionPanel->hide();
398   QAction* aViewAct = myInspectionPanel->toggleViewAction();
399   aViewAct->setEnabled(false);
400
401   // the active operation should be stopped for the next activation.
402   // There should not be active operation and visualized preview.
403   // Abort operation should be performed before the selection's remove
404   // because the displayed objects should be removed from the viewer, but
405   // the AIS context is obtained from the selector.
406   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
407   while (anOperation) {
408     anOperation->abort();
409     anOperation = myWorkshop->operationMgr()->currentOperation();
410   }
411   // Delete selector because it has to be redefined on next activation
412   if (mySelector) {
413     //if (!myHighlightPointAspect.IsNull()) {
414     //  Handle(AIS_Trihedron) aTrihedron = mySelector->viewer()->getTrihedron();
415     //  aTrihedron->getHighlightPointAspect()->SetAspect(myHighlightPointAspect);
416     //  myHighlightPointAspect.Nullify();
417     //}
418     myWorkshop->displayer()->setSelectionColor(myOldSelectionColor);
419     myProxyViewer->setSelector(0);
420
421     LightApp_SelectionMgr* aMgr = getApp()->selectionMgr();
422     QList<SUIT_Selector*> aList;
423     aMgr->selectors(aList);
424     foreach(SUIT_Selector* aSel, aList) {
425       aSel->setEnabled(aSel != mySelector);
426     }
427
428     delete mySelector;
429     mySelector = 0;
430   }
431
432   myWorkshop->hidePanel(myWorkshop->facesPanel());
433   //myWorkshop->contextMenuMgr()->disconnectViewer();
434
435   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
436   aResMgr->setValue("Study", "store_positions", myIsStorePositions);
437   getApp()->setEditEnabled(myIsEditEnabled);
438
439   myOldSelectionColor.clear();
440
441   // Post-processing for LoadScriptId to remove created(if it was created) SALOME Object Browser
442   disconnect(getApp()->action(LightApp_Application::UserID+1), SIGNAL(triggered(bool)),
443              this, SLOT(onScriptLoaded()));
444
445   disconnect(getApp()->action(LightApp_Application::FileSaveId), SIGNAL(triggered(bool)),
446              this, SLOT(onSaveDocByShaper()));
447   disconnect(getApp()->action(LightApp_Application::FileSaveAsId), SIGNAL(triggered(bool)),
448              this, SLOT(onSaveAsDocByShaper()));
449
450   connect(getApp()->action(LightApp_Application::FileSaveId), SIGNAL(triggered(bool)),
451           getApp(), SLOT(onSaveDoc()));
452   connect(getApp()->action(LightApp_Application::FileSaveAsId), SIGNAL(triggered(bool)),
453           getApp(), SLOT(onSaveAsDoc()));
454
455   publishToStudy();
456
457   return LightApp_Module::deactivateModule(theStudy);
458 }
459
460 //******************************************************
461 void SHAPERGUI::onViewManagerAdded(SUIT_ViewManager* theMgr)
462 {
463   if (!mySelector) {
464     mySelector = createSelector(theMgr);
465     myWorkshop->selectionActivate()->updateSelectionFilters();
466     myWorkshop->selectionActivate()->updateSelectionModes();
467     myWorkshop->synchronizeViewer();
468   }
469 }
470
471 //******************************************************
472 void SHAPERGUI::onViewManagerRemoved(SUIT_ViewManager* theMgr)
473 {
474   if (mySelector) {
475     if (theMgr->getType() == OCCViewer_Viewer::Type()) {
476       OCCViewer_Viewer* aViewer = static_cast<OCCViewer_Viewer*>(theMgr->getViewModel());
477       if (mySelector->viewer() == aViewer) {
478         XGUI_Displayer* aDisp = myWorkshop->displayer();
479         QObjectPtrList aObjects = aDisp->displayedObjects();
480         ResultPtr aRes;
481         foreach(ObjectPtr aObj, aObjects) {
482           aObj->setDisplayed(false);
483           aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObj);
484           if (aRes.get()) {
485             while (aRes = ModelAPI_Tools::bodyOwner(aRes)) {
486               aRes->setDisplayed(false);
487             }
488           }
489         }
490         Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY));
491         myProxyViewer->setSelector(0);
492         delete mySelector;
493         mySelector = 0;
494
495         myWorkshop->module()->clearViewer();
496       }
497     }
498   }
499 }
500
501 //******************************************************
502 QtxPopupMgr* SHAPERGUI::popupMgr()
503 {
504   if (!myPopupMgr)
505     myPopupMgr = new QtxPopupMgr( 0, this );
506   return myPopupMgr;
507 }
508
509 //******************************************************
510 void SHAPERGUI::onDefaultPreferences()
511 {
512   // reset main resources
513   ModuleBase_Preferences::resetResourcePreferences(preferences());
514   // reset plugin's resources
515   ModuleBase_Preferences::resetConfigPropPreferences(preferences());
516
517   myWorkshop->displayer()->redisplayObjects();
518 }
519
520 //******************************************************
521 void SHAPERGUI::onScriptLoaded()
522 {
523   // this slot is called after processing of the LoadScriptId action of SalomeApp Application
524   // Each dumped script contains updateObjBrowser() that creates a new instance of Object
525   // Browser. When SHAPER module is active, this browser should not be used. It might be removed
526   // as hidden by means of updateWindows() of SalomeApp_Application or to remove
527   // it manually (because this method of application is protected)
528   SUIT_DataBrowser* aBrowser = getApp()->objectBrowser();
529   if (aBrowser)
530     delete aBrowser;
531   myWorkshop->displayer()->updateViewer();
532   myWorkshop->updateCommandStatus();
533 }
534
535 //******************************************************
536 void SHAPERGUI::onSaveDocByShaper()
537 {
538   if(!workshop()->operationMgr()->abortAllOperations(XGUI_OperationMgr::XGUI_InformationMessage))
539     return;
540
541   getApp()->onSaveDoc();
542 }
543
544 //******************************************************
545 void SHAPERGUI::onSaveAsDocByShaper()
546 {
547   if(!workshop()->operationMgr()->abortAllOperations(XGUI_OperationMgr::XGUI_InformationMessage))
548     return;
549
550   getApp()->onSaveAsDoc();
551 }
552
553 //******************************************************
554 void SHAPERGUI::onUpdateCommandStatus()
555 {
556   getApp()->updateActions();
557 }
558
559 //******************************************************
560 SHAPERGUI_OCCSelector* SHAPERGUI::createSelector(SUIT_ViewManager* theMgr)
561 {
562   if (theMgr->getType() == OCCViewer_Viewer::Type()) {
563     OCCViewer_Viewer* aViewer = static_cast<OCCViewer_Viewer*>(theMgr->getViewModel());
564
565     //if (myHighlightPointAspect.IsNull()) {
566     //  Handle(AIS_Trihedron) aTrihedron = aViewer->getTrihedron();
567     //  myHighlightPointAspect =
568     //    new Graphic3d_AspectMarker3d(aTrihedron->getHighlightPointAspect()->Aspect().operator*());
569     //}
570     SHAPERGUI_OCCSelector* aSelector = new SHAPERGUI_OCCSelector(aViewer,
571                                                                  getApp()->selectionMgr());
572 #ifdef SALOME_PATCH_FOR_CTRL_WHEEL
573     aViewer->setUseLocalSelection(true);
574 #endif
575     LightApp_SelectionMgr* aMgr = getApp()->selectionMgr();
576     QList<SUIT_Selector*> aList;
577     aMgr->selectors(aList);
578     foreach(SUIT_Selector* aSel, aList)
579     {
580       aSel->setEnabled(aSel == aSelector);
581     }
582     myProxyViewer->setSelector(aSelector);
583
584     if (myOldSelectionColor.size() == 0)
585       myOldSelectionColor = myWorkshop->displayer()->selectionColor();
586
587     std::vector<int> aColor = Config_PropManager::color("Visualization", "selection_color");
588     myWorkshop->displayer()->setSelectionColor(aColor);
589     return aSelector;
590   }
591   return 0;
592 }
593
594 //******************************************************
595 CAM_DataModel* SHAPERGUI::createDataModel()
596 {
597   return new SHAPERGUI_DataModel(this);
598 }
599
600 QAction* SHAPERGUI::addFeature(const QString& theWBName, const ActionInfo& theInfo,
601                                const bool isAddSeparator)
602 {
603   return addFeature(theWBName,
604                     theInfo.toolBar,
605                     theInfo.id,
606                     theInfo.text,
607                     //Issue #650: in the SALOME mode the tooltip should be same as text
608                     theInfo.text,
609                     theInfo.icon,
610                     theInfo.shortcut,
611                     theInfo.checkable,
612                     isAddSeparator,
613                     theInfo.toolTip);
614 }
615
616 //******************************************************
617 QAction* SHAPERGUI::addFeature(const QString& theWBName, const QString& theTBName,
618                                const QString& theId, const QString& theTitle, const QString& theTip,
619                                const QIcon& theIcon, const QKeySequence& theKeys,
620                                bool isCheckable, const bool isAddSeparator,
621                                const QString& theStatusTip)
622 {
623   static QString aLastTool = "";
624   static int aNb = 0;
625   if (aLastTool.isEmpty())
626     aLastTool = theWBName;
627   else if (theWBName != aLastTool) {
628     aLastTool = theWBName;
629     if (aNb > 20) {
630       desktop()->addToolBarBreak();
631       aNb = 0;
632     }
633   }
634   aNb++;
635
636   int aId = getNextCommandId();
637   myActionsList.append(aId);
638   SUIT_Desktop* aDesk = application()->desktop();
639   int aKeys = 0;
640   for (int i = 0; i < theKeys.count(); i++)
641     aKeys += theKeys[i];
642   QAction* aAction = createAction(aId, theTip, theIcon, theTitle, theTip, aKeys, aDesk,
643                                   isCheckable);
644   aAction->setStatusTip(theStatusTip);
645
646   aAction->setData(theId);
647
648   int aWBMenu = createMenu(theWBName, -1, -1, 30/*10-Window, 1000 - Help*/);
649   int aItemId = createMenu(aId, aWBMenu);
650   if (isAddSeparator)
651     createMenu(separator(), aWBMenu);
652
653   int aWBTool = createTool(theTBName, theTBName);
654   int aToolId = createTool(aId, aWBTool);
655   registerCommandToolbar(theTBName, aId);
656   if (isAddSeparator) {
657     createTool(separator(), aWBTool);
658     registerCommandToolbar(theTBName, -1);
659   }
660   return aAction;
661 }
662
663 bool SHAPERGUI::isFeatureOfNested(const QAction* theAction)
664 {
665   return dynamic_cast<const SHAPERGUI_NestedButton*>(theAction);
666 }
667
668 QAction* SHAPERGUI::addFeatureOfNested(const QString& theWBName,
669                                        const ActionInfo& theInfo,
670                                        const QList<QAction*>& theNestedActions)
671 {
672   SUIT_Desktop* aDesk = application()->desktop();
673   SHAPERGUI_NestedButton* anAction = new SHAPERGUI_NestedButton(aDesk, theNestedActions);
674   anAction->setData(theInfo.id);
675   anAction->setCheckable(theInfo.checkable);
676   anAction->setChecked(theInfo.checked);
677   anAction->setEnabled(theInfo.enabled);
678   anAction->setVisible(theInfo.visible);
679   anAction->setIcon(theInfo.icon);
680   anAction->setText(theInfo.text);
681   anAction->setToolTip(theInfo.toolTip);
682   anAction->setShortcut(theInfo.shortcut);
683   anAction->setFont(theInfo.font);
684
685   int aWBMenu = createMenu(theWBName, -1, -1, 30);
686   int aItemId = createMenu(anAction, aWBMenu);
687   myActionsList.append(aItemId);
688   createMenu(separator(), aWBMenu); /// nested action is always separated of others
689
690   int aWBTool = createTool(theWBName, theWBName);
691   int aToolId = createTool(anAction, aWBTool);
692   registerCommandToolbar(theWBName, aItemId);
693   createTool(separator(), aWBTool); /// nested action is always separated of others
694   registerCommandToolbar(theWBName, -1);
695
696   return anAction;
697 }
698
699
700 //******************************************************
701 QAction* SHAPERGUI::addDesktopCommand(const QString& theId, const QString& theTitle,
702                                            const QString& theTip, const QIcon& theIcon,
703                                            const QKeySequence& theKeys, bool isCheckable,
704                                            const char* theMenuSourceText, const int theMenuPosition)
705 {
706   int aMenu = createMenu(tr(theMenuSourceText), -1, -1);
707
708   int aId = getNextCommandId();
709   myActionsList.append(aId);
710   SUIT_Desktop* aDesk = application()->desktop();
711   int aKeys = 0;
712   for (int i = 0; i < theKeys.count(); i++)
713     aKeys += theKeys[i];
714   QAction* aAction = createAction(aId, theTip, theIcon, theTitle, theTip, aKeys, aDesk,
715                                   isCheckable);
716   aAction->setStatusTip(theTip);
717   aAction->setData(theId);
718   createMenu(aId, aMenu, theMenuPosition);
719   return aAction;
720 }
721
722 //******************************************************
723 void SHAPERGUI::addDesktopMenuSeparator(const char* theMenuSourceText, const int theMenuPosition)
724 {
725   int aMenu = createMenu(tr(theMenuSourceText), -1, -1);
726   createMenu(separator(), aMenu, -1, theMenuPosition);
727 }
728
729 //******************************************************
730 bool SHAPERGUI::addActionInToolbar( QAction* theAction, const QString& theToolBarTitle )
731 {
732   if( !theAction )
733     return false;
734
735   SUIT_Desktop* aDesktop = application()->desktop();
736   if( !aDesktop )
737     return false;
738
739   QtxActionToolMgr* aToolMgr = aDesktop->toolMgr();
740   if( !aToolMgr )
741     return false;
742
743   aToolMgr->append( theAction, theToolBarTitle );
744   return true;
745 }
746
747 //******************************************************
748 QList<QAction*> SHAPERGUI::commandList() const
749 {
750   QList<QAction*> aActions;
751   foreach (int aId, myActionsList) {
752     QAction* aCmd = action(aId);
753     if (aCmd)
754       aActions.append(aCmd);
755   }
756
757   return aActions;
758 }
759
760 //******************************************************
761 QMainWindow* SHAPERGUI::desktop() const
762 {
763   return application()->desktop();
764 }
765
766 void SHAPERGUI::setFeatureInfo(const QString& theFeatureId,
767                                const std::shared_ptr<Config_FeatureMessage>& theMessage)
768 {
769   myFeaturesInfo.insert(theFeatureId, theMessage);
770 }
771
772 std::shared_ptr<Config_FeatureMessage> SHAPERGUI::featureInfo(const QString& theFeatureId)
773 {
774   std::shared_ptr<Config_FeatureMessage> aMessage;
775   if (myFeaturesInfo.contains(theFeatureId))
776     aMessage =  myFeaturesInfo[theFeatureId];
777   return aMessage;
778 }
779
780 //******************************************************
781 void SHAPERGUI::selectionChanged()
782 {
783   LightApp_Module::selectionChanged();
784   myWorkshop->salomeViewerSelectionChanged();
785 }
786
787 //******************************************************
788 void SHAPERGUI::contextMenuPopup(const QString& theClient, QMenu* theMenu, QString& theTitle)
789 {
790   myWorkshop->contextMenuMgr()->updateViewerMenu();
791   myWorkshop->contextMenuMgr()->addViewerMenu(theMenu);
792   LightApp_Module::contextMenuPopup(theClient, theMenu, theTitle);
793 }
794
795
796 //******************************************************
797 void SHAPERGUI::createPreferences()
798 {
799   LightApp_Preferences* pref = preferences();
800   if (!pref)
801     return;
802   ModuleBase_Preferences::updateConfigByResources();
803   QString aModName = moduleName();
804
805   QtxPreferenceItem* item = pref->findItem(aModName, true );
806   if ( item && (!item->isEmpty() )) {
807     item->parentItem()->removeItem(item);
808     delete item;
809   }
810
811   int catId = pref->addPreference(aModName, -1 );
812   if ( catId == -1 )
813     return;
814   SHAPERGUI_PrefMgr aMgr(pref, aModName);
815   ModuleBase_Preferences::createEditContent(&aMgr, catId);
816
817   int viewTab = pref->addItem(tr("Viewer"), catId);
818   // Create other parameters group in viewer tab
819   int otherGroup = pref->addItem(tr("Default selection"), viewTab);
820   pref->setItemProperty("columns", 3, otherGroup);
821   pref->addItem(tr("Faces"), otherGroup,
822                          SUIT_PreferenceMgr::Bool,
823                          ModuleBase_Preferences::VIEWER_SECTION, "face-selection");
824   pref->addItem(tr("Edges"), otherGroup,
825                          SUIT_PreferenceMgr::Bool,
826                          ModuleBase_Preferences::VIEWER_SECTION, "edge-selection");
827   pref->addItem(tr("Vertices"), otherGroup,
828                          SUIT_PreferenceMgr::Bool,
829                          ModuleBase_Preferences::VIEWER_SECTION, "vertex-selection");
830
831   int sensitivityGroup = pref->addItem(tr("Selection sensitivity"), viewTab);
832   pref->setItemProperty("columns", 2, sensitivityGroup);
833   pref->addItem(tr("Vertex"), sensitivityGroup, SUIT_PreferenceMgr::DblSpin,
834                 ModuleBase_Preferences::VIEWER_SECTION, "point-selection-sensitivity");
835   pref->addItem(tr("Edge"), sensitivityGroup, SUIT_PreferenceMgr::DblSpin,
836                 ModuleBase_Preferences::VIEWER_SECTION, "edge-selection-sensitivity");
837
838   int highlightGroup = pref->addItem(tr("Additional highlighting"), viewTab);
839   pref->setItemProperty("columns", 2, highlightGroup);
840   pref->addItem(tr("In 3d mode"), highlightGroup,
841     SUIT_PreferenceMgr::Bool, ModuleBase_Preferences::VIEWER_SECTION, "highlighting-3d");
842   pref->addItem(tr("In 2d mode"), highlightGroup,
843     SUIT_PreferenceMgr::Bool, ModuleBase_Preferences::VIEWER_SECTION, "highlighting-2d");
844
845   int colorScaleGroup = pref->addItem(tr("Color scale"), viewTab);
846   pref->setItemProperty("columns", 4, colorScaleGroup);
847   int aItem = aMgr.addPreference(tr("X position"), colorScaleGroup,
848     SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_x_position");
849   pref->setItemProperty("min", 0, aItem);
850   pref->setItemProperty("max", 1, aItem);
851
852   aItem = aMgr.addPreference(tr("Y position"), colorScaleGroup,
853     SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_y_position");
854   pref->setItemProperty("min", 0, aItem);
855   pref->setItemProperty("max", 1, aItem);
856
857   aItem = aMgr.addPreference(tr("Width"), colorScaleGroup,
858     SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_width");
859   pref->setItemProperty("min", 0, aItem);
860   pref->setItemProperty("max", 1, aItem);
861
862   aItem = aMgr.addPreference(tr("Height"), colorScaleGroup,
863     SUIT_PreferenceMgr::Double, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_height");
864   pref->setItemProperty("min", 0, aItem);
865   pref->setItemProperty("max", 1, aItem);
866
867   aItem = aMgr.addPreference(tr("Intervals number"), colorScaleGroup,
868     SUIT_PreferenceMgr::Integer, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_nb_intervals");
869   pref->setItemProperty("min", 0, aItem);
870   pref->setItemProperty("max", 100, aItem);
871
872   aItem = aMgr.addPreference(tr("Text height"), colorScaleGroup,
873     SUIT_PreferenceMgr::Integer, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_text_height");
874   pref->setItemProperty("min", 0, aItem);
875   pref->setItemProperty("max", 100, aItem);
876
877   aItem = aMgr.addPreference(tr("Text color"), colorScaleGroup,
878     SUIT_PreferenceMgr::Color, ModuleBase_Preferences::VIEWER_SECTION, "scalar_bar_text_color");
879
880   pref->retrieve();
881 }
882
883 //******************************************************
884 void SHAPERGUI::preferencesChanged(const QString& theSection, const QString& theParam)
885 {
886   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
887   QString aVal = aResMgr->stringValue(theSection, theParam);
888   Config_Prop* aProp = Config_PropManager::findProp(theSection.toStdString(),
889                                                     theParam.toStdString());
890   std::string aValue = aVal.toStdString();
891   if (aValue.empty()) {
892     aValue = aProp->defaultValue();
893     aResMgr->setValue(theSection, theParam, QString(aValue.c_str()));
894
895     LightApp_Preferences* pref = preferences();
896     if (pref)
897       pref->retrieve();
898   }
899   aProp->setValue(aValue);
900
901   if ((theSection == "Visualization") && (theParam == "selection_color")) {
902     std::vector<int> aColor = Config_PropManager::color("Visualization", "selection_color");
903     myWorkshop->displayer()->setSelectionColor(aColor);
904   }
905
906   myWorkshop->displayer()->redisplayObjects();
907 }
908
909 void SHAPERGUI::putInfo(const QString& theInfo, const int theMSecs)
910 {
911   application()->putInfo(theInfo, theMSecs);
912 }
913
914 bool SHAPERGUI::abortAllOperations()
915 {
916   return workshop()->operationMgr()->abortAllOperations();
917 }
918
919 void SHAPERGUI::createFeatureActions()
920 {
921   myWorkshop->menuMgr()->createFeatureActions();
922 }
923
924 void SHAPERGUI::onWhatIs(bool isToggled)
925 {
926   if (sender() == myWhatIsAction) {
927     QAction* aViewAct = myInspectionPanel->toggleViewAction();
928     aViewAct->blockSignals(true);
929     aViewAct->setChecked(isToggled);
930     aViewAct->blockSignals(false);
931     myInspectionPanel->setVisible(isToggled);
932   }
933   else {
934     myWhatIsAction->blockSignals(true);
935     myWhatIsAction->setChecked(isToggled);
936     myWhatIsAction->blockSignals(false);
937     myInspectionPanel->setVisible(isToggled);
938   }
939 }
940
941 void SHAPERGUI::updateModuleVisibilityState()
942 {
943   LightApp_Module::updateModuleVisibilityState();
944   onWhatIs(myIsInspectionVisible);
945 }
946
947 void SHAPERGUI::onEditToolbars()
948 {
949   SHAPERGUI_ToolbarsDlg aDlg(this);
950   if (aDlg.exec() == QDialog::Accepted) {
951     if (aDlg.isReset())
952       resetToolbars();
953     else
954       updateToolbars(aDlg.result());
955   }
956 }
957
958 void SHAPERGUI::registerCommandToolbar(const QString& theToolName, int theCommandId)
959 {
960   if (!myToolbars.contains(theToolName))
961     myToolbars[theToolName] = QList<int>();
962   myToolbars[theToolName].append(theCommandId);
963 }
964
965 int SHAPERGUI::getNextCommandId() const
966 {
967   QtxActionMenuMgr* aMenuMgr = menuMgr();
968   QIntList aIds = aMenuMgr->idList();
969   int aId = aIds.count();
970   while (action(aId) || myActionsList.contains(aId))
971     aId++;
972   return aId;
973 }
974
975 void SHAPERGUI::updateToolbars(const QMap<QString, QIntList>& theNewToolbars)
976 {
977   // Store default toolbars
978   if (myDefaultToolbars.size() == 0)
979     myDefaultToolbars = myToolbars;
980
981   QtxActionToolMgr* aMgr = toolMgr();
982   QStringList aToolbars = theNewToolbars.keys();
983   QIntList aCommands, aOldCmd;
984   int aToolbarId;
985   QAction* aAction;
986   int aActionId;
987   foreach(QString aName, aToolbars) {
988     aCommands = theNewToolbars[aName];
989     // Find or create toolbar
990     if (aMgr->hasToolBar(aName)) {
991       aToolbarId = aMgr->find(aMgr->toolBar(aName));
992       aOldCmd = myToolbars[aName];
993     }
994     else {
995       aToolbarId = aMgr->createToolBar(aName);
996     }
997     int aPos = 0;
998     foreach(int aCmd, aCommands) {
999       // Find action
1000       if (aCmd == -1)
1001         aAction = separator();
1002       else
1003         aAction = action(aCmd);
1004       aActionId = aMgr->actionId(aAction);
1005       if (aActionId == -1) {
1006         // Add new action
1007         aMgr->insert(aAction, aToolbarId, aPos);
1008       }
1009       else {
1010         // Change position of action
1011         if (aMgr->index(aActionId, aToolbarId) != aPos) {
1012           if (aMgr->containsAction(aActionId, aToolbarId))
1013             aMgr->remove(aActionId, aToolbarId);
1014           aMgr->insert(aActionId, aToolbarId, aPos);
1015         }
1016       }
1017       aOldCmd.removeAll(aCmd);
1018       aPos++;
1019     }
1020     // remove extra actions
1021     foreach(int aCmd, aOldCmd) {
1022       aAction = action(aCmd);
1023       aActionId = aMgr->actionId(aAction);
1024       aMgr->remove(aActionId, aToolbarId);
1025     }
1026     myToolbars.remove(aName);
1027   }
1028   // Remove extra toolbars
1029   aToolbars = myToolbars.keys();
1030   foreach(QString aName, aToolbars) {
1031     aMgr->removeToolBar(aName);
1032   }
1033   // Set new toolbars structure
1034   myToolbars = theNewToolbars;
1035   myIsToolbarsModified = true;
1036 }
1037
1038 void SHAPERGUI::saveToolbarsConfig()
1039 {
1040   if (!myIsToolbarsModified)
1041     return;
1042   // Save toolbars configuration into map
1043   QMap<QString, QStringList> aToolbarsConfig;
1044   QtxActionToolMgr* aMgr = toolMgr();
1045   QStringList aToolbars = myToolbars.keys();
1046   QIntList aActionsIds;
1047   foreach(QString aName, aToolbars) {
1048     aActionsIds = myToolbars[aName];
1049     QStringList aContent;
1050     foreach(int aId, aActionsIds) {
1051       if (aId == -1)
1052         aContent.append("");
1053       else
1054         aContent.append(action(aId)->data().toString());
1055     }
1056     aToolbarsConfig[aName] = aContent;
1057   }
1058   // Store the configuration into resources
1059   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
1060   QStringList aNames = aToolbarsConfig.keys();
1061   QStringList aValues;
1062   foreach(QString aToolbar, aNames) {
1063     aResMgr->setValue(ToolbarsSection, aToolbar, aToolbarsConfig[aToolbar].join(","));
1064   }
1065   // Remove obsolete parameters from resources
1066   QStringList aOldParams = aResMgr->parameters(ToolbarsSection);
1067   foreach(QString aName, aOldParams) {
1068     if (!aToolbars.contains(aName))
1069       aResMgr->remove(ToolbarsSection, aName);
1070   }
1071   // Store current list of free commands
1072   QIntList aFreeCommands = getFreeCommands();
1073   QStringList aFreeList;
1074   foreach(int aId, aFreeCommands) {
1075     aFreeList.append(action(aId)->data().toString());
1076   }
1077   if (aFreeList.size() > 0)
1078     aResMgr->setValue(ToolbarsSection, FreeCommandsParam, aFreeList.join(","));
1079
1080   myIsToolbarsModified = false;
1081 }
1082
1083 void SHAPERGUI::loadToolbarsConfig()
1084 {
1085   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
1086   QStringList aToolbarNames = aResMgr->parameters(ToolbarsSection);
1087   if (aToolbarNames.size() == 0)
1088     return;
1089
1090   // Create commands map
1091   QMap<QString, int> aCommandsMap;
1092   QString aCmdIdStr;
1093   foreach(int aId, myActionsList) {
1094     aCmdIdStr = action(aId)->data().toString();
1095     aCommandsMap[aCmdIdStr] = aId;
1096   }
1097
1098   // Create new toolbars structure
1099   QMap<QString, QIntList> aToolbars;
1100   QStringList aCommands;
1101   QIntList aKnownCommands;
1102   QList<QAction*> aActions;
1103   foreach(QString aName, aToolbarNames) {
1104     aCommands = aResMgr->stringValue(ToolbarsSection, aName).split(",");
1105     if (aName == FreeCommandsParam) {
1106       // The value is a list of free commands
1107       foreach(QString aCommand, aCommands) {
1108         aKnownCommands.append(aCommandsMap[aCommand]);
1109       }
1110     }
1111     else {
1112       aToolbars[aName] = QIntList();
1113       if (aCommands.size() > 0) {
1114         foreach(QString aCommand, aCommands) {
1115           if (aCommand.isEmpty())
1116             aToolbars[aName].append(-1);
1117           else if (aCommandsMap.contains(aCommand)) {
1118             int aId = aCommandsMap[aCommand];
1119             aToolbars[aName].append(aId);
1120             aKnownCommands.append(aId);
1121           }
1122         }
1123       }
1124     }
1125   }
1126   // Find new and obsolete commands
1127   QIntList aNewCommands = myActionsList;
1128   foreach(int aId, myActionsList) {
1129     if (aKnownCommands.contains(aId)) {
1130       aKnownCommands.removeAll(aId);
1131       aNewCommands.removeAll(aId);
1132     }
1133   }
1134   if (aNewCommands.size() > 0) {
1135     // Add new commands to toolbars structure
1136     QStringList aKeys = myToolbars.keys();
1137     foreach(int aNewId, aNewCommands) {
1138       foreach(QString aName, aKeys) {
1139         if (myToolbars[aName].contains(aNewId)) {
1140           if (!aToolbars.contains(aName)) {
1141             aToolbars[aName] = QIntList();
1142           }
1143           aToolbars[aName].append(aNewId);
1144         }
1145       }
1146     }
1147   }
1148   if (aKnownCommands.size() > 0) {
1149     // Remove obsolete commands from the toolbars structure
1150     QStringList aKeys = aToolbars.keys();
1151     foreach(int aOldId, aKnownCommands) {
1152       foreach(QString aName, aKeys) {
1153         if (aToolbars[aName].contains(aOldId)) {
1154           aToolbars[aName].removeAll(aOldId);
1155           if (aToolbars[aName].size() == 0)
1156             aToolbars.remove(aName);
1157         }
1158       }
1159     }
1160   }
1161   updateToolbars(aToolbars);
1162   myIsToolbarsModified = false;
1163 }
1164
1165
1166 QIntList SHAPERGUI::getFreeCommands() const
1167 {
1168   QIntList aFreeCommands;
1169   QtxActionToolMgr* aMgr = toolMgr();
1170   QAction* anAction;
1171   int aId;
1172   QMap<QString, QIntList>::const_iterator aIt;
1173   QIntList aShaperActions = shaperActions();
1174   foreach(int aCmd, aShaperActions) {
1175     anAction = action(aCmd);
1176     aId = aMgr->actionId(anAction);
1177     if (!aMgr->containsAction(aId))
1178       aFreeCommands.append(aCmd);
1179   }
1180   return aFreeCommands;
1181 }
1182
1183 void SHAPERGUI::resetToolbars()
1184 {
1185   if (!myDefaultToolbars.isEmpty())
1186     updateToolbars(myDefaultToolbars);
1187   myIsToolbarsModified = false;
1188   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
1189   aResMgr->remove(ToolbarsSection);
1190 }
1191
1192 void SHAPERGUI::publishToStudy()
1193 {
1194   if (isActiveModule())
1195     myWorkshop->module()->launchOperation("PublishToStudy", false);
1196 }