X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSOCC%2FSOCC_Prs.cxx;h=0571f46e75794d4dba2d8de2ee53349fe33b0b39;hb=331294345d3e1716fbf79ae25a2851011729be79;hp=a7867e388758ecda0e61afcaaee0e290bca8d629;hpb=aa05f2a1b23a54321ea7248ae9ac3463652c734e;p=modules%2Fgui.git diff --git a/src/SOCC/SOCC_Prs.cxx b/src/SOCC/SOCC_Prs.cxx index a7867e388..0571f46e7 100644 --- a/src/SOCC/SOCC_Prs.cxx +++ b/src/SOCC/SOCC_Prs.cxx @@ -1,38 +1,38 @@ -// SALOME OCCViewer : build OCC Viewer into Salome desktop +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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. // -// Copyright (C) 2004 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// -// 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. -// -// 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.org +// 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 // + +// SALOME OCCViewer : build OCC Viewer into Salome desktop // File : SOCC_Prs.cxx // Author : Sergey ANIKIN -// Module : SALOME -// $Header$ #include "SOCC_Prs.h" -using namespace std; + +#include /*! Default constructor */ -SOCC_Prs::SOCC_Prs() +SOCC_Prs::SOCC_Prs( const char* entry ) + : SALOME_OCCPrs( entry ) { myToActivate = true; } @@ -40,7 +40,8 @@ SOCC_Prs::SOCC_Prs() /*! Standard constructor */ -SOCC_Prs::SOCC_Prs( const Handle(AIS_InteractiveObject)& obj ) +SOCC_Prs::SOCC_Prs( const char* entry, const Handle(AIS_InteractiveObject)& obj ) + : SALOME_OCCPrs( entry ) { AddObject( obj ); } @@ -69,12 +70,36 @@ void SOCC_Prs::AddObject( const Handle(AIS_InteractiveObject)& obj ) myObjects.Append( obj ); } +/*! + Prepend interactive object +*/ +void SOCC_Prs::PrependObject( const Handle(AIS_InteractiveObject)& obj ) +{ + myObjects.Prepend( obj ); +} + +/*! + Remove first interactive object +*/ +void SOCC_Prs::RemoveFirst() +{ + myObjects.RemoveFirst(); +} + +/*! + Remove all interactive objects +*/ +void SOCC_Prs::Clear() +{ + myObjects.Clear(); +} + /*! \return 0 if list of the interactive objects is empty [ Reimplemented from SALOME_Prs ] */ bool SOCC_Prs::IsNull() const { - return myObjects.IsEmpty(); + return myObjects.IsEmpty() == Standard_True; } /*!