X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Selection.h;h=d81ef7edaee93256265560b29a70aafb891a7505;hb=220bd2b37119be1c65abf88a88792445cb9d99f8;hp=caf1088f7bd3d1b523e91e9bcbcf2408ab693775;hpb=a94eeab620f6c2a559f5fea9b7d638423d010e62;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index caf1088f7..d81ef7eda 100644 --- a/src/XGUI/XGUI_Selection.h +++ b/src/XGUI/XGUI_Selection.h @@ -53,6 +53,8 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection */ virtual QObjectPtrList selectedObjects() const; + virtual void setSelectedObjects( const QObjectPtrList& ) const; + /** * Returns list of currently selected results */ @@ -88,6 +90,11 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection void entityOwners(const Handle_AIS_InteractiveObject& theObject, SelectMgr_IndexedMapOfOwner& theOwners) const; + //! Return the IO from the viewer presentation. + //! \param thePrs a selected object + //! \return an interactive object + virtual Handle(AIS_InteractiveObject) getIO(const ModuleBase_ViewerPrs& thePrs); + protected: /// Fills the list of presentations by objects selected in the viewer. /// \param thePresentations an output list of presentation @@ -99,6 +106,11 @@ protected: /// \param thePresentations an output list of presentation void getSelectedInBrowser(QList& thePresentations) const; + /// Generates a vertex or edge by the give IO if it is an AIS created on trihedron + /// \param theIO a selected object + /// \return created shape or empty shape + TopoDS_Shape findAxisShape(Handle(AIS_InteractiveObject) theIO) const; + private: XGUI_Workshop* myWorkshop; };