Salome HOME
Merge branch 'master' into V7_5_BR
[modules/geom.git] / src / GEOMGUI / GEOM_Displayer.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 GEOMGUI : GUI for Geometry component
24 // File   : GEOM_Displayer.cxx
25 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
26
27 #include "GEOM_Displayer.h"
28 #include "GEOMGUI_DimensionProperty.h"
29 #include "GeometryGUI.h"
30
31 #include <GEOM_Constants.h>
32 #include <GEOM_TypeFilter.h>
33 #include <GEOM_EdgeFilter.h>
34 #include <GEOM_FaceFilter.h>
35 #include <GEOM_CompoundFilter.h>
36 #include <GEOM_PreviewFilter.h>
37 #include <GEOM_LogicalFilter.h>
38 #include <GEOM_OCCFilter.h>
39
40 #include <GEOM_Actor.h>
41 #include <GEOM_AISShape.hxx>
42 #include <GEOM_AISDimension.hxx>
43 #include <GEOM_TopWireframeShape.hxx>
44 #include <GEOM_AISVector.hxx>
45 #include <GEOM_AISTrihedron.hxx>
46 #include <GEOM_VTKTrihedron.hxx>
47 #include <GEOM_VTKPropertyMaterial.hxx>
48
49 #include <GEOMUtils.hxx>
50
51 #include <Material_Model.h>
52
53 #include <SUIT_Desktop.h>
54 #include <SUIT_ViewWindow.h>
55 #include <SUIT_Session.h>
56 #include <SUIT_ViewManager.h>
57 #include <SUIT_ResourceMgr.h>
58
59 #include <Basics_OCCTVersion.hxx>
60
61 #include <SalomeApp_Study.h>
62 #include <SalomeApp_Application.h>
63 #include <LightApp_SelectionMgr.h>
64 #include <LightApp_DataObject.h>
65 #include <SalomeApp_TypeFilter.h>
66 #include <SalomeApp_Tools.h>
67
68 #include <SALOME_ListIO.hxx>
69 #include <SALOME_Prs.h>
70
71 #include <SOCC_Prs.h>
72 #include <SOCC_ViewModel.h>
73
74 #include <SVTK_Prs.h>
75 #include <SVTK_ViewModel.h>
76
77 #include <OCCViewer_ViewWindow.h>
78 #include <OCCViewer_ViewPort3d.h>
79 #include <OCCViewer_Utilities.h>
80
81 // OCCT Includes
82 #include <AIS_Drawer.hxx>
83 #include <AIS_Dimension.hxx>
84 #include <AIS_LengthDimension.hxx>
85 #include <AIS_DiameterDimension.hxx>
86 #include <AIS_AngleDimension.hxx>
87 #include <AIS_ListIteratorOfListOfInteractive.hxx>
88 #include <Aspect_PolygonOffsetMode.hxx>
89 #include <Aspect_ColorScale.hxx>
90 #include <Prs3d_IsoAspect.hxx>
91 #include <Prs3d_PointAspect.hxx>
92 #include <StdSelect_TypeOfEdge.hxx>
93 #include <StdSelect_TypeOfFace.hxx>
94 #include <StdSelect_DisplayMode.hxx>
95 #include <TopoDS_Face.hxx>
96 #include <BRep_Tool.hxx>
97 #include <Geom_Plane.hxx>
98 #include <Geom_Axis2Placement.hxx>
99 #include <Graphic3d_AspectFillArea3d.hxx>
100 #include <gp_Pln.hxx>
101 #include <TColStd_MapOfInteger.hxx>
102 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
103 #include <TopoDS_Iterator.hxx>
104 #include <Graphic3d_AspectMarker3d.hxx>
105 #include <TopTools_MapOfShape.hxx>
106 #include <TopTools_ListOfShape.hxx>
107 #include <TopTools_ListIteratorOfListOfShape.hxx>
108 #include <TopoDS.hxx>
109 #include <NCollection_DataMap.hxx>
110 #include <NCollection_Map.hxx>
111
112 #include <Prs3d_ShadingAspect.hxx>
113
114 #include <BRepMesh_IncrementalMesh.hxx>
115
116 // VTK Includes
117 #include <vtkActorCollection.h>
118 #include <vtkProperty.h>
119
120 // CORBA Headers
121 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
122
123 #include <GEOMImpl_Types.hxx>
124
125 #include <TColStd_HArray1OfByte.hxx>
126
127 // If the next macro is defined, autocolor feature works for all sub-shapes;
128 // if it is undefined, autocolor feature works for groups only
129 #define GENERAL_AUTOCOLOR
130 // Below macro, when uncommented, switches on simplified (more performant) algorithm
131 // of auto-color picking up
132 #define SIMPLE_AUTOCOLOR
133
134 // Hard-coded value of shape deflection coefficient for VTK viewer
135 const double VTK_MIN_DEFLECTION = 0.001;
136 // If the next macro is defined, the deflection coefficient for VTK presentation
137 // is limited by VTK_MIN_DEFLECTION
138 //#define LIMIT_DEFLECTION_FOR_VTK
139
140 // Pixmap caching support
141 namespace
142 {
143   typedef NCollection_Map<Handle(GEOM_AISShape)>                    SetOfAISShapes;
144   typedef NCollection_DataMap<Handle(Image_PixMap), SetOfAISShapes> PixmapUsageMap;
145   typedef QMap<QString, Handle(Image_PixMap)>                       PixmapCacheMap;
146
147   static inline PixmapUsageMap& getPixmapUsageMap()
148   {
149     static PixmapUsageMap aMap;
150     return aMap;
151   }
152
153   static inline PixmapCacheMap& getPixmapCacheMap()
154   {
155     static PixmapCacheMap aMap;
156     return aMap;
157   }
158
159   //===========================================================================
160   // Function : getDefaultTexture
161   // Purpose  : Get default texture
162   //===========================================================================
163   static inline Handle(Image_PixMap) getDefaultTexture()
164   {
165     static Handle(Image_PixMap) aPixmap;
166     if ( aPixmap.IsNull() ) {
167       QPixmap px(":images/default_texture.png");
168       if ( !px.isNull() )
169         aPixmap = OCCViewer_Utilities::imageToPixmap( px.toImage() );
170     }
171     return aPixmap;
172   }
173
174   //===========================================================================
175   // Function : cacheTextureFor
176   // Purpose  : Load and cache image for the specified presentation.
177   //===========================================================================
178   static inline Handle(Image_PixMap) cacheTextureFor( const QString& thePath,
179                                                       const Handle(GEOM_AISShape)& theShape )
180   {
181     if ( thePath.isEmpty() )
182       return NULL;
183
184     PixmapUsageMap& aPixmapUsersMap = getPixmapUsageMap();
185     PixmapCacheMap& aPixmapCacheMap = getPixmapCacheMap();
186
187     Handle(Image_PixMap) aPixmap = aPixmapCacheMap.value( thePath, NULL );
188     if ( !aPixmap.IsNull() ) {
189       // point that the texture is used by the presentation
190       if ( !aPixmapUsersMap.IsBound( aPixmap ) )
191         aPixmapUsersMap.Bind( aPixmap, SetOfAISShapes() );
192
193       aPixmapUsersMap.ChangeFind( aPixmap ).Add( theShape );
194
195       return aPixmap;
196     }
197
198     // convert texture to compatible image format
199     QImage anImage = QImage( thePath ).convertToFormat( QImage::Format_ARGB32 );
200     if ( anImage.isNull() )
201       return NULL;
202
203     aPixmap = OCCViewer_Utilities::imageToPixmap( anImage );
204
205     aPixmapCacheMap.insert( thePath, aPixmap );
206
207     if ( !aPixmapUsersMap.IsBound( aPixmap ) )
208       aPixmapUsersMap.Bind( aPixmap, SetOfAISShapes() );
209
210     aPixmapUsersMap.ChangeFind( aPixmap ).Add( theShape );
211
212     return aPixmap;
213   }
214
215   //===========================================================================
216   // Function : releaseTextures
217   // Purpose  : Releases cached textures found for the specified presentation.
218   //===========================================================================
219   static inline void releaseTextures( const SALOME_OCCPrs* thePrs )
220   {
221     const SOCC_Prs* anOccPrs = dynamic_cast<const SOCC_Prs*>( thePrs );
222
223     AIS_ListOfInteractive aListOfIO;
224
225     anOccPrs->GetObjects( aListOfIO );
226
227     AIS_ListIteratorOfListOfInteractive aIterateIO( aListOfIO );
228
229     PixmapUsageMap& aPixmapUsersMap = getPixmapUsageMap();
230     PixmapCacheMap& aPixmapCacheMap = getPixmapCacheMap();
231
232     for ( ; aIterateIO.More(); aIterateIO.Next() )
233     {
234       Handle(GEOM_AISShape) aAISShape =
235         Handle(GEOM_AISShape)::DownCast( aIterateIO.Value() );
236
237       if ( aAISShape.IsNull() )
238         continue;
239
240 #ifdef USE_TEXTURED_SHAPE
241       const Handle(Image_PixMap)& aPixmap = aAISShape->TexturePixMap();
242       if ( aPixmap.IsNull() )
243         continue;
244
245       if ( !aPixmapUsersMap.IsBound( aPixmap ) )
246         continue;
247
248       SetOfAISShapes& aUsersShapes = aPixmapUsersMap.ChangeFind( aPixmap );
249
250       aUsersShapes.Remove( aAISShape );
251
252       if ( aUsersShapes.IsEmpty() ) {
253         aPixmapUsersMap.UnBind( aPixmap );
254         aPixmapCacheMap.remove( aPixmapCacheMap.key( aPixmap ) );
255       }
256 #endif
257     }
258   }
259
260   uint randomize( uint size )
261   {
262     static bool initialized = false;
263     if ( !initialized ) {
264       qsrand( QDateTime::currentDateTime().toTime_t() );
265       initialized = true;
266     }
267     uint v = qrand();
268     v = uint( (double)( v ) / RAND_MAX * size );
269     v = qMax( uint(0), qMin ( v, size-1 ) );
270     return v;
271   }
272 } // namespace
273
274 //================================================================
275 // Function : getActiveStudy
276 // Purpose  : Get active study, returns 0 if no open study frame
277 //================================================================
278 static inline SalomeApp_Study* getActiveStudy()
279 {
280   SUIT_Session* session = SUIT_Session::session();
281   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
282   if ( app )
283     return ( SalomeApp_Study* )app->activeStudy();
284   return 0;
285 }
286
287 static inline int getViewManagerId( SALOME_View* theViewFrame) {
288   SUIT_ViewModel* aModel = dynamic_cast<SUIT_ViewModel*>(theViewFrame);
289   SUIT_ViewManager* aViewMgr = 0;
290   if (aModel != 0)
291     aViewMgr = aModel->getViewManager();
292   return ((aViewMgr == 0) ? -1 :aViewMgr->getGlobalId());
293 }
294
295 //================================================================
296 // Function : getTopAbsMode
297 // Purpose  : Get TopAbs_ShapeEnum value corresponding to the
298 //            one from GEOMImpl_Types.h
299 //================================================================
300 static inline int getTopAbsMode( const int implType )
301 {
302   switch ( implType )
303   {
304     case GEOM_COMPOUND  : return TopAbs_COMPOUND;
305     case GEOM_SOLID     : return TopAbs_SOLID;
306     case GEOM_SHELL     : return TopAbs_SHELL;
307     case GEOM_FACE      : return TopAbs_FACE;
308     case GEOM_WIRE      : return TopAbs_WIRE;
309     case GEOM_EDGE      : return TopAbs_EDGE;
310     case GEOM_POINT     : return TopAbs_VERTEX;
311     default             : return -1;
312   }
313 }
314
315 int GEOM_Displayer::getMinMaxShapeType( const TopoDS_Shape& shape, bool ismin )
316 {
317   if ( shape.IsNull() )
318     return TopAbs_SHAPE;
319
320   int ret = shape.ShapeType();
321
322   if ( shape.ShapeType() == TopAbs_COMPOUND || shape.ShapeType() == TopAbs_COMPSOLID ) {
323     TopoDS_Iterator it(shape, Standard_True, Standard_False);
324     for (; it.More(); it.Next()) {
325       TopoDS_Shape sub_shape = it.Value();
326       if ( sub_shape.IsNull() ) continue;
327       int stype = getMinMaxShapeType( sub_shape, ismin );
328       if ( stype == TopAbs_SHAPE ) continue;
329       if ( ismin && stype > ret )
330         ret = stype;
331       else if ( !ismin && ( ret < TopAbs_SOLID || stype < ret ) )
332         ret = stype;
333     }
334   }
335
336   return ret;
337 }
338
339 bool GEOM_Displayer::isCompoundOfVertices( const TopoDS_Shape& theShape )
340 {
341   return theShape.ShapeType() == TopAbs_COMPOUND && getMinMaxShapeType( theShape, false ) == TopAbs_VERTEX;
342 }
343
344 //================================================================
345 // Function : getFilter
346 // Purpose  : Get filter corresponding to the type of object
347 //            from GEOMImpl_Types.h
348 //================================================================
349 SUIT_SelectionFilter* GEOM_Displayer::getFilter( const int theMode )
350 {
351   SUIT_SelectionFilter* aFilter;
352
353   int aTopAbsMode = getTopAbsMode( theMode );
354   if ( aTopAbsMode != -1 )
355     aFilter = new GEOM_TypeFilter( getStudy(), aTopAbsMode, true ); //@ aFilter = new GEOM_TypeFilter( ( TopAbs_ShapeEnum )aTopAbsMode );
356   else
357     switch ( theMode )
358       {
359       case GEOM_LINE      : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Line ); break;
360       case GEOM_CIRCLE    : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Circle ); break;
361
362       case GEOM_PLANE     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Plane ); break;
363       case GEOM_CYLINDER  : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cylinder ); break;
364       case GEOM_SPHERE    : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Sphere ); break;
365       case GEOM_TORUS     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Torus ); break;
366       case GEOM_REVOLUTION: aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Revol ); break;
367       case GEOM_CONE      : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cone ); break;
368
369       case GEOM_PREVIEW   : aFilter = new GEOM_PreviewFilter( getStudy() ); break;
370
371       case GEOM_ALLSHAPES : aFilter = new GEOM_SelectionFilter(getStudy(), true ); break;
372       case GEOM_ALLGEOM   : aFilter = new SalomeApp_TypeFilter( getStudy(), "GEOM" ); break;
373
374       default             : aFilter = new GEOM_TypeFilter( getStudy(), theMode ); break;
375       }
376
377   return aFilter;
378 }
379
380 //================================================================
381 // Function : getComplexFilter
382 // Purpose  : Get compound filter corresponding to the type of
383 //            object from GEOMImpl_Types.h
384 //================================================================
385 SUIT_SelectionFilter* GEOM_Displayer::getComplexFilter( const QList<int>* aSubShapes)
386 {
387   GEOM_CompoundFilter* aFilter;
388
389   if(aSubShapes != NULL ) {
390     aFilter = new GEOM_CompoundFilter(getStudy());
391     QList<int> aTopAbsTypes;
392     QList<int>::const_iterator it;
393     for(it = aSubShapes->constBegin(); it != aSubShapes->constEnd(); ++it ) {
394       int topAbsMode = getTopAbsMode(*it);
395       if(topAbsMode != -1 )
396         aTopAbsTypes.append(topAbsMode);
397     }
398     aFilter->addSubTypes(aTopAbsTypes);
399   }
400
401   return aFilter;
402 }
403
404 //================================================================
405 // Function : getEntry
406 // Purpose  :
407 //================================================================
408 static std::string getEntry( GEOM::GEOM_BaseObject_ptr object )
409 {
410   SUIT_Session* session = SUIT_Session::session();
411   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
412   if ( app )
413   {
414     CORBA::String_var IOR = app->orb()->object_to_string( object );
415     if ( strcmp(IOR.in(), "") != 0 )
416     {
417       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
418       _PTR(SObject) SO ( study->studyDS()->FindObjectIOR( std::string(IOR) ) );
419       if ( SO )
420         return SO->GetID();
421     }
422   }
423   return "";
424 }
425
426 //================================================================
427 // Function : getName
428 // Purpose  :
429 //================================================================
430 static std::string getName( GEOM::GEOM_BaseObject_ptr object )
431 {
432   SUIT_Session* session = SUIT_Session::session();
433   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
434   if ( app )
435   {
436     CORBA::String_var IOR = app->orb()->object_to_string( object );
437     if ( strcmp(IOR.in(), "") != 0 )
438     {
439       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
440       _PTR(SObject) aSObj ( study->studyDS()->FindObjectIOR( std::string(IOR) ) );
441
442       _PTR(GenericAttribute) anAttr;
443
444       if ( aSObj && aSObj->FindAttribute( anAttr, "AttributeName") )
445       {
446         _PTR(AttributeName) aNameAttr( anAttr );
447         return aNameAttr->Value();
448       }
449     }
450   }
451
452   return "";
453 }
454
455 //=================================================================
456 /*!
457  *  GEOM_Displayer::GEOM_Displayer
458  *  Constructor
459  */
460 //=================================================================
461 GEOM_Displayer::GEOM_Displayer( SalomeApp_Study* st )
462 {
463   if( st )
464     myApp = dynamic_cast<SalomeApp_Application*>( st->application() );
465   else
466     myApp = 0;
467
468   /* Shading Color */
469   SUIT_Session* session = SUIT_Session::session();
470   SUIT_ResourceMgr* resMgr = session->resourceMgr();
471
472   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
473   myShadingColor = SalomeApp_Tools::color( col );
474
475   myDisplayMode = resMgr->integerValue("Geometry", "display_mode", 0);
476   myHasDisplayMode = false;
477
478   int aType = resMgr->integerValue("Geometry", "type_of_marker", (int)Aspect_TOM_PLUS);
479   
480   myTypeOfMarker = (Aspect_TypeOfMarker)(std::min((int)Aspect_TOM_RING3, std::max((int)Aspect_TOM_POINT, aType)));
481   myScaleOfMarker = (resMgr->integerValue("Geometry", "marker_scale", 1)-(int)GEOM::MS_10)*0.5 + 1.0;
482   myScaleOfMarker = std::min(7.0, std::max(1., myScaleOfMarker));
483
484   // Next properties provide a way to customize displaying of presentations;
485   // for instance, this is useful for preview
486   myColor = -1;
487   myTexture = "";
488   myNbIsos = -1;
489   myWidth = -1;
490   myTransparency = -1;
491   myType = -1;
492   myIsosColor = -1;
493   myIsosWidth = -1;
494
495   // This parameter is used for activisation/deactivisation (selection) of objects to be displayed
496   myToActivate = true;
497
498   // Activate parallel vizualisation only for testing purpose
499   // and if the corresponding env variable is set to 1
500   char* parallel_visu = getenv("PARALLEL_VISU");
501   if (parallel_visu && atoi(parallel_visu))
502   {
503     MESSAGE("Parallel visualisation on");
504     BRepMesh_IncrementalMesh::SetParallelDefault(Standard_True);
505   }
506
507   myViewFrame = 0;
508
509   myFieldDataType = GEOM::FDT_Double;
510   myFieldDimension = 0;
511   myFieldStepRangeMin = 0;
512   myFieldStepRangeMax = 0;
513 }
514
515 //=================================================================
516 /*!
517  *  GEOM_Displayer::~GEOM_Displayer
518  *  Destructor
519  */
520 //=================================================================
521 GEOM_Displayer::~GEOM_Displayer()
522 {
523 }
524
525 //=================================================================
526 /*!
527  *  GEOM_Displayer::Display
528  *  Display interactive object in the current viewer
529  */
530 //=================================================================
531 void GEOM_Displayer::Display( const Handle(SALOME_InteractiveObject)& theIO,
532                              const bool updateViewer,
533                              SALOME_View* theViewFrame )
534 {
535   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
536   if ( vf )
537   {
538     SALOME_Prs* prs = buildPresentation( theIO->getEntry(), vf );
539
540     if ( prs )
541     {
542       vf->BeforeDisplay( this, prs );
543       vf->Display( this, prs );
544       vf->AfterDisplay( this, prs );
545
546       if ( updateViewer )
547         vf->Repaint();
548
549       delete prs;  // delete presentation because displayer is its owner
550     }
551   }
552 }
553
554 //=================================================================
555 /*!
556  *  GEOM_Displayer::Display
557  *  This overloaded Display() method can be useful for operations
558  *  not using dialog boxes.
559  */
560 //=================================================================
561 void GEOM_Displayer::Display( GEOM::GEOM_BaseObject_ptr theObj, const bool updateViewer )
562 {
563   if ( theObj->_is_nil() )
564     return;
565
566   std::string entry = getEntry( theObj );
567   if ( entry != "" ) {
568     Display(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
569             updateViewer);
570   }
571 }
572
573 //=================================================================
574 /*!
575  *  GEOM_Displayer::Erase
576  *  Erase interactive object in the current viewer
577  */
578 //=================================================================
579 void GEOM_Displayer::Erase( const Handle(SALOME_InteractiveObject)& theIO,
580                             const bool forced,
581                             const bool updateViewer,
582                             SALOME_View* theViewFrame )
583 {
584   if ( theIO.IsNull() )
585     return;
586
587   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
588
589   if ( vf ) {
590     SALOME_Prs* prs = vf->CreatePrs( theIO->getEntry() );
591     if ( prs ) {
592       vf->BeforeErase( this, prs );
593       vf->Erase( this, prs, forced );
594       vf->AfterErase( this, prs );
595       if ( updateViewer )
596         vf->Repaint();
597       delete prs;  // delete presentation because displayer is its owner
598     }
599   }
600 }
601
602 //=================================================================
603 /*!
604  *  GEOM_Displayer::Erase
605  *  Erase geometry object in the current viewer
606  */
607 //=================================================================
608 void GEOM_Displayer::Erase( GEOM::GEOM_BaseObject_ptr theObj,
609                             const bool forced,
610                             const bool updateViewer,
611                             SALOME_View* theViewFrame)
612 {
613   std::string entry = getEntry( theObj );
614   if ( entry != "" )
615   {
616     Erase(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
617           forced, updateViewer, theViewFrame);
618   }
619 }
620
621 //=================================================================
622 /*!
623  *  GEOM_Displayer::Redisplay
624  *  Redisplay (erase and then display again) interactive object
625  *  in the current viewer
626  */
627 //=================================================================
628 void GEOM_Displayer::Redisplay( const Handle(SALOME_InteractiveObject)& theIO,
629                                 const bool updateViewer,
630                                 const bool checkActiveViewer )
631 {
632   // Remove the object permanently (<forced> == true)
633   SUIT_Session* ses = SUIT_Session::session();
634   SUIT_Application* app = ses->activeApplication();
635   if ( app )
636   {
637     SUIT_Desktop* desk = app->desktop();
638     QList<SUIT_ViewWindow*> wnds = desk->windows();
639     SUIT_ViewWindow* wnd;
640     QListIterator<SUIT_ViewWindow*> it( wnds );
641     while ( it.hasNext() && (wnd = it.next()) )
642     {
643       SUIT_ViewManager* vman = wnd->getViewManager();
644       if ( vman )
645       {
646         SUIT_ViewModel* vmodel = vman->getViewModel();
647         if ( vmodel )
648         {
649           SALOME_View* view = dynamic_cast<SALOME_View*>(vmodel);
650           if ( view )
651           {
652             if ( view->isVisible( theIO ) || ( checkActiveViewer && view == GetActiveView() ) )
653             {
654               Redisplay( theIO, updateViewer, view );
655             }
656           }
657         }
658       }
659     }
660   }
661 }
662
663 //=================================================================
664 /*!
665  *  GEOM_Displayer::Redisplay
666  *  Redisplay (erase and then display again) interactive object
667  *  in the specified view
668  */
669 //=================================================================
670 void GEOM_Displayer::Redisplay( const Handle(SALOME_InteractiveObject)& theIO,
671                                 const bool theUpdateViewer,
672                                 SALOME_View* theViewFrame )
673 {
674   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
675   if ( !vf )
676   {
677     return;
678   }
679
680   Erase( theIO, true, false, theViewFrame );
681   Display( theIO, theUpdateViewer, theViewFrame );
682 }
683
684 //=================================================================
685 /*!
686  *  GEOM_Displayer::Display
687  *  Calls Display() method for each object in the given list
688  */
689 //=================================================================
690 void GEOM_Displayer::Display( const SALOME_ListIO& theIOList, const bool updateViewer )
691 {
692   SALOME_ListIteratorOfListIO Iter( theIOList );
693   for ( ; Iter.More(); Iter.Next() ) {
694     Display( Iter.Value(), false );
695   }
696   if ( updateViewer )
697     UpdateViewer();
698 }
699
700 void GEOM_Displayer::UpdateVisibility( SALOME_View* v, const SALOME_Prs* p, bool on )
701 {
702   SalomeApp_Study* aStudy = getStudy();
703   int vId = -1;
704   if ( v ) vId = getViewManagerId( v );
705
706   if ( p ) {
707     QString entry = p->GetEntry();
708     if ( !entry.isEmpty() ) {
709       if ( vId != -1 )
710         aStudy->setObjectProperty( vId, entry, GEOM::propertyName( GEOM::Visibility ), on );
711       setVisibilityState( entry, on ? Qtx::ShownState : Qtx::HiddenState );
712     }
713   }
714   else {
715     if ( vId != -1 ) {
716       aStudy->setObjectProperty( vId, GEOM::propertyName( GEOM::Visibility ), on );
717     }
718   }
719 }
720
721 Quantity_Color GEOM_Displayer::qColorFromResources( const QString& property, const QColor& defColor )
722 {
723   // VSR: this method can be improved in future:
724   // to improve performance, the default values from resource manager should be cached in the displayer
725   return SalomeApp_Tools::color( SUIT_Session::session()->resourceMgr()->colorValue( "Geometry", property, defColor ) );
726 }
727
728 QColor GEOM_Displayer::colorFromResources( const QString& property, const QColor& defColor )
729 {
730   // VSR: this method can be improved in future:
731   // to improve performance, the default values from resource manager should be cached in the displayer
732   return SUIT_Session::session()->resourceMgr()->colorValue( "Geometry", property, defColor );
733 }
734
735 void GEOM_Displayer::updateShapeProperties( const Handle(GEOM_AISShape)& AISShape, bool create )
736 {
737   // check that shape is not null
738   if ( AISShape.IsNull() ) return;
739   
740   // check that study is active
741   SalomeApp_Study* study = getStudy();
742   if ( !study ) return;
743
744   if ( myShape.ShapeType() != TopAbs_VERTEX && // fix pb with not displayed points
745        !TopoDS_Iterator(myShape).More() )
746     return; // NPAL15983 (Bug when displaying empty groups)
747
748   // set interactive object
749
750   Handle( SALOME_InteractiveObject ) anIO;
751
752   if ( !myIO.IsNull() ) {
753     AISShape->setIO( myIO );
754     AISShape->SetOwner( myIO );
755     anIO = myIO;
756   }
757   else if ( !myName.empty() ) {
758     // workaround to allow selection of temporary objects
759     static int tempId = 0;
760     anIO = new SALOME_InteractiveObject( QString( "TEMP_%1" ).arg( tempId++ ).toLatin1().data(), "GEOM", myName.c_str() );
761     AISShape->setIO( anIO );
762     AISShape->SetOwner( anIO );
763   }
764
765   // flag:  only vertex or compound of vertices is processed (specific handling)
766   bool onlyVertex = myShape.ShapeType() == TopAbs_VERTEX || isCompoundOfVertices( myShape );
767   // presentation study entry (empty for temporary objects like preview)
768   QString entry = !anIO.IsNull() ? QString( anIO->getEntry() ) : QString();
769   // flag: temporary object
770   bool isTemporary = entry.isEmpty() || entry.startsWith( "TEMP_" );
771   // currently active view window's ID (-1 if no active view)
772   int aMgrId = !anIO.IsNull() ? getViewManagerId( myViewFrame ) : -1;
773
774   // get presentation properties
775   PropMap propMap = getObjectProperties( study, entry, myViewFrame );
776
777   // Temporary staff: vertex must be infinite for correct visualization
778   AISShape->SetInfiniteState( myShape.Infinite() ); // || myShape.ShapeType() == TopAbs_VERTEX // VSR: 05/04/2010: Fix 20668 (Fit All for points & lines)
779
780   // set material
781   Material_Model material;
782   // if predefined color isn't set in displayer(via GEOM_Displayer::SetColor() function)
783   if( !HasColor() )
784     material.fromProperties( propMap.value( GEOM::propertyName( GEOM::Material ) ).toString() );
785   // - set front material properties
786   AISShape->SetCurrentFacingModel( Aspect_TOFM_FRONT_SIDE );
787   AISShape->SetMaterial( material.getMaterialOCCAspect( true ) );
788   // - set back material properties
789   AISShape->SetCurrentFacingModel( Aspect_TOFM_BACK_SIDE );
790   AISShape->SetMaterial( material.getMaterialOCCAspect( false ) );
791   // - switch to default (both sides) facing mode
792   AISShape->SetCurrentFacingModel( Aspect_TOFM_BOTH_SIDE );
793
794   // set colors
795
796   // - shading color
797   if ( HasColor()  ) {
798     // predefined color, manually set to displayer via GEOM_Displayer::SetColor() function;
799     // we set it to the shape not taking into account material properties
800     AISShape->SetShadingColor( (Quantity_NameOfColor)GetColor() );
801   }
802   else if ( !material.isPhysical() ) {
803     // shading color from properties is used only for non-physical materials
804     AISShape->SetShadingColor( SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::ShadingColor ) ).value<QColor>() ) );
805   }
806
807   // - wireframe color
808   Handle(Prs3d_LineAspect) anAspect = AISShape->Attributes()->LineAspect();
809   anAspect->SetColor( HasColor() ? (Quantity_NameOfColor)GetColor() : 
810                       SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::WireframeColor ) ).value<QColor>() ) );
811   AISShape->Attributes()->SetLineAspect( anAspect );
812   
813   // - unfree boundaries color
814   anAspect = AISShape->Attributes()->UnFreeBoundaryAspect();
815   anAspect->SetColor( HasColor() ? (Quantity_NameOfColor)GetColor() : 
816                       SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::WireframeColor ) ).value<QColor>() ) );
817   AISShape->Attributes()->SetUnFreeBoundaryAspect( anAspect );
818   
819   // - free boundaries color
820   anAspect = AISShape->Attributes()->FreeBoundaryAspect();
821   anAspect->SetColor( HasColor() ? (Quantity_NameOfColor)GetColor() : 
822                       SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::FreeBndColor ) ).value<QColor>() ) );
823   AISShape->Attributes()->SetFreeBoundaryAspect( anAspect );
824   
825   // - standalone edges color
826   anAspect = AISShape->Attributes()->WireAspect();
827   anAspect->SetColor( HasColor() ? (Quantity_NameOfColor)GetColor() : 
828                       SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::LineColor ) ).value<QColor>() ) );
829   AISShape->Attributes()->SetWireAspect( anAspect );
830   
831   // - color for edges in shading+edges mode
832   AISShape->SetEdgesInShadingColor( SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::OutlineColor ) ).value<QColor>() ) );
833
834   // set display mode
835   AISShape->SetDisplayMode( HasDisplayMode() ? 
836                             // predefined display mode, manually set to displayer via GEOM_Displayer::SetDisplayMode() function 
837                             GetDisplayMode() :
838                             // display mode from properties
839                             propMap.value( GEOM::propertyName( GEOM::DisplayMode ) ).toInt() );
840
841   // - face boundaries color
842   if( AISShape->DisplayMode() == GEOM_AISShape::ShadingWithEdges )
843     AISShape->Attributes()->SetFaceBoundaryDraw( Standard_True );
844   anAspect = AISShape->Attributes()->FaceBoundaryAspect();
845   anAspect->SetColor( SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::OutlineColor ) ).value<QColor>() ) );
846   AISShape->Attributes()->SetFaceBoundaryAspect( anAspect );
847
848   // set display vectors flag
849   AISShape->SetDisplayVectors( propMap.value( GEOM::propertyName( GEOM::EdgesDirection ) ).toBool() );
850
851   // set display vertices flag
852   bool isVerticesMode = propMap.value( GEOM::propertyName( GEOM::Vertices ) ).toBool();
853   AISShape->SetDisplayVertices( isVerticesMode );
854
855   // set transparency
856   if( HasTransparency() ) {
857     AISShape->SetTransparency( GetTransparency() );
858   } else {
859     AISShape->SetTransparency( propMap.value( GEOM::propertyName( GEOM::Transparency ) ).toDouble() );
860   }
861
862   // set iso properties
863   int uIsos = propMap.value( GEOM::propertyName( GEOM::NbIsos ) ).toString().split( GEOM::subSectionSeparator() )[0].toInt();
864   int vIsos = propMap.value( GEOM::propertyName( GEOM::NbIsos ) ).toString().split( GEOM::subSectionSeparator() )[1].toInt();
865   Quantity_Color isosColor = SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::IsosColor ) ).value<QColor>() );
866   int isosWidth = propMap.value( GEOM::propertyName( GEOM::IsosWidth ) ).toInt();
867   Handle(Prs3d_IsoAspect) uIsoAspect = AISShape->Attributes()->UIsoAspect();
868   Handle(Prs3d_IsoAspect) vIsoAspect = AISShape->Attributes()->VIsoAspect();
869
870   if ( HasIsosColor() ) {
871     uIsoAspect->SetColor( (Quantity_NameOfColor)GetIsosColor() );
872     vIsoAspect->SetColor( (Quantity_NameOfColor)GetIsosColor() );
873   }
874   else {
875     uIsoAspect->SetColor( isosColor );
876     vIsoAspect->SetColor( isosColor );
877   }
878
879   if ( HasIsosWidth() ) {
880     uIsoAspect->SetWidth( GetIsosWidth() );
881     vIsoAspect->SetWidth( GetIsosWidth() );
882   }
883   else {
884     uIsoAspect->SetWidth( isosWidth );
885     vIsoAspect->SetWidth( isosWidth );
886   }
887   
888   if ( HasNbIsos() ) {
889     uIsoAspect->SetNumber( GetNbIsos() );
890     vIsoAspect->SetNumber( GetNbIsos() );
891   }
892   else {
893     uIsoAspect->SetNumber( uIsos );
894     vIsoAspect->SetNumber( vIsos );
895   }
896
897   AISShape->Attributes()->SetUIsoAspect( uIsoAspect );
898   AISShape->Attributes()->SetVIsoAspect( vIsoAspect );
899
900   // set deflection coefficient
901   // ... to avoid to small values of the coefficient, its lower value is limited 
902   AISShape->SetOwnDeviationCoefficient( qMax( propMap.value( GEOM::propertyName( GEOM::Deflection ) ).toDouble(), GEOM::minDeflection() ) );
903
904   // set texture
905   QString aImagePath;
906   if ( HasTexture() ) {
907     // predefined display texture, manually set to displayer via GEOM_Displayer::SetTexture() function 
908     aImagePath = GetTexture().c_str();
909     if ( ! entry.isEmpty() ) {
910       // check that study is active
911       SalomeApp_Study* study = getActiveStudy();
912       if ( study ) {
913         // Store the texture in object properties for next displays
914         study->setObjectProperty( aMgrId, entry, GEOM::propertyName( GEOM::Texture ), QString( GetTexture().c_str() ) );
915         study->setObjectProperty( aMgrId, entry, GEOM::propertyName( GEOM::DisplayMode ), 3 );
916         
917         // Update propeties map
918         propMap = getObjectProperties( study, entry, myViewFrame );
919       }
920     }
921   }
922   else {
923     aImagePath = propMap.value( GEOM::propertyName( GEOM::Texture ) ).toString();
924   }
925
926 #ifdef USE_TEXTURED_SHAPE
927   Handle(Image_PixMap) aPixmap;
928   if ( !aImagePath.isEmpty() )
929     aPixmap = cacheTextureFor( aImagePath, AISShape );
930   else
931     aPixmap = getDefaultTexture();
932
933   // apply image to shape
934   if ( !aPixmap.IsNull() ) {
935     AISShape->SetTexturePixMap( aPixmap );
936     AISShape->SetTextureMapOn();
937     AISShape->DisableTextureModulate();
938   }
939   else {
940     AISShape->SetTextureMapOff();
941   }
942 #endif
943
944   // set line width
945   AISShape->SetWidth( HasWidth() ?
946                       // predefined line width, manually set to displayer via GEOM_Displayer::SetLineWidth() function 
947                       GetWidth() :
948                       // libe width from properties
949                       propMap.value( GEOM::propertyName( GEOM::LineWidth ) ).toInt() );
950
951   // set top-level flag
952   AISShape->setTopLevel( propMap.value( GEOM::propertyName( GEOM::TopLevel ) ).toBool() );
953
954   // set point marker (for vertex / compound of vertices only)
955   if ( onlyVertex || isVerticesMode ) {
956     QStringList aList = propMap.value( GEOM::propertyName( GEOM::PointMarker ) ).toString().split( GEOM::subSectionSeparator() );
957     if ( aList.size() == 2 ) {
958       // standard marker string contains "TypeOfMarker:ScaleOfMarker"
959       int aTypeOfMarker = aList[0].toInt();
960       double aScaleOfMarker = (aList[1].toInt() + 1) * 0.5;
961       Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
962       anAspect->SetScale( aScaleOfMarker );
963       anAspect->SetTypeOfMarker( (Aspect_TypeOfMarker)( aTypeOfMarker-1 ) );
964       anAspect->SetColor( HasColor() ? 
965                           // predefined color, manually set to displayer via GEOM_Displayer::SetColor() function
966                           (Quantity_NameOfColor)GetColor() : 
967                           // color from properties
968                           SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::PointColor ) ).value<QColor>() ) );
969       AISShape->Attributes()->SetPointAspect( anAspect );
970     }
971     else if ( aList.size() == 1 ) {
972       // custom marker string contains "IdOfTexture"
973       int textureId = aList[0].toInt();
974       Standard_Integer aWidth, aHeight;
975       Handle(TColStd_HArray1OfByte) aTexture =
976         GeometryGUI::getTexture( study, textureId, aWidth, aHeight );
977       if ( !aTexture.IsNull() ) {
978         Handle(Prs3d_PointAspect) aTextureAspect =
979           new Prs3d_PointAspect( HasColor() ? 
980                                  // predefined color, manually set to displayer via GEOM_Displayer::SetColor() function
981                                  (Quantity_NameOfColor)GetColor() : 
982                                  // color from properties 
983                                  SalomeApp_Tools::color( propMap.value( GEOM::propertyName( GEOM::PointColor ) ).value<QColor>() ),
984                                  aWidth, aHeight,
985                                  aTexture );
986         AISShape->Attributes()->SetPointAspect( aTextureAspect );
987       }
988     }
989   }
990
991   // set field step data
992   AISShape->setFieldStepInfo( myFieldDataType,
993                               myFieldDimension,
994                               myFieldStepData,
995                               myFieldStepName,
996                               myFieldStepRangeMin,
997                               myFieldStepRangeMax );
998
999   if ( create && !isTemporary && aMgrId != -1 ) {
1000     // set properties to the study
1001     study->setObjectProperties( aMgrId, entry, propMap );
1002   }
1003
1004   // AISShape->SetName(???); ??? necessary to set name ???
1005 }
1006
1007 void GEOM_Displayer::updateActorProperties( GEOM_Actor* actor, bool create )
1008 {
1009   // check that actor is not null
1010   if ( !actor ) return;
1011   
1012   // check that study is active
1013   SalomeApp_Study* study = getStudy();
1014   if ( !study ) return;
1015
1016   // set interactive object
1017
1018   Handle( SALOME_InteractiveObject ) anIO;
1019
1020   if ( !myIO.IsNull() ) {
1021     actor->setIO( myIO );
1022     anIO = myIO;
1023   }
1024   else if ( !myName.empty() ) {
1025     // workaround to allow selection of temporary objects
1026     static int tempId = 0;
1027     anIO = new SALOME_InteractiveObject( QString( "TEMP_VTK_%1" ).arg( tempId++ ).toLatin1().data(), "GEOM", myName.c_str() );
1028     actor->setIO( anIO );
1029   }
1030
1031   // presentation study entry (empty for temporary objects like preview)
1032   QString entry = !anIO.IsNull() ? QString( anIO->getEntry() ) : QString();
1033   // flag: temporary object
1034   bool isTemporary = entry.isEmpty() || entry.startsWith( "TEMP_" );
1035   // currently active view window's ID (-1 if no active view)
1036   int aMgrId = !anIO.IsNull() ? getViewManagerId( myViewFrame ) : -1;
1037
1038   // get presentation properties
1039   PropMap propMap = getObjectProperties( study, entry, myViewFrame );
1040   QColor c;
1041
1042   /////////////////////////////////////////////////////////////////////////
1043   // VSR: for VTK viewer currently deflection coefficient is hardcoded
1044   //      due to performance problem
1045   // actor->SetShape(myShape,aDefPropMap.value(GEOM::propertyName( GEOM::Deflection )).toDouble(),myType == GEOM_VECTOR);
1046   /////////////////////////////////////////////////////////////////////////
1047   if ( !actor->getTopo().IsSame( myShape ) )
1048 #ifdef LIMIT_DEFLECTION_FOR_VTK
1049     actor->SetShape( myShape, VTK_MIN_DEFLECTION, myType == GEOM_VECTOR );
1050 #else
1051     actor->SetShape( myShape, qMax( propMap.value( GEOM::propertyName( GEOM::Deflection ) ).toDouble(), GEOM::minDeflection() ), myType == GEOM_VECTOR );
1052 #endif
1053
1054   // set material
1055   Material_Model material;
1056   material.fromProperties( propMap.value( GEOM::propertyName( GEOM::Material ) ).toString() );
1057   std::vector<vtkProperty*> mprops;
1058   mprops.push_back( material.getMaterialVTKProperty( true ) );
1059   mprops.push_back( material.getMaterialVTKProperty( false) );
1060   actor->SetMaterial( mprops );
1061
1062   // set iso-lines properties
1063
1064   // - set number of iso-lines
1065   int nbIsos[2]= { 1, 1 };
1066   if ( HasNbIsos() ) {
1067     nbIsos[0] = GetNbIsos();
1068     nbIsos[1] = GetNbIsos();
1069   }
1070   else {
1071     QStringList isos = propMap.value( GEOM::propertyName( GEOM::NbIsos ) ).toString().split( GEOM::subSectionSeparator() );
1072     nbIsos[0] = isos[0].toInt();
1073     nbIsos[1] = isos[1].toInt();
1074   }
1075   actor->SetNbIsos( nbIsos );
1076
1077   // - set iso-lines width
1078   actor->SetIsosWidth( HasIsosWidth() ? GetIsosWidth() : propMap.value( GEOM::propertyName( GEOM::IsosWidth ) ).toInt() );
1079
1080   // - set iso-lines color
1081   if ( HasIsosColor() )
1082     c = SalomeApp_Tools::color( Quantity_Color((Quantity_NameOfColor)GetIsosColor()) );
1083   else
1084     c = propMap.value( GEOM::propertyName( GEOM::IsosColor ) ).value<QColor>();
1085   actor->SetIsosColor( c.redF(), c.greenF(), c.blueF() );
1086
1087   // set colors
1088
1089   if ( HasColor()  ) {
1090     // - same color for all sub-actors
1091     Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
1092     actor->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
1093   }
1094   else {
1095     // shading color (for non-physical materials)
1096     if ( !material.isPhysical() ) {
1097       c = propMap.value( GEOM::propertyName( GEOM::ShadingColor ) ).value<QColor>();
1098       actor->GetFrontMaterial()->SetColor( c.redF(), c.greenF(), c.blueF() );
1099       actor->GetBackMaterial()->SetColor( c.redF(), c.greenF(), c.blueF() );
1100     }
1101
1102     // - standalone edge color
1103     c = propMap.value( GEOM::propertyName( GEOM::LineColor ) ).value<QColor>();
1104     actor->SetIsolatedEdgeColor( c.redF(), c.greenF(), c.blueF() );
1105
1106     c = propMap.value( GEOM::propertyName( GEOM::WireframeColor ) ).value<QColor>();
1107     // - shared edges color ???
1108     actor->SetSharedEdgeColor( c.redF(), c.greenF(), c.blueF() );
1109
1110     c = propMap.value( GEOM::propertyName( GEOM::FreeBndColor ) ).value<QColor>();
1111     // - free edges color ???
1112     actor->SetFreeEdgeColor( c.redF(), c.greenF(), c.blueF() );
1113
1114     // - point color
1115     c = propMap.value( GEOM::propertyName( GEOM::PointColor ) ).value<QColor>();
1116     actor->SetPointColor( c.redF(), c.greenF(), c.blueF() );
1117   }
1118
1119   // - color for edges in shading+edges mode
1120   c = propMap.value( GEOM::propertyName( GEOM::OutlineColor ) ).value<QColor>();
1121   actor->SetEdgesInShadingColor( c.redF(), c.greenF(), c.blueF() );
1122
1123   // set opacity
1124   if( HasTransparency() ) {
1125     actor->SetOpacity( 1.0 - GetTransparency() );
1126   } else {
1127     actor->SetOpacity( 1.0 - propMap.value( GEOM::propertyName( GEOM::Transparency ) ).toDouble() );
1128   }
1129
1130   // set line width
1131   actor->SetWidth( HasWidth() ?
1132                    // predefined line width, manually set to displayer via GEOM_Displayer::SetLineWidth() function 
1133                    GetWidth() :
1134                    // libe width from properties
1135                    propMap.value( GEOM::propertyName( GEOM::LineWidth ) ).toInt() );
1136   
1137   // set display vectors flag
1138   actor->SetVectorMode( propMap.value( GEOM::propertyName( GEOM::EdgesDirection ) ).toBool() );
1139
1140   // set display vertices flag
1141   actor->SetVerticesMode( propMap.value( GEOM::propertyName( GEOM::Vertices ) ).toBool() );
1142
1143   // set display mode
1144   int displayMode = HasDisplayMode() ? 
1145     // predefined display mode, manually set to displayer via GEOM_Displayer::SetDisplayMode() function 
1146     GetDisplayMode() :
1147     // display mode from properties
1148     propMap.value( GEOM::propertyName( GEOM::DisplayMode ) ).toInt();
1149
1150   // specific processing of 'shading with edges' mode, as VTK provides only the following standard display modes:
1151   // Points - 0, Wireframe - 1, Surface - 2, Insideframe - 3, SurfaceWithEdges - 4
1152   // GEOM actor allows alternative display modes (see VTKViewer::Representation enum) and enum in GEOM_Actor:
1153   // eWireframe - 0, eShading - 1, eShadingWithEdges - 3
1154
1155   if ( displayMode == 2 )
1156       // this is 'Shading with edges' mode => we have to do the correct mapping to EDisplayMode
1157       // enum in GEOM_Actor (and further to VTKViewer::Representation enum)
1158     displayMode++;
1159   actor->setDisplayMode( displayMode );
1160
1161   if ( myToActivate )
1162     actor->PickableOn();
1163   else
1164     actor->PickableOff();
1165
1166   if ( create && !isTemporary && aMgrId != -1 ) {
1167     // set properties to the study
1168     study->setObjectProperties( aMgrId, entry, propMap );
1169   }
1170 }
1171
1172 //=================================================================
1173 /*!
1174  *  GEOM_Displayer::updateDimensions
1175  *  Creates or renews dimension presentation for the IO.
1176  */
1177 //=================================================================
1178 void GEOM_Displayer::updateDimensions( const Handle(SALOME_InteractiveObject)& theIO,
1179                                        SALOME_OCCPrs* thePrs,
1180                                        const gp_Ax3& theShapeLCS )
1181 {
1182   SalomeApp_Study* aStudy = getStudy();
1183   if ( !aStudy )
1184   {
1185     return;
1186   }
1187
1188   if ( theIO.IsNull() )
1189   {
1190     return;
1191   }
1192
1193   SOCC_Prs* anOccPrs = dynamic_cast<SOCC_Prs*>( thePrs );
1194
1195   AIS_ListOfInteractive aListOfIO;
1196
1197   anOccPrs->GetObjects( aListOfIO );
1198
1199   AIS_ListIteratorOfListOfInteractive aIterateIO( aListOfIO );
1200
1201   // remove outdated presentations of dimensions
1202   for ( ; aIterateIO.More(); aIterateIO.Next() )
1203   {
1204     const Handle(AIS_InteractiveObject)& anIO = aIterateIO.Value();
1205     if ( !anIO->IsKind( STANDARD_TYPE( AIS_Dimension ) ) )
1206     {
1207       continue;
1208     }
1209
1210     aListOfIO.Remove( aIterateIO );
1211
1212     if ( !aIterateIO.More() )
1213     {
1214       break;
1215     }
1216   }
1217
1218   // prepare dimension styling
1219   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
1220
1221   QColor  aQColor       = aResMgr->colorValue  ( "Geometry", "dimensions_color", QColor( 0, 255, 0 ) );
1222   int     aLineWidth    = aResMgr->integerValue( "Geometry", "dimensions_line_width", 1 );
1223   double  aFontHeight   = aResMgr->doubleValue ( "Geometry", "dimensions_font_height", 10 );
1224   double  anArrowLength = aResMgr->doubleValue ( "Geometry", "dimensions_arrow_length", 5 );
1225   bool    isUnitsShown  = aResMgr->booleanValue( "Geometry", "dimensions_show_units", false );
1226   QString aUnitsLength  = aResMgr->stringValue ( "Geometry", "dimensions_length_units", "m" );
1227   QString aUnitsAngle   = aResMgr->stringValue ( "Geometry", "dimensions_angle_units", "deg" );
1228
1229   // restore dimension presentation from saved attribute or property data
1230   AIS_ListOfInteractive aRestoredDimensions;
1231
1232   QVariant aProperty = aStudy->getObjectProperty( GEOM::sharedPropertiesId(),
1233                                                   theIO->getEntry(),
1234                                                   GEOM::propertyName( GEOM::Dimensions ),
1235                                                   QVariant() );
1236
1237   GEOMGUI_DimensionProperty aRecords;
1238
1239   if ( aProperty.isValid() && aProperty.canConvert<GEOMGUI_DimensionProperty>() )
1240   {
1241     aRecords = aProperty.value<GEOMGUI_DimensionProperty>();
1242   }
1243   else
1244   {
1245     aRecords.LoadFromAttribute( getStudy(), theIO->getEntry() );
1246   }
1247   
1248   // create up-to-date dimension presentations
1249   for ( int aPrsIt = 0; aPrsIt < aRecords.GetNumber(); ++aPrsIt )
1250   {
1251     if ( !aRecords.IsVisible( aPrsIt ) )
1252     {
1253       continue;
1254     }
1255
1256     // init dimension by type
1257     Handle(AIS_Dimension) aPrs;
1258     switch( aRecords.GetType( aPrsIt ) )
1259     {
1260       case GEOMGUI_DimensionProperty::DimensionType_Length :
1261       {
1262         Handle(GEOM_AISLength) aLength = new GEOM_AISLength( aPrsIt );
1263         aRecords.GetRecord( aPrsIt )->AsLength()->Update( aLength, theShapeLCS );
1264         aPrs = aLength;
1265         break;
1266       }
1267
1268       case GEOMGUI_DimensionProperty::DimensionType_Diameter :
1269       {
1270         Handle(GEOM_AISDiameter) aDiam = new GEOM_AISDiameter( aPrsIt );
1271         aRecords.GetRecord( aPrsIt )->AsDiameter()->Update( aDiam, theShapeLCS );
1272         aPrs = aDiam;
1273         break;
1274       }
1275
1276       case GEOMGUI_DimensionProperty::DimensionType_Angle :
1277       {
1278         Handle(GEOM_AISAngle) anAng = new GEOM_AISAngle( aPrsIt );
1279         aRecords.GetRecord( aPrsIt )->AsAngle()->Update( anAng, theShapeLCS );
1280         aPrs = anAng;
1281         break;
1282       }
1283     }
1284
1285     aPrs->SetOwner( theIO );
1286
1287     Quantity_Color aColor( aQColor.redF(), aQColor.greenF(), aQColor.blueF(), Quantity_TOC_RGB );
1288
1289     Handle(Prs3d_DimensionAspect) aStyle = new Prs3d_DimensionAspect();
1290
1291     aStyle->SetCommonColor( aColor );
1292     aStyle->MakeUnitsDisplayed( (Standard_Boolean) isUnitsShown );
1293     aStyle->MakeText3d( Standard_True );
1294     aStyle->MakeTextShaded( Standard_True );
1295     aStyle->SetExtensionSize( aFontHeight * 0.5 );
1296     aStyle->TextAspect()->SetHeight( aFontHeight );
1297     aStyle->ArrowAspect()->SetLength( anArrowLength );
1298     aStyle->LineAspect()->SetWidth( aLineWidth );
1299     aStyle->SetTextHorizontalPosition( aPrs->DimensionAspect()->TextHorizontalPosition() );
1300     aStyle->SetTextVerticalPosition( aPrs->DimensionAspect()->TextVerticalPosition() );
1301     aStyle->SetArrowOrientation( aPrs->DimensionAspect()->ArrowOrientation() );
1302     aPrs->SetDimensionAspect( aStyle );
1303     aPrs->SetPolygonOffsets( Aspect_POM_Fill, -1.0, -1.0 );
1304     aPrs->Attributes()->SetDimLengthDisplayUnits( aUnitsLength.toLatin1().data() );
1305     aPrs->Attributes()->SetDimAngleDisplayUnits( aUnitsAngle.toLatin1().data() );
1306
1307     if ( aPrs->IsKind( STANDARD_TYPE(AIS_AngleDimension) ) )
1308     {
1309       // show degree symbol for dimension instead of label "deg"
1310       if ( aUnitsAngle == "deg" )
1311       {
1312         aPrs->SetSpecialSymbol(0xB0);
1313         aPrs->SetDisplaySpecialSymbol( isUnitsShown ? AIS_DSS_After : AIS_DSS_No );
1314         aStyle->MakeUnitsDisplayed(Standard_False);
1315       }
1316       else
1317       {
1318         aPrs->SetDisplaySpecialSymbol(AIS_DSS_No);
1319         aStyle->MakeUnitsDisplayed( (Standard_Boolean) isUnitsShown );
1320       }
1321     }
1322     else
1323     {
1324       aStyle->MakeUnitsDisplayed( (Standard_Boolean) isUnitsShown );
1325     }
1326
1327     aListOfIO.Append( aPrs );
1328   }
1329
1330   // update presentation
1331   anOccPrs->Clear();
1332
1333   for ( aIterateIO.Initialize( aListOfIO ); aIterateIO.More(); aIterateIO.Next() )
1334   {
1335     anOccPrs->AddObject( aIterateIO.Value() );
1336   }
1337 }
1338
1339 //=================================================================
1340 /*!
1341  *  GEOM_Displayer::Erase
1342  *  Calls Erase() method for each object in the given list
1343  */
1344 //=================================================================
1345 void GEOM_Displayer::Erase( const SALOME_ListIO& theIOList,
1346                             const bool forced,
1347                             const bool updateViewer )
1348 {
1349   SALOME_ListIteratorOfListIO Iter( theIOList );
1350   for ( ; Iter.More(); Iter.Next() )
1351     Erase( Iter.Value(), forced, false );
1352
1353   if ( updateViewer )
1354     UpdateViewer();
1355 }
1356
1357 //=================================================================
1358 /*!
1359  *  GEOM_Displayer::Redisplay
1360  *  Calls Redisplay() method for each object in the given list
1361  */
1362 //=================================================================
1363 void GEOM_Displayer::Redisplay( const SALOME_ListIO& theIOList,
1364                                 const bool updateViewer,
1365                                 const bool checkActiveViewer )
1366 {
1367   SALOME_ListIteratorOfListIO Iter( theIOList );
1368   for ( ; Iter.More(); Iter.Next() )
1369     Redisplay( Iter.Value(), false, checkActiveViewer );
1370
1371   if ( updateViewer )
1372     UpdateViewer();
1373 }
1374
1375 //=================================================================
1376 /*!
1377  *  GEOM_Displayer::Redisplay
1378  *  Calls Redisplay() method for each object in the given list
1379  */
1380 //=================================================================
1381 void GEOM_Displayer::Redisplay( const SALOME_ListIO& theIOList,
1382                                 const bool theUpdateViewer,
1383                                 SALOME_View* theViewFrame )
1384 {
1385   SALOME_ListIteratorOfListIO anIter( theIOList );
1386   for ( ; anIter.More(); anIter.Next() )
1387   {
1388     Redisplay( anIter.Value(), false, theViewFrame );
1389   }
1390
1391   if ( theUpdateViewer )
1392   {
1393     UpdateViewer();
1394   }
1395 }
1396
1397 //=================================================================
1398 /*!
1399  *  GEOM_Displayer::Update
1400  *  Update OCC presentaion
1401  *  [ Reimplemented from SALOME_Displayer ]
1402  */
1403 //=================================================================
1404 void GEOM_Displayer::Update( SALOME_OCCPrs* prs )
1405 {
1406   SOCC_Prs* occPrs = dynamic_cast<SOCC_Prs*>( prs );
1407   SalomeApp_Study* study = getStudy();
1408
1409   if ( !occPrs || myShape.IsNull() || !study )
1410     return;
1411
1412   if ( myType == GEOM_MARKER && myShape.ShapeType() == TopAbs_FACE )
1413   {
1414     // 
1415     // specific processing for local coordinate system presentation
1416     // 
1417
1418     TopoDS_Face aFace = TopoDS::Face( myShape );
1419     Handle(Geom_Plane) aPlane = Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( aFace ) );
1420     if ( !aPlane.IsNull() )
1421     {
1422       gp_Ax3 aPos = aPlane->Pln().Position();
1423       Handle(Geom_Axis2Placement) aPlc = new Geom_Axis2Placement( aPos.Ax2() );
1424
1425       Handle(GEOM_AISTrihedron) aTrh;
1426
1427       if ( occPrs->IsNull() )
1428       {
1429         // new presentation is being created
1430         aTrh = new GEOM_AISTrihedron( aPlc );
1431         occPrs->AddObject( aTrh );
1432       }
1433       else
1434       {
1435         // presentation is being updated
1436         AIS_ListOfInteractive aList;
1437         occPrs->GetObjects( aList );
1438         AIS_ListIteratorOfListOfInteractive anIter( aList );
1439         for ( ; anIter.More() && aTrh.IsNull(); anIter.Next() ) {
1440           aTrh = Handle(GEOM_AISTrihedron)::DownCast( anIter.Value() );
1441         }
1442       }
1443         
1444       if ( !aTrh.IsNull() ) {
1445         // predefined color, manually set to displayer via GEOM_Displayer::SetColor() function
1446         if ( HasColor() )
1447           aTrh->SetColor( (Quantity_NameOfColor)GetColor() );
1448         // predefined line width, manually set to displayer via GEOM_Displayer::SetLineWidth() function 
1449         if ( HasWidth() )
1450           aTrh->SetWidth( GetWidth() );
1451         
1452         if ( !myIO.IsNull() )
1453         {
1454           aTrh->setIO( myIO );
1455           aTrh->SetOwner( myIO );
1456         }
1457         aTrh->SetComponent( aPlc );
1458         aTrh->SetToUpdate();
1459       }
1460       occPrs->SetToActivate( ToActivate() );
1461     }
1462   }
1463   else
1464   {
1465     // 
1466     // processing for usual geometry presentation
1467     // 
1468
1469     // if presentation is empty we try to create new one
1470     if ( occPrs->IsNull() )
1471     {
1472       // create presentation (specific for vectors)
1473       Handle(GEOM_AISShape) AISShape = ( myType == GEOM_VECTOR ) ? new GEOM_AISVector( myShape, "" )
1474                                                                  : new GEOM_AISShape ( myShape, "" );
1475
1476       if( myType == GEOM_FIELD_STEP )
1477         AISShape->SetHilightMode( GEOM_AISShape::CustomHighlight );
1478       // update shape properties
1479       updateShapeProperties( AISShape, true );
1480
1481       // add shape to the presentation
1482       occPrs->AddObject( AISShape );
1483
1484       // In accordance with ToActivate() value object will be activated/deactivated
1485       // when it will be displayed
1486       occPrs->SetToActivate( ToActivate() );
1487
1488       if ( AISShape->isTopLevel() && GEOM_AISShape::topLevelDisplayMode() == GEOM_AISShape::TopShowAdditionalWActor ) {
1489         // 21671: EDF 1829 GEOM : Bring to front selected objects (continuation):
1490
1491         // create additional wireframe shape
1492         Handle(GEOM_TopWireframeShape) aWirePrs = new GEOM_TopWireframeShape(myShape);
1493         aWirePrs->SetWidth(AISShape->Width());
1494         if ( !myIO.IsNull() ) {
1495           aWirePrs->setIO( myIO );
1496           aWirePrs->SetOwner( myIO );
1497         }
1498
1499         // add shape to the presentation
1500         occPrs->AddObject( aWirePrs );
1501       }
1502     }
1503     // if presentation is found -> set again shape for it
1504     else
1505     {
1506       AIS_ListOfInteractive IOList;
1507       occPrs->GetObjects( IOList );
1508       AIS_ListIteratorOfListOfInteractive Iter( IOList );
1509       for ( ; Iter.More(); Iter.Next() )
1510       {
1511         Handle(GEOM_AISShape) AISShape = Handle(GEOM_AISShape)::DownCast( Iter.Value() );
1512         if ( AISShape.IsNull() )
1513           continue;
1514
1515         // re-set shape (it might be changed)
1516         if ( AISShape->Shape() != myShape )
1517           AISShape->Set( myShape );
1518
1519         // update shape properties
1520         updateShapeProperties( AISShape, false );
1521
1522         // force updating
1523         AISShape->UpdateSelection();
1524         AISShape->SetToUpdate();
1525       }
1526     }
1527
1528     updateDimensions( myIO, occPrs, gp_Ax3().Transformed( myShape.Location().Transformation() ) );
1529   }
1530 }
1531
1532 //=================================================================
1533 /*!
1534  *  GEOM_Displayer::Update
1535  *  Update VTK presentaion
1536  *  [ Reimplemented from SALOME_Displayer ]
1537  */
1538 //=================================================================
1539 void GEOM_Displayer::Update( SALOME_VTKPrs* prs )
1540 {
1541   SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
1542   SalomeApp_Study* study = getStudy();
1543
1544   if ( !vtkPrs || myShape.IsNull() || !study )
1545     return;
1546
1547   if ( myType == GEOM_MARKER && myShape.ShapeType() == TopAbs_FACE )
1548   {
1549     // 
1550     // specific processing for local coordinate system presentation
1551     // 
1552
1553     TopoDS_Face aFace = TopoDS::Face( myShape );
1554     Handle(Geom_Plane) aPlane = Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( aFace ) );
1555     if ( !aPlane.IsNull() ) {
1556       gp_Ax3 aPos = aPlane->Pln().Position();
1557       Handle(Geom_Axis2Placement) aPlc = new Geom_Axis2Placement( aPos.Ax2() );
1558
1559       GEOM_VTKTrihedron* aTrh = 0;
1560
1561       if ( vtkPrs->IsNull() ) {
1562         // new presentation is being created
1563         aTrh = GEOM_VTKTrihedron::New();
1564         vtkPrs->AddObject( aTrh );
1565       }
1566       else {
1567         // presentation is being updated
1568         vtkActorCollection* actors = vtkPrs->GetObjects();
1569         if ( actors ) {
1570           actors->InitTraversal();
1571           vtkActor* a = actors->GetNextActor();
1572           while ( a && !aTrh ) {
1573             aTrh = GEOM_VTKTrihedron::SafeDownCast( a );
1574             a = actors->GetNextActor();
1575           }
1576         }
1577       }
1578       
1579       if ( aTrh ) {
1580         // predefined color, manually set to displayer via GEOM_Displayer::SetColor() function
1581         if ( HasColor() ) {
1582           Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
1583           aTrh->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
1584         }
1585 #ifdef VTK_TRIHEDRON_WIDTH
1586         // 
1587         // VSR: currently isn't supported
1588         //
1589         // predefined line width, manually set to displayer via GEOM_Displayer::SetLineWidth() function 
1590         if ( HasWidth() )
1591           aTrh->SetWidth( GetWidth() );
1592 #endif
1593
1594         if ( !myIO.IsNull() )
1595           aTrh->setIO( myIO );
1596
1597         aTrh->SetPlacement( aPlc );
1598       }
1599     }
1600   }
1601   else
1602   {
1603     // 
1604     // processing for usual geometry presentation
1605     // 
1606
1607     // if presentation is empty we try to create new one
1608     if ( vtkPrs->IsNull() )
1609     {
1610       // create an actor
1611       GEOM_Actor* actor = GEOM_Actor::New();
1612       // update actor properties
1613       updateActorProperties( actor, true );
1614       // add actor to the presentation
1615       vtkPrs->AddObject( actor );
1616     }
1617     else {
1618       // presentation is being updated
1619       vtkActorCollection* actors = vtkPrs->GetObjects();
1620       if ( actors ) {
1621         actors->InitTraversal();
1622         vtkActor* a = actors->GetNextActor();
1623         while ( a ) {
1624           GEOM_Actor* actor = GEOM_Actor::SafeDownCast( a );
1625           if ( actor ) {
1626             // update actor properties
1627             updateActorProperties( actor, false );
1628             a = actors->GetNextActor();
1629           }
1630         }
1631       }
1632     }
1633   }
1634 }
1635
1636 //=================================================================
1637 /*!
1638  *  GEOM_Displayer::BuildPrs
1639  *  Build presentation accordint to the current viewer type
1640  */
1641 //=================================================================
1642 SALOME_Prs* GEOM_Displayer::BuildPrs( GEOM::GEOM_Object_ptr theObj )
1643 {
1644   if ( theObj->_is_nil() )
1645     return 0;
1646
1647   myViewFrame = GetActiveView();
1648   if ( myViewFrame == 0 )
1649     return 0;
1650
1651   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
1652   if ( aPrs == 0 )
1653     return 0;
1654
1655   internalReset();
1656   setShape( GEOM_Client::get_client().GetShape( GeometryGUI::GetGeomGen(), theObj ) );
1657   myType = theObj->GetType();
1658
1659   // Update presentation
1660   UpdatePrs( aPrs );
1661
1662   return aPrs;
1663 }
1664
1665 //=================================================================
1666 /*!
1667  *  GEOM_Displayer::BuildPrs
1668  *  Build presentation accordint to the current viewer type
1669  */
1670 //=================================================================
1671 SALOME_Prs* GEOM_Displayer::BuildPrs( const TopoDS_Shape& theShape )
1672 {
1673   myViewFrame = GetActiveView();
1674   if ( theShape.IsNull() || myViewFrame == 0 )
1675     return 0;
1676
1677   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
1678   if ( aPrs == 0 )
1679     return 0;
1680
1681   internalReset();
1682   setShape( theShape );
1683   myType = -1;
1684
1685   UpdatePrs( aPrs );
1686
1687   return aPrs;
1688 }
1689
1690 //=================================================================
1691 /*!
1692  *  GEOM_Displayer::buildPresentation
1693  *  Builds/finds object's presentation for the current viewer
1694  *  Calls corresponding Update() method by means of double dispatch
1695  *  [ internal ]
1696  */
1697 //=================================================================
1698 SALOME_Prs* GEOM_Displayer::buildPresentation( const QString& entry,
1699                                                SALOME_View* theViewFrame )
1700 {
1701   SALOME_Prs* prs = 0;
1702   internalReset();
1703
1704   myViewFrame = theViewFrame ? theViewFrame : GetActiveView();
1705
1706   if ( myViewFrame )
1707   {
1708     prs = LightApp_Displayer::buildPresentation( entry, theViewFrame );
1709     if ( prs )
1710     {
1711       Handle( SALOME_InteractiveObject ) theIO = new SALOME_InteractiveObject();
1712       theIO->setEntry( entry.toLatin1().constData() );
1713       if ( !theIO.IsNull() )
1714       {
1715         // set interactive object
1716         setIO( theIO );
1717         //  Find SOBject (because shape should be published previously)
1718         SUIT_Session* session = SUIT_Session::session();
1719         SUIT_Application* app = session->activeApplication();
1720         if ( app )
1721         {
1722           SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
1723           if ( study )
1724           {
1725             _PTR(SObject) SO ( study->studyDS()->FindObjectID( theIO->getEntry() ) );
1726             if ( SO )
1727             {
1728               // get CORBA reference to data object
1729               CORBA::Object_var object = GeometryGUI::ClientSObjectToObject(SO);
1730               if ( !CORBA::is_nil( object ) )
1731               {
1732                 // downcast to GEOM base object
1733                 GEOM::GEOM_BaseObject_var GeomBaseObject = GEOM::GEOM_BaseObject::_narrow( object );
1734                 if ( !GeomBaseObject->_is_nil() )
1735                 {
1736                   myType = GeomBaseObject->GetType();
1737
1738                   // downcast to GEOM object
1739                   GEOM::GEOM_Object_var GeomObject = GEOM::GEOM_Object::_narrow( GeomBaseObject );
1740                   if ( myType == GEOM_FIELD_STEP )
1741                   {
1742                     // get the GEOM object from the field's shape
1743                     GEOM::GEOM_FieldStep_var GeomFieldStep = GEOM::GEOM_FieldStep::_narrow( GeomBaseObject );
1744                     if ( !GeomFieldStep->_is_nil() )
1745                     {
1746                       GEOM::GEOM_Field_var GeomField = GeomFieldStep->GetField();
1747                       if ( !GeomField->_is_nil() )
1748                         GeomObject = GeomField->GetShape();
1749                     }
1750
1751                     // read the field step information
1752                     readFieldStepInfo( GeomFieldStep );
1753                   }
1754
1755                   if ( !GeomObject->_is_nil() )
1756                   {
1757                     // finally set shape
1758                     setShape( GEOM_Client::get_client().GetShape( GeometryGUI::GetGeomGen(), GeomObject ) );
1759                   }
1760                 }
1761               }
1762             }
1763           }
1764         }
1765       }
1766       UpdatePrs( prs );  // Update presentation by using of the double dispatch
1767     }
1768   }
1769   return prs;
1770 }
1771
1772 //=================================================================
1773 /*!
1774  *  GEOM_Displayer::buildSubshapePresentation
1775  *  Builds/finds object's presentation for the current viewer
1776  *  Calls corresponding Update() method by means of double dispatch
1777  *  For not published objects (for Mantis issue 0020435)
1778  */
1779 //=================================================================
1780 SALOME_Prs* GEOM_Displayer::buildSubshapePresentation(const TopoDS_Shape& aShape,
1781                                                       const QString& entry,
1782                                                       SALOME_View* theViewFrame)
1783 {
1784   SALOME_Prs* prs = 0;
1785   internalReset();
1786
1787   myViewFrame = theViewFrame ? theViewFrame : GetActiveView();
1788
1789   if (myViewFrame)
1790   {
1791     prs = LightApp_Displayer::buildPresentation(entry, theViewFrame);
1792     if (prs)
1793     {
1794       Handle(SALOME_InteractiveObject) theIO = new SALOME_InteractiveObject();
1795       theIO->setEntry(entry.toLatin1().constData());
1796       if (!theIO.IsNull())
1797       {
1798         // set interactive object
1799         setIO(theIO);
1800         // finally set shape
1801         setShape(aShape);
1802         myType = GEOM_SUBSHAPE;
1803       }
1804       UpdatePrs(prs);  // Update presentation by using of the double dispatch
1805     }
1806   }
1807   return prs;
1808 }
1809
1810 //=================================================================
1811 /*!
1812  *  GEOM_Displayer::internalReset
1813  *  Resets internal data
1814  *  [internal]
1815  */
1816 //=================================================================
1817 void GEOM_Displayer::internalReset()
1818 {
1819   myIO.Nullify();
1820   myShape.Nullify();
1821
1822   myFieldDataType = GEOM::FDT_Double;
1823   myFieldDimension = 0;
1824   myFieldStepData.clear();
1825   myFieldStepName.Clear();
1826   myFieldStepRangeMin = 0;
1827   myFieldStepRangeMax = 0;
1828 }
1829
1830 //=================================================================
1831 /*!
1832  *  GEOM_Displayer::LocalSelection
1833  *  Activate selection of CAD shapes with activisation of selection
1834  *  of their sub-shapes (with opened local context for OCC viewer)
1835  */
1836 //=================================================================
1837 void GEOM_Displayer::LocalSelection( const Handle(SALOME_InteractiveObject)& theIO, const int theMode )
1838 {
1839   SUIT_Session* session = SUIT_Session::session();
1840   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
1841   if ( !app )
1842     return;
1843
1844   LightApp_SelectionMgr* sm = app->selectionMgr();
1845
1846   // remove all filters from selection
1847   sm->clearFilters();
1848
1849   SALOME_View* vf = GetActiveView();
1850   if ( vf ) {
1851     if (!theIO.IsNull() && !vf->isVisible(theIO))
1852       Display(theIO);
1853     SALOME_Prs* prs = vf->CreatePrs( theIO.IsNull() ? 0 : theIO->getEntry() );
1854     vf->LocalSelection( prs, theMode );
1855     delete prs;  // delete presentation because displayer is its owner
1856   }
1857 }
1858
1859 //=================================================================
1860 /*!
1861  *  GEOM_Displayer::globalSelection
1862  *  Activate selection of CAD shapes without activisation of selection
1863  *  of their sub-shapes (without opened local context for OCC viewer)
1864  */
1865 //=================================================================
1866 void GEOM_Displayer::GlobalSelection( const int theMode, const bool update )
1867 {
1868   TColStd_MapOfInteger aModes;
1869   aModes.Add( theMode );
1870   GlobalSelection( aModes, update );
1871 }
1872
1873 //=================================================================
1874 /*!
1875  *  GEOM_Displayer::globalSelection
1876  *  Activate selection of CAD shapes without activisation of selection
1877  *  of their sub-shapes (without opened local context for OCC viewer)
1878  */
1879 //=================================================================
1880 void GEOM_Displayer::GlobalSelection( const TColStd_MapOfInteger& theModes,
1881                                       const bool update, const QList<int>* theSubShapes )
1882 {
1883   SUIT_Session* session = SUIT_Session::session();
1884   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
1885   if ( !app )
1886     return;
1887
1888   SALOME_View* vf = GetActiveView();
1889   if ( vf == 0 )
1890     return;
1891
1892   // Close local context
1893   vf->GlobalSelection( update );
1894
1895   // Set selection filters in accordance with current mode
1896   LightApp_SelectionMgr* sm = app->selectionMgr();
1897   if ( !sm )
1898     return;
1899
1900   // Remove from selection temporary objects if necessary
1901   if ( !theModes.Contains( GEOM_PREVIEW ) )
1902     clearTemporary( sm );
1903
1904   //@ aSel->ClearIndex();
1905
1906   sm->clearFilters();
1907
1908   // Remove filters from AIS_InteractiveContext
1909   Handle(AIS_InteractiveContext) ic;
1910   SOCC_Viewer* viewer = dynamic_cast<SOCC_Viewer*>( vf );
1911   if ( viewer )
1912     {
1913       ic = viewer->getAISContext();
1914       if ( !ic.IsNull() )
1915         ic->RemoveFilters();
1916     }
1917
1918   if ( theModes.Contains( GEOM_ALLOBJECTS ) )
1919     return;
1920
1921   SUIT_SelectionFilter* aFilter;
1922   if ( theModes.Extent() == 1 )
1923     {
1924       int aMode = TColStd_MapIteratorOfMapOfInteger( theModes ).Key();
1925
1926       if ( aMode == GEOM_COMPOUNDFILTER )
1927         aFilter = getComplexFilter( theSubShapes );
1928       else
1929         aFilter = getFilter( aMode );
1930     }
1931   else if ( theModes.Extent() > 1 )
1932     {
1933       TColStd_MapOfInteger aTopAbsModes;
1934       TColStd_MapIteratorOfMapOfInteger anIter( theModes );
1935       QList<SUIT_SelectionFilter*> aListOfFilters;
1936       for ( ; anIter.More(); anIter.Next() )
1937         {
1938           SUIT_SelectionFilter* aFilter;
1939           int aMode = anIter.Key();
1940           if ( aMode == GEOM_COMPOUNDFILTER )
1941             aFilter = getComplexFilter( theSubShapes );
1942           else
1943             aFilter = getFilter( aMode );
1944
1945           if ( aFilter )
1946             aListOfFilters.append( aFilter );
1947         }
1948
1949       aFilter = new GEOM_LogicalFilter( aListOfFilters, GEOM_LogicalFilter::LO_OR );
1950     }
1951   else
1952     return;
1953
1954   if ( aFilter )
1955     {
1956       sm->installFilter( aFilter );
1957       if ( !ic.IsNull() )
1958         {
1959           Handle(GEOM_OCCFilter) anOCCFilter = new GEOM_OCCFilter( sm );
1960           ic->AddFilter( anOCCFilter );
1961         }
1962     }
1963 }
1964
1965 //=================================================================
1966 /*!
1967  *  GEOM_Displayer::LocalSelection
1968  *  Activate selection of CAD shapes with activisation of selection
1969  *  of their sub-shapes (with opened local context for OCC viewer)
1970  */
1971 //=================================================================
1972 void GEOM_Displayer::LocalSelection( const SALOME_ListIO& theIOList, const int theMode )
1973 {
1974   SALOME_ListIteratorOfListIO Iter( theIOList );
1975   for ( ; Iter.More(); Iter.Next() )
1976     LocalSelection( Iter.Value(), theMode );
1977 }
1978
1979 //=================================================================
1980 /*!
1981  *  GEOM_Displayer::BeforeDisplay
1982  *  Called before displaying of pars. Close local context
1983  *  [ Reimplemented from SALOME_Displayer ]
1984  */
1985 //=================================================================
1986 void GEOM_Displayer::BeforeDisplay( SALOME_View* v, const SALOME_OCCPrs* )
1987 {
1988   SOCC_Viewer* vf = dynamic_cast<SOCC_Viewer*>( v );
1989   if ( vf )
1990   {
1991     Handle(AIS_InteractiveContext) ic = vf->getAISContext();
1992     if ( !ic.IsNull() )
1993     {
1994       if ( ic->HasOpenedContext() )
1995       ic->CloseAllContexts();
1996     }
1997   }
1998 }
1999
2000 void GEOM_Displayer::AfterDisplay( SALOME_View* v, const SALOME_OCCPrs* p )
2001 {
2002   UpdateColorScale(false,false);
2003 }
2004
2005 void GEOM_Displayer::BeforeErase( SALOME_View* v, const SALOME_OCCPrs* p )
2006 {
2007   LightApp_Displayer::BeforeErase( v, p );
2008   releaseTextures( p );
2009 }
2010
2011 void GEOM_Displayer::AfterErase( SALOME_View* v, const SALOME_OCCPrs* p )
2012 {
2013   LightApp_Displayer::AfterErase( v, p );
2014   UpdateColorScale(false,false);
2015 }
2016
2017 //=================================================================
2018 /*!
2019  *  GEOM_Displayer::SetColor
2020  *  Set color for shape displaying. If it is equal -1 then default color is used.
2021  *  Available values are from Quantity_NameOfColor enumeration
2022  */
2023 //=================================================================
2024 void GEOM_Displayer::SetColor( const int color )
2025 {
2026   if ( color == -1 )
2027     UnsetColor();
2028   else
2029   {
2030     myColor = color;
2031     myShadingColor = Quantity_Color( (Quantity_NameOfColor)color );
2032   }
2033 }
2034
2035 int GEOM_Displayer::GetColor() const
2036 {
2037   return myColor;
2038 }
2039
2040 bool GEOM_Displayer::HasColor() const
2041 {
2042   return myColor != -1;
2043 }
2044
2045 void GEOM_Displayer::UnsetColor()
2046 {
2047   myColor = -1;
2048
2049   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
2050   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
2051   myShadingColor = SalomeApp_Tools::color( col );
2052 }
2053
2054 //=================================================================
2055 /*!
2056  *  GEOM_Displayer::SetTransparency
2057  *  Set transparency for shape displaying.
2058  */
2059 //=================================================================
2060 double GEOM_Displayer::SetTransparency( const double transparency )
2061 {
2062   double prevTransparency = myTransparency;
2063   myTransparency = transparency;
2064   return prevTransparency;
2065 }
2066
2067 //=================================================================
2068 /*!
2069  *  GEOM_Displayer::GetTransparency
2070  *  Get transparency for shape displaying.
2071  */
2072 //=================================================================
2073 double GEOM_Displayer::GetTransparency() const
2074 {
2075   return myTransparency;
2076 }
2077
2078 //=================================================================
2079 /*!
2080  *  GEOM_Displayer::HasTransparency
2081  *  Check if transparency for shape displaying is set.
2082  */
2083 //=================================================================
2084 bool GEOM_Displayer::HasTransparency() const
2085 {
2086   return myTransparency >= 0;
2087 }
2088
2089 //=================================================================
2090 /*!
2091  *  GEOM_Displayer::UnsetTransparency
2092  *  Unset transparency for shape displaying.
2093  */
2094 //=================================================================
2095 double GEOM_Displayer::UnsetTransparency()
2096 {
2097   return SetTransparency( -1 );
2098 }
2099
2100 //=================================================================
2101 /*!
2102  *  GEOM_Displayer::SetTexture
2103  */
2104 //=================================================================
2105 void GEOM_Displayer::SetTexture( const std::string& texureFileName )
2106 {
2107   myTexture = texureFileName;
2108 }
2109
2110 bool GEOM_Displayer::HasTexture() const
2111 {
2112   return myTexture != "";
2113 }
2114
2115 std::string GEOM_Displayer::GetTexture() const
2116 {
2117   return myTexture;
2118 }
2119
2120 //=================================================================
2121 /*!
2122  *  GEOM_Displayer::SetWidth
2123  *  Set width of shape displaying. If it is equal -1 then default width is used.
2124  */
2125 //=================================================================
2126 void GEOM_Displayer::SetWidth( const double width )
2127 {
2128   myWidth = width;
2129 }
2130
2131 double GEOM_Displayer::GetWidth() const
2132 {
2133   return myWidth;
2134 }
2135
2136 bool GEOM_Displayer::HasWidth() const
2137 {
2138   return myWidth != -1;
2139 }
2140
2141 void GEOM_Displayer::UnsetWidth()
2142 {
2143   myWidth = -1;
2144 }
2145
2146 int GEOM_Displayer::GetIsosWidth() const
2147 {
2148   return myIsosWidth;
2149 }
2150
2151 void GEOM_Displayer::SetIsosWidth(const int width)
2152 {
2153   myIsosWidth = width;
2154 }
2155
2156 bool GEOM_Displayer::HasIsosWidth() const
2157 {
2158   return myIsosWidth != -1;
2159 }
2160
2161 int GEOM_Displayer::SetNbIsos( const int nbIsos )
2162 {
2163   int prevNbIsos = myNbIsos;
2164   myNbIsos = nbIsos;
2165   return prevNbIsos;
2166 }
2167
2168 int GEOM_Displayer::UnsetNbIsos()
2169 {
2170   return SetNbIsos( -1 );
2171 }
2172
2173 int GEOM_Displayer::GetNbIsos() const
2174 {
2175   return myNbIsos;
2176 }
2177
2178 bool GEOM_Displayer::HasNbIsos() const
2179 {
2180   return myNbIsos >= 0;
2181 }
2182
2183 int GEOM_Displayer::SetIsosColor( const int color )
2184 {
2185   int prevColor = myIsosColor;
2186   myIsosColor = color;
2187   return prevColor;
2188 }
2189
2190 int GEOM_Displayer::GetIsosColor() const
2191 {
2192   return myIsosColor;
2193 }
2194
2195 bool GEOM_Displayer::HasIsosColor() const
2196 {
2197   return myIsosColor != -1;
2198 }
2199
2200 int GEOM_Displayer::UnsetIsosColor()
2201 {
2202   return SetIsosColor( -1 );
2203 }
2204
2205 //=================================================================
2206 /*!
2207  *  GEOM_Displayer::SetToActivate
2208  *  This method is used for activisation/deactivisation of objects to be displayed
2209  */
2210 //=================================================================
2211 void GEOM_Displayer::SetToActivate( const bool toActivate )
2212 {
2213   myToActivate = toActivate;
2214 }
2215 bool GEOM_Displayer::ToActivate() const
2216 {
2217   return myToActivate;
2218 }
2219
2220 //=================================================================
2221 /*!
2222  *  GEOM_Displayer::clearTemporary
2223  *  Removes from selection temporary objects
2224  */
2225 //=================================================================
2226 void GEOM_Displayer::clearTemporary( LightApp_SelectionMgr* theSelMgr )
2227 {
2228   SALOME_ListIO selected, toSelect;
2229   theSelMgr->selectedObjects( selected );
2230
2231   for (  SALOME_ListIteratorOfListIO it( selected ) ; it.More(); it.Next() ) {
2232     Handle(SALOME_InteractiveObject) io = it.Value();
2233     if ( !io.IsNull() && io->hasEntry() && strncmp( io->getEntry(), "TEMP_", 5 ) != 0 )
2234       toSelect.Append( it.Value() );
2235   }
2236
2237   theSelMgr->setSelectedObjects( toSelect, true );
2238 }
2239
2240 void GEOM_Displayer::SetName( const char* theName )
2241 {
2242   myName = theName;
2243 }
2244
2245 void GEOM_Displayer::UnsetName()
2246 {
2247   myName = "";
2248 }
2249
2250 SalomeApp_Study* GEOM_Displayer::getStudy() const
2251 {
2252   return dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
2253 }
2254
2255 void GEOM_Displayer::setIO( const Handle(SALOME_InteractiveObject)& theIO )
2256 {
2257   myIO = theIO;
2258 }
2259
2260 void GEOM_Displayer::setShape( const TopoDS_Shape& theShape )
2261 {
2262   myShape = theShape;
2263 }
2264
2265 void GEOM_Displayer::setFieldStepInfo( const GEOM::field_data_type theFieldDataType,
2266                                        const int theFieldDimension,
2267                                        const QList<QVariant>& theFieldStepData,
2268                                        const TCollection_AsciiString& theFieldStepName,
2269                                        const double theFieldStepRangeMin,
2270                                        const double theFieldStepRangeMax )
2271 {
2272   myFieldDataType = theFieldDataType;
2273   myFieldDimension = theFieldDimension;
2274   myFieldStepData = theFieldStepData;
2275   myFieldStepName = theFieldStepName;
2276   myFieldStepRangeMin = theFieldStepRangeMin;
2277   myFieldStepRangeMax = theFieldStepRangeMax;
2278 }
2279
2280 bool GEOM_Displayer::canBeDisplayed( const QString& entry, const QString& viewer_type ) const
2281 {
2282   _PTR(SObject) anObj = getStudy()->studyDS()->FindObjectID( (const char*)entry.toLatin1() );
2283   GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of GEOM objects
2284   GEOM::GEOM_FieldStep_var aFieldStepObj = GEOM::GEOM_FieldStep::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of GEOM field steps
2285   GEOM::GEOM_Gen_var aCompObj = GEOM::GEOM_Gen::_narrow(GeometryGUI::ClientSObjectToObject(anObj)); // enable displaying of whole GEOM component
2286   return ( !CORBA::is_nil( aGeomObj ) || !CORBA::is_nil( aFieldStepObj ) || !CORBA::is_nil( aCompObj ) ) &&
2287          (viewer_type == SOCC_Viewer::Type() || viewer_type == SVTK_Viewer::Type());
2288 }
2289
2290 int GEOM_Displayer::SetDisplayMode( const int theMode )
2291 {
2292   int aPrevMode = myDisplayMode;
2293   if ( theMode != -1 ) {
2294     myDisplayMode = theMode;
2295     myHasDisplayMode = true;
2296   }
2297   else {
2298     UnsetDisplayMode();
2299   }
2300   return aPrevMode;
2301 }
2302
2303 int GEOM_Displayer::GetDisplayMode() const
2304 {
2305   return myDisplayMode;
2306 }
2307
2308 int GEOM_Displayer::UnsetDisplayMode()
2309 {
2310   int aPrevMode = myDisplayMode;
2311   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
2312   myDisplayMode = resMgr->integerValue( "Geometry", "display_mode", 0 );
2313   myHasDisplayMode = false;
2314   return aPrevMode;
2315 }
2316
2317 bool GEOM_Displayer::HasDisplayMode() const
2318 {
2319   return myHasDisplayMode;
2320 }
2321
2322 SALOMEDS::Color GEOM_Displayer::getPredefinedUniqueColor()
2323 {
2324   static QList<QColor> colors;
2325
2326   if ( colors.isEmpty() ) {
2327
2328     for (int s = 0; s < 2 ; s++)
2329     {
2330       for (int v = 100; v >= 40; v = v - 20)
2331       {
2332         for (int h = 0; h < 359 ; h = h + 60)
2333         {
2334           colors.append(QColor::fromHsv(h, 255 - s * 127, v * 255 / 100));
2335         }
2336       }
2337     }
2338   }
2339
2340   static int currentColor = randomize( colors.size() );
2341
2342   SALOMEDS::Color color;
2343   color.R = (double)colors[currentColor].red()   / 255.0;
2344   color.G = (double)colors[currentColor].green() / 255.0;
2345   color.B = (double)colors[currentColor].blue()  / 255.0;
2346
2347   currentColor = (currentColor+1) % colors.count();
2348
2349   return color;
2350 }
2351
2352 SALOMEDS::Color GEOM_Displayer::getUniqueColor( const QList<SALOMEDS::Color>& theReservedColors )
2353 {
2354   int aHue = -1;
2355   int aTolerance = 64;
2356   int anIterations = 0;
2357   int aPeriod = 5;
2358
2359   while( 1 )
2360   {
2361     anIterations++;
2362     if( anIterations % aPeriod == 0 )
2363     {
2364       aTolerance /= 2;
2365       if( aTolerance < 1 )
2366         break;
2367     }
2368     //std::cout << "Iteration N" << anIterations << " (tolerance=" << aTolerance << ")"<< std::endl;
2369
2370     aHue = (int)( 360.0 * rand() / RAND_MAX );
2371     //std::cout << "Hue = " << aHue << std::endl;
2372
2373     //std::cout << "Auto colors : ";
2374     bool ok = true;
2375     QList<SALOMEDS::Color>::const_iterator it = theReservedColors.constBegin();
2376     QList<SALOMEDS::Color>::const_iterator itEnd = theReservedColors.constEnd();
2377     for( ; it != itEnd; ++it )
2378     {
2379       SALOMEDS::Color anAutoColor = *it;
2380       QColor aQColor( (int)( anAutoColor.R * 255.0 ), (int)( anAutoColor.G * 255.0 ), (int)( anAutoColor.B * 255.0 ) );
2381
2382       int h, s, v;
2383       aQColor.getHsv( &h, &s, &v );
2384       //std::cout << h << " ";
2385       if( abs( h - aHue ) < aTolerance )
2386       {
2387         ok = false;
2388         //std::cout << "break (diff = " << abs( h - aHue ) << ")";
2389         break;
2390       }
2391     }
2392     //std::cout << std::endl;
2393
2394     if( ok )
2395       break;
2396   }
2397
2398   //std::cout << "Hue of the returned color = " << aHue << std::endl;
2399   QColor aColor;
2400   aColor.setHsv( aHue, 255, 255 );
2401
2402   SALOMEDS::Color aSColor;
2403   aSColor.R = (double)aColor.red() / 255.0;
2404   aSColor.G = (double)aColor.green() / 255.0;
2405   aSColor.B = (double)aColor.blue() / 255.0;
2406
2407   return aSColor;
2408 }
2409
2410 PropMap GEOM_Displayer::getObjectProperties( SalomeApp_Study* study,
2411                                              const QString& entry,
2412                                              SALOME_View* view )
2413 {
2414   // get default properties for the explicitly specified default view type
2415   PropMap propMap = GEOM_Displayer::getDefaultPropertyMap();
2416
2417   if ( study && view ) {
2418     SUIT_ViewModel* viewModel = dynamic_cast<SUIT_ViewModel*>( view );
2419     SUIT_ViewManager* viewMgr = ( viewModel != 0 ) ? viewModel->getViewManager() : 0;
2420     int viewId = ( viewMgr != 0 ) ? viewMgr->getGlobalId() : -1;
2421   
2422     if ( viewModel && viewId != -1 ) {
2423       // get properties from the study
2424       PropMap storedMap = study->getObjectProperties( viewId, entry );
2425       // overwrite default properties from stored ones (that are specified)
2426       for ( int prop = GEOM::Visibility; prop <= GEOM::LastProperty; prop++ ) {
2427         if ( storedMap.contains( GEOM::propertyName( (GEOM::Property)prop ) ) )
2428           propMap.insert( GEOM::propertyName( (GEOM::Property)prop ), 
2429                           storedMap.value( GEOM::propertyName( (GEOM::Property)prop ) ) );
2430       }
2431       // ... specific processing for color
2432       // ... current implementation is to use same stored color for all aspects
2433       // ... (TODO) possible future improvements about free boundaries, standalone edges etc colors can be here
2434       if ( storedMap.contains( GEOM::propertyName( GEOM::Color ) ) ) {
2435         propMap.insert( GEOM::propertyName( GEOM::ShadingColor ),   storedMap.value( GEOM::propertyName( GEOM::Color ) ) );
2436         propMap.insert( GEOM::propertyName( GEOM::WireframeColor ), storedMap.value( GEOM::propertyName( GEOM::Color ) ) );
2437         propMap.insert( GEOM::propertyName( GEOM::LineColor ),      storedMap.value( GEOM::propertyName( GEOM::Color ) ) );
2438         propMap.insert( GEOM::propertyName( GEOM::FreeBndColor ),   storedMap.value( GEOM::propertyName( GEOM::Color ) ) );
2439         propMap.insert( GEOM::propertyName( GEOM::PointColor ),     storedMap.value( GEOM::propertyName( GEOM::Color ) ) );
2440       }
2441
2442       if ( !entry.isEmpty() ) {
2443         // get CORBA reference to geom object
2444         _PTR(SObject) SO( study->studyDS()->FindObjectID( entry.toStdString() ) );
2445         if ( SO ) {
2446           CORBA::Object_var object = GeometryGUI::ClientSObjectToObject( SO );
2447           if ( !CORBA::is_nil( object ) ) {
2448             GEOM::GEOM_Object_var geomObject = GEOM::GEOM_Object::_narrow( object );
2449             if ( !CORBA::is_nil( geomObject ) ) { // to check
2450               // check that geom object has color properly set
2451               bool hasColor = false;
2452               SALOMEDS::Color aSColor = getColor( geomObject, hasColor );
2453               // set color from geometry object (only once, if it is not yet set in GUI)
2454               // current implementation is to use same color for all aspects
2455               // (TODO) possible future improvements about free boundaries, standalone edges etc colors can be here
2456               if ( hasColor && !storedMap.contains( GEOM::propertyName( GEOM::Color ) ) ) {
2457                 QColor objColor = QColor::fromRgbF( aSColor.R, aSColor.G, aSColor.B );
2458                 propMap.insert( GEOM::propertyName( GEOM::ShadingColor ),   objColor );
2459                 propMap.insert( GEOM::propertyName( GEOM::WireframeColor ), objColor );
2460                 propMap.insert( GEOM::propertyName( GEOM::LineColor ),      objColor );
2461                 propMap.insert( GEOM::propertyName( GEOM::FreeBndColor ),   objColor );
2462                 propMap.insert( GEOM::propertyName( GEOM::PointColor ),     objColor );
2463               }
2464               // check that object has point marker properly set
2465               GEOM::marker_type mType = geomObject->GetMarkerType();
2466               GEOM::marker_size mSize = geomObject->GetMarkerSize();
2467               int mTextureId = geomObject->GetMarkerTexture();
2468               bool hasMarker = ( mType > GEOM::MT_NONE && mType < GEOM::MT_USER && mSize > GEOM::MS_NONE && mSize <= GEOM::MS_70 ) || 
2469                                ( mType == GEOM::MT_USER && mTextureId > 0 );
2470               // set point marker from geometry object (only once, if it is not yet set in GUI)
2471               if ( hasMarker && !storedMap.contains( GEOM::propertyName( GEOM::PointMarker ) ) ) {
2472                 if ( mType > GEOM::MT_NONE && mType < GEOM::MT_USER ) {
2473                   // standard type
2474                   propMap.insert( GEOM::propertyName( GEOM::PointMarker ),
2475                                   QString( "%1%2%3" ).arg( (int)mType ).arg( GEOM::subSectionSeparator() ).arg( (int)mSize ) );
2476                 }
2477                 else if ( mType == GEOM::MT_USER ) {
2478                   // custom texture
2479                   propMap.insert( GEOM::propertyName( GEOM::PointMarker ), QString::number( mTextureId ) );
2480                 }
2481               }
2482             }
2483           }
2484         }
2485       }
2486     }
2487   }
2488   return propMap;
2489 }
2490
2491 PropMap GEOM_Displayer::getDefaultPropertyMap()
2492 {
2493   PropMap propMap;
2494
2495   // get resource manager
2496   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
2497
2498   // fill in the properties map with default values
2499
2500   // - visibility (false by default)
2501   propMap.insert( GEOM::propertyName( GEOM::Visibility ), false );
2502
2503   // - nb isos (take default value from preferences)
2504   propMap.insert( GEOM::propertyName( GEOM::NbIsos ),
2505                   QString( "%1%2%3" ).
2506                   arg( resMgr->integerValue( "Geometry", "iso_number_u", 1 ) ).
2507                   arg( GEOM::subSectionSeparator() ).
2508                   arg( resMgr->integerValue( "Geometry", "iso_number_v", 1 ) ) );
2509
2510   // - transparency (opacity = 1-transparency)
2511   propMap.insert( GEOM::propertyName( GEOM::Transparency ),
2512                   resMgr->integerValue( "Geometry", "transparency", 0 ) / 100. );
2513
2514   // - display mode (take default value from preferences)
2515   propMap.insert( GEOM::propertyName( GEOM::DisplayMode ),
2516                   resMgr->integerValue( "Geometry", "display_mode", 0 ) );
2517
2518   // - show edges direction flag (false by default)
2519   propMap.insert( GEOM::propertyName( GEOM::EdgesDirection ), false );
2520
2521   // - show vertices flag (false by default)
2522   propMap.insert( GEOM::propertyName( GEOM::Vertices ), false );
2523
2524   // - shading color (take default value from preferences)
2525   propMap.insert( GEOM::propertyName( GEOM::ShadingColor ),
2526                   colorFromResources( "shading_color", QColor( 255, 255, 0 ) ) );
2527
2528   // - wireframe color (take default value from preferences)
2529   propMap.insert( GEOM::propertyName( GEOM::WireframeColor ),
2530                   colorFromResources( "wireframe_color", QColor( 255, 255, 0 ) ) );
2531
2532   // - standalone edges color (take default value from preferences)
2533   propMap.insert( GEOM::propertyName( GEOM::LineColor ),
2534                   colorFromResources( "line_color", QColor( 255, 0, 0 ) ) );
2535
2536   // - free boundaries color (take default value from preferences)
2537   propMap.insert( GEOM::propertyName( GEOM::FreeBndColor ),
2538                   colorFromResources( "free_bound_color", QColor( 0, 255, 0 ) ) );
2539
2540   // - points color (take default value from preferences)
2541   propMap.insert( GEOM::propertyName( GEOM::PointColor ),
2542                   colorFromResources( "point_color", QColor( 255, 255, 0 ) ) );
2543
2544   // - isos color (take default value from preferences)
2545   propMap.insert( GEOM::propertyName( GEOM::IsosColor ),
2546                   colorFromResources( "isos_color", QColor( 200, 200, 200 ) ) );
2547
2548   // - outlines color (take default value from preferences)
2549   propMap.insert( GEOM::propertyName( GEOM::OutlineColor ),
2550                   colorFromResources( "edges_in_shading_color", QColor( 180, 180, 180 ) ) );
2551
2552   // - deflection coefficient (take default value from preferences)
2553   propMap.insert( GEOM::propertyName( GEOM::Deflection ),
2554                   resMgr->doubleValue( "Geometry", "deflection_coeff", 0.001 ) );
2555
2556   // - material (take default value from preferences)
2557   Material_Model material;
2558   material.fromResources( resMgr->stringValue( "Geometry", "material", "Plastic" ) );
2559   propMap.insert( GEOM::propertyName( GEOM::Material ), material.toProperties() );
2560
2561   // - edge width (take default value from preferences)
2562   propMap.insert( GEOM::propertyName( GEOM::LineWidth ),
2563                   resMgr->integerValue( "Geometry", "edge_width", 1 ) );
2564
2565   // - isos width (take default value from preferences)
2566   propMap.insert( GEOM::propertyName( GEOM::IsosWidth ),
2567                   resMgr->integerValue( "Geometry", "isolines_width", 1 ) );
2568
2569   // - point marker (take default value from preferences)
2570   propMap.insert( GEOM::propertyName( GEOM::PointMarker ),
2571                   QString( "%1%2%3" ).
2572                   arg( resMgr->integerValue( "Geometry", "type_of_marker", 1 ) + 1 ).
2573                   arg( GEOM::subSectionSeparator() ).
2574                   arg( resMgr->integerValue( "Geometry", "marker_scale", 1 ) ) );
2575
2576   // - top-level flag (false by default)
2577   propMap.insert( GEOM::propertyName( GEOM::TopLevel ), false );
2578
2579   return propMap;
2580 }
2581
2582 SALOMEDS::Color GEOM_Displayer::getColor(GEOM::GEOM_Object_var theGeomObject, bool& hasColor) {
2583   SALOMEDS::Color aSColor;
2584   hasColor = false;
2585
2586   SUIT_Session* session = SUIT_Session::session();
2587   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
2588
2589   if ( app && !theGeomObject->_is_nil()) {
2590     SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
2591
2592     if ( study ) {
2593       _PTR(Study) aStudy = study->studyDS();
2594       aSColor = theGeomObject->GetColor();
2595       hasColor = aSColor.R >= 0 && aSColor.G >= 0 && aSColor.B >= 0;
2596       if ( !hasColor ) {
2597 #ifdef GENERAL_AUTOCOLOR // auto-color for all sub-shapes
2598         bool general_autocolor = true;
2599 #else                    // auto-color for groups only
2600         bool general_autocolor = false;
2601 #endif                   // GENERAL_AUTOCOLOR
2602         if ( general_autocolor || theGeomObject->GetType() == GEOM_GROUP ) {
2603           GEOM::GEOM_Object_var aMainObject = theGeomObject->GetMainShape();
2604           if ( !CORBA::is_nil( aMainObject ) && aMainObject->GetAutoColor() ) {
2605 #ifdef SIMPLE_AUTOCOLOR  // simplified algorithm for auto-colors
2606             aSColor = getPredefinedUniqueColor();
2607             hasColor = true;
2608 #else                    // old algorithm  for auto-colors
2609             QList<SALOMEDS::Color> aReservedColors;
2610             CORBA::String_var IOR = app->orb()->object_to_string( aMainObject );
2611             _PTR(SObject) aMainSObject( aStudy->FindObjectIOR( IOR.in() ) );
2612             if ( aMainSObject ) {
2613               _PTR(ChildIterator) it( aStudy->NewChildIterator( aMainSObject ) );
2614               for ( ; it->More(); it->Next() ) {
2615                 _PTR(SObject) aChildSObject( it->Value() );
2616                 GEOM::GEOM_Object_var aChildObject =
2617                   GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aChildSObject));
2618                 if ( CORBA::is_nil( aChildObject ) )
2619                   continue;
2620
2621                 SALOMEDS::Color aReservedColor = aChildObject->GetColor();
2622                 if ( aReservedColor.R >= 0 && aReservedColor.G >= 0 && aReservedColor.B >= 0 )
2623                   aReservedColors.append( aReservedColor );
2624               }
2625             }
2626             aSColor = getUniqueColor( aReservedColors );
2627             hasColor = true;
2628 #endif                   // SIMPLE_AUTOCOLOR
2629           }
2630         }
2631       }
2632     }
2633   }
2634   return aSColor;
2635 }
2636
2637
2638 void GEOM_Displayer::EraseWithChildren(const Handle(SALOME_InteractiveObject)& theIO,
2639                                        const bool eraseOnlyChildren) {
2640   SalomeApp_Application* app = dynamic_cast< SalomeApp_Application* >( SUIT_Session::session()->activeApplication() );
2641   if ( !app )
2642     return;
2643
2644   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
2645   if ( !appStudy )
2646     return;
2647
2648   LightApp_DataObject* parent = appStudy->findObjectByEntry(theIO->getEntry());
2649
2650   if( !parent)
2651     return;
2652
2653   // Erase from all views
2654   QList<SALOME_View*> views;
2655   SALOME_View* view;
2656   ViewManagerList vmans = app->viewManagers();
2657   SUIT_ViewManager* vman;
2658   foreach ( vman, vmans ) {
2659     SUIT_ViewModel* vmod = vman->getViewModel();
2660     view = dynamic_cast<SALOME_View*> ( vmod );
2661     if ( view )
2662       views.append( view );
2663   }
2664
2665   if( views.count() == 0 )
2666     return;
2667
2668   //Erase childrens w/o update views
2669   DataObjectList listObj = parent->children( true );
2670   SUIT_DataObject* obj;
2671   foreach( obj, listObj ) {
2672     LightApp_DataObject* l_obj = dynamic_cast<LightApp_DataObject*>(obj);
2673     if(l_obj)
2674       foreach ( view, views ) {
2675       Handle(SALOME_InteractiveObject) anIO =
2676         new SALOME_InteractiveObject(qPrintable(l_obj->entry()), "GEOM", "");
2677       Erase(anIO, false, false, view);
2678     }
2679   }
2680
2681   //Erase parent with view update or repaint views
2682   foreach ( view, views ) {
2683     if(!eraseOnlyChildren)
2684       Erase(theIO, false, true, view);
2685     else
2686       view->Repaint();
2687   }
2688 }
2689
2690 void GEOM_Displayer::readFieldStepInfo( GEOM::GEOM_FieldStep_var theGeomFieldStep )
2691 {
2692   if( theGeomFieldStep->_is_nil() )
2693     return;
2694
2695   GEOM::GEOM_Field_var aGeomField = theGeomFieldStep->GetField();
2696   if( aGeomField->_is_nil() )
2697     return;
2698
2699   GEOM::GEOM_Object_var aGeomFieldShape = aGeomField->GetShape();
2700   if( aGeomFieldShape->_is_nil() )
2701     return;
2702
2703   TCollection_AsciiString aFieldStepName( theGeomFieldStep->GetName() );
2704   TCollection_AsciiString aFieldName( aGeomField->GetName() );
2705   TCollection_AsciiString aShapeName( aGeomFieldShape->GetName() );
2706
2707   aFieldStepName = aShapeName + "\n" + aFieldName + "\n" + aFieldStepName;
2708
2709   GEOM::field_data_type aFieldDataType = aGeomField->GetDataType();
2710
2711   int aFieldDimension = aGeomField->GetDimension();
2712
2713   GEOM::string_array_var aFieldComponents = aGeomField->GetComponents();
2714   int aFieldNbComponents = aFieldComponents->length();
2715
2716   QList<QVariant> aFieldStepData;
2717   if( aFieldDataType == GEOM::FDT_Bool )
2718   {
2719     GEOM::GEOM_BoolFieldStep_var aGeomBoolFieldStep = GEOM::GEOM_BoolFieldStep::_narrow( theGeomFieldStep );
2720     if ( !aGeomBoolFieldStep->_is_nil() )
2721     {
2722       GEOM::short_array_var aValues = aGeomBoolFieldStep->GetValues();
2723       for( size_t i = 0, n = aValues->length(); i < n; i++ )
2724         aFieldStepData << (bool)aValues[i];
2725     }
2726   }
2727   else if( aFieldDataType == GEOM::FDT_Int )
2728   {
2729     GEOM::GEOM_IntFieldStep_var aGeomIntFieldStep = GEOM::GEOM_IntFieldStep::_narrow( theGeomFieldStep );
2730     if ( !aGeomIntFieldStep->_is_nil() )
2731     {
2732       GEOM::ListOfLong_var aValues = aGeomIntFieldStep->GetValues();
2733       for( size_t i = 0, n = aValues->length(); i < n; i++ )
2734         aFieldStepData << (qlonglong)aValues[i];
2735     }
2736   }
2737   else if( aFieldDataType == GEOM::FDT_Double )
2738   {
2739     GEOM::GEOM_DoubleFieldStep_var aGeomDoubleFieldStep = GEOM::GEOM_DoubleFieldStep::_narrow( theGeomFieldStep );
2740     if ( !aGeomDoubleFieldStep->_is_nil() )
2741     {
2742       GEOM::ListOfDouble_var aValues = aGeomDoubleFieldStep->GetValues();
2743       for( size_t i = 0, n = aValues->length(); i < n; i++ )
2744         aFieldStepData << (double)aValues[i];
2745     }
2746   }
2747   else if( aFieldDataType == GEOM::FDT_String )
2748   {
2749     GEOM::GEOM_StringFieldStep_var aGeomStringFieldStep = GEOM::GEOM_StringFieldStep::_narrow( theGeomFieldStep );
2750     if ( !aGeomStringFieldStep->_is_nil() )
2751     {
2752       GEOM::string_array_var aValues = aGeomStringFieldStep->GetValues();
2753       for( size_t i = 0, n = aValues->length(); i < n; i++ )
2754         aFieldStepData << QString( aValues[i] );
2755     }
2756   }
2757
2758   double aFieldStepRangeMin = 0, aFieldStepRangeMax = 0;
2759   aFieldStepData = groupFieldData( aFieldStepData,
2760                                    aFieldNbComponents,
2761                                    aFieldDataType == GEOM::FDT_String,
2762                                    aFieldStepRangeMin,
2763                                    aFieldStepRangeMax );
2764
2765   setFieldStepInfo( aFieldDataType,
2766                     aFieldDimension,
2767                     aFieldStepData,
2768                     aFieldStepName,
2769                     aFieldStepRangeMin,
2770                     aFieldStepRangeMax );
2771 }
2772
2773 QList<QVariant> GEOM_Displayer::groupFieldData( const QList<QVariant>& theFieldStepData,
2774                                                 const int theFieldNbComponents,
2775                                                 const bool theIsString,
2776                                                 double& theFieldStepRangeMin,
2777                                                 double& theFieldStepRangeMax )
2778 {
2779   QList<QVariant> aResultList;
2780   theFieldStepRangeMin = 0;
2781   theFieldStepRangeMax = 0;
2782
2783   if( theFieldStepData.isEmpty() || theFieldNbComponents < 1 )
2784     return aResultList;
2785
2786   int aNbSubShapes = theFieldStepData.count() / theFieldNbComponents;
2787
2788   QList<QVariant> aGroupedList;
2789
2790   bool anIsBoolean = false;
2791   for( int aSubShape = 0; aSubShape < aNbSubShapes; aSubShape++ )
2792   {
2793     double aNorm = 0;
2794     QStringList aStringList;
2795
2796     int aBaseIndex = aSubShape * theFieldNbComponents;
2797     for( int aComponent = 0; aComponent < theFieldNbComponents; aComponent++ )
2798     {
2799       int anIndex = aComponent + aBaseIndex;
2800
2801       const QVariant& aVariant = theFieldStepData[ anIndex ];
2802       if( theIsString )
2803       {
2804         if( aVariant.type() == QVariant::String )
2805           aStringList << aVariant.toString();
2806       }
2807       else
2808       {
2809         double aValue = 0;
2810         if( aVariant.type() == QVariant::Bool )
2811         {
2812           aValue = aVariant.toBool() ? 1.0 : 0.0;
2813           aNorm += aValue;
2814           anIsBoolean = true;
2815         }
2816         else
2817         {
2818           if( aVariant.type() == QVariant::LongLong )
2819             aValue = double( aVariant.toLongLong() );
2820           else if( aVariant.type() == QVariant::Double )
2821             aValue = aVariant.toDouble();
2822           aNorm += aValue * aValue;
2823         }
2824       }
2825     }
2826
2827     if( theIsString )
2828       aGroupedList << aStringList.join( "\n" );
2829     else
2830     {
2831       if( anIsBoolean )
2832         aNorm /= theFieldNbComponents;
2833       else
2834         aNorm = pow( aNorm, 0.5 );
2835
2836       if( aGroupedList.isEmpty() )
2837         theFieldStepRangeMin = theFieldStepRangeMax = aNorm;
2838       else
2839       {
2840         theFieldStepRangeMin = Min( theFieldStepRangeMin, aNorm );
2841         theFieldStepRangeMax = Max( theFieldStepRangeMax, aNorm );
2842       }
2843
2844       aGroupedList << aNorm;
2845     }
2846   }
2847
2848   if( anIsBoolean )
2849   {
2850     theFieldStepRangeMin = 0.0;
2851     theFieldStepRangeMax = 1.0;
2852   }
2853
2854   SUIT_Session* session = SUIT_Session::session();
2855   SUIT_ResourceMgr* resMgr = session->resourceMgr();
2856   Standard_Integer aNbIntervals = resMgr->integerValue( "Geometry", "scalar_bar_nb_intervals", 20 );
2857
2858   QListIterator<QVariant> anIter( aGroupedList );
2859   while( anIter.hasNext() )
2860   {
2861     const QVariant& aVariant = anIter.next();
2862     if( theIsString )
2863       aResultList << aVariant;
2864     else
2865     {
2866       QColor aQColor;
2867       Quantity_Color aColor;
2868       if( FindColor( aVariant.toDouble(), theFieldStepRangeMin, theFieldStepRangeMax, anIsBoolean ? 2 : aNbIntervals, aColor ) )
2869         aQColor = QColor::fromRgbF( aColor.Red(), aColor.Green(), aColor.Blue() );
2870       aResultList << aQColor;
2871     }
2872   }
2873   return aResultList;
2874 }
2875
2876 // Note: the method is copied from Aspect_ColorScale class
2877 Standard_Integer GEOM_Displayer::HueFromValue( const Standard_Integer aValue,
2878                                                const Standard_Integer aMin,
2879                                                const Standard_Integer aMax )
2880 {
2881   Standard_Integer minLimit( 0 ), maxLimit( 230 );
2882
2883   Standard_Integer aHue = maxLimit;
2884   if ( aMin != aMax )
2885     aHue = (Standard_Integer)( maxLimit - ( maxLimit - minLimit ) * ( aValue - aMin ) / ( aMax - aMin ) );
2886
2887   aHue = Min( Max( minLimit, aHue ), maxLimit );
2888
2889   return aHue;
2890 }
2891
2892 // Note: the method is copied from Aspect_ColorScale class
2893 Standard_Boolean GEOM_Displayer::FindColor( const Standard_Real aValue, 
2894                                             const Standard_Real aMin,
2895                                             const Standard_Real aMax,
2896                                             const Standard_Integer ColorsCount,
2897                                             Quantity_Color& aColor )
2898 {
2899   if( aValue<aMin || aValue>aMax || aMax<aMin )
2900     return Standard_False;
2901
2902   else
2903   {
2904     Standard_Real IntervNumber = 0;
2905     if( aValue<aMin )
2906       IntervNumber = 0;
2907     else if( aValue>aMax )
2908       IntervNumber = ColorsCount-1;
2909     else if( Abs( aMax-aMin ) > Precision::Approximation() )
2910       IntervNumber = Floor( Standard_Real( ColorsCount ) * ( aValue - aMin ) / ( aMax - aMin ) ); // 'Ceiling' replaced with 'Floor'
2911
2912     Standard_Integer Interv = Standard_Integer( IntervNumber );
2913
2914     aColor = Quantity_Color( HueFromValue( Interv, 0, ColorsCount - 1 ), 1.0, 1.0, Quantity_TOC_HLS );
2915
2916     return Standard_True;
2917   } 
2918 }
2919
2920 void GEOM_Displayer::UpdateColorScale( const bool theIsRedisplayFieldSteps, const bool updateViewer ) 
2921 {
2922   SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
2923   if( !aStudy )
2924     return;
2925
2926   SOCC_Viewer* aViewModel = dynamic_cast<SOCC_Viewer*>( GetActiveView() );
2927   if( !aViewModel )
2928     return;
2929
2930   Handle(V3d_Viewer) aViewer = aViewModel->getViewer3d();
2931   if( aViewer.IsNull() )
2932     return;
2933
2934   aViewer->InitActiveViews();
2935   if( !aViewer->MoreActiveViews() )
2936     return;
2937
2938   Handle(V3d_View) aView = aViewer->ActiveView();
2939   if( aView.IsNull() )
2940     return;
2941
2942   Standard_Boolean anIsDisplayColorScale = Standard_False;
2943   TCollection_AsciiString aColorScaleTitle;
2944   Standard_Real aColorScaleMin = 0, aColorScaleMax = 0;
2945   Standard_Boolean anIsBoolean = Standard_False;
2946
2947   SALOME_ListIO aSelectedObjects;
2948   myApp->selectionMgr()->selectedObjects( aSelectedObjects );
2949   if( aSelectedObjects.Extent() == 1 )
2950   {
2951     Handle(SALOME_InteractiveObject) anIO = aSelectedObjects.First();
2952     if( !anIO.IsNull() )
2953     {
2954       SOCC_Prs* aPrs = dynamic_cast<SOCC_Prs*>( aViewModel->CreatePrs( anIO->getEntry() ) );
2955       if( aPrs )
2956       {
2957         AIS_ListOfInteractive aList;
2958         aPrs->GetObjects( aList );
2959         AIS_ListIteratorOfListOfInteractive anIter( aList );
2960         for( ; anIter.More(); anIter.Next() )
2961         {
2962           Handle(GEOM_AISShape) aShape = Handle(GEOM_AISShape)::DownCast( anIter.Value() );
2963           if( !aShape.IsNull() )
2964           {
2965             GEOM::field_data_type aFieldDataType;
2966             int aFieldDimension;
2967             QList<QVariant> aFieldStepData;
2968             TCollection_AsciiString aFieldStepName;
2969             double aFieldStepRangeMin, aFieldStepRangeMax;
2970             aShape->getFieldStepInfo( aFieldDataType,
2971                                       aFieldDimension,
2972                                       aFieldStepData,
2973                                       aFieldStepName,
2974                                       aFieldStepRangeMin,
2975                                       aFieldStepRangeMax );
2976             if( !aFieldStepData.isEmpty() && aFieldDataType != GEOM::FDT_String )
2977             {
2978               anIsDisplayColorScale = Standard_True;
2979               aColorScaleTitle = aFieldStepName;
2980               aColorScaleMin = aFieldStepRangeMin;
2981               aColorScaleMax = aFieldStepRangeMax;
2982               anIsBoolean = aFieldDataType == GEOM::FDT_Bool;
2983             }
2984           }
2985         }
2986       }
2987     }
2988   }
2989
2990   if( anIsDisplayColorScale )
2991   {
2992     Handle(Aspect_ColorScale) aColorScale = aView->ColorScale();
2993     if( !aColorScale.IsNull() )
2994     {
2995       SUIT_Session* session = SUIT_Session::session();
2996       SUIT_ResourceMgr* resMgr = session->resourceMgr();
2997
2998       Standard_Real anXPos = resMgr->doubleValue( "Geometry", "scalar_bar_x_position", 0.05 );
2999       Standard_Real anYPos = resMgr->doubleValue( "Geometry", "scalar_bar_y_position", 0.1 );
3000       Standard_Real aWidth = resMgr->doubleValue( "Geometry", "scalar_bar_width", 0.2 );
3001       Standard_Real aHeight = resMgr->doubleValue( "Geometry", "scalar_bar_height", 0.5 );
3002       Standard_Integer aTextHeight = resMgr->integerValue( "Geometry", "scalar_bar_text_height", 14 );
3003       Standard_Integer aNbIntervals = resMgr->integerValue( "Geometry", "scalar_bar_nb_intervals", 20 );
3004  
3005       aColorScale->SetXPosition( anXPos );
3006       aColorScale->SetYPosition( anYPos );
3007       aColorScale->SetWidth( aWidth );
3008       aColorScale->SetHeight( aHeight );
3009
3010       aColorScale->SetTextHeight( aTextHeight );
3011       aColorScale->SetNumberOfIntervals( anIsBoolean ? 2 : aNbIntervals );
3012
3013       aColorScale->SetTitle( aColorScaleTitle );
3014       aColorScale->SetRange( aColorScaleMin, aColorScaleMax );
3015     }
3016     if( !aView->ColorScaleIsDisplayed() )
3017       aView->ColorScaleDisplay();
3018   }
3019   else
3020   {
3021     if( aView->ColorScaleIsDisplayed() )
3022       aView->ColorScaleErase();
3023   }
3024
3025   if( theIsRedisplayFieldSteps )
3026   {
3027     _PTR(Study) aStudyDS = aStudy->studyDS();
3028     QList<SUIT_ViewManager*> vmList;
3029     myApp->viewManagers( vmList );
3030     for( QList<SUIT_ViewManager*>::Iterator vmIt = vmList.begin(); vmIt != vmList.end(); vmIt++ )
3031     {
3032       if( SUIT_ViewManager* aViewManager = *vmIt )
3033       {
3034         const ObjMap& anObjects = aStudy->getObjectProperties( aViewManager->getGlobalId() );
3035         for( ObjMap::ConstIterator objIt = anObjects.begin(); objIt != anObjects.end(); objIt++ )
3036         {
3037           _PTR(SObject) aSObj( aStudyDS->FindObjectID( objIt.key().toLatin1().constData() ) );
3038           if( aSObj )
3039           {
3040             CORBA::Object_var anObject = GeometryGUI::ClientSObjectToObject( aSObj );
3041             if( !CORBA::is_nil( anObject ) )
3042             {
3043               GEOM::GEOM_FieldStep_var aFieldStep = GEOM::GEOM_FieldStep::_narrow( anObject );
3044               if( !aFieldStep->_is_nil() )
3045               {
3046                 CORBA::String_var aStepEntry = aFieldStep->GetStudyEntry();
3047                 Handle(SALOME_InteractiveObject) aStepIO =
3048                   new SALOME_InteractiveObject( aStepEntry.in(), "GEOM", "TEMP_IO" );
3049                 Redisplay( aStepIO, false, false );
3050               }
3051             }
3052           }
3053         }
3054       }
3055     }
3056   }
3057   if(updateViewer)
3058     UpdateViewer();
3059 }