Salome HOME
Remove unused variables
[modules/visu.git] / src / VISU_I / VISU_PrsObject_i.cc
1 //  VISU OBJECT : interactive object for VISU entities implementation
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 //  File   : VISU_PrsObject_i.cxx
24 //  Author : Alexey PETROV
25 //  Module : VISU
26
27 #include "VISU_PrsObject_i.hh"
28 using namespace VISU;
29 using namespace std;
30
31 #ifdef _DEBUG_
32 static int MYDEBUG = 1;
33 static int MYDEBUGWITHFILES = 0;
34 #else
35 static int MYDEBUG = 0;
36 static int MYDEBUGWITHFILES = 0;
37 #endif
38
39 void VISU::PrsObject_i::SetName( const char* theName )
40 {
41   myName = theName;
42   SALOMEDS::SObject_var mySO = myStudy->FindObjectID( GetEntry() );
43   if(!mySO->_is_nil()){
44     SALOMEDS::StudyBuilder_var aBuilder = myStudy->NewBuilder();
45     SALOMEDS::GenericAttribute_var anAttr = aBuilder->FindOrCreateAttribute( mySO, "AttributeName" );
46     SALOMEDS::AttributeName_var aNameAttr = SALOMEDS::AttributeName::_narrow( anAttr );
47     aNameAttr->SetValue( theName );
48   }
49 }
50 QString VISU::PrsObject_i::GetEntry() { 
51   CORBA::String_var anIOR = GetID();
52   SALOMEDS::SObject_var aSObject = myStudy->FindObjectIOR(anIOR.in());
53   CORBA::String_var anEntry;
54   if(!CORBA::is_nil(aSObject.in()))
55     anEntry = aSObject->GetID();
56   else
57     MESSAGE("PrsObject_i::GetEntry - Cannot find SObject in the Study with StudyId = "<<myStudy->StudyId()<<" !!!");
58   return anEntry.in();
59 }