Salome HOME
This commit was generated by cvs2git to create tag 'V1_1_1'.
[modules/geom.git] / OBJECT / GEOM_InteractiveObject.cxx
1 //  GEOM OBJECT : interactive object for Geometry entities visualization
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GEOM_InteractiveObject.cxx
25 //  Author : Christophe ATTANASIO
26 //  Module : GEOM
27 //  $Header$
28
29 using namespace std;
30 /*!
31   \class GEOM_InteractiveObject GEOM_InteractiveObject.hxx
32   \brief ....
33 */
34
35 #include "GEOM_InteractiveObject.ixx"
36
37 GEOM_InteractiveObject::GEOM_InteractiveObject()
38   : SALOME_InteractiveObject()
39 {
40   myIOR       = "";
41   myFatherIOR = "";
42 }
43
44 GEOM_InteractiveObject::GEOM_InteractiveObject(const Standard_CString anIOR,
45                                                const Standard_CString aFatherIOR,
46                                                const Standard_CString aComponentDataType,
47                                                const Standard_CString anEntry)
48   : SALOME_InteractiveObject(anEntry,aComponentDataType)
49 {
50   myIOR       = new char [strlen(anIOR)+1];
51   strcpy( myIOR, anIOR);
52   myFatherIOR = new char [strlen(aFatherIOR)+1];
53   strcpy( myFatherIOR, aFatherIOR);
54 }
55
56 Standard_CString GEOM_InteractiveObject::getIOR(){
57   return myIOR;
58 }
59 Standard_CString GEOM_InteractiveObject::getFatherIOR(){
60   return myFatherIOR;
61 }
62
63 Standard_Boolean GEOM_InteractiveObject::isSame(const Handle(SALOME_InteractiveObject)& anIO ){
64   if ( anIO->hasEntry() && this->hasEntry() ) {
65     if ( strcmp(myEntry, anIO->getEntry() ) == 0 )
66       return Standard_True;
67   }
68   
69   if ( anIO->IsKind(STANDARD_TYPE(GEOM_InteractiveObject))) {
70     Handle(GEOM_InteractiveObject) theIO = Handle(GEOM_InteractiveObject)::DownCast( anIO );
71     if ( strcmp(myIOR, theIO->getIOR() ) == 0 )
72       return Standard_True;
73   }
74
75   return Standard_False;
76 }