]> SALOME platform Git repositories - modules/shaper.git/blob - src/ModuleBase/ModuleBase_ISelection.h
Salome HOME
Merge branch 'Dev_1.1.0' of newgeom:newgeom into Dev_1.1.0
[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   /// \return list of presentations
32   virtual QList<ModuleBase_ViewerPrs> getSelected() const = 0;
33
34   /// Returns a list of viewer highlited presentations
35   /// \return list of presentations
36   virtual QList<ModuleBase_ViewerPrs> getHighlighted() const = 0;
37
38   /**
39    * Returns list of features currently selected in object browser
40    */
41   virtual QObjectPtrList selectedObjects() const = 0;
42
43   /**
44    * Returns list of currently selected results
45    */
46   virtual QObjectPtrList selectedPresentations() const = 0;
47
48   //! Returns list of currently selected QModelIndexes
49   virtual QModelIndexList selectedIndexes() const = 0;
50
51   //! Returns list of currently selected AIS objects
52   //! \param theList returning list of selected AIS objects
53   virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0;
54
55   //! Returns list of currently selected shapes and their owners (objects).
56   //! Both lists are synchronized
57   //! \param theList returning list of selected AIS objects
58   //! \param theOwners list of objects
59   virtual void selectedShapes(NCollection_List<TopoDS_Shape>& theList, 
60     std::list<ObjectPtr>& theOwners) const = 0;
61
62 };
63
64 #endif