Salome HOME
Merge branch 'Dev_1.2.0' of newgeom:newgeom.git into Dev_1.2.0
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index e98b52841fb76fb321e910d51a52e1ebdbfb7b76..a38546fa0d88a36ff03d6f9b75cf0715abab1b2e 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #ifndef XGUI_SelectionMgr_H
 #define XGUI_SelectionMgr_H
 
@@ -9,9 +11,11 @@
 #include <AIS_ListOfInteractive.hxx>
 #include <NCollection_List.hxx>
 #include <TopoDS_Shape.hxx>
+#include <SelectMgr_IndexedMapOfOwner.hxx>
 
 class XGUI_Workshop;
 class XGUI_ObjectsBrowser;
+class XGUI_Selection;
 
 /**\class XGUI_SelectionMgr
  * \ingroup GUI
@@ -20,37 +24,52 @@ class XGUI_ObjectsBrowser;
  */
 class XGUI_EXPORT XGUI_SelectionMgr : public QObject
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
+   /// Constructor
+   /// \param theParent a parent workshop
   XGUI_SelectionMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_SelectionMgr();
 
-  //! Returns list of currently selected data objects
-  QFeatureList selectedFeatures() const; 
-  
-  //! Returns list of currently selected QModelIndexes
-  QModelIndexList selectedIndexes() const;
-
-  //! Returns list of currently selected AIS objects
-  void selectedAISObjects(AIS_ListOfInteractive& theList) const;
-
-  //! Returns list of currently selected shapes
-  void selectedShapes(NCollection_List<TopoDS_Shape>& theList) const;
+  /// Returns current selection
+  XGUI_Selection* selection() const
+  {
+    return mySelection;
+  }
 
   //! 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();
+
 signals:
   //! Emited when selection in a one of viewers was changed
   void selectionChanged();
 
-private slots:
+ private slots:
+   /// Reaction on selectio0n in Object browser
   void onObjectBrowserSelection();
-  void onViewerSelection();
 
-private:
+   /// Reaction on selectio0n in Viewer
+  void onViewerSelection();
 
+ private:
+   /// Reference to workshop
   XGUI_Workshop* myWorkshop;
+
+  /// Current selection object
+  XGUI_Selection* mySelection;
 };
 
 #endif