X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_Selection.h;h=9ff42e6d8cebf6755445d9a43f7e0a031f71e28b;hb=1e63ae393cf1ce1923329c90aa66fa33f957f268;hp=4cb69571dc7ac30363bd0141ecbb985f487cfe53;hpb=423c10234142d14d0d5de89383f2f96a4ec5930f;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_Selection.h b/src/XGUI/XGUI_Selection.h index 4cb69571d..9ff42e6d8 100644 --- a/src/XGUI/XGUI_Selection.h +++ b/src/XGUI/XGUI_Selection.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D --> - -// File: XGUI_Selection.h -// Created: 8 July 2014 -// Author: Vitaly SMETANNIKOV +// Copyright (C) 2014-2017 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 @@ -20,7 +34,7 @@ #include class XGUI_Workshop; -class Handle_SelectMgr_EntityOwner; +class SelectMgr_EntityOwner; class ModuleBase_ViewerPrs; /** @@ -43,7 +57,7 @@ class XGUI_EXPORT XGUI_Selection : public ModuleBase_ISelection /// \param thePrs a container for selection /// \param theOwner a selection owner virtual void fillPresentation(std::shared_ptr& thePrs, - const Handle_SelectMgr_EntityOwner& theOwner) const; + const Handle(SelectMgr_EntityOwner)& theOwner) const; /// Returns a list of viewer highlited presentations /// \return list of presentations @@ -106,7 +120,9 @@ protected: /// 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;