1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
3 #ifndef XGUI_ContextMenuMgr_H
4 #define XGUI_ContextMenuMgr_H
13 class QContextMenuEvent;
18 * A claas wihich provides manement of context menu
20 class XGUI_EXPORT XGUI_ContextMenuMgr : public QObject
25 /// \param theParent a parent object
26 XGUI_ContextMenuMgr(XGUI_Workshop* theParent);
27 virtual ~XGUI_ContextMenuMgr();
29 /// Create all actions for context menus. It is called on creation of application
32 /// Returns action according to the given ID
33 /// \param theId an id of an action
34 QAction* action(const QString& theId) const;
36 /// Returns action object by its Id (name)
37 /// \param theName is an Id of the action
38 QAction* actionByName(const QString& theName) const;
40 /// Returns list of registered actions Ids
41 QStringList actionIds() const;
43 /// update state of internal commands
44 void updateCommandsStatus();
46 /// Connect to object browser from workshop. Has to called at creation of viewer.
47 void connectObjectBrowser();
49 /// Connect to viewer from workshop. Has to called at creation of viewer.
52 /// Add menu items for Object browser pop-up
53 void addObjBrowserMenu(QMenu*) const;
55 /// Add menu items for Viewer pop-up
56 void addViewerMenu(QMenu*) const;
58 /// Returns a list of object group names of the action
59 /// \param theName a name of the action
60 /// \return a list of group names
61 QStringList actionObjectGroups(const QString& theName);
63 /// Updates menu for viewer
64 void updateViewerMenu();
67 /// Signal aabout triggered action
68 /// \param theId an id of triggered action
69 /// \param isChecked is checked flag
70 void actionTriggered(const QString& theId, bool isChecked);
72 /// A signal which is sent before context menu show
73 void beforeContextMenu();
75 /// A signal which is sent after context menu show
76 void afterContextMenu();
79 /// Process action event
80 /// \param isChecked a checked action flag
81 void onAction(bool isChecked);
83 /// Process context menu event
84 /// \param theEvent a context menu event
85 void onContextMenuRequest(QContextMenuEvent* theEvent);
92 * \param theId - string ID of the item
93 * \param theAction - action to add
95 void addAction(const QString& theId, QAction* theAction);
97 /// Updates menu for object browser
98 void updateObjectBrowserMenu();
100 /// Creates menu for object browser
101 void buildObjBrowserMenu();
103 /// Creates menu for viewer
104 void buildViewerMenu();
106 /// Map of created actions [id : Action]
107 QMap<QString, QAction*> myActions;
109 /// Reference to workshop
110 XGUI_Workshop* myWorkshop;
112 typedef QList<QAction*> QActionsList;
113 QMap<std::string, QActionsList> myObjBrowserMenus;
114 QMap<std::string, QActionsList> myViewerMenu;
116 QAction* mySeparator;