X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSet%2FPartSet_MenuMgr.h;h=454c0acf82391a9155ecfc8c6577a85b994294c4;hb=f68074b0f3e013e10a9d06016ceac84827a5cdc2;hp=0e8333caa4a968dcfc71cb0e26bc8dfd9875c361;hpb=868158fe6d39b25e60ac528295b1c908821e4af5;p=modules%2Fshaper.git diff --git a/src/PartSet/PartSet_MenuMgr.h b/src/PartSet/PartSet_MenuMgr.h index 0e8333caa..454c0acf8 100644 --- a/src/PartSet/PartSet_MenuMgr.h +++ b/src/PartSet/PartSet_MenuMgr.h @@ -8,6 +8,7 @@ #define PartSet_MenuMgr_H #include +#include #include #include @@ -37,15 +38,18 @@ public: /// \param theId an action identifier, it should be uniqued in the bounds of the module QAction* action(const QString& theId) const; - /// Add menu atems for viewer into the given menu - /// \param theMenu a popup menu to be shown in the viewer + /// Add menu items for viewer into the actions map /// \param theStdActions a map of standard actions + /// \param theParent a parent widget for the + /// \param theMenuActions map of action/menu for the desirable index in the viewer menu /// \return true if items are added and there is no necessity to provide standard menu - bool addViewerMenu(QMenu* theMenu, const QMap& theStdActions) const; + bool addViewerMenu(const QMap& theStdActions, + QWidget* theParent, + QMap& theMenuActions) const; /// Update state of pop-up menu items in viewer /// \param theStdActions - a map of standard actions - void updateViewerMenu(const QMap& theStdActions); + void updateViewerMenu(const QMap& theStdActions); /// Activates a PartSet document void activatePartSet() const; @@ -53,6 +57,9 @@ public: /// Returns list of granted operation indices virtual void grantedOperationIds(ModuleBase_Operation* theOperation, QStringList& theIds) const; + /// Activates a Part document + void activatePart(ResultPartPtr thePart) const; + public slots: /// Processes the context menu action click /// \param isChecked a state of toggle if the action is checkable @@ -80,17 +87,18 @@ private slots: /// A slot called on edit of feature void onEdit(bool); - void onSelectParentFeature(); - protected: - bool eventFilter(QObject* theObj, QEvent* theEvent); + /// Redefinition of virtual method + /// \param theObj an object + /// \param theEvent an event + virtual bool eventFilter(QObject* theObj, QEvent* theEvent); private: /// Returns true if the current operation is sketch entity create operation /// \param theValue the current auxiliary value /// \return the boolean result bool canSetAuxiliary(bool& theValue) const; - + /// Changes the sketcher entity construction argument value /// \param isChecked if true, the feature is a construction void setAuxiliary(const bool isChecked); @@ -115,7 +123,7 @@ private: PartSet_Module* myModule; /// the popup menu actions - QMap myActions; + QMap myActions; /// List of lines coincided in a one point mutable QList myCoinsideLines; @@ -126,7 +134,7 @@ private: /// Id of menu item in Detach menu previously selected int myPrevId; - /// Original color of highlighted line + /// Original color of highlighted line QColor myColor; };