Salome HOME
Issue #348 Validate sketch is disabled when point coordinates are set manually
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 5f50ca3d81d6b344652d236061b903a54aa73ffa..f1665a7465203a6e0670d7d3c19df7272e7810d3 100644 (file)
@@ -1,31 +1,59 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
+
 #ifndef XGUI_SelectionMgr_H
 #define XGUI_SelectionMgr_H
 
-#include "XGUI_Constants.h"
+#include "XGUI.h"
+#include <ModuleBase_Definitions.h>
 #include <QObject>
+#include <QModelIndexList>
 
-class XGUI_Workshop;
+#include <AIS_ListOfInteractive.hxx>
+#include <NCollection_List.hxx>
+#include <TopoDS_Shape.hxx>
+#include <SelectMgr_IndexedMapOfOwner.hxx>
 
-class XGUI_SelectionMgr : public QObject
+class XGUI_Workshop;
+class XGUI_ObjectsBrowser;
+class XGUI_Selection;
+
+/**\class XGUI_SelectionMgr
+ * \ingroup GUI
+ * \brief Selection manager. Provides selection event on selection in 
+ * Object Browser and Viewer
+ */
+class XGUI_EXPORT XGUI_SelectionMgr : public QObject
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   XGUI_SelectionMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_SelectionMgr();
 
-  QFeatureList selectedData() const { return mySelectedData; }
+  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);
 
 signals:
+  //! Emited when selection in a one of viewers was changed
   void selectionChanged();
 
-public slots:
-  void onSelectionChanged();
+ private slots:
+  void onObjectBrowserSelection();
+  void onViewerSelection();
 
-private:
+ private:
   XGUI_Workshop* myWorkshop;
-
-  QFeatureList mySelectedData;
+  XGUI_Selection* mySelection;
 };
 
-#endif;
\ No newline at end of file
+#endif