X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FXGUI%2FXGUI_Selection.h;h=cfefd28a0cb0730b5e7fc4b58c0d809c972459c9;hb=be7d83df0061448606f62fcb370f59e2617557d1;hp=5f399a7ee32450f7ba0d3258a3d35b283d2c0154;hpb=29083ee3765ce3f564eb4fa6c93620084acfb067;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index 5f399a7ee..cfefd28a0 100644 --- a/src/XGUI/XGUI_Selection.h +++ b/src/XGUI/XGUI_Selection.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> + // File: XGUI_Selection.h // Created: 8 July 2014 // Author: Vitaly SMETANNIKOV @@ -16,8 +18,6 @@ #include #include -#include - class XGUI_Workshop; class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection @@ -28,22 +28,22 @@ class XGUI_EXPORT XGUI_Selection : public 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; + virtual QList getSelected(int theShapeTypeToSkip = -1) const; /// 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; + virtual QList getHighlighted(int theShapeTypeToSkip = -1) const; /** - * Returns list of currently selected objects + * Returns list of currently selected objects in object browser */ - virtual QList selectedObjects() const; + virtual QObjectPtrList selectedObjects() const; /** * Returns list of currently selected results */ - virtual QList selectedPresentations() const; + virtual QObjectPtrList selectedPresentations() const; //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const;