X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ISelection.h;h=c1b06ca1b71fae47724684d7c339f41e2fdcd158;hb=8f56432d03ce0cbce36d2190c0afc83f3f781f72;hp=0519985025d0496684909227602d4c7f61899a56;hpb=3868952ce179012a7ca56f6c8d1f271ecdb17f73;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ISelection.h b/src/ModuleBase/ModuleBase_ISelection.h index 051998502..c1b06ca1b 100644 --- a/src/ModuleBase/ModuleBase_ISelection.h +++ b/src/ModuleBase/ModuleBase_ISelection.h @@ -14,27 +14,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 QFeatureList selectedFeatures() const = 0; - + * Returns list of features currently selected in 3d viewer + */ + virtual QList selectedObjects() const = 0; + + /** + * Returns list of currently selected results + */ + virtual QList selectedPresentations() const = 0; + //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const = 0; @@ -42,8 +47,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