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