X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Selection.h;h=c48a9e0506fb3a5f193490e0a03b03eba20afbf4;hb=5856257e3199c10ed82ced04e56d3a0ad4f30f6f;hp=c6f92f5ff6d7cca053a2c8ef7efc8684800eabab;hpb=3868952ce179012a7ca56f6c8d1f271ecdb17f73;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index c6f92f5ff..c48a9e050 100644 --- a/src/XGUI/XGUI_Selection.h +++ b/src/XGUI/XGUI_Selection.h @@ -1,13 +1,27 @@ -// File: XGUI_Selection.h -// Created: 8 July 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #ifndef XGUI_Selection_H #define XGUI_Selection_H #include "XGUI.h" -#include #include #include @@ -16,41 +30,88 @@ #include #include -#include +#include class XGUI_Workshop; +class SelectMgr_EntityOwner; +class ModuleBase_ViewerPrs; -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 - std::list 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 - std::list getHighlighted(int theShapeTypeToSkip = -1) const; + virtual QList> getHighlighted() const; + + /// Returns list of currently selected objects in object browser + virtual QObjectPtrList selectedObjects() 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 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; + + /// 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: + /// 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 features currently selected in 3d viewer - */ - QFeatureList selectedFeatures() const; - - //! Returns list of currently selected QModelIndexes - QModelIndexList selectedIndexes() const; + /// Fills the list of presentations by objects selected in the viewer. + /// \param thePresentations an output list of presentation + void getSelectedInViewer(QList>& thePresentations) const; - //! Returns list of currently selected AIS objects - void selectedAISObjects(AIS_ListOfInteractive& theList) 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; - //! Returns list of currently selected shapes - void selectedShapes(NCollection_List& theList) 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 +#ifdef BEFORE_TRIHEDRON_PATCH + TopoDS_Shape findAxisShape(Handle(AIS_InteractiveObject) theIO) const; +#endif private: - XGUI_Workshop* myWorkshop; + XGUI_Workshop* myWorkshop; ///< current workshop }; -#endif \ No newline at end of file +#endif