Salome HOME
Construction elements are auxiliary entities:
[modules/shaper.git] / src / ModuleBase / ModuleBase_ISelection.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ISelection.h
4 // Created:     2 June 2014
5 // Author:      Vitaly Smetannikov
6
7 #ifndef ModuleBase_ISelection_H
8 #define ModuleBase_ISelection_H
9
10 #include "ModuleBase.h"
11 #include "ModuleBase_Definitions.h"
12 #include "ModuleBase_ViewerPrs.h"
13
14 #include <QModelIndexList>
15 #include <AIS_ListOfInteractive.hxx>
16 #include <NCollection_List.hxx>
17 #include <TopoDS_Shape.hxx>
18
19 #include <QList>
20
21 /**
22 * \ingroup GUI
23 * A class which provides access to selection.
24 * A selection can be obtained as from a viewer as from Object browser in various forms
25 */
26 class ModuleBase_ISelection
27 {
28  public:
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 = 0;
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 = 0;
39
40   /**
41    * Returns list of features currently selected in object browser
42    */
43   virtual QObjectPtrList selectedObjects() const = 0;
44
45   /**
46    * Returns list of currently selected results
47    */
48   virtual QObjectPtrList selectedPresentations() const = 0;
49
50   //! Returns list of currently selected QModelIndexes
51   virtual QModelIndexList selectedIndexes() const = 0;
52
53   //! Returns list of currently selected AIS objects
54   //! \param theList returning list of selected AIS objects
55   virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0;
56
57   //! Returns list of currently selected shapes and their owners (objects).
58   //! Both lists are synchronized
59   //! \param theList returning list of selected AIS objects
60   //! \param theOwners list of objects
61   virtual void selectedShapes(NCollection_List<TopoDS_Shape>& theList, 
62     std::list<ObjectPtr>& theOwners) const = 0;
63
64 };
65
66 #endif