Salome HOME
0052660: Plot2D Viewer: Plot2d_Curve can't be selected
[modules/gui.git] / src / SOCC / SOCC_Prs.cxx
index 1f4c379d5d006aa3069e402c89de4f2bc7ea427e..622403582a87e7f7240778f92c3b9050f9d8f5b0 100644 (file)
@@ -1,40 +1,38 @@
-//  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2015  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
+// 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.
+// 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.
+// 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
+// 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
+// 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"
 
 #include <AIS_InteractiveObject.hxx>
 
-using namespace std;
-
 /*!
   Default constructor
 */
-SOCC_Prs::SOCC_Prs() 
+SOCC_Prs::SOCC_Prs( const char* entry )
+  : SALOME_OCCPrs( entry )
 {
   myToActivate = true;
 }
@@ -42,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 ); 
 }
@@ -71,6 +70,22 @@ 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
 */