Salome HOME
Fix Warning in NewGeom_Module.cpp
[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 <ModelAPI_Result.h>
15 #include <GeomAPI_Shape.h>
16
17 #include <QModelIndexList>
18 #include <AIS_ListOfInteractive.hxx>
19 #include <NCollection_List.hxx>
20 #include <TopoDS_Shape.hxx>
21
22 #include <QList>
23
24 class Handle_SelectMgr_EntityOwner;
25
26 /**
27 * \ingroup GUI
28 * A class which provides access to selection.
29 * A selection can be obtained as from a viewer as from Object browser in various forms
30 */
31 class ModuleBase_ISelection
32 {
33  public:
34    /// Types of the selection place, where the selection is obtained
35    enum SelectionPlace { Browser, Viewer, AllControls };
36
37   /// Returns a list of viewer selected presentations
38   /// \return list of presentations
39   virtual QList<ModuleBase_ViewerPrs> getSelected(const SelectionPlace& thePlace = Browser) const = 0;
40
41   /// The values are appended to the first parameter list if the first list does not contain an item
42   /// with the same object
43   /// \param theValues a list of new values
44   /// \param theValuesTo a list, that will be changed
45   static void appendSelected(const QList<ModuleBase_ViewerPrs> theValues,
46                              QList<ModuleBase_ViewerPrs>& theValuesTo);
47
48   /// Returns a list of viewer highlited presentations
49   /// \return list of presentations
50   virtual QList<ModuleBase_ViewerPrs> getHighlighted() const = 0;
51
52   /// Fills the viewer presentation parameters by the parameters from the owner
53   /// \param thePrs a container for selection
54   /// \param theOwner a selection owner
55   virtual void fillPresentation(ModuleBase_ViewerPrs& thePrs,
56                                 const Handle_SelectMgr_EntityOwner& theOwner) const = 0;
57
58   /**
59    * Returns list of features currently selected in object browser
60    */
61   virtual QObjectPtrList selectedObjects() const = 0;
62
63   /// Set selected objects list
64   virtual void setSelectedObjects( const QObjectPtrList& ) const = 0;
65
66   /**
67    * Returns list of currently selected results
68    */
69   virtual QObjectPtrList selectedPresentations() const = 0;
70
71   //! Returns list of currently selected QModelIndexes
72   virtual QModelIndexList selectedIndexes() const = 0;
73
74   //! Returns list of currently selected AIS objects
75   //! \param theList returning list of selected AIS objects
76   virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0;
77
78   //! Returns list of currently selected QModelIndexes
79   virtual ObjectPtr getSelectableObject(const Handle_SelectMgr_EntityOwner& theOwner) const = 0;
80
81   //! Returns list of currently selected shapes and their owners (objects).
82   //! Both lists are synchronized
83   //! \param theList returning list of selected AIS objects
84   //! \param theOwners list of objects
85   virtual void selectedShapes(NCollection_List<TopoDS_Shape>& theList, 
86     std::list<ObjectPtr>& theOwners) const = 0;
87
88   //! Return the shape from the viewer presentation.
89   //! If the shape is equal to the shape of selected object, it returns an empty shape
90   //! \param thePrs a selected object
91   //! \return a shape
92   MODULEBASE_EXPORT ResultPtr getResult(const ModuleBase_ViewerPrs& thePrs);
93
94   //! Return the shape from the viewer presentation.
95   //! If the shape is equal to the shape of selected object, it returns an empty shape
96   //! \param thePrs a selected object
97   //! \return a shape
98   MODULEBASE_EXPORT GeomShapePtr getShape(const ModuleBase_ViewerPrs& thePrs);
99
100   //! Return the IO from the viewer presentation.
101   //! \param thePrs a selected object
102   //! \return an interactive object
103   virtual MODULEBASE_EXPORT Handle(AIS_InteractiveObject) getIO(const ModuleBase_ViewerPrs& thePrs) = 0;
104
105   //! Wraps the object list into the viewer prs list
106   //! \param theObjects a list of objects
107   //! \return a list of prs, where only object is not empty
108   static MODULEBASE_EXPORT QList<ModuleBase_ViewerPrs> getViewerPrs(
109                                                        const QObjectPtrList& theObjects);
110
111   /// Removes selection items where owners have equal vertices. The first
112   /// owner with the qual vertex stays in the list.
113   static MODULEBASE_EXPORT void filterSelectionOnEqualPoints
114                                               (QList<ModuleBase_ViewerPrs>& theSelected);
115 private:
116   /// Returns true if the presentations have an owner with a vertex and these vertices are equal.
117   /// \param thePrs1 the first viewer selected presentation
118   /// \param thePrs2 the second viewer selected presentation
119   static bool isEqualVertices(const ModuleBase_ViewerPrs thePrs1,
120                               const ModuleBase_ViewerPrs thePrs2);
121 };
122
123 #endif