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