X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Selection.h;h=ea5886a8a94013c33809a2f0bc1c3e36a71f2c1b;hb=331d9cfcdfa7db2c280e047b01ceac7196cbf335;hp=dd3b48586ca5b0b0d9291a7e26bb1c50bbf91e0e;hpb=bcadd40668f422db6c5ade201ac630052db91da9;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index dd3b48586..ea5886a8a 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,46 +18,78 @@ #include #include -#include +#include class XGUI_Workshop; +class Handle_SelectMgr_EntityOwner; -class XGUI_EXPORT XGUI_Selection: public ModuleBase_ISelection +/** +* \ingroup GUI +* Implementation of \ref ModuleBase_ISelection interface. +*/ +class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection { -public: + public: + /// Constructor + /// \param theWorkshop reference to workshop instance XGUI_Selection(XGUI_Workshop* theWorkshop); /// 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() const; + + /// 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; /// 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() const; /** - * Returns list of currently selected objects - */ - virtual QList selectedObjects() const; + * Returns list of currently selected objects in object browser + */ + virtual QObjectPtrList selectedObjects() const; /** - * Returns list of currently selected results - */ - virtual QList selectedPresentations() const; - + * Returns list of currently selected results + */ + virtual QObjectPtrList selectedPresentations() const; + //! Returns list of currently selected QModelIndexes virtual QModelIndexList selectedIndexes() const; + //! Returns list of currently selected QModelIndexes + ObjectPtr getSelectableObject(const Handle(SelectMgr_EntityOwner)& theOwner); + //! Returns list of currently selected AIS objects virtual void selectedAISObjects(AIS_ListOfInteractive& theList) const; + //! Return a selectable object by the entity owner. It founds AIS object in the viewer + //! and returns the corresponded object + /// \param theOwner an entity owner + /// \return a found object or NULL + ObjectPtr getSelectableObject(const Handle(SelectMgr_EntityOwner)& theOwner) const; + //! Returns list of currently selected shapes - virtual void selectedShapes(NCollection_List& theList) const; + virtual void selectedShapes(NCollection_List& theShapes, + std::list& theOwners) const; + + //! Returns list of currently selected owners + /// \return list of owners + void selectedOwners(SelectMgr_IndexedMapOfOwner& theSelectedOwners) const; + + //! Returns a list of selection entity owners of the interactive object + /// It depends on the modes, in which the object is activated in the context + /// \param theObject an object + /// \param theOwners a map of entity owners + void entityOwners(const Handle_AIS_InteractiveObject& theObject, + SelectMgr_IndexedMapOfOwner& theOwners) const; -private: + private: XGUI_Workshop* myWorkshop; }; -#endif \ No newline at end of file +#endif