X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_ContextMenuMgr.h;h=40de3f5335dffc244cdebb58e907e80421532eb7;hb=8265a72ffc4629fde76928773cffbca1db07e2dd;hp=a263c96979ce76c5e6d83b3bff37d52b73014f46;hpb=4f5cbc32b2621344e253876da67abc1ccd94fe31;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_ContextMenuMgr.h b/src/XGUI/XGUI_ContextMenuMgr.h index a263c9697..40de3f533 100644 --- a/src/XGUI/XGUI_ContextMenuMgr.h +++ b/src/XGUI/XGUI_ContextMenuMgr.h @@ -33,6 +33,10 @@ Q_OBJECT /// \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; @@ -40,14 +44,24 @@ Q_OBJECT 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) - /// \param theMenu a popup menu to be shown in the viewer - 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 @@ -55,6 +69,12 @@ signals: /// \param isChecked is checked flag void actionTriggered(const QString& theId, bool isChecked); + /// 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 @@ -64,6 +84,8 @@ signals: /// \param theEvent a context menu event void onContextMenuRequest(QContextMenuEvent* theEvent); + void onRename(); + private: /** * Add action @@ -72,17 +94,26 @@ signals: */ void addAction(const QString& theId, QAction* theAction); + /// Updates menu for object browser + void updateObjectBrowserMenu(); + /// Creates menu for object browser - QMenu* objectBrowserMenu() const; + void buildObjBrowserMenu(); /// Creates menu for viewer - QMenu* viewerMenu() const; + 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