]> SALOME platform Git repositories - modules/geom.git/blob - src/OBJECT/GEOM_InteractiveObject.cxx
Salome HOME
Merge from V6_main 11/02/2013
[modules/geom.git] / src / OBJECT / GEOM_InteractiveObject.cxx
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  GEOM OBJECT : interactive object for Geometry entities visualization
24 //  File   : GEOM_InteractiveObject.cxx
25 //  Author : Christophe ATTANASIO
26 //  Module : GEOM
27 //
28 /*!
29   \class GEOM_InteractiveObject GEOM_InteractiveObject.hxx
30   \brief ....
31 */
32
33 #include "GEOM_InteractiveObject.ixx"
34
35 GEOM_InteractiveObject::GEOM_InteractiveObject()
36   : SALOME_InteractiveObject()
37 {
38   myIOR       = "";
39   myFatherIOR = "";
40 }
41
42 GEOM_InteractiveObject::GEOM_InteractiveObject(const char* anIOR,
43                                                const char* aFatherIOR,
44                                                const char* aComponentDataType,
45                                                const char* anEntry)
46   : SALOME_InteractiveObject(anEntry,aComponentDataType)
47 {
48   myIOR       = anIOR;
49   myFatherIOR = aFatherIOR;
50 }
51
52 const char* GEOM_InteractiveObject::getIOR(){
53   return myIOR.c_str();
54 }
55
56 const char* GEOM_InteractiveObject::getFatherIOR(){
57   return myFatherIOR.c_str();
58 }
59
60 Standard_Boolean GEOM_InteractiveObject::isSame(const Handle(SALOME_InteractiveObject)& anIO ){
61   if ( anIO->hasEntry() && this->hasEntry() ) {
62     if ( myEntry == anIO->getEntry() )
63       return Standard_True;
64   }
65   
66   if ( anIO->IsKind(STANDARD_TYPE(GEOM_InteractiveObject))) {
67     Handle(GEOM_InteractiveObject) theIO = Handle(GEOM_InteractiveObject)::DownCast( anIO );
68     if ( myIOR == theIO->getIOR() )
69       return Standard_True;
70   }
71
72   return Standard_False;
73 }