Salome HOME
Operation Prs: green preview is low. Scenario: Sketch, Start Circle, 1st Click, move...
[modules/shaper.git] / src / XGUI / XGUI_ContextMenuMgr.h
index c7af183f4e104de9ded8fb8a1d6fce0cf1e5a3ae..db0e71e8541c533142b3a9c49c337b4d66d95e64 100644 (file)
@@ -14,12 +14,15 @@ class QContextMenuEvent;
 class QMenu;
 
 /**
+ * \ingroup GUI
  * A claas wihich provides manement of context menu
  */
 class XGUI_EXPORT XGUI_ContextMenuMgr : public QObject
 {
 Q_OBJECT
  public:
+   /// Constructor
+   /// \param theParent a parent object
   XGUI_ContextMenuMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_ContextMenuMgr();
 
@@ -27,8 +30,13 @@ Q_OBJECT
   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;
 
@@ -36,22 +44,45 @@ 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();
+
+  void addObjBrowserMenu(QMenu*) const;
+  void addViewerMenu(QMenu*) 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);
 
-  /// Add menu atems for viewer into the given menu (used in SALOME mode)
-  void addViewerItems(QMenu* theMenu) const;
+  /// 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);
 
+  /// 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);
 
+  void onRename();
+
  private:
   /** 
    * Add action
@@ -60,12 +91,26 @@ signals:
    */
   void addAction(const QString& theId, QAction* theAction);
 
-  QMenu* objectBrowserMenu() const;
-  QMenu* viewerMenu() const;
+  /// Updates menu for object browser
+  void updateObjectBrowserMenu();
+
+  /// Creates menu for object browser
+  void buildObjBrowserMenu();
+
+  /// Creates menu for viewer
+  void buildViewerMenu();
 
+  /// Map of created actions [id : Action]
   QMap<QString, QAction*> myActions;
 
+  /// Reference to workshop
   XGUI_Workshop* myWorkshop;
+
+  typedef QList<QAction*> QActionsList;
+  QMap<std::string, QActionsList> myObjBrowserMenus;
+  QMap<std::string, QActionsList> myViewerMenu;
+
+   QAction* mySeparator;
 };
 
 #endif