Salome HOME
To implement issue 0019962: MakePipeBiNormalAlongAxis implementation.
[modules/geom.git] / src / 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : GEOM_InteractiveObject.cxx
25 //  Author : Christophe ATTANASIO
26 //  Module : GEOM
27 //  $Header$
28
29 /*!
30   \class GEOM_InteractiveObject GEOM_InteractiveObject.hxx
31   \brief ....
32 */
33
34 #include "GEOM_InteractiveObject.ixx"
35
36 using namespace std;
37
38 GEOM_InteractiveObject::GEOM_InteractiveObject()
39   : SALOME_InteractiveObject()
40 {
41   myIOR       = "";
42   myFatherIOR = "";
43 }
44
45 GEOM_InteractiveObject::GEOM_InteractiveObject(const char* anIOR,
46                                                const char* aFatherIOR,
47                                                const char* aComponentDataType,
48                                                const char* anEntry)
49   : SALOME_InteractiveObject(anEntry,aComponentDataType)
50 {
51   myIOR       = anIOR;
52   myFatherIOR = aFatherIOR;
53 }
54
55 const char* GEOM_InteractiveObject::getIOR(){
56   return myIOR.c_str();
57 }
58
59 const char* GEOM_InteractiveObject::getFatherIOR(){
60   return myFatherIOR.c_str();
61 }
62
63 Standard_Boolean GEOM_InteractiveObject::isSame(const Handle(SALOME_InteractiveObject)& anIO ){
64   if ( anIO->hasEntry() && this->hasEntry() ) {
65     if ( myEntry == anIO->getEntry() )
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 ( myIOR == theIO->getIOR() )
72       return Standard_True;
73   }
74
75   return Standard_False;
76 }