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