Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / XGUI / XGUI_SelectionMgr.h
index 5f50ca3d81d6b344652d236061b903a54aa73ffa..b75989abbfb6640bc90ec681c263cc800eb8c4c2 100644 (file)
@@ -1,31 +1,56 @@
 #ifndef XGUI_SelectionMgr_H
 #define XGUI_SelectionMgr_H
 
+#include "XGUI.h"
 #include "XGUI_Constants.h"
 #include <QObject>
+#include <QModelIndexList>
 
-class XGUI_Workshop;
+#include <AIS_ListOfInteractive.hxx>
+#include <NCollection_List.hxx>
+#include <TopoDS_Shape.hxx>
 
-class XGUI_SelectionMgr : public QObject
+class XGUI_Workshop;
+class XGUI_ObjectsBrowser;
+
+/**\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:
   XGUI_SelectionMgr(XGUI_Workshop* theParent);
   virtual ~XGUI_SelectionMgr();
 
-  QFeatureList selectedData() const { return mySelectedData; }
+  //! 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;
+
+  //! Connects the manager to all viewers accessible by Workshop
+  void connectViewers();
 
 signals:
+  //! Emited when selection in a one of viewers was changed
   void selectionChanged();
 
-public slots:
-  void onSelectionChanged();
+private slots:
+  void onObjectBrowserSelection();
+  void onViewerSelection();
 
 private:
-  XGUI_Workshop* myWorkshop;
 
-  QFeatureList mySelectedData;
+  XGUI_Workshop* myWorkshop;
 };
 
-#endif;
\ No newline at end of file
+#endif