]> SALOME platform Git repositories - modules/shaper.git/blob - src/XGUI/XGUI_ContextMenuMgr.cpp
Salome HOME
fa76cfa4d9364c0143fa3b62b38628d84defd8df
[modules/shaper.git] / src / XGUI / XGUI_ContextMenuMgr.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 #include "XGUI_ContextMenuMgr.h"
4 #include "XGUI_Workshop.h"
5 #include "XGUI_ObjectsBrowser.h"
6 #include "XGUI_SelectionMgr.h"
7 #include "XGUI_Displayer.h"
8 #include "XGUI_ViewerProxy.h"
9 #include "XGUI_Selection.h"
10 #include "XGUI_SalomeConnector.h"
11
12 #include <AppElements_MainWindow.h>
13
14 //#include "PartSetPlugin_Part.h"
15
16 #include <ModelAPI_Data.h>
17 #include <ModelAPI_AttributeDocRef.h>
18 #include <ModelAPI_Object.h>
19 #include <ModelAPI_Session.h>
20 #include <ModelAPI_ResultGroup.h>
21 #include <ModelAPI_ResultParameter.h>
22 #include <ModelAPI_ResultConstruction.h>
23 #include <ModelAPI_ResultBody.h>
24
25 #include <ModuleBase_IModule.h>
26 #include <ModuleBase_Tools.h>
27
28 #include <QAction>
29 #include <QContextMenuEvent>
30 #include <QMenu>
31 #include <QMdiArea>
32
33
34 XGUI_ContextMenuMgr::XGUI_ContextMenuMgr(XGUI_Workshop* theParent)
35     : QObject(theParent),
36       myWorkshop(theParent),
37       mySeparator(0)
38 {
39 }
40
41 XGUI_ContextMenuMgr::~XGUI_ContextMenuMgr()
42 {
43 }
44
45 void XGUI_ContextMenuMgr::createActions()
46 {
47   QAction* aAction = new QAction(QIcon(":pictures/delete.png"), tr("Delete"), this);
48   QMainWindow* aDesktop = myWorkshop->mainWindow();
49   if (!aDesktop)
50     aDesktop = myWorkshop->salomeConnector()->desktop();
51   aDesktop->addAction(aAction);
52
53   addAction("DELETE_CMD", aAction);
54   aAction->setShortcut(Qt::Key_Delete);
55   aAction->setShortcutContext(Qt::ApplicationShortcut);
56
57   aAction = new QAction(QIcon(":pictures/move.png"), tr("Move..."), this);
58   addAction("MOVE_CMD", aAction);
59
60   aAction = new QAction(QIcon(":pictures/color.png"), tr("Color..."), this);
61   addAction("COLOR_CMD", aAction);
62
63   aAction = new QAction(QIcon(":pictures/eye_pencil.png"), tr("Show"), this);
64   addAction("SHOW_CMD", aAction);
65
66   aAction = new QAction(QIcon(":pictures/eye_pencil.png"), tr("Show only"), this);
67   addAction("SHOW_ONLY_CMD", aAction);
68
69   aAction = new QAction(QIcon(":pictures/eye_pencil_closed.png"), tr("Hide"), this);
70   addAction("HIDE_CMD", aAction);
71
72   aAction = new QAction(QIcon(":pictures/eye_pencil_closed.png"), tr("Hide all"), this);
73   addAction("HIDEALL_CMD", aAction);
74
75   aAction = new QAction(QIcon(":pictures/shading.png"), tr("Shading"), this);
76   addAction("SHADING_CMD", aAction);
77
78   aAction = new QAction(QIcon(":pictures/wireframe.png"), tr("Wireframe"), this);
79   addAction("WIREFRAME_CMD", aAction);
80
81   mySeparator = new QAction(this);
82   mySeparator->setSeparator(true);
83
84
85   buildObjBrowserMenu();
86   buildViewerMenu();
87 }
88
89 void XGUI_ContextMenuMgr::addAction(const QString& theId, QAction* theAction)
90 {
91   if (myActions.contains(theId))
92     qCritical("A command with Id = '%s' already defined!", qPrintable(theId));
93   theAction->setData(theId);
94   connect(theAction, SIGNAL(triggered(bool)), this, SLOT(onAction(bool)));
95   myActions[theId] = theAction;
96 }
97
98 QAction* XGUI_ContextMenuMgr::action(const QString& theId) const
99 {
100   if (myActions.contains(theId))
101     return myActions[theId];
102   return 0;
103 }
104
105 QAction* XGUI_ContextMenuMgr::actionByName(const QString& theName) const
106 {
107   foreach(QAction* eachAction, myActions) {
108     if (eachAction->text() == theName) {
109       return eachAction;
110     }
111   }
112   return NULL;
113 }
114
115 QStringList XGUI_ContextMenuMgr::actionIds() const
116 {
117   return myActions.keys();
118 }
119
120 void XGUI_ContextMenuMgr::onAction(bool isChecked)
121 {
122   QAction* aAction = static_cast<QAction*>(sender());
123   emit actionTriggered(aAction->data().toString(), isChecked);
124 }
125
126 void XGUI_ContextMenuMgr::updateCommandsStatus()
127 {
128 }
129
130 void XGUI_ContextMenuMgr::onContextMenuRequest(QContextMenuEvent* theEvent)
131 {
132   QMenu* aMenu = 0;
133   if (sender() == myWorkshop->objectBrowser()) {
134     updateObjectBrowserMenu();
135     aMenu = objBrowserMenu();
136   } else if (sender() == myWorkshop->viewer()) {
137     updateViewerMenu();
138     aMenu = viewerMenu();
139   }
140
141   if (aMenu && (aMenu->actions().size() > 0)) {
142     // it is possible that some objects should do something before and after the popup menu exec
143     // e.g. a sketch manager changes an internal flag on this signals in order to do not hide
144     // a created entity
145     emit beforeContextMenu();
146     aMenu->exec(theEvent->globalPos());
147     emit afterContextMenu();
148     delete aMenu;
149   }
150 }
151
152 void XGUI_ContextMenuMgr::updateObjectBrowserMenu() 
153 {
154   foreach(QAction* aAction, myActions)
155     aAction->setEnabled(false);
156
157   XGUI_SelectionMgr* aSelMgr = myWorkshop->selector();
158   QObjectPtrList aObjects = aSelMgr->selection()->selectedObjects();
159   int aSelected = aObjects.size();
160   if (aSelected > 0) {
161     SessionPtr aMgr = ModelAPI_Session::get();
162     XGUI_Displayer* aDisplayer = myWorkshop->displayer();
163     bool hasResult = false;
164     bool hasFeature = false;
165     bool hasParameter = false;
166     bool hasSubFeature = false;
167     ModuleBase_Tools::checkObjects(aObjects, hasResult, hasFeature, hasParameter, hasSubFeature);
168
169     //Process Feature
170     if (aSelected == 1) {
171       ObjectPtr aObject = aObjects.first();
172       if (aObject) {
173         if (!hasFeature) {
174           if (aObject->isDisplayed()) {
175             if (aDisplayer->canBeShaded(aObject)) {
176               action("WIREFRAME_CMD")->setEnabled(true);
177               action("SHADING_CMD")->setEnabled(true);
178             }
179             action("HIDE_CMD")->setEnabled(true);
180           } else if (hasResult && (!hasParameter)) {
181             action("SHOW_CMD")->setEnabled(true);
182           }
183
184           ResultPartPtr aPartRes = std::dynamic_pointer_cast<ModelAPI_ResultPart>(aObject);
185           if (aPartRes) {
186             action("SHOW_CMD")->setEnabled(true);
187           }
188
189           if (!(hasParameter || hasFeature))
190             action("SHOW_ONLY_CMD")->setEnabled(true);
191         }
192         else if (hasFeature && myWorkshop->canMoveFeature())
193           action("MOVE_CMD")->setEnabled(true);
194       }
195     } else {
196       if (hasResult && (!hasParameter)) {
197         action("SHOW_CMD")->setEnabled(true);
198         action("HIDE_CMD")->setEnabled(true);
199         action("SHOW_ONLY_CMD")->setEnabled(true);
200         action("SHADING_CMD")->setEnabled(true);
201         action("WIREFRAME_CMD")->setEnabled(true);
202       }
203     }
204     if (!hasSubFeature) {
205       if (hasFeature || hasParameter)
206         action("DELETE_CMD")->setEnabled(true);
207     }
208   }
209   if (myWorkshop->canChangeColor())
210     action("COLOR_CMD")->setEnabled(true);
211 }
212
213 void XGUI_ContextMenuMgr::updateViewerMenu()
214 {
215   foreach(QAction* aAction, myActions)
216     aAction->setEnabled(false);
217
218   XGUI_SelectionMgr* aSelMgr = myWorkshop->selector();
219   QObjectPtrList aObjects = aSelMgr->selection()->selectedObjects();
220   if (aObjects.size() > 0) {
221     bool isVisible = false;
222     bool isShading = false;
223     bool canBeShaded = false;
224     foreach(ObjectPtr aObject, aObjects)
225     {
226       ResultPtr aRes = std::dynamic_pointer_cast<ModelAPI_Result>(aObject);
227       if (aRes && aRes->isDisplayed()) {
228         isVisible = true;
229         canBeShaded = myWorkshop->displayer()->canBeShaded(aObject);
230         isShading = (myWorkshop->displayer()->displayMode(aObject) == XGUI_Displayer::Shading);      
231         break;
232       }
233     }
234     if (isVisible) {
235       if (canBeShaded) {
236         action("WIREFRAME_CMD")->setEnabled(true);
237         action("SHADING_CMD")->setEnabled(true);
238       }
239       action("SHOW_ONLY_CMD")->setEnabled(true);
240       action("HIDE_CMD")->setEnabled(true);
241     } else
242       action("SHOW_CMD")->setEnabled(true);
243   }
244   if (myWorkshop->displayer()->objectsCount() > 0)
245     action("HIDEALL_CMD")->setEnabled(true);
246   if (myWorkshop->canChangeColor())
247     action("COLOR_CMD")->setEnabled(true);
248
249   action("DELETE_CMD")->setEnabled(true);
250 }
251
252 void XGUI_ContextMenuMgr::connectObjectBrowser()
253 {
254   connect(myWorkshop->objectBrowser(), SIGNAL(contextMenuRequested(QContextMenuEvent*)), this,
255           SLOT(onContextMenuRequest(QContextMenuEvent*)));
256 }
257
258 void XGUI_ContextMenuMgr::connectViewer()
259 {
260   connect(myWorkshop->viewer(), SIGNAL(contextMenuRequested(QContextMenuEvent*)), this,
261           SLOT(onContextMenuRequest(QContextMenuEvent*)));
262 }
263
264
265 void XGUI_ContextMenuMgr::buildObjBrowserMenu()
266 {
267   QAction* aSeparator = new QAction(this);
268   aSeparator->setSeparator(true);
269
270   QActionsList aList;
271   
272   // Result construction menu
273   aList.append(action("SHOW_CMD"));
274   aList.append(action("HIDE_CMD"));
275   aList.append(action("SHOW_ONLY_CMD"));
276   aList.append(action("COLOR_CMD"));
277   myObjBrowserMenus[ModelAPI_ResultConstruction::group()] = aList;
278   // Result part menu
279   myObjBrowserMenus[ModelAPI_ResultPart::group()] = aList;
280   //-------------------------------------
281   // Result body menu
282   aList.clear();
283   aList.append(action("WIREFRAME_CMD"));
284   aList.append(action("SHADING_CMD"));
285   aList.append(action("COLOR_CMD"));
286   aList.append(mySeparator);
287   aList.append(action("SHOW_CMD"));
288   aList.append(action("HIDE_CMD"));
289   aList.append(action("SHOW_ONLY_CMD"));
290   myObjBrowserMenus[ModelAPI_ResultBody::group()] = aList;
291   // Group menu
292   myObjBrowserMenus[ModelAPI_ResultGroup::group()] = aList;
293   //-------------------------------------
294   // Feature menu
295   aList.clear();
296   aList.append(action("DELETE_CMD"));
297   aList.append(action("MOVE_CMD"));
298   myObjBrowserMenus[ModelAPI_Feature::group()] = aList;
299
300   aList.clear();
301   aList.append(action("DELETE_CMD"));
302   myObjBrowserMenus[ModelAPI_ResultParameter::group()] = aList;
303   //-------------------------------------
304 }
305
306 void XGUI_ContextMenuMgr::buildViewerMenu()
307 {
308   QActionsList aList;
309   // Result construction menu
310   aList.append(action("HIDE_CMD"));
311   aList.append(action("SHOW_ONLY_CMD"));
312   aList.append(action("HIDEALL_CMD"));
313   aList.append(action("COLOR_CMD"));
314   myViewerMenu[ModelAPI_ResultConstruction::group()] = aList;
315   // Result part menu
316   myViewerMenu[ModelAPI_ResultPart::group()] = aList;
317   //-------------------------------------
318   // Result body menu
319   aList.clear();
320   aList.append(action("WIREFRAME_CMD"));
321   aList.append(action("SHADING_CMD"));
322   aList.append(action("COLOR_CMD"));
323   aList.append(mySeparator);
324   aList.append(action("HIDE_CMD"));
325   aList.append(action("SHOW_ONLY_CMD"));
326   aList.append(action("HIDEALL_CMD"));
327   myViewerMenu[ModelAPI_ResultBody::group()] = aList;
328   // Group menu
329   myViewerMenu[ModelAPI_ResultGroup::group()] = aList;
330   //-------------------------------------
331
332 }
333
334
335 QMenu* XGUI_ContextMenuMgr::objBrowserMenu() const
336 {
337   QMenu* aMenu = new QMenu();
338   XGUI_SelectionMgr* aSelMgr = myWorkshop->selector();
339   QObjectPtrList aObjects = aSelMgr->selection()->selectedObjects();
340   int aSelected = aObjects.size();
341   QActionsList aActions;
342   if (aSelected == 1) {
343     ObjectPtr aObject = aObjects.first();
344     std::string aName = aObject->groupName();
345     if (myObjBrowserMenus.contains(aName))
346       aActions = myObjBrowserMenus[aName];
347   } else if (aSelected > 1) {
348       aActions.append(action("SHADING_CMD"));
349       aActions.append(action("WIREFRAME_CMD"));
350       aActions.append(mySeparator);
351       aActions.append(action("SHOW_CMD"));
352       aActions.append(action("HIDE_CMD"));
353       aActions.append(action("SHOW_ONLY_CMD"));
354       aActions.append(mySeparator);
355       aActions.append(action("DELETE_CMD"));
356       //aActions.append(action("MOVE_CMD"));
357   }
358   aMenu->addActions(aActions);
359
360   ModuleBase_IModule* aModule = myWorkshop->module();
361   if (aModule) {
362     aMenu->addSeparator();
363     aModule->addObjectBrowserMenu(aMenu);
364   }
365   aMenu->addSeparator();
366   aMenu->addActions(myWorkshop->objectBrowser()->actions());
367
368   return aMenu;
369 }
370
371 QMenu* XGUI_ContextMenuMgr::viewerMenu() const
372 {
373   QMenu* aMenu = new QMenu();
374   ModuleBase_IModule* aModule = myWorkshop->module();
375   if (aModule) 
376     aModule->addViewerMenu(aMenu, myActions);
377
378   XGUI_SelectionMgr* aSelMgr = myWorkshop->selector();
379   QObjectPtrList aObjects = aSelMgr->selection()->selectedObjects();
380   int aSelected = aObjects.size();
381   QActionsList aActions;
382   if (aSelected == 1) {
383     ObjectPtr aObject = aObjects.first();
384     std::string aName = aObject->groupName();
385     if (myViewerMenu.contains(aName))
386       aActions = myViewerMenu[aName];
387   } else if (aSelected > 1) {
388     aActions.append(action("HIDE_CMD"));
389   }
390   aMenu->addActions(aActions);
391
392   if (!myWorkshop->isSalomeMode()) {
393     aMenu->addSeparator();
394     QMdiArea* aMDI = myWorkshop->mainWindow()->mdiArea();
395     if (aMDI->actions().size() > 0) {
396       QMenu* aSubMenu = aMenu->addMenu(tr("Windows"));
397       aSubMenu->addActions(aMDI->actions());
398     }
399   }
400   return aMenu;
401 }
402
403 QStringList XGUI_ContextMenuMgr::actionObjectGroups(const QString& theName)
404 {
405   QStringList aGroups;
406
407   QMap<std::string, QActionsList>::const_iterator anIt = myObjBrowserMenus.begin(),
408                                                   aLast = myObjBrowserMenus.end();
409   for (; anIt != aLast; anIt++) {
410     QString aGroupName(anIt.key().c_str());
411     if (aGroups.contains(aGroupName))
412       continue;
413     QActionsList anActions = anIt.value();
414     QActionsList::const_iterator anAIt = anActions.begin(), anALast = anActions.end();
415     bool aFound = false;
416     for (; anAIt != anALast && !aFound; anAIt++)
417       aFound = (*anAIt)->data().toString() == theName;
418     if (aFound)
419       aGroups.append(aGroupName);
420   }
421   return aGroups;
422 }