Salome HOME
#1133 Del in old GEOM
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 6b45fff70adb6f2b564d602964cfd97ad3b20b79..441b52d6436d825cf512964cee732a08db3dea67 100644 (file)
@@ -5,12 +5,14 @@
 
 #include "XGUI.h"
 #include <ModuleBase_Definitions.h>
+#include <ModuleBase_ISelection.h>
 #include <QObject>
 #include <QModelIndexList>
 
 #include <AIS_ListOfInteractive.hxx>
 #include <NCollection_List.hxx>
 #include <TopoDS_Shape.hxx>
+#include <SelectMgr_IndexedMapOfOwner.hxx>
 
 class XGUI_Workshop;
 class XGUI_ObjectsBrowser;
@@ -25,9 +27,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;
@@ -36,16 +41,39 @@ Q_OBJECT
   //! Connects the manager to all viewers accessible by Workshop
   void connectViewers();
 
+  //! Selects the owners in the context.
+  //! \param theSelectedOwners a container of owners
+  /// \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();
+
+  /// Updates selection, which are depend on the selection in the given place
+  /// \thePlace a widget where selection has happened.
+  void updateSelectionBy(const ModuleBase_ISelection::SelectionPlace& thePlace);
+
 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;
 };