Salome HOME
c411d5ff09abea1af10db7caa360b173b5d1fba1
[modules/shaper.git] / src / XGUI / XGUI_Selection.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 // File:        XGUI_Selection.h
4 // Created:     8 July 2014
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef XGUI_Selection_H
8 #define XGUI_Selection_H
9
10 #include "XGUI.h"
11
12 #include <ModuleBase_ViewerPrs.h>
13 #include <ModuleBase_Definitions.h>
14 #include <ModuleBase_ISelection.h>
15
16 #include <QModelIndexList>
17 #include <AIS_ListOfInteractive.hxx>
18 #include <NCollection_List.hxx>
19 #include <TopoDS_Shape.hxx>
20
21 #include <SelectMgr_IndexedMapOfOwner.hxx>
22
23 class XGUI_Workshop;
24
25 class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection
26 {
27  public:
28   XGUI_Selection(XGUI_Workshop* theWorkshop);
29
30   /// Returns a list of viewer selected presentations
31   /// \param theShapeTypeToSkip the shapes with this type will be skipped during the result list build
32   /// \return list of presentations
33   virtual QList<ModuleBase_ViewerPrs> getSelected(int theShapeTypeToSkip = -1) const;
34
35   /// Returns a list of viewer highlited presentations
36   /// \param theShapeTypeToSkip the shapes with this type will be skipped during the result list build
37   /// \return list of presentations
38   virtual QList<ModuleBase_ViewerPrs> getHighlighted(int theShapeTypeToSkip = -1) const;
39
40   /**
41    * Returns list of currently selected objects in object browser
42    */
43   virtual QObjectPtrList selectedObjects() const;
44
45   /**
46    * Returns list of currently selected results
47    */
48   virtual QObjectPtrList selectedPresentations() const;
49
50   //! Returns list of currently selected QModelIndexes
51   virtual QModelIndexList selectedIndexes() const;
52
53   //! Returns list of currently selected AIS objects
54   virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const;
55
56   //! Returns list of currently selected shapes
57   virtual void selectedShapes(NCollection_List<TopoDS_Shape>& theShapes, 
58     std::list<ObjectPtr>& theOwners) const;
59
60   //! Returns a list of selection entity owners of the interactive object
61   /// It depends on the modes, in which the object is activated in the context
62   /// \param theObject an object
63   /// \param theContext a viewer interactive context
64   /// \param theOwners a map of entity owners
65   static void entityOwners(const Handle_AIS_InteractiveObject& theObject,
66                            const Handle_AIS_InteractiveContext& theContext,
67                            SelectMgr_IndexedMapOfOwner& theOwners);
68
69  private:
70   XGUI_Workshop* myWorkshop;
71 };
72
73 #endif