X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSOCC%2FSOCC_Prs.cxx;h=1b99d89e7871e80ad7c0699e1fb99b001031a9e5;hb=cac0b4571c951b557e1956d4777cf1e5199637c3;hp=44623c874b7e1dd8dd28d56c84c964dec3cccd63;hpb=399155730966dfc225fbb24f66204b05664385f2;p=modules%2Fgui.git diff --git a/src/SOCC/SOCC_Prs.cxx b/src/SOCC/SOCC_Prs.cxx index 44623c874..1b99d89e7 100644 --- a/src/SOCC/SOCC_Prs.cxx +++ b/src/SOCC/SOCC_Prs.cxx @@ -1,33 +1,32 @@ -// SALOME OCCViewer : build OCC Viewer into Salome desktop +// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE // -// 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.com +// 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. // +// 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 @@ -69,12 +68,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; } /*!