X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ISelection.h;h=e3190488af69f6268a61a1998570abbd06a73edd;hb=a2982d2108f929cf9e7f996cfd590c4ce59dc21c;hp=33d617de990a71485a8fcab18071c2e6ef7b3d6d;hpb=f8a5e3c97b28bc4e8a53a12be59b11544a968d41;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ISelection.h b/src/ModuleBase/ModuleBase_ISelection.h index 33d617de9..e3190488a 100644 --- a/src/ModuleBase/ModuleBase_ISelection.h +++ b/src/ModuleBase/ModuleBase_ISelection.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModuleBase_ISelection.h // Created: 2 June 2014 // Author: Vitaly Smetannikov @@ -14,41 +16,51 @@ #include #include -#include +#include +/** +* \ingroup GUI +* A class which provides access to selection. +* A selection can be obtained as from a viewer as from Object browser in various forms +*/ class ModuleBase_ISelection { -public: + public: /// Returns a list of viewer selected presentations /// \param theShapeTypeToSkip the shapes with this type will be skipped during the result list build /// \return list of presentations - virtual std::list getSelected(int theShapeTypeToSkip = -1) const = 0; + virtual QList getSelected(int theShapeTypeToSkip = -1) const = 0; /// Returns a list of viewer highlited presentations /// \param theShapeTypeToSkip the shapes with this type will be skipped during the result list build /// \return list of presentations - virtual std::list getHighlighted(int theShapeTypeToSkip = -1) const = 0; + virtual QList getHighlighted(int theShapeTypeToSkip = -1) const = 0; /** - * Returns list of features currently selected in 3d viewer - */ - virtual QList selectedObjects() const = 0; + * Returns list of features currently selected in object browser + */ + virtual QObjectPtrList selectedObjects() const = 0; /** - * Returns list of currently selected results - */ - virtual QList selectedPresentations() const = 0; - + * Returns list of currently selected results + */ + virtual QObjectPtrList selectedPresentations() const = 0; + //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const = 0; //! Returns list of currently selected AIS objects + //! \param theList returning list of selected AIS objects virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0; - //! Returns list of currently selected shapes - virtual void selectedShapes(NCollection_List& theList) const = 0; + //! Returns list of currently selected shapes and their owners (objects). + //! Both lists are synchronized + //! \param theList returning list of selected AIS objects + //! \param theOwners list of objects + virtual void selectedShapes(NCollection_List& theList, + std::list& theOwners) const = 0; }; -#endif \ No newline at end of file +#endif