X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ISelection.h;h=b6983d25ac82419d52cc10c2b7bd239c5b8c1314;hb=c685af45eca598fce4a5d40837f6b7d203c60976;hp=9a9e52ed7d94c4c4e290c08160062d22180471e3;hpb=3985b767e74385e51d1b503d2c97d3bb1e3f6faa;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ISelection.h b/src/ModuleBase/ModuleBase_ISelection.h index 9a9e52ed7..b6983d25a 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,32 +16,32 @@ #include #include -#include +#include 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 QResultList selectedResults() const = 0; - + * Returns list of currently selected results + */ + virtual QObjectPtrList selectedPresentations() const = 0; + //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const = 0; @@ -47,8 +49,9 @@ public: virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const = 0; //! Returns list of currently selected shapes - virtual void selectedShapes(NCollection_List& theList) const = 0; + virtual void selectedShapes(NCollection_List& theList, + std::list& theOwners) const = 0; }; -#endif \ No newline at end of file +#endif