X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Selection.h;h=785aa18a47763d24be287dafc4686d4cb4d9b01d;hb=176403004ff97696f3c0b5f8bdf48692177fb34a;hp=5c3eb4a41309299f28ba1b538dc54e750b50385f;hpb=db0e21ea2f1117dd9af3320009ba8b50dc2e828b;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index 5c3eb4a41..785aa18a4 100644 --- a/src/XGUI/XGUI_Selection.h +++ b/src/XGUI/XGUI_Selection.h @@ -9,7 +9,6 @@ #include "XGUI.h" -#include #include #include @@ -21,8 +20,11 @@ #include class XGUI_Workshop; +class Handle_SelectMgr_EntityOwner; +class ModuleBase_ViewerPrs; /** +* \ingroup GUI * Implementation of \ref ModuleBase_ISelection interface. */ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection @@ -33,20 +35,27 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection 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 QList getSelected(int theShapeTypeToSkip = -1) const; + virtual QList> + getSelected(const SelectionPlace& thePlace = Browser) 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(std::shared_ptr& 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 QList getHighlighted(int theShapeTypeToSkip = -1) const; + virtual QList> getHighlighted() const; /** * Returns list of currently selected objects in object browser */ virtual QObjectPtrList selectedObjects() const; + virtual void setSelectedObjects( const QObjectPtrList& ) const; + /** * Returns list of currently selected results */ @@ -55,12 +64,17 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection //! 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; - //! Returns list of currently selected shapes - virtual void selectedShapes(NCollection_List& theShapes, - std::list& theOwners) 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 owners /// \return list of owners @@ -73,7 +87,28 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection void entityOwners(const Handle_AIS_InteractiveObject& theObject, SelectMgr_IndexedMapOfOwner& theOwners) const; - private: + //! Return the IO from the viewer presentation. + //! \param thePrs a selected object + //! \return an interactive object + virtual Handle(AIS_InteractiveObject) getIO(const std::shared_ptr& thePrs); + +protected: + /// Fills the list of presentations by objects selected in the viewer. + /// \param thePresentations an output list of presentation + void getSelectedInViewer(QList>& thePresentations) const; + /// Fills the list of presentations by objects selected in the object browser. + /// ViewerPrs contains only object parameter not empty. + /// If the given list of presentations already has a viewer presentation with the same object + /// as selected in the browser, a new item is not appended to the list of presentations. + /// \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; };