Salome HOME
Set checkable state for features
[modules/shaper.git] / src / NewGeom / NewGeom_Module.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3
4 #include "NewGeom_Module.h"
5 #include "NewGeom_DataModel.h"
6 #include "NewGeom_OCCSelector.h"
7 #include <NewGeom_NestedButton.h>
8
9 #include <XGUI_Workshop.h>
10 #include <XGUI_PropertyPanel.h>
11 #include <XGUI_ContextMenuMgr.h>
12 #include <XGUI_ObjectsBrowser.h>
13 #include <XGUI_OperationMgr.h>
14 #include <XGUI_Displayer.h>
15
16 #include <ModuleBase_Operation.h>
17 #include <ModuleBase_Preferences.h>
18 #include <ModuleBase_ActionInfo.h>
19
20 #include <LightApp_Application.h>
21 #include <LightApp_SelectionMgr.h>
22 #include <LightApp_OCCSelector.h>
23 #include <LightApp_Study.h>
24 #include <OCCViewer_ViewModel.h>
25
26 #include <SUIT_Selector.h>
27 #include <SUIT_Desktop.h>
28 #include <SUIT_ViewManager.h>
29 #include <SUIT_ResourceMgr.h>
30
31 #include <QtxPopupMgr.h>
32 #include <QtxActionMenuMgr.h>
33 #include <QtxResourceMgr.h>
34
35 #include <Config_PropManager.h>
36 #include <Config_ModuleReader.h>
37
38 #include <AIS_ListOfInteractive.hxx>
39 #include <AIS_ListIteratorOfListOfInteractive.hxx>
40
41 #include <QDockWidget>
42 #include <QAction>
43 #include <QTimer>
44
45
46 extern "C" {
47 NewGeom_EXPORT CAM_Module* createModule()
48 {
49   return new NewGeom_Module();
50 }
51
52 NewGeom_EXPORT char* getModuleVersion()
53 {
54   return "0.0";
55 }
56 }
57
58 /** 
59 * Class for preferences management
60 */
61 class NewGeom_PrefMgr: public ModuleBase_IPrefMgr
62 {
63 public:
64   /// Constructor
65   /// \param theMgr preferences manager of SALOME
66   /// \param theModName name of the module
67   NewGeom_PrefMgr(LightApp_Preferences* theMgr, const QString& theModName):myMgr(theMgr), myModName(theModName) {}
68
69   virtual int addPreference(const QString& theLbl, int pId, 
70                             SUIT_PreferenceMgr::PrefItemType theType,
71                             const QString& theSection, const QString& theName )
72   {
73     return myMgr->addPreference(myModName, theLbl, pId, theType, theSection, theName);
74   }
75
76   virtual void setItemProperty(const QString& thePropName,
77                                const QVariant& theValue,
78                                const int theId = -1)
79   {
80     myMgr->setItemProperty(thePropName, theValue, theId);
81   }
82
83
84   virtual SUIT_PreferenceMgr* prefMgr() const { return myMgr; }
85
86 private:
87   LightApp_Preferences* myMgr;
88   QString myModName;
89 };
90
91
92
93
94 //******************************************************
95 NewGeom_Module::NewGeom_Module()
96     : LightApp_Module("NewGeom"),
97       mySelector(0), myIsOpened(0), myPopupMgr(0)
98 {
99   myWorkshop = new XGUI_Workshop(this);
100   connect(myWorkshop, SIGNAL(commandStatusUpdated()),
101           this, SLOT(onUpdateCommandStatus()));
102
103   myProxyViewer = new NewGeom_SalomeViewer(this);
104
105   ModuleBase_Preferences::setResourceMgr(application()->resourceMgr());
106   ModuleBase_Preferences::loadCustomProps();
107 }
108
109 //******************************************************
110 NewGeom_Module::~NewGeom_Module()
111 {
112 }
113
114 //******************************************************
115 void NewGeom_Module::initialize(CAM_Application* theApp)
116 {
117   LightApp_Module::initialize(theApp);
118   inspectSalomeModules();
119
120   myWorkshop->startApplication();
121   LightApp_Application* anApp = dynamic_cast<LightApp_Application*>(theApp);
122   if (anApp)
123     connect(anApp, SIGNAL(preferenceResetToDefaults()), this, SLOT(onDefaultPreferences()));
124 }
125
126 //******************************************************
127 void NewGeom_Module::windows(QMap<int, int>& theWndMap) const
128 {
129   theWndMap.insert(LightApp_Application::WT_PyConsole, Qt::BottomDockWidgetArea);
130 }
131
132 //******************************************************
133 void NewGeom_Module::viewManagers(QStringList& theList) const
134 {
135   theList.append(OCCViewer_Viewer::Type());
136 }
137
138 //******************************************************
139 bool NewGeom_Module::activateModule(SUIT_Study* theStudy)
140 {
141   bool isDone = LightApp_Module::activateModule(theStudy);
142   if (isDone) {
143     setMenuShown(true);
144     setToolShown(true);
145
146     QObject* aObj = myWorkshop->objectBrowser()->parent();
147     QDockWidget* aObjDoc = dynamic_cast<QDockWidget*>(aObj);
148     if (aObjDoc) {
149       QAction* aViewAct = aObjDoc->toggleViewAction();
150       aViewAct->setEnabled(true);
151       myWorkshop->objectBrowser()->setVisible(true);
152       aObjDoc->setVisible(true);
153     }
154
155     if (!mySelector) {
156       ViewManagerList OCCViewManagers;
157       application()->viewManagers(OCCViewer_Viewer::Type(), OCCViewManagers);
158       if (OCCViewManagers.size() > 0) {
159         mySelector = createSelector(OCCViewManagers.first());
160       }
161     }
162     //action(myEraseAll)->setEnabled(false);
163
164     if (myIsOpened) {
165       myWorkshop->objectBrowser()->rebuildDataTree();
166       myWorkshop->updateCommandStatus();
167       myIsOpened = false;
168       QTimer::singleShot(1000, myWorkshop, SLOT(displayAllResults()));
169     }
170     else
171       myWorkshop->updateCommandStatus();
172   }
173   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
174   myIsStorePositions = aResMgr->booleanValue("Study", "store_positions", true);
175   myIsEditEnabled = getApp()->isEditEnabled();
176   getApp()->setEditEnabled(false);
177
178   // this following row is caused by #187 bug.
179   // SALOME saves the dock widget positions before deactivateModule() and
180   // load it after the module activation. So, if the panel is visible before
181   // deactivate, it becomes visible after activate.
182   // In order to avoid the visible property panel, the widget position save is
183   // switch off in this module
184   aResMgr->setValue("Study", "store_positions", false);
185
186   // Synchronize displayed objects
187   if (mySelector && mySelector->viewer()) {
188     Handle(AIS_InteractiveContext) aContext = mySelector->viewer()->getAISContext();
189     XGUI_Displayer* aDisp = myWorkshop->displayer();
190     QObjectPtrList aObjList = aDisp->displayedObjects();
191
192     AIS_ListOfInteractive aList;
193     aContext->DisplayedObjects(aList);
194     AIS_ListIteratorOfListOfInteractive aLIt;
195     Handle(AIS_InteractiveObject) anAISIO;
196     foreach (ObjectPtr aObj, aObjList) {
197       AISObjectPtr aPrs = aDisp->getAISObject(aObj);
198       Handle(AIS_InteractiveObject) aAIS = aPrs->impl<Handle(AIS_InteractiveObject)>();
199       bool aFound = false;
200       for (aLIt.Initialize(aList); aLIt.More(); aLIt.Next()) {
201         anAISIO = aLIt.Value();
202         if (anAISIO.Access() == aAIS.Access()) {
203           aFound = true;
204           break;
205         }
206       }
207       if (!aFound) {
208         aDisp->erase(aObj, false);
209       }
210     }
211   }
212
213   return isDone;
214 }
215
216 //******************************************************
217 bool NewGeom_Module::deactivateModule(SUIT_Study* theStudy)
218 {
219   setMenuShown(false);
220   setToolShown(false);
221
222   QObject* aObj = myWorkshop->objectBrowser()->parent();
223   QDockWidget* aObjDoc = dynamic_cast<QDockWidget*>(aObj);
224   if (aObjDoc) {
225     aObjDoc->setVisible(false);
226     myWorkshop->objectBrowser()->setVisible(false);
227     QAction* aViewAct = aObjDoc->toggleViewAction();
228     aViewAct->setEnabled(false);
229   }
230
231   // the active operation should be stopped for the next activation.
232   // There should not be active operation and visualized preview.
233   // Abort operation should be performed before the selection's remove
234   // because the displayed objects should be removed from the viewer, but
235   // the AIS context is obtained from the selector.
236   ModuleBase_Operation* anOperation = myWorkshop->operationMgr()->currentOperation();
237   while (anOperation) {
238     anOperation->abort();
239     anOperation = myWorkshop->operationMgr()->currentOperation();
240   }
241   // Delete selector because it has to be redefined on next activation
242   if (mySelector) {
243     myProxyViewer->setSelector(0);
244     delete mySelector;
245     mySelector = 0;
246   }
247
248   //myWorkshop->contextMenuMgr()->disconnectViewer();
249
250   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
251   aResMgr->setValue("Study", "store_positions", myIsStorePositions);
252   getApp()->setEditEnabled(myIsEditEnabled);
253
254   return LightApp_Module::deactivateModule(theStudy);
255 }
256
257 //******************************************************
258 void NewGeom_Module::onViewManagerAdded(SUIT_ViewManager* theMgr)
259 {
260   if (!mySelector) {
261     mySelector = createSelector(theMgr);
262   }
263 }
264
265 //******************************************************
266 void NewGeom_Module::onViewManagerRemoved(SUIT_ViewManager* theMgr)
267 {
268   if (mySelector) {
269     if (theMgr->getType() == OCCViewer_Viewer::Type()) {
270       OCCViewer_Viewer* aViewer = static_cast<OCCViewer_Viewer*>(theMgr->getViewModel());
271       if (mySelector->viewer() == aViewer) {
272         myWorkshop->displayer()->eraseAll(false);
273         myProxyViewer->setSelector(0);
274         delete mySelector;
275         mySelector = 0;
276       }
277     }
278   }
279 }
280
281 //******************************************************
282 QtxPopupMgr* NewGeom_Module::popupMgr()
283 {
284   if (!myPopupMgr)
285     myPopupMgr = new QtxPopupMgr( 0, this );
286   return myPopupMgr;
287 }
288
289 //******************************************************
290 void NewGeom_Module::onDefaultPreferences()
291 {
292   ModuleBase_Preferences::resetConfig();
293   ModuleBase_Preferences::updateResourcesByConfig();
294
295   LightApp_Preferences* pref = preferences();
296   if (pref)
297     pref->retrieve();
298 }
299
300 //******************************************************
301 void NewGeom_Module::onUpdateCommandStatus()
302 {
303   getApp()->updateActions();
304 }
305
306 //******************************************************
307 NewGeom_OCCSelector* NewGeom_Module::createSelector(SUIT_ViewManager* theMgr)
308 {
309   if (theMgr->getType() == OCCViewer_Viewer::Type()) {
310     OCCViewer_Viewer* aViewer = static_cast<OCCViewer_Viewer*>(theMgr->getViewModel());
311     NewGeom_OCCSelector* aSelector = new NewGeom_OCCSelector(aViewer, getApp()->selectionMgr());
312     LightApp_SelectionMgr* aMgr = getApp()->selectionMgr();
313     QList<SUIT_Selector*> aList;
314     aMgr->selectors(aList);
315     foreach(SUIT_Selector* aSel, aList)
316     {
317       aSel->setEnabled(aSel == aSelector);
318     }
319     myProxyViewer->setSelector(aSelector);
320     return aSelector;
321   }
322   return 0;
323 }
324
325 //******************************************************
326 CAM_DataModel* NewGeom_Module::createDataModel()
327 {
328   NewGeom_DataModel* aDataModel = new NewGeom_DataModel(this);
329
330   // Calling addComponent() for persistent functionality work in the SalomeApp_Study
331   LightApp_Study* aStudy = dynamic_cast<LightApp_Study*>(application()->activeStudy() );
332   aStudy->addComponent(aDataModel);
333
334   return aDataModel;
335 }
336
337 QAction* NewGeom_Module::addFeature(const QString& theWBName, const ActionInfo& theInfo)
338 {
339   return addFeature(theWBName,
340                     theInfo.id,
341                     theInfo.text,
342                     theInfo.toolTip,
343                     theInfo.icon,
344                     theInfo.shortcut,
345                     theInfo.checkable);
346 }
347
348 //******************************************************
349 QAction* NewGeom_Module::addFeature(const QString& theWBName, const QString& theId,
350                                     const QString& theTitle, const QString& theTip,
351                                     const QIcon& theIcon, const QKeySequence& theKeys,
352                                     bool isCheckable)
353 {
354   int aMenu = createMenu(theWBName, -1, -1, 50);
355   int aTool = createTool(theWBName);
356
357   int aId = myActionsList.size();
358   myActionsList.append(theId);
359   SUIT_Desktop* aDesk = application()->desktop();
360   int aKeys = 0;
361   for (unsigned int i = 0; i < theKeys.count(); i++)
362     aKeys += theKeys[i];
363   QAction* aAction = createAction(aId, theTip, theIcon, theTitle, theTip, aKeys, aDesk,
364                                   isCheckable);
365   aAction->setData(theId);
366   int aItemId = createMenu(aId, aMenu, -1, 10);
367   int aToolId = createTool(aId, aTool);
368
369   return aAction;
370 }
371
372
373 QAction* NewGeom_Module::addNestedFeature(const QString& theWBName,
374                                           const ActionInfo& theInfo,
375                                           const QList<QAction*>& theNestedActions)
376 {
377   int aMenu = createMenu(theWBName, -1, -1, 50);
378   int aTool = createTool(theWBName);
379
380   int aId = myActionsList.size();
381   myActionsList.append(theInfo.id);
382   SUIT_Desktop* aDesk = application()->desktop();
383   NewGeom_NestedButton* anAction = new NewGeom_NestedButton(aDesk, theNestedActions);
384   anAction->setData(theInfo.id);
385   anAction->setCheckable(theInfo.checkable);
386   anAction->setChecked(theInfo.checked);
387   anAction->setEnabled(theInfo.enabled);
388   anAction->setVisible(theInfo.visible);
389   anAction->setIcon(theInfo.icon);
390   anAction->setText(theInfo.text);
391   anAction->setToolTip(theInfo.toolTip);
392   anAction->setShortcut(theInfo.shortcut);
393   anAction->setFont(theInfo.font);
394
395   //int aItemId = createMenu(aId, aMenu, -1, 10);
396   int aToolId = createTool(anAction, aTool, aId);
397
398   return anAction;
399 }
400
401
402 //******************************************************
403 QAction* NewGeom_Module::addDesktopCommand(const QString& theId, const QString& theTitle,
404                                            const QString& theTip, const QIcon& theIcon,
405                                            const QKeySequence& theKeys, bool isCheckable,
406                                            const char* theMenuSourceText, const int theMenuPosition)
407 {
408   int aMenu = createMenu(tr(theMenuSourceText), -1, -1);
409
410   int aId = myActionsList.size();
411   myActionsList.append(theId);
412   SUIT_Desktop* aDesk = application()->desktop();
413   int aKeys = 0;
414   for (unsigned int i = 0; i < theKeys.count(); i++)
415     aKeys += theKeys[i];
416   QAction* aAction = createAction(aId, theTip, theIcon, theTitle, theTip, aKeys, aDesk,
417                                   isCheckable);
418   aAction->setData(theId);
419   createMenu(aId, aMenu, theMenuPosition);
420   return aAction;
421 }
422
423 //******************************************************
424 void NewGeom_Module::addDesktopMenuSeparator(const char* theMenuSourceText, const int theMenuPosition)
425 {
426   int aMenu = createMenu(tr(theMenuSourceText), -1, -1);
427   createMenu(separator(), aMenu, -1, theMenuPosition);
428 }
429
430 //******************************************************
431 QList<QAction*> NewGeom_Module::commandList() const
432 {
433   QList<QAction*> aActions;
434   for (int i = 0; i < myActionsList.size(); i++)
435     aActions.append(action(i));
436   return aActions;
437 }
438
439 //******************************************************
440 QStringList NewGeom_Module::commandIdList() const
441 {
442   return myActionsList;
443 }
444
445 //******************************************************
446 QMainWindow* NewGeom_Module::desktop() const
447 {
448   return application()->desktop();
449 }
450
451 //******************************************************
452 QString NewGeom_Module::commandId(const QAction* theCmd) const
453 {
454   int aId = actionId(theCmd);
455   if (aId < myActionsList.size())
456     return myActionsList[aId];
457   return QString();
458 }
459
460 //******************************************************
461 QAction* NewGeom_Module::command(const QString& theId) const
462 {
463   int aId = myActionsList.indexOf(theId);
464   if ((aId != -1) && (aId < myActionsList.size())) {
465     return action(aId);
466   }
467   return 0;
468 }
469
470 //******************************************************
471 void NewGeom_Module::setNestedActions(const QString& theId, const QStringList& theActions)
472 {
473   myNestedActions[theId] = theActions;
474 }
475
476 //******************************************************
477 QStringList NewGeom_Module::nestedActions(const QString& theId) const
478 {
479   if (myNestedActions.contains(theId))
480     return myNestedActions[theId];
481   return QStringList();
482 }
483
484 //******************************************************
485 void NewGeom_Module::setDocumentKind(const QString& theId, const QString& theKind)
486 {
487   myDocumentType[theId] = theKind;
488 }
489
490 //******************************************************
491 QString NewGeom_Module::documentKind(const QString& theId) const
492 {
493   if (myDocumentType.contains(theId))
494     return myDocumentType[theId];
495   return QString();
496
497 }
498
499 //******************************************************
500 void NewGeom_Module::selectionChanged()
501 {
502   LightApp_Module::selectionChanged();
503   myWorkshop->salomeViewerSelectionChanged();
504 }
505
506 //******************************************************
507 void NewGeom_Module::contextMenuPopup(const QString& theClient, QMenu* theMenu, QString& theTitle)
508 {
509   myWorkshop->contextMenuMgr()->addViewerItems(theMenu);
510   LightApp_Module::contextMenuPopup(theClient, theMenu, theTitle);
511 }
512
513
514 //******************************************************
515 void NewGeom_Module::createPreferences()
516 {
517   LightApp_Preferences* pref = preferences();
518   if (!pref)
519     return;
520   ModuleBase_Preferences::updateConfigByResources();
521   QString aModName = moduleName();
522
523   QtxPreferenceItem* item = pref->findItem(aModName, true );
524   if ( item && (!item->isEmpty() )) {
525     item->parentItem()->removeItem(item);
526     delete item;
527   }
528
529   int catId = pref->addPreference(aModName, -1 );
530   if ( catId == -1 )
531     return;
532   NewGeom_PrefMgr aMgr(pref, aModName);
533   ModuleBase_Preferences::createEditContent(&aMgr, catId);
534   pref->retrieve();
535 }
536
537 //******************************************************
538 void NewGeom_Module::preferencesChanged(const QString& theSection, const QString& theParam)
539 {
540   SUIT_ResourceMgr* aResMgr = application()->resourceMgr();
541   QString aVal = aResMgr->stringValue(theSection, theParam);
542   Config_Prop* aProp = Config_PropManager::findProp(theSection.toStdString(), theParam.toStdString());
543   std::string aValue = aVal.toStdString();
544   if (aValue.empty()) {
545     aValue = aProp->defaultValue();
546     aResMgr->setValue(theSection, theParam, QString(aValue.c_str()));
547
548     LightApp_Preferences* pref = preferences();
549     if (pref)
550       pref->retrieve();
551   }
552   aProp->setValue(aValue);
553
554 }
555
556 void NewGeom_Module::inspectSalomeModules()
557 {
558   QStringList aModuleNames;
559   getApp()->modules(aModuleNames, false);
560   foreach(QString eachModule, aModuleNames) {
561     Config_ModuleReader::addDependencyModule(eachModule.toStdString());
562   }
563 }