Salome HOME
Fix for the issue #593: do not remove naming attribute, but use TNaming_Builder for...
[modules/shaper.git] / src / XGUI / XGUI_ContextMenuMgr.h
index 805b376ef4fc159ce9c38e0accd568e87d673224..3f490a59b22d0450ab458c975df741c58b63766f 100644 (file)
@@ -33,6 +33,8 @@ 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
@@ -49,7 +51,7 @@ Q_OBJECT
 
   /// 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;
+  void addViewerMenu(QMenu* theMenu) const;
 
 signals:
   /// Signal aabout triggered action
@@ -57,7 +59,10 @@ 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: