Salome HOME
Corrections for extrusion/revolution xml definition and random color
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 8d74e0990a9357d1d05985cd3fb8f1b876a5e809..a38546fa0d88a36ff03d6f9b75cf0715abab1b2e 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;
@@ -39,18 +42,33 @@ Q_OBJECT
 
   //! Selects the owners in the context.
   //! \param theSelectedOwners a container of owners
-  void setSelectedOwners(const SelectMgr_IndexedMapOfOwner& theSelectedOwners);
+  /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
+  void setSelectedOwners(const SelectMgr_IndexedMapOfOwner& theSelectedOwners,
+                         bool isUpdateViewer);
+
+  //! Check that the selected owners are valid for the current filters
+  /// \param isUpdateViewer the parameter whether the viewer should be update immediatelly
+  void updateSelectedOwners(bool isUpdateViewer);
+
+  //! Clears selection in Viewer and object Browser
+  void clearSelection();
 
 signals:
   //! Emited when selection in a one of viewers was changed
   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;
 };