Salome HOME
Constriction type for all sketch entities
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 6503f175d93b27fa53d1f694b89d6929837d4b5f..98755ea20078afe8f50a0c7a001a35100a837376 100644 (file)
@@ -26,9 +26,12 @@ class XGUI_EXPORT XGUI_SelectionMgr : public QObject
 {
 Q_OBJECT
  public:
+   /// Constructor
+   /// \param theParent a parent workshop
   XGUI_SelectionMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_SelectionMgr();
 
+  /// Returns current selection
   XGUI_Selection* selection() const
   {
     return mySelection;
@@ -52,11 +55,17 @@ signals:
   void selectionChanged();
 
  private slots:
+   /// Reaction on selectio0n in Object browser
   void onObjectBrowserSelection();
+
+   /// Reaction on selectio0n in Viewer
   void onViewerSelection();
 
  private:
+   /// Reference to workshop
   XGUI_Workshop* myWorkshop;
+
+  /// Current selection object
   XGUI_Selection* mySelection;
 };