]> SALOME platform Git repositories - modules/visu.git/blob - src/VISU_I/VISU_PointMap3d_i.cc
Salome HOME
Fix for the "0051899: curves are not shown in opened study" issue.
[modules/visu.git] / src / VISU_I / VISU_PointMap3d_i.cc
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 //  VISU OBJECT : interactive object for VISU entities implementation
21 //  File   : VISU_PointMap3d_i.cc
22 //  Author : Dmitry Matveitchev
23 //  Module : VISU
24 //
25 #include "VISU_PointMap3d_i.hh"
26
27 #include "VISU_CutLinesBase_i.hh"
28 #include "VISU_CutSegment_i.hh"
29 #include "VISU_Result_i.hh"
30 #include "VISU_ViewManager_i.hh"
31 #include "VISU_ScalarBarActor.hxx"
32 #include "SUIT_ResourceMgr.h"
33
34 #include "SALOME_Event.h"
35 #include "VISU_Prs3dUtils.hh"
36 #include "SPlot2d_Curve.h"
37 #include "VISU_PipeLineUtils.hxx"
38
39 #include "VISU_TableReader.hxx"
40 #include "VISU_ConvertorUtils.hxx"
41 #include "VISU_DeformedGridPL.hxx"
42
43 #include "SALOME_InteractiveObject.hxx"
44 #include "VISU_Gen_i.hh"
45
46 #include <vtkTextProperty.h>
47 #include <vtkActorCollection.h>
48
49 #include <boost/bind.hpp>
50
51 #ifdef _DEBUG_
52 static int MYDEBUG = 0;
53 #else
54 static int MYDEBUG = 0;
55 #endif
56
57 using namespace std;
58
59 //----------------------------------------------------------------
60 //                      PointMap3d Object
61 //----------------------------------------------------------------
62 int VISU::PointMap3d_i::myNbPresent = 0;
63 const string VISU::PointMap3d_i::myComment  = "POINTMAP3D";
64 /*!
65   Generate unique name
66 */
67 QString VISU::PointMap3d_i::GenerateName()
68 {
69   return VISU::GenerateName( "Table3D - ", ++myNbPresent );
70 }
71 /*!
72   Gets comment string
73 */
74 const char* VISU::PointMap3d_i::GetComment() const
75 {
76   return myComment.c_str();
77 }
78 /*!
79   Constructor
80 */
81 VISU::PointMap3d_i::PointMap3d_i( SALOMEDS::Study_ptr theStudy, const char* theObjectEntry )
82   : Table_i(theStudy, theObjectEntry),
83   myActorCollection(vtkActorCollection::New()),
84   myIsActiveState(true)
85 {
86   if(MYDEBUG) MESSAGE("PointMap3d_i::PointMap3d_i - this = "<<this);
87   SetStudyDocument(theStudy);
88   mySObj = theStudy->FindObjectID(theObjectEntry);
89   myOffset[0] = myOffset[1] = myOffset[2] = 0;
90   myActorCollection->Delete();
91 }
92 /*!
93   Destructor
94 */
95 VISU::PointMap3d_i::~PointMap3d_i()
96 {
97   if(MYDEBUG) MESSAGE("PointMap3d_i::~PointMap3d_i - this = "<<this);
98 }
99
100 //----------------------------------------------------------------------------
101 namespace VISU
102 {
103   struct TInvokeSignalEvent: public SALOME_Event
104   {
105     typedef boost::signal0<void> TSignal;
106     const TSignal& mySignal;
107     
108     TInvokeSignalEvent(const TSignal& theSignal):
109       mySignal(theSignal)
110     {}
111     
112     virtual
113     void
114     Execute()
115     {
116       mySignal();
117     }
118   };
119 }
120
121 //----------------------------------------------------------------------------
122 void
123 VISU::PointMap3d_i
124 ::SetTitle( const char* theTitle )
125 {
126   SetName( theTitle, true );
127 }
128
129 //----------------------------------------------------------------------------
130 char*
131 VISU::PointMap3d_i
132 ::GetTitle()
133 {
134   return CORBA::string_dup( GetName().c_str() );
135 }
136
137 //----------------------------------------------------------------------------
138 SALOMEDS::SObject_var
139 VISU::PointMap3d_i
140 ::GetSObject() const
141 {
142   return mySObj;
143 }
144
145 //----------------------------------------------------------------------------
146 std::string
147 VISU::PointMap3d_i
148 ::GetObjectEntry() 
149 {
150   CORBA::String_var anEntry = mySObj->GetID();
151   return anEntry.in(); 
152 }
153
154 //----------------------------------------------------------------------------
155 Handle(SALOME_InteractiveObject)
156 VISU::PointMap3d_i
157 ::GetIO()
158 {
159   if( myIO.IsNull() )
160     myIO = new SALOME_InteractiveObject(GetEntry().c_str(), "VISU", GetName().c_str());
161
162   return myIO;
163 }
164
165 //----------------------------------------------------------------------------
166 /*!
167   Creates table3d object
168 */
169 VISU::Storable* VISU::PointMap3d_i::Create()
170 {
171   // generate name ...
172   SetName(GetTableTitle().toLatin1().constData(), false);
173
174   if ( GetName() == "" ) {
175     if ( !mySObj->_is_nil() ) {
176       CutLinesBase_i* pCutLines = NULL;
177       CORBA::Object_var anObj = SObjectToObject(mySObj);
178       if(!CORBA::is_nil(anObj)){
179         VISU::CutLinesBase_var aCutLines = VISU::CutLinesBase::_narrow(anObj);
180         if(!aCutLines->_is_nil())
181           pCutLines = dynamic_cast<CutLinesBase_i*>(GetServant(aCutLines).in());
182       }
183       if (!pCutLines)
184         if (mySObj->GetName()) SetName(mySObj->GetName(), false);
185     }
186   }
187
188   if ( GetName() == "" )
189     SetName(GenerateName().toLatin1().constData(), false);
190
191   // Create Pipeline
192   myTablePL = VISU_DeformedGridPL::New();
193   myTablePL->SetPolyDataIDMapper(GetTableIDMapper());
194   myTablePL->Update();
195
196   SUIT_ResourceMgr* aResourceMgr = VISU::GetResourceMgr();
197
198   bool isUnits = aResourceMgr->booleanValue( "VISU", "scalar_bar_display_units", true );
199   SetUnitsVisible(isUnits);
200
201   SetSourceRange();
202
203   if( aResourceMgr->booleanValue("VISU", "scalar_bar_logarithmic", false) )
204     SetScaling(VISU::LOGARITHMIC);
205   else
206     SetScaling(VISU::LINEAR);
207
208   int aNumberOfColors = aResourceMgr->integerValue( "VISU", "scalar_bar_num_colors", 64 );
209   SetNbColors(aNumberOfColors);
210
211   int aRangeType = aResourceMgr->integerValue("VISU" , "scalar_range_type", 0);
212   UseFixedRange(aRangeType == 1);
213   if(aRangeType == 1){
214     float aMin = aResourceMgr->doubleValue("VISU", "scalar_range_min", 0);
215     float aMax = aResourceMgr->doubleValue("VISU", "scalar_range_max", 0);
216     SetRange(aMin, aMax);
217   }
218
219   int lp = aResourceMgr->integerValue( "VISU", "scalar_bar_label_precision", 3 );
220   SetLabelsFormat( VISU::ToFormat( lp ).c_str() );
221
222   // Orientation
223   int anOrientation = aResourceMgr->integerValue("VISU", "scalar_bar_orientation", 0);
224   if(anOrientation == 1)
225     SetBarOrientation(VISU::ColoredPrs3dBase::HORIZONTAL);
226   else
227     SetBarOrientation(VISU::ColoredPrs3dBase::VERTICAL);
228
229   // Scalar Bar origin
230   QString propertyName = QString( "scalar_bar_%1_" ).arg( anOrientation == 0 ? "vertical" : "horizontal" );
231
232   double aXorigin = (myBarOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.01 : 0.2;
233   aXorigin = aResourceMgr->doubleValue("VISU", propertyName + "x", aXorigin);
234   myPosition[0] = aXorigin;
235
236   double aYorigin = (myBarOrientation == VISU::ColoredPrs3dBase::VERTICAL) ? 0.1 : 0.012;
237   aYorigin = aResourceMgr->doubleValue("VISU", propertyName + "y", aYorigin);
238   myPosition[1] = aYorigin;
239
240   // Scalar Bar size
241   myWidth = (myBarOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.1 : 0.6;
242   myWidth = aResourceMgr->doubleValue("VISU", propertyName + "width", myWidth);
243
244   myHeight = (myBarOrientation == VISU::ColoredPrs3dBase::VERTICAL)? 0.8:0.12;
245   myHeight = aResourceMgr->doubleValue("VISU", propertyName + "height", myHeight);
246
247   myTitleSize = aResourceMgr->doubleValue("VISU", propertyName + "title_size", 0);
248   myLabelSize = aResourceMgr->doubleValue("VISU", propertyName + "label_size", 0);
249   myBarWidth = aResourceMgr->doubleValue("VISU", propertyName + "bar_width", 0);
250   myBarHeight = aResourceMgr->doubleValue("VISU", propertyName + "bar_height", 0);
251
252   // Nb of Labels
253   myNumberOfLabels = aResourceMgr->integerValue( "VISU", "scalar_bar_num_labels", 5 );
254
255   // Fonts properties definition
256   myIsBoldTitle = myIsItalicTitle = myIsShadowTitle = true;
257   myTitFontType = VTK_ARIAL;
258
259   if(aResourceMgr->hasValue( "VISU", "scalar_bar_title_font" )){
260     QFont f = aResourceMgr->fontValue( "VISU", "scalar_bar_title_font" );
261     if ( f.family() == "Arial" )
262       myTitFontType = VTK_ARIAL;
263     else if ( f.family() == "Courier" )
264       myTitFontType = VTK_COURIER;
265     else if ( f.family() == "Times" )
266       myTitFontType = VTK_TIMES;
267     
268     myIsBoldTitle   = f.bold();
269     myIsItalicTitle = f.italic();
270     myIsShadowTitle =  f.overline();
271   }
272
273   QColor aTextColor = aResourceMgr->colorValue( "VISU", "scalar_bar_title_color", QColor( 255, 255, 255 ) );
274
275   myTitleColor[0] = aTextColor.red()   / 255;
276   myTitleColor[1] = aTextColor.green() / 255;
277   myTitleColor[2] = aTextColor.blue()  / 255;
278
279   myIsBoldLabel = myIsItalicLabel = myIsShadowLabel = true;
280   myLblFontType = VTK_ARIAL;
281
282   if( aResourceMgr->hasValue( "VISU", "scalar_bar_label_font" )){
283     QFont f = aResourceMgr->fontValue( "VISU", "scalar_bar_label_font" );
284     if ( f.family() == "Arial" )
285       myLblFontType = VTK_ARIAL;
286     else if ( f.family() == "Courier" )
287       myLblFontType = VTK_COURIER;
288     else if ( f.family() == "Times" )
289       myLblFontType = VTK_TIMES;
290     
291     myIsBoldLabel   = f.bold();
292     myIsItalicLabel = f.italic();
293     myIsShadowLabel =  f.overline();
294   }
295
296   QColor aLabelColor = aResourceMgr->colorValue( "VISU", "scalar_bar_label_color", QColor( 255, 255, 255 ) );
297
298   myLabelColor[0] = aLabelColor.red()   / 255;
299   myLabelColor[1] = aLabelColor.green() / 255;
300   myLabelColor[2] = aLabelColor.blue()  / 255;
301
302   // scalar bar default position
303   bool anIsArrangeBar = aResourceMgr->booleanValue("VISU", "scalar_bars_default_position", 0);
304   int aPlace = 1;
305   if (anIsArrangeBar){
306     aPlace = aResourceMgr->integerValue("VISU", "scalar_bar_position_num",0);
307   }
308   if(myBarOrientation == VISU::ColoredPrs3dBase::HORIZONTAL){
309     myPosition[1] += myHeight*(aPlace-1);
310   } else {
311     myPosition[0] += myWidth*(aPlace-1);
312   }
313
314   return Build( false );
315 }
316
317 /*
318   GetIDMapper
319 */
320
321 VISU::PTableIDMapper
322 VISU::PointMap3d_i
323 ::GetTableIDMapper()
324 {
325   //Initialisate table mapper
326   SALOMEDS::GenericAttribute_var anAttr;
327   mySObj->FindAttribute(anAttr, "AttributeTableOfReal");
328   SALOMEDS::AttributeTableOfReal_var aTableOfReal = SALOMEDS::AttributeTableOfReal::_narrow(anAttr);
329
330   PTableIDMapper aTableIDMapper( new TTableIDMapper() );
331   TTable2D& aTable2D = *aTableIDMapper;
332
333   aTable2D.myTitle = aTableOfReal->GetTitle();
334
335   SALOMEDS::StringSeq_var aColStrList = aTableOfReal->GetColumnTitles();
336   SALOMEDS::StringSeq_var aRowStrList = aTableOfReal->GetRowTitles();
337
338   for ( int i = 0; i < aRowStrList->length(); i++ ) {
339     aTable2D.myColumnTitles.push_back( aRowStrList[ i ].in() );
340   }
341
342   int aCols = aTableOfReal->GetNbColumns();
343   int aRows = aTableOfReal->GetNbRows();
344
345   for (int i=1; i<=aCols; i++) {
346     TTable2D::TRow aRow;
347     aRow.myTitle = aColStrList[ i-1 ].in();
348     for (int j=1; j<=aRows; j++) {
349       double aVal = aTableOfReal->GetValue(j, i);
350       QString aValStr = QString::number(aVal);
351       aRow.myValues.push_back( aValStr.toLatin1().constData() );
352     }
353     if( aRow.myValues.size() > 0 )
354       aTable2D.myRows.push_back( aRow );
355   }
356
357   return aTableIDMapper;
358 }
359
360 /*
361   Create Actor
362 */
363 VISU_PointMap3dActor* VISU::PointMap3d_i::CreateActor()
364 {
365   VISU_PointMap3dActor* anActor = VISU_PointMap3dActor::New();
366   anActor->SetPipeLine(myTablePL);
367   anActor->SetFactory(this);
368
369   SUIT_ResourceMgr* aResourceMgr = VISU::GetResourceMgr();
370   int  aDispMode = aResourceMgr->integerValue("VISU", "point_map_represent", 2);
371   bool toShrink  = aResourceMgr->booleanValue("VISU", "scalar_map_shrink", false);
372   anActor->SetRepresentation(aDispMode);
373   if (toShrink) anActor->SetShrink();
374
375   Handle (SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(GetEntry().c_str(), "VISU", GetName().c_str());
376   anActor->setIO(anIO);
377
378   myUpdateActorsSignal.connect(boost::bind(&VISU_Actor::UpdateFromFactory,anActor));
379   //  myRemoveActorsFromRendererSignal.connect(boost::bind(&VISU_Actor::RemoveFromRender,anActor));
380
381   myActorCollection->AddItem(anActor);
382
383   UpdateActor( anActor );
384
385   return anActor;
386 }
387
388 /*
389   Update Actor
390 */
391 void VISU::PointMap3d_i::UpdateActor(VISU_ActorBase* theActor)
392 {
393   if(VISU_PointMap3dActor* anActor = dynamic_cast<VISU_PointMap3dActor*>(theActor)){
394     Update();
395     VISU_ScalarBarActor *aScalarBar = anActor->GetScalarBar();
396     aScalarBar->SetLookupTable(GetSpecificPL()->GetBarTable());
397     aScalarBar->SetTitle(GetTitle());
398     aScalarBar->SetOrientation(GetBarOrientation());
399     aScalarBar->GetPositionCoordinate()->SetCoordinateSystemToNormalizedViewport();
400     aScalarBar->GetPositionCoordinate()->SetValue(GetPosX(),GetPosY());
401     aScalarBar->SetWidth(GetWidth());
402     aScalarBar->SetHeight(GetHeight());
403     aScalarBar->SetNumberOfLabels(GetLabels());
404     aScalarBar->SetRatios(myTitleSize, myLabelSize, 
405                           myBarWidth, myBarHeight);
406     aScalarBar->SetNumberOfLabels(GetLabels());
407     aScalarBar->SetLabelFormat(GetLabelsFormat());
408
409     double anRGB[3];
410
411     vtkTextProperty* aTitleProp = aScalarBar->GetTitleTextProperty();
412     aTitleProp->SetFontFamily(GetTitFontType());
413
414     GetTitleColor(anRGB[0],anRGB[1],anRGB[2]);
415     aTitleProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
416
417     IsBoldTitle()? aTitleProp->BoldOn() : aTitleProp->BoldOff();
418     IsItalicTitle()? aTitleProp->ItalicOn() : aTitleProp->ItalicOff();
419     IsShadowTitle()? aTitleProp->ShadowOn() : aTitleProp->ShadowOff();
420
421     vtkTextProperty* aLabelProp = aScalarBar->GetLabelTextProperty();
422     aLabelProp->SetFontFamily(GetLblFontType());
423
424     GetLabelColor(anRGB[0],anRGB[1],anRGB[2]);
425     aLabelProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
426
427     IsBoldLabel()? aLabelProp->BoldOn() : aLabelProp->BoldOff();
428     IsItalicLabel()? aLabelProp->ItalicOn() : aLabelProp->ItalicOff();
429     IsShadowLabel()? aLabelProp->ShadowOn() : aLabelProp->ShadowOff();
430
431     aScalarBar->Modified();
432
433     anActor->highlight(anActor->isHighlighted()); // like in VISU::Prs3d_i::UpdateActor()
434   }
435   theActor->SetPosition(myOffset[0],myOffset[1],myOffset[2]);
436 }
437
438 void
439 VISU::PointMap3d_i
440 ::UpdateActors()
441 {
442   if(MYDEBUG) MESSAGE("Prs3d_i::UpdateActors - this = "<<this);
443   ProcessVoidEvent(new TVoidMemFunEvent<VISU_PipeLine>
444                    (GetSpecificPL(), &VISU_PipeLine::Update));
445
446   ProcessVoidEvent(new VISU::TInvokeSignalEvent(myUpdateActorsSignal));
447 }
448
449 //----------------------------------------------------------------------------
450 void
451 VISU::PointMap3d_i
452 ::Update()
453 {
454   if(GetMTime() < myUpdateTime.GetMTime())
455     return;
456
457   if(MYDEBUG) MESSAGE("PointMap3d_i::Update - this = "<<this);
458
459   try{
460     ProcessVoidEvent(new TVoidMemFunEvent<VISU_PipeLine>
461                      (GetSpecificPL(), &VISU_PipeLine::Update));
462     myUpdateTime.Modified();
463   }catch(std::exception&){
464     throw;
465   }catch(...){
466     throw std::runtime_error("PointMap3d_i::Update >> unexpected exception was caught!!!");
467   }
468 }
469
470 //----------------------------------------------------------------------------
471 unsigned long int 
472 VISU::PointMap3d_i
473 ::GetMTime()
474 {
475   unsigned long int aTime = myParamsTime.GetMTime();
476   if( GetSpecificPL() )
477     aTime = std::max(aTime, GetSpecificPL()->GetMTime());
478   return aTime;
479 }
480
481 /*!
482   Builds presentation of table
483 */
484 VISU::Storable* VISU::PointMap3d_i::Build( int theRestoring )
485 {
486
487   // look for reference SObject with table attribute
488   SALOMEDS::SObject_var SO = mySObj;
489
490   if ( !SO->_is_nil() ) {
491     CutLinesBase_i* pCutLines = NULL;
492     CORBA::Object_var anObj = SObjectToObject(SO);
493     if(!CORBA::is_nil(anObj)){
494       VISU::CutLinesBase_var aCutLines = VISU::CutLinesBase::_narrow(anObj);
495       if(!aCutLines->_is_nil())
496         pCutLines = dynamic_cast<CutLinesBase_i*>(GetServant(aCutLines).in());
497     }
498     SALOMEDS::Study_var aStudy = GetStudyDocument();
499     SALOMEDS::StudyBuilder_var Builder = GetStudyDocument()->NewBuilder();
500     SALOMEDS::GenericAttribute_var anAttr;
501     // look for component
502     if ( !theRestoring ) {
503       SALOMEDS::SComponent_var SComponent = VISU::FindOrCreateVisuComponent( GetStudyDocument() );
504       // create SObject and set attributes
505       QString aComment;
506       if(pCutLines)
507         aComment.sprintf("myComment=%s;mySourceId=CutLines",GetComment());
508       else{
509         aComment.sprintf("myComment=%s;mySourceId=TableAttr",GetComment());
510         SALOMEDS::SObject_var aFatherSObject = SO->GetFather();
511         if(aFatherSObject->FindAttribute(anAttr,"AttributeString")){
512           SALOMEDS::AttributeString_var aCommentAttr =
513             SALOMEDS::AttributeString::_narrow(anAttr);
514           CORBA::String_var aValue = aCommentAttr->Value();
515           Storable::TRestoringMap aMap;
516           Storable::StringToMap(aValue.in(),aMap);
517           bool anIsExist;
518           QString aMethodName = VISU::Storable::FindValue(aMap,"myComment",&anIsExist);
519           if(anIsExist){
520             if(aMethodName == "ImportTables"){
521               aComment.sprintf("myComment=%s;mySourceId=TableFile",GetComment());
522             }
523           }
524         }
525       }
526
527       string anEntry = CreateAttributes( GetStudyDocument(),
528                                          SO->GetID(),//SComponent->GetID(),
529                                          "ICON_TREE_TABLE",
530                                          GetID(),
531                                          GetName(),
532                                          "",
533                                          aComment.toLatin1().constData(),
534                                          pCutLines );
535       // create SObject referenced to real table object
536       mySObj = SALOMEDS::SObject::_duplicate(GetStudyDocument()->FindObjectID( anEntry.c_str() ));
537       if(pCutLines) {
538         bool isCutSegment = dynamic_cast<CutSegment_i*>(pCutLines);
539         pCutLines->BuildTableOfReal(mySObj, isCutSegment);
540       }
541       // mpv (PAL5357): reference attributes are unnecessary now
542       //SALOMEDS::SObject_var refSO = Builder->NewObject( mySObj );
543       //Builder->Addreference( refSO, SO );
544     }
545
546     return this;
547   }
548   return NULL;
549 }
550 /*!
551   Restores table object from stream
552 */
553 VISU::Storable* VISU::PointMap3d_i::Restore( const Storable::TRestoringMap& theMap, SALOMEDS::SObject_ptr SO)
554 {
555   VISU::Table_i::Restore( theMap, SO);
556   if(MYDEBUG) MESSAGE(GetComment());
557   SetName(VISU::Storable::FindValue(theMap,"myName").toLatin1().constData(), false);
558   myTitle = VISU::Storable::FindValue(theMap,"myTitle").toLatin1().constData();
559   myOrientation = ( VISU::Table::Orientation )( VISU::Storable::FindValue(theMap,"myOrientation").toInt() );
560   mySObj = SALOMEDS::SObject::_duplicate(SO);
561
562   //Create PipeLine
563   myTablePL = VISU_DeformedGridPL::New();
564   myTablePL->SetPolyDataIDMapper(GetTableIDMapper());
565   myTablePL->Update();
566
567   //Restore Other Values
568   
569   float aMin = VISU::Storable::FindValue(theMap,"myScalarRange[0]").toDouble();
570   float aMax = VISU::Storable::FindValue(theMap,"myScalarRange[1]").toDouble();
571   SetRange(aMin, aMax);
572
573   UseFixedRange(VISU::Storable::FindValue(theMap,"myIsFixedRange", "0").toInt());
574
575   SetNbColors(VISU::Storable::FindValue(theMap,"myNumberOfColors").toInt());
576   SetUnitsVisible(VISU::Storable::FindValue(theMap,"myUnitsVisible", "1").toInt());
577   SetLabelsFormat(VISU::Storable::FindValue(theMap,"myLabelsFormat", "%-#6.3g").toLatin1().constData());
578   SetBarOrientation((VISU::ColoredPrs3dBase::Orientation)VISU::Storable::FindValue(theMap,"myBarOrientation").toInt());
579
580   SetTitle(VISU::Storable::FindValue(theMap,"myTitle").toLatin1().constData());
581   myNumberOfLabels = VISU::Storable::FindValue(theMap,"myNumberOfLabels").toInt();
582   myPosition[0] = VISU::Storable::FindValue(theMap,"myPosition[0]").toDouble();
583   myPosition[1] = VISU::Storable::FindValue(theMap,"myPosition[1]").toDouble();
584   myWidth = VISU::Storable::FindValue(theMap,"myWidth").toDouble();
585   myHeight = VISU::Storable::FindValue(theMap,"myHeight").toDouble();
586   myTitleSize = VISU::Storable::FindValue(theMap,"myTitleSize").toInt();
587   myLabelSize = VISU::Storable::FindValue(theMap,"myLabelSize").toInt();
588   myBarWidth = VISU::Storable::FindValue(theMap,"myBarWidth").toInt();
589   myBarHeight = VISU::Storable::FindValue(theMap,"myBarHeight").toInt();
590
591   myTitFontType = VISU::Storable::FindValue(theMap,"myTitFontType").toInt();
592   myIsBoldTitle = VISU::Storable::FindValue(theMap,"myIsBoldTitle").toInt();
593   myIsItalicTitle = VISU::Storable::FindValue(theMap,"myIsItalicTitle").toInt();
594   myIsShadowTitle = VISU::Storable::FindValue(theMap,"myIsShadowTitle").toInt();
595   myTitleColor[0] = VISU::Storable::FindValue(theMap,"myTitleColor[0]").toFloat();
596   myTitleColor[1] = VISU::Storable::FindValue(theMap,"myTitleColor[1]").toFloat();
597   myTitleColor[2] = VISU::Storable::FindValue(theMap,"myTitleColor[2]").toFloat();
598
599   myLblFontType = VISU::Storable::FindValue(theMap,"myLblFontType").toInt();
600   myIsBoldLabel = VISU::Storable::FindValue(theMap,"myIsBoldLabel").toInt();
601   myIsItalicLabel = VISU::Storable::FindValue(theMap,"myIsItalicLabel").toInt();
602   myIsShadowLabel = VISU::Storable::FindValue(theMap,"myIsShadowLabel").toInt();
603   myLabelColor[0] = VISU::Storable::FindValue(theMap,"myLabelColor[0]").toFloat();
604   myLabelColor[1] = VISU::Storable::FindValue(theMap,"myLabelColor[1]").toFloat();
605   myLabelColor[2] = VISU::Storable::FindValue(theMap,"myLabelColor[2]").toFloat();
606
607   bool isFound = false;
608   QString x,y,z;
609   
610   x = VISU::Storable::FindValue(theMap,"myOffset[0]",&isFound);
611   y = VISU::Storable::FindValue(theMap,"myOffset[1]",&isFound);
612   z = VISU::Storable::FindValue(theMap,"myOffset[2]",&isFound);
613   if(isFound) {
614     myOffset[0] = x.toFloat();
615     myOffset[1] = y.toFloat();
616     myOffset[2] = z.toFloat();
617   }
618
619   myParamsTime.Modified();
620   return Build( true );
621 }
622 /*!
623   Flushes table data into stream
624 */
625 void VISU::PointMap3d_i::ToStream( std::ostringstream& theStr )
626 {
627   Storable::DataToStream( theStr, "myName",        GetName().c_str() );
628   Storable::DataToStream( theStr, "myTitle",       myTitle.c_str() );
629   Storable::DataToStream( theStr, "myOrientation", myOrientation );
630
631   Storable::DataToStream( theStr, "myScalarRange[0]", GetMin() );
632   Storable::DataToStream( theStr, "myScalarRange[1]", GetMax() );
633   Storable::DataToStream( theStr, "myIsFixedRange",   IsRangeFixed() );
634
635   Storable::DataToStream( theStr, "myNumberOfColors", int(GetNbColors()) );
636   Storable::DataToStream( theStr, "myBarOrientation", myBarOrientation );
637
638   Storable::DataToStream( theStr, "myTitle",          myTitle.c_str() );
639   Storable::DataToStream( theStr, "myUnitsVisible",   myIsUnits );
640   Storable::DataToStream( theStr, "myNumberOfLabels", myNumberOfLabels );
641   Storable::DataToStream( theStr, "myLabelsFormat",   myLabelsFormat.c_str() );
642   Storable::DataToStream( theStr, "myPosition[0]",    myPosition[0] );
643   Storable::DataToStream( theStr, "myPosition[1]",    myPosition[1] );
644   Storable::DataToStream( theStr, "myWidth",          myWidth );
645   Storable::DataToStream( theStr, "myHeight",         myHeight );
646   Storable::DataToStream( theStr, "myTitleSize",      myTitleSize );
647   Storable::DataToStream( theStr, "myLabelSize",     myLabelSize );
648   Storable::DataToStream( theStr, "myBarWidth",       myBarWidth );
649   Storable::DataToStream( theStr, "myBarHeight",      myBarHeight );
650
651   Storable::DataToStream( theStr, "myTitFontType",    myTitFontType );
652   Storable::DataToStream( theStr, "myIsBoldTitle",    myIsBoldTitle );
653   Storable::DataToStream( theStr, "myIsItalicTitle",  myIsItalicTitle );
654   Storable::DataToStream( theStr, "myIsShadowTitle",  myIsShadowTitle );
655   Storable::DataToStream( theStr, "myTitleColor[0]",  myTitleColor[0] );
656   Storable::DataToStream( theStr, "myTitleColor[1]",  myTitleColor[1] );
657   Storable::DataToStream( theStr, "myTitleColor[2]",  myTitleColor[2] );
658
659   Storable::DataToStream( theStr, "myLblFontType",    myLblFontType );
660   Storable::DataToStream( theStr, "myIsBoldLabel",    myIsBoldLabel );
661   Storable::DataToStream( theStr, "myIsItalicLabel",  myIsItalicLabel );
662   Storable::DataToStream( theStr, "myIsShadowLabel",  myIsShadowLabel );
663   Storable::DataToStream( theStr, "myLabelColor[0]",  myLabelColor[0] );
664   Storable::DataToStream( theStr, "myLabelColor[1]",  myLabelColor[1] );
665   Storable::DataToStream( theStr, "myLabelColor[2]",  myLabelColor[2] );
666
667   Storable::DataToStream( theStr, "myOffset[0]", myOffset[0] );
668   Storable::DataToStream( theStr, "myOffset[1]", myOffset[1] );
669   Storable::DataToStream( theStr, "myOffset[2]", myOffset[2] );
670 }
671 /*!
672   Called from engine to restore table from the file
673 */
674 VISU::Storable* VISU::PointMap3d_i::StorableEngine(SALOMEDS::SObject_ptr theSObject,
675                                                    const Storable::TRestoringMap& theMap,
676                                                    const std::string& thePrefix,
677                                                    CORBA::Boolean theIsMultiFile)
678 {
679   SALOMEDS::Study_var aStudy = theSObject->GetStudy();
680   VISU::PointMap3d_i* pResent = new VISU::PointMap3d_i( aStudy, "" );
681   return pResent->Restore( theMap, theSObject);
682 }
683 /*!
684   Gets title for the original table object
685 */
686 QString VISU::PointMap3d_i::GetTableTitle()
687 {
688   SALOMEDS::SObject_var SO = mySObj;
689   SALOMEDS::StudyBuilder_var Builder = GetStudyDocument()->NewBuilder();
690   SALOMEDS::GenericAttribute_var        anAttr;
691   SALOMEDS::AttributeTableOfInteger_var anInt;
692   SALOMEDS::AttributeTableOfReal_var    aReal;
693   if ( !SO->_is_nil() ) {
694     if ( Builder->FindAttribute( SO, anAttr, "AttributeTableOfInteger" ) ) {
695       anInt = SALOMEDS::AttributeTableOfInteger::_narrow( anAttr );
696       CORBA::String_var aString = anInt->GetTitle();
697       return aString.in();
698     }
699     else if ( Builder->FindAttribute( SO, anAttr, "AttributeTableOfReal" ) ) {
700       aReal = SALOMEDS::AttributeTableOfReal::_narrow( anAttr );
701       CORBA::String_var aString = aReal->GetTitle();
702       return aString.in();
703     }
704   }
705   return "";
706 }
707
708 //---------------------------------------------------------------
709 void VISU::PointMap3d_i::RemoveFromStudy()
710 {
711   struct TRemoveFromStudy: public SALOME_Event
712   {
713     VISU::PointMap3d_i* myRemovable;
714     TRemoveFromStudy(VISU::PointMap3d_i* theRemovable):
715       myRemovable(theRemovable)
716     {}
717     
718     virtual
719     void
720     Execute()
721     {
722       VISU::RemoveFromStudy(myRemovable->GetSObject(),false);
723     }
724   };
725
726   // Remove the table with all curves
727   ProcessVoidEvent(new TRemoveFromStudy(this));
728 }
729
730 //----------------------------------------------------------------
731 void VISU::PointMap3d_i::SetOffset(CORBA::Float theDx, CORBA::Float theDy, CORBA::Float theDz)
732 {
733   VISU::TSetModified aModified(this);
734   myOffset[0] = theDx;
735   myOffset[1] = theDy;
736   myOffset[2] = theDz;
737   myParamsTime.Modified();
738 }
739
740 void VISU::PointMap3d_i::GetOffset(CORBA::Float& theDx, CORBA::Float& theDy, CORBA::Float& theDz)
741 {
742   theDx = myOffset[0];
743   theDy = myOffset[1];
744   theDz = myOffset[2];
745 }
746
747 void VISU::PointMap3d_i::SetMarkerStd(VISU::MarkerType, VISU::MarkerScale)
748 {
749 }
750
751 void VISU::PointMap3d_i::SetMarkerTexture(CORBA::Long)
752 {
753 }
754
755 VISU::MarkerType VISU::PointMap3d_i::GetMarkerType()
756 {
757   return VISU::MT_NONE;
758 }
759
760 VISU::MarkerScale VISU::PointMap3d_i::GetMarkerScale()
761 {
762   return VISU::MS_NONE;
763 }
764
765 CORBA::Long VISU::PointMap3d_i::GetMarkerTexture()
766 {
767   return 0;
768 }
769
770 CORBA::Float VISU::PointMap3d_i::GetMemorySize()
771 {
772   CORBA::Float aSize = GetSpecificPL()->GetMemorySize();
773
774   int anEnd = myActorCollection->GetNumberOfItems();
775   for(int anId = 0; anId < anEnd; anId++)
776     if(vtkObject* anObject = myActorCollection->GetItemAsObject(anId))
777       if(VISU_Actor* anActor = dynamic_cast<VISU_Actor*>(anObject)){
778         aSize += anActor->GetMemorySize();
779         //cout<<"Prs3d_i::GetMemorySize - "<<this<<"; anActor = "<<aSize / (1024.0 * 1024.0)<<endl;
780       }
781
782   // Convert to mega bytes
783   return aSize / (1024.0 * 1024.0);
784 }
785
786 //------------------ ColoredPrs3dBase Methods --------------------
787 CORBA::Double VISU::PointMap3d_i::GetMin()
788 {
789   return myTablePL->GetScalarRange()[0];
790 }
791
792 CORBA::Double VISU::PointMap3d_i::GetMinTableValue()
793 {
794   SALOMEDS::GenericAttribute_var anAttr;
795   mySObj->FindAttribute(anAttr, "AttributeTableOfReal");
796   SALOMEDS::AttributeTableOfReal_var aTableOfReal = SALOMEDS::AttributeTableOfReal::_narrow(anAttr);
797   double aMin = aTableOfReal->GetValue(1, 1);
798   
799   for (int i=1; i<=aTableOfReal->GetNbColumns(); i++)
800     for (int j=1; j<=aTableOfReal->GetNbRows(); j++) {
801       double aVal = aTableOfReal->GetValue(j, i);
802       if (aVal < aMin)
803         aMin = aVal;
804     }
805   
806   return aMin;
807 }
808
809 CORBA::Double VISU::PointMap3d_i::GetMaxTableValue()
810 {
811   SALOMEDS::GenericAttribute_var anAttr;
812   mySObj->FindAttribute(anAttr, "AttributeTableOfReal");
813   SALOMEDS::AttributeTableOfReal_var aTableOfReal = SALOMEDS::AttributeTableOfReal::_narrow(anAttr);
814   double aMax = aTableOfReal->GetValue(1, 1);
815
816   for (int i=1; i<=aTableOfReal->GetNbColumns(); i++)
817     for (int j=1; j<=aTableOfReal->GetNbRows(); j++) {
818       double aVal = aTableOfReal->GetValue(j, i);
819       if (aVal > aMax)
820         aMax = aVal;
821     }
822
823   return aMax;
824 }
825
826 CORBA::Double VISU::PointMap3d_i::GetMax()
827 {
828   return myTablePL->GetScalarRange()[1];
829 }
830
831 void VISU::PointMap3d_i::SetRange(CORBA::Double theMin, CORBA::Double theMax)
832 {
833   double aScalarRange[2] = {theMin, theMax};
834   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, double*>
835                    (GetSpecificPL(), &VISU_DeformedGridPL::SetScalarRange, aScalarRange));
836
837   UseFixedRange(true);
838 }
839
840 CORBA::Double VISU::PointMap3d_i::GetSourceMin()
841 {
842   double aRange[2];
843   GetSpecificPL()->GetSourceRange(aRange);
844   return aRange[0];
845 }
846
847 CORBA::Double VISU::PointMap3d_i::GetSourceMax()
848 {
849   double aRange[2];
850   GetSpecificPL()->GetSourceRange(aRange);
851   return aRange[1];
852 }
853
854 void VISU::PointMap3d_i::SetSourceRange()
855 {
856   GetSpecificPL()->SetSourceRange();
857   ProcessVoidEvent(new TVoidMemFunEvent<VISU_DeformedGridPL>
858                    (GetSpecificPL(), &VISU_DeformedGridPL::SetSourceRange));
859
860   UseFixedRange(false);
861 }
862
863 CORBA::Boolean VISU::PointMap3d_i::IsRangeFixed()
864 {
865   return myIsFixedRange; 
866 }
867
868 void VISU::PointMap3d_i::UseFixedRange(bool theRange)
869 {
870   if(myIsFixedRange == theRange)
871     return;
872
873   myIsFixedRange = theRange;
874 }
875
876 void VISU::PointMap3d_i::SetPosition(CORBA::Double theX, CORBA::Double theY)
877 {
878   bool anIsSameValue = VISU::CheckIsSameValue(myPosition[0], theX);
879   anIsSameValue &= VISU::CheckIsSameValue(myPosition[1], theY);
880   if(anIsSameValue)
881     return;
882
883   myPosition[0] = theX; 
884   myPosition[1] = theY;
885   myParamsTime.Modified();
886 }
887
888 CORBA::Double VISU::PointMap3d_i::GetPosX()
889 {
890   return myPosition[0];
891 }
892
893 CORBA::Double VISU::PointMap3d_i::GetPosY()
894 {
895   return myPosition[1];
896 }
897
898 void VISU::PointMap3d_i::SetSize(CORBA::Double theWidth, CORBA::Double theHeight)
899 {
900   bool anIsSameValue = VISU::CheckIsSameValue(myWidth, theWidth);
901   anIsSameValue &= VISU::CheckIsSameValue(myHeight, theHeight);
902   if(anIsSameValue)
903     return;
904
905   myWidth = theWidth; 
906   myHeight = theHeight;
907   myParamsTime.Modified();
908 }
909
910 CORBA::Double VISU::PointMap3d_i::GetHeight()
911 {
912   return myHeight;
913 }
914
915 CORBA::Double VISU::PointMap3d_i::GetWidth()
916 {
917   return myWidth;
918 }
919
920 void VISU::PointMap3d_i::SetNbColors(CORBA::Long theNbColors)
921 {
922   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, int>
923                    (GetSpecificPL(), &VISU_DeformedGridPL::SetNbColors, theNbColors));
924 }
925
926 CORBA::Long VISU::PointMap3d_i::GetNbColors()
927 {
928   return GetSpecificPL()->GetNbColors();
929 }
930
931 void VISU::PointMap3d_i::SetLabels(CORBA::Long theNbLabels)
932 {
933   if(myNumberOfLabels == theNbLabels)
934     return;
935
936   myNumberOfLabels = theNbLabels;
937 }
938
939 CORBA::Long VISU::PointMap3d_i::GetLabels()
940 {
941   return myNumberOfLabels;
942 }
943
944 void VISU::PointMap3d_i::SetBarOrientation(VISU::ColoredPrs3dBase::Orientation theBarOrientation)
945 {
946   if(myBarOrientation == theBarOrientation)
947     return;
948
949   if ( ( theBarOrientation == VISU::ColoredPrs3dBase::VERTICAL && myHeight < myWidth ) ||
950        ( theBarOrientation == VISU::ColoredPrs3dBase::HORIZONTAL && myHeight > myWidth ) ) {
951     double tmp = myHeight;
952     myHeight = myWidth;
953     myWidth = tmp;
954   }
955
956   myBarOrientation = theBarOrientation;
957   myParamsTime.Modified();
958 }
959
960 VISU::ColoredPrs3dBase::Orientation VISU::PointMap3d_i::GetBarOrientation()
961 {
962   return myBarOrientation;
963 }
964
965 //------------------- ScaledPrs3d Methods -----------------------
966
967 void VISU::PointMap3d_i::SetScaling(VISU::Scaling theScaling)
968 {
969   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, int>
970                    (GetSpecificPL(), &VISU_DeformedGridPL::SetScaling, theScaling));
971 }
972
973 VISU::Scaling VISU::PointMap3d_i::GetScaling()
974 {
975   return VISU::Scaling(GetSpecificPL()->GetScaling());
976 }
977
978 //------------------- Check Table on Positive Values ------------
979 bool VISU::PointMap3d_i::IsPositiveTable()
980 {
981   SALOMEDS::GenericAttribute_var anAttr;
982   mySObj->FindAttribute(anAttr, "AttributeTableOfReal");
983   SALOMEDS::AttributeTableOfReal_var aTableOfReal = SALOMEDS::AttributeTableOfReal::_narrow(anAttr);
984
985   for (int i=1; i<=aTableOfReal->GetNbColumns(); i++)
986     for (int j=1; j<=aTableOfReal->GetNbRows(); j++) {
987       double aVal = aTableOfReal->GetValue(j, i);
988       if (aVal < 0)
989         return false;
990     }
991
992   return true;
993 }
994
995 //------------------- Plot3dBase Methods ------------------------
996
997 void VISU::PointMap3d_i::SetScaleFactor (CORBA::Double theScaleFactor)
998 {
999   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, double>
1000                    (GetSpecificPL(), &VISU_DeformedGridPL::SetScaleFactor, theScaleFactor));
1001 }
1002
1003 CORBA::Double VISU::PointMap3d_i::GetScaleFactor ()
1004 {
1005   return myTablePL->GetScaleFactor();
1006 }
1007
1008 void VISU::PointMap3d_i::SetContourPrs (CORBA::Boolean theIsContourPrs )
1009 {
1010   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, bool>
1011                    (GetSpecificPL(), &VISU_DeformedGridPL::SetContourPrs, theIsContourPrs));
1012 }
1013
1014 CORBA::Boolean VISU::PointMap3d_i::GetIsContourPrs()
1015 {
1016   return myTablePL->GetIsContourPrs();
1017 }
1018
1019 void VISU::PointMap3d_i::SetNbOfContours (CORBA::Long theNb)
1020 {
1021   ProcessVoidEvent(new TVoidMemFun1ArgEvent<VISU_DeformedGridPL, int>
1022                    (GetSpecificPL(), &VISU_DeformedGridPL::SetNumberOfContours, theNb));
1023 }
1024
1025 CORBA::Long VISU::PointMap3d_i::GetNbOfContours ()
1026 {
1027   return myTablePL->GetNumberOfContours();
1028 }
1029
1030 //-------------------- Actor Factory Methods --------------------
1031
1032 bool VISU::PointMap3d_i::GetActiveState ()
1033 {
1034   return myIsActiveState;
1035 }
1036
1037 void VISU::PointMap3d_i::SetActiveState ( bool theState )
1038 {
1039   myIsActiveState = theState;
1040 }
1041
1042 void VISU::PointMap3d_i::RemoveActor (VISU_ActorBase* theActor)
1043 {
1044   myActorCollection->RemoveItem(theActor);
1045 }
1046
1047 void VISU::PointMap3d_i::RemoveActors ()
1048 {
1049   ProcessVoidEvent(new TInvokeSignalEvent(myRemoveActorsFromRendererSignal));
1050   myActorCollection->RemoveAllItems();
1051 }
1052
1053
1054 //-----------------------Text Properties & Label Properties------------------
1055 bool VISU::PointMap3d_i::IsBoldTitle() 
1056
1057   return myIsBoldTitle;
1058 }
1059
1060 //----------------------------------------------------------------------------
1061 void VISU::PointMap3d_i::SetBoldTitle(bool theIsBoldTitle)
1062 {
1063   if(myIsBoldTitle == theIsBoldTitle)
1064     return;
1065
1066   myIsBoldTitle = theIsBoldTitle;
1067   myParamsTime.Modified();
1068 }
1069
1070 //----------------------------------------------------------------------------
1071 bool VISU::PointMap3d_i::IsItalicTitle() 
1072
1073   return myIsItalicTitle;
1074 }
1075
1076 //----------------------------------------------------------------------------
1077 void VISU::PointMap3d_i::SetItalicTitle(bool theIsItalicTitle)
1078
1079   if(myIsItalicTitle == theIsItalicTitle)
1080     return;
1081
1082   myIsItalicTitle = theIsItalicTitle;
1083   myParamsTime.Modified();
1084 }
1085
1086 //----------------------------------------------------------------------------
1087 bool VISU::PointMap3d_i::IsShadowTitle() 
1088
1089   return myIsShadowTitle;
1090 }
1091
1092 //----------------------------------------------------------------------------
1093 void VISU::PointMap3d_i::SetShadowTitle(bool theIsShadowTitle)
1094
1095   if(myIsShadowTitle == theIsShadowTitle)
1096     return;
1097
1098   myIsShadowTitle = theIsShadowTitle;
1099   myParamsTime.Modified();
1100 }
1101
1102 //----------------------------------------------------------------------------
1103 int VISU::PointMap3d_i::GetTitFontType()
1104 {
1105   return myTitFontType;
1106 }
1107
1108 //----------------------------------------------------------------------------
1109 void VISU::PointMap3d_i::SetTitFontType(int theTitFontType)
1110 {
1111   if(myTitFontType == theTitFontType)
1112     return;
1113
1114   myTitFontType = theTitFontType;
1115   myParamsTime.Modified();
1116 }
1117
1118 //----------------------------------------------------------------------------
1119 void VISU::PointMap3d_i::GetTitleColor(double& theR, 
1120                                          double& theG, 
1121                                          double& theB)
1122 {
1123   theR = myTitleColor[0]; 
1124   theG = myTitleColor[1]; 
1125   theB = myTitleColor[2];
1126 }
1127
1128 //----------------------------------------------------------------------------
1129 void VISU::PointMap3d_i::SetTitleColor(double theR, 
1130                                          double theG, 
1131                                          double theB)
1132 {
1133   bool anIsSameValue = VISU::CheckIsSameValue(myTitleColor[0], theR);
1134   anIsSameValue &= VISU::CheckIsSameValue(myTitleColor[1], theG);
1135   anIsSameValue &= VISU::CheckIsSameValue(myTitleColor[2], theB);
1136   if(anIsSameValue)
1137     return;
1138
1139   myTitleColor[0] = theR; 
1140   myTitleColor[1] = theG; 
1141   myTitleColor[2] = theB; 
1142   myParamsTime.Modified();
1143 }
1144
1145 //----------------------------------------------------------------------------
1146 bool VISU::PointMap3d_i::IsBoldLabel()
1147 {
1148   return myIsBoldLabel;
1149 }
1150
1151 //----------------------------------------------------------------------------
1152 void VISU::PointMap3d_i::SetBoldLabel(bool theIsBoldLabel) 
1153 {
1154   if(myIsBoldLabel == theIsBoldLabel)
1155     return;
1156
1157   myIsBoldLabel = theIsBoldLabel;
1158   myParamsTime.Modified();
1159 }
1160
1161 //----------------------------------------------------------------------------
1162 bool VISU::PointMap3d_i::IsItalicLabel() 
1163 {
1164   return myIsItalicLabel;
1165 }
1166
1167 //----------------------------------------------------------------------------
1168 void VISU::PointMap3d_i::SetItalicLabel(bool theIsItalicLabel)
1169 {
1170   if(myIsItalicLabel == theIsItalicLabel)
1171     return;
1172
1173   myIsItalicLabel = theIsItalicLabel;
1174   myParamsTime.Modified();
1175 }
1176
1177 //----------------------------------------------------------------------------
1178 bool VISU::PointMap3d_i::IsShadowLabel() 
1179 {
1180   return myIsShadowLabel;
1181 }
1182
1183 //----------------------------------------------------------------------------
1184 void VISU::PointMap3d_i::SetShadowLabel(bool theIsShadowLabel)
1185 {
1186   if(myIsShadowLabel == theIsShadowLabel)
1187     return;
1188
1189   myIsShadowLabel = theIsShadowLabel;
1190   myParamsTime.Modified();
1191 }
1192
1193 //----------------------------------------------------------------------------
1194 int VISU::PointMap3d_i::GetLblFontType()
1195 {
1196   return myLblFontType;
1197 }
1198
1199 //----------------------------------------------------------------------------
1200 void VISU::PointMap3d_i::SetLblFontType(int theLblFontType)
1201 {
1202   if(myLblFontType == theLblFontType)
1203     return;
1204
1205   myLblFontType = theLblFontType;
1206   myParamsTime.Modified();
1207 }
1208
1209 //----------------------------------------------------------------------------
1210 void VISU::PointMap3d_i::GetLabelColor(double& theR, 
1211                                   double& theG, 
1212                                   double& theB)
1213 {
1214   theR = myLabelColor[0]; 
1215   theG = myLabelColor[1]; 
1216   theB = myLabelColor[2];
1217 }
1218
1219 //----------------------------------------------------------------------------
1220 void VISU::PointMap3d_i::SetLabelColor(double theR, 
1221                                   double theG, 
1222                                   double theB)
1223 {
1224   bool anIsSameValue = VISU::CheckIsSameValue(myLabelColor[0], theR);
1225   anIsSameValue &= VISU::CheckIsSameValue(myLabelColor[1], theG);
1226   anIsSameValue &= VISU::CheckIsSameValue(myLabelColor[2], theB);
1227   if(anIsSameValue)
1228     return;
1229
1230   myLabelColor[0] = theR; 
1231   myLabelColor[1] = theG; 
1232   myLabelColor[2] = theB; 
1233   myParamsTime.Modified();
1234 }
1235
1236 //----------------------------------------------------------------------------
1237 CORBA::Long VISU::PointMap3d_i::GetTitleSize() 
1238 {
1239   return myTitleSize;
1240 }
1241
1242 //----------------------------------------------------------------------------
1243 CORBA::Long VISU::PointMap3d_i::GetLabelSize() 
1244 {
1245   return myLabelSize;
1246 }
1247
1248 //----------------------------------------------------------------------------
1249 CORBA::Long VISU::PointMap3d_i::GetBarWidth() 
1250 {
1251   return myBarWidth;
1252 }
1253
1254 //----------------------------------------------------------------------------
1255 CORBA::Long VISU::PointMap3d_i::GetBarHeight() 
1256
1257   return myBarHeight;
1258 }
1259
1260 //----------------------------------------------------------------------------
1261 void
1262 VISU::PointMap3d_i::SetLabelsFormat(const char* theFormat)
1263 {
1264   if( myLabelsFormat != theFormat ){
1265     myLabelsFormat = theFormat;
1266     myParamsTime.Modified();
1267   }
1268 }
1269
1270 //----------------------------------------------------------------------------
1271 char* VISU::PointMap3d_i::GetLabelsFormat() 
1272
1273   return CORBA::string_dup(myLabelsFormat.c_str());
1274 }
1275
1276 //----------------------------------------------------------------------------
1277 void VISU::PointMap3d_i::SetUnitsVisible(CORBA::Boolean isVisible)
1278 {
1279   if( myIsUnits != isVisible ){
1280     myIsUnits = isVisible;
1281     myParamsTime.Modified();
1282   }
1283 }
1284
1285 //----------------------------------------------------------------------------
1286 CORBA::Boolean VISU::PointMap3d_i::IsUnitsVisible()
1287 {
1288   return myIsUnits;
1289 }
1290
1291 //----------------------------------------------------------------------------
1292 void VISU::PointMap3d_i::SetRatios(CORBA::Long theTitleSize, 
1293                               CORBA::Long theLabelSize, 
1294                               CORBA::Long theBarWidth, CORBA::Long theBarHeight) 
1295 {
1296   bool anIsSameValue = VISU::CheckIsSameValue(myTitleSize, theTitleSize);
1297   anIsSameValue &= VISU::CheckIsSameValue(myLabelSize, theLabelSize);
1298   anIsSameValue &= VISU::CheckIsSameValue(myBarWidth, theBarWidth);
1299   anIsSameValue &= VISU::CheckIsSameValue(myBarHeight, theBarHeight);
1300   if(anIsSameValue)
1301     return;
1302
1303   myTitleSize = theTitleSize; 
1304   myLabelSize = theLabelSize; 
1305   myBarWidth = theBarWidth; 
1306   myBarHeight = theBarHeight;
1307   myParamsTime.Modified();
1308 }