Salome HOME
Issue #1897 Selection of edges in Group feature with SHIFT Key
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 0519e29d019ef11b8f750ef3e6363b43de055e71..e1381858739877765b18a30aed3dd043b63d9113 100644 (file)
@@ -1,14 +1,18 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #ifndef XGUI_SelectionMgr_H
 #define XGUI_SelectionMgr_H
 
 #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;
@@ -21,26 +25,51 @@ class XGUI_Selection;
  */
 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();
 
-  XGUI_Selection* selection() const { return mySelection; }
+  /// 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);
+
+  //! Clears selection in Viewer and object Browser
+  void clearSelection();
+
+  /// Updates selection, which are depend on the selection in the given place
+  /// \param 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:
+ private slots:
+   /// Reaction on selectio0n in Object browser
   void onObjectBrowserSelection();
+
+   /// Reaction on selectio0n in Viewer
   void onViewerSelection();
 
-private:
+ private:
+   /// Reference to workshop
   XGUI_Workshop* myWorkshop;
+
+  /// Current selection object
   XGUI_Selection* mySelection;
 };