X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ContextMenuMgr.h;h=40de3f5335dffc244cdebb58e907e80421532eb7;hb=327f5bbd915fb32d21f2e524a8d97536e0e5dd4b;hp=a48bd79c770d442bab75cf086aa5a2d108f73b44;hpb=b088ac567eda79830c071c32443896ad59d56628;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ContextMenuMgr.h b/src/XGUI/XGUI_ContextMenuMgr.h index a48bd79c7..40de3f533 100644 --- a/src/XGUI/XGUI_ContextMenuMgr.h +++ b/src/XGUI/XGUI_ContextMenuMgr.h @@ -1,3 +1,4 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> #ifndef XGUI_ContextMenuMgr_H #define XGUI_ContextMenuMgr_H @@ -13,12 +14,15 @@ class QContextMenuEvent; class QMenu; /** -* A claas wihich provides manement of context menu -*/ -class XGUI_EXPORT XGUI_ContextMenuMgr: public QObject + * \ingroup GUI + * A claas wihich provides manement of context menu + */ +class XGUI_EXPORT XGUI_ContextMenuMgr : public QObject { Q_OBJECT -public: + public: + /// Constructor + /// \param theParent a parent object XGUI_ContextMenuMgr(XGUI_Workshop* theParent); virtual ~XGUI_ContextMenuMgr(); @@ -26,8 +30,13 @@ public: void createActions(); /// Returns action according to the given ID + /// \param theId an id of an action QAction* action(const QString& theId) const; + /// Returns action object by its Id (name) + /// \param theName is an Id of the action + QAction* actionByName(const QString& theName) const; + /// Returns list of registered actions Ids QStringList actionIds() const; @@ -35,37 +44,76 @@ public: void updateCommandsStatus(); /// Connect to object browser from workshop. Has to called at creation of viewer. - void connectObjectBrowser() const; + void connectObjectBrowser(); /// Connect to viewer from workshop. Has to called at creation of viewer. - void connectViewer() const; + void connectViewer(); + + /// Add menu items for Object browser pop-up + void addObjBrowserMenu(QMenu*) const; + + /// Add menu items for Viewer pop-up + void addViewerMenu(QMenu*) const; - /// Add menu atems for viewer into the given menu (used in SALOME mode) - void addViewerItems(QMenu* theMenu) const; + /// Returns a list of object group names of the action + /// \param theName a name of the action + /// \return a list of group names + QStringList actionObjectGroups(const QString& theName); + + /// Updates menu for viewer + void updateViewerMenu(); signals: + /// Signal aabout triggered action + /// \param theId an id of triggered action + /// \param isChecked is checked flag void actionTriggered(const QString& theId, bool isChecked); -private slots: + /// A signal which is sent before context menu show + void beforeContextMenu(); + + /// A signal which is sent after context menu show + void afterContextMenu(); + + private slots: + /// Process action event + /// \param isChecked a checked action flag void onAction(bool isChecked); + /// Process context menu event + /// \param theEvent a context menu event void onContextMenuRequest(QContextMenuEvent* theEvent); -private: + void onRename(); + + private: /** - * Add action - * \param theId - string ID of the item - * \param theAction - action to add - */ + * Add action + * \param theId - string ID of the item + * \param theAction - action to add + */ void addAction(const QString& theId, QAction* theAction); + /// Updates menu for object browser + void updateObjectBrowserMenu(); + + /// Creates menu for object browser + void buildObjBrowserMenu(); - QMenu* objectBrowserMenu() const; - QMenu* viewerMenu() const; + /// Creates menu for viewer + void buildViewerMenu(); + /// Map of created actions [id : Action] QMap myActions; + /// Reference to workshop XGUI_Workshop* myWorkshop; + + typedef QList QActionsList; + QMap myObjBrowserMenus; + QMap myViewerMenu; + + QAction* mySeparator; }; -#endif \ No newline at end of file +#endif