X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ISelection.h;h=b2686be48496f03077af7524b2bb656e6d7e461c;hb=4ac6f2284fe917736f0b30978799a20c3ea775d1;hp=c1b06ca1b71fae47724684d7c339f41e2fdcd158;hpb=b851613e697ad60c47e633121933a5ee4b640789;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ISelection.h b/src/ModuleBase/ModuleBase_ISelection.h index c1b06ca1b..b2686be48 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 @@ -16,37 +18,55 @@ #include +class Handle_SelectMgr_EntityOwner; + +/** +* \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: /// 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 QList getSelected(int theShapeTypeToSkip = -1) const = 0; + virtual QList getSelected() 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 QList getHighlighted(int theShapeTypeToSkip = -1) const = 0; + virtual QList getHighlighted() const = 0; + + /// Fills the viewer presentation parameters by the parameters from the owner + /// \param thePrs a container for selection + /// \param theOwner a selection owner + virtual void fillPresentation(ModuleBase_ViewerPrs& thePrs, + const Handle_SelectMgr_EntityOwner& theOwner) 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; //! 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 + //! Returns list of currently selected QModelIndexes + virtual ObjectPtr getSelectableObject(const Handle_SelectMgr_EntityOwner& theOwner) 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;