X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ISelection.h;h=b6983d25ac82419d52cc10c2b7bd239c5b8c1314;hb=8513abc01bef2fd9d98ba7e663e529ef66813bbb;hp=72845616b89eea80aad2a15e2175a7d42a506a31;hpb=29083ee3765ce3f564eb4fa6c93620084acfb067;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ISelection.h b/src/ModuleBase/ModuleBase_ISelection.h index 72845616b..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,7 +16,7 @@ #include #include -#include +#include class ModuleBase_ISelection { @@ -23,22 +25,22 @@ class ModuleBase_ISelection /// 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 + * Returns list of features currently selected in object browser */ - virtual QList selectedObjects() const = 0; + virtual QObjectPtrList selectedObjects() const = 0; /** * Returns list of currently selected results */ - virtual QList selectedPresentations() const = 0; + virtual QObjectPtrList selectedPresentations() const = 0; //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const = 0;