Salome HOME
Working with folders which can not be shown empty
[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   /**
64    * Returns list of currently selected results
65    */
66   virtual QObjectPtrList selectedPresentations() const = 0;
67
68   //! Returns list of currently selected QModelIndexes
69   virtual QModelIndexList selectedIndexes() const = 0;
70
71   //! Returns list of currently selected AIS objects
72   //! \param theList returning list of selected AIS objects
73   virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0;
74
75   //! Returns list of currently selected QModelIndexes
76   virtual ObjectPtr getSelectableObject(const Handle_SelectMgr_EntityOwner& theOwner) const = 0;
77
78   //! Returns list of currently selected shapes and their owners (objects).
79   //! Both lists are synchronized
80   //! \param theList returning list of selected AIS objects
81   //! \param theOwners list of objects
82   virtual void selectedShapes(NCollection_List<TopoDS_Shape>& theList, 
83     std::list<ObjectPtr>& theOwners) const = 0;
84
85   //! Return the shape from the viewer presentation.
86   //! If the shape is equal to the shape of selected object, it returns an empty shape
87   //! \param thePrs a selected object
88   //! \return a shape
89   MODULEBASE_EXPORT ResultPtr getResult(const ModuleBase_ViewerPrs& thePrs);
90
91   //! Return the shape from the viewer presentation.
92   //! If the shape is equal to the shape of selected object, it returns an empty shape
93   //! \param thePrs a selected object
94   //! \return a shape
95   MODULEBASE_EXPORT GeomShapePtr getShape(const ModuleBase_ViewerPrs& thePrs);
96
97   //! Return the IO from the viewer presentation.
98   //! \param thePrs a selected object
99   //! \return an interactive object
100   virtual MODULEBASE_EXPORT Handle(AIS_InteractiveObject) getIO(const ModuleBase_ViewerPrs& thePrs) = 0;
101
102   //! Wraps the object list into the viewer prs list
103   //! \param theObjects a list of objects
104   //! \return a list of prs, where only object is not empty
105   static MODULEBASE_EXPORT QList<ModuleBase_ViewerPrs> getViewerPrs(
106                                                        const QObjectPtrList& theObjects);
107 };
108
109 #endif