Salome HOME
69e82d6a73238fde9c711d73b566f5d76caeb97a
[modules/geom.git] / src / GEOMGUI / GEOM_Displayer.cxx
1 //  Copyright (C) 2007-2010  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.
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
29 #include "GeometryGUI.h"
30
31 #include <GEOM_TypeFilter.h>
32 #include <GEOM_EdgeFilter.h>
33 #include <GEOM_FaceFilter.h>
34 #include <GEOM_CompoundFilter.h>
35 #include <GEOM_PreviewFilter.h>
36 #include <GEOM_LogicalFilter.h>
37 #include <GEOM_OCCFilter.h>
38
39 #include <GEOM_Actor.h>
40 #include <GEOM_AssemblyBuilder.h>
41 #include <GEOM_AISShape.hxx>
42 #include <GEOM_AISVector.hxx>
43 #include <GEOM_AISTrihedron.hxx>
44 #include <GEOM_VTKTrihedron.hxx>
45
46 #include <SUIT_Desktop.h>
47 #include <SUIT_ViewWindow.h>
48 #include <SUIT_Session.h>
49 #include <SUIT_ViewManager.h>
50 #include <SUIT_ResourceMgr.h>
51
52 #include <SalomeApp_Study.h>
53 #include <SalomeApp_Application.h>
54 #include <LightApp_SelectionMgr.h>
55 #include <SalomeApp_TypeFilter.h>
56 #include <SalomeApp_Tools.h>
57
58 #include <SALOME_ListIteratorOfListIO.hxx>
59 #include <SALOME_ListIO.hxx>
60 #include <SALOME_Prs.h>
61
62 #include <SOCC_Prs.h>
63 #include <SOCC_ViewModel.h>
64
65 #include <SVTK_Prs.h>
66 #include <SVTK_ViewModel.h>
67
68 // OCCT Includes
69 #include <AIS_Drawer.hxx>
70 #include <AIS_ListIteratorOfListOfInteractive.hxx>
71 #include <Prs3d_IsoAspect.hxx>
72 #include <Prs3d_PointAspect.hxx>
73 #include <StdSelect_TypeOfEdge.hxx>
74 #include <StdSelect_TypeOfFace.hxx>
75 #include <TopoDS_Face.hxx>
76 #include <BRep_Tool.hxx>
77 #include <Geom_Plane.hxx>
78 #include <Geom_Axis2Placement.hxx>
79 #include <gp_Pln.hxx>
80 #include <TColStd_MapOfInteger.hxx>
81 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
82 #include <TopoDS_Iterator.hxx>
83 #include <Graphic3d_AspectMarker3d.hxx>
84 #include <TopTools_MapOfShape.hxx>
85 #include <TopTools_ListOfShape.hxx>
86 #include <TopTools_ListIteratorOfListOfShape.hxx>
87
88 // VTK Includes
89 #include <vtkActorCollection.h>
90 #include <vtkProperty.h>
91
92 // CORBA Headers
93 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
94
95 #include <GEOMImpl_Types.hxx>
96 #include <Graphic3d_HArray1OfBytes.hxx>
97
98
99 //================================================================
100 // Function : getActiveStudy
101 // Purpose  : Get active study, returns 0 if no open study frame
102 //================================================================
103 static inline SalomeApp_Study* getActiveStudy()
104 {
105   SUIT_Session* session = SUIT_Session::session();
106   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
107   if ( app )
108     return ( SalomeApp_Study* )app->activeStudy();
109   return 0;
110 }
111
112 static inline int getViewManagerId( SALOME_View* theViewFrame) {
113   SUIT_ViewModel* aModel = dynamic_cast<SUIT_ViewModel*>(theViewFrame);
114   SUIT_ViewManager* aViewMgr = 0;
115   if(aModel != 0) 
116     aViewMgr = aModel->getViewManager();
117   return ((aViewMgr == 0) ? -1 :aViewMgr->getGlobalId());
118 }
119
120 //================================================================
121 // Function : getTopAbsMode
122 // Purpose  : Get TopAbs_ShapeEnum value corresponding to the
123 //            one from GEOMImpl_Types.h
124 //================================================================
125 static inline int getTopAbsMode( const int implType )
126 {
127   switch ( implType )
128   {
129     case GEOM_COMPOUND  : return TopAbs_COMPOUND;
130     case GEOM_SOLID     : return TopAbs_SOLID;
131     case GEOM_SHELL     : return TopAbs_SHELL;
132     case GEOM_FACE      : return TopAbs_FACE;
133     case GEOM_WIRE      : return TopAbs_WIRE;
134     case GEOM_EDGE      : return TopAbs_EDGE;
135     case GEOM_POINT     : return TopAbs_VERTEX;
136     default             : return -1;
137   }
138 }
139
140 static int getMinMaxShapeType( const TopoDS_Shape& shape, bool ismin )
141 {
142   if ( shape.IsNull() )
143     return TopAbs_SHAPE;
144
145   int ret = shape.ShapeType();
146
147   if ( shape.ShapeType() == TopAbs_COMPOUND || shape.ShapeType() == TopAbs_COMPSOLID ) {
148     TopoDS_Iterator it(shape, Standard_True, Standard_False);
149     for (; it.More(); it.Next()) {
150       TopoDS_Shape sub_shape = it.Value();
151       if ( sub_shape.IsNull() ) continue;
152       int stype = getMinMaxShapeType( sub_shape, ismin );
153       if ( stype == TopAbs_SHAPE ) continue;
154       if ( ismin && stype > ret )
155         ret = stype;
156       else if ( !ismin && ( ret < TopAbs_SOLID || stype < ret ) )
157         ret = stype;
158     }
159   }
160
161   return ret;
162 }
163
164 static bool isCompoundOfVertices( const TopoDS_Shape& theShape )
165 {
166   return theShape.ShapeType() == TopAbs_COMPOUND && getMinMaxShapeType( theShape, false ) == TopAbs_VERTEX;
167 }
168
169 //================================================================
170 // Function : getFilter
171 // Purpose  : Get filter corresponding to the type of object
172 //            from GEOMImpl_Types.h
173 //================================================================
174 SUIT_SelectionFilter* GEOM_Displayer::getFilter( const int theMode )
175 {
176   SUIT_SelectionFilter* aFilter;
177
178   int aTopAbsMode = getTopAbsMode( theMode );
179   if ( aTopAbsMode != -1 )
180     aFilter = new GEOM_TypeFilter( getStudy(), aTopAbsMode, true ); //@ aFilter = new GEOM_TypeFilter( ( TopAbs_ShapeEnum )aTopAbsMode );
181   else
182     switch ( theMode )
183       {
184       case GEOM_LINE      : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Line ); break;
185       case GEOM_CIRCLE    : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Circle ); break;
186
187       case GEOM_PLANE     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Plane ); break;
188       case GEOM_CYLINDER  : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cylinder ); break;
189       case GEOM_SPHERE    : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Sphere ); break;
190       case GEOM_TORUS     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Torus ); break;
191       case GEOM_REVOLUTION: aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Revol ); break;
192       case GEOM_CONE      : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cone ); break;
193
194       case GEOM_PREVIEW   : aFilter = new GEOM_PreviewFilter( getStudy() ); break;
195
196       case GEOM_ALLSHAPES : aFilter = new GEOM_SelectionFilter(getStudy(), true ); break;
197       case GEOM_ALLGEOM   : aFilter = new SalomeApp_TypeFilter( getStudy(), "GEOM" ); break;
198
199       default             : aFilter = new GEOM_TypeFilter( getStudy(), theMode ); break;
200       }
201
202   return aFilter;
203 }
204
205 //================================================================
206 // Function : getComplexFilter
207 // Purpose  : Get compound filter corresponding to the type of 
208 //            object from GEOMImpl_Types.h
209 //================================================================
210 SUIT_SelectionFilter* GEOM_Displayer::getComplexFilter( const QList<int>* aSubShapes)
211 {
212   GEOM_CompoundFilter* aFilter;
213   
214   if(aSubShapes != NULL ) {
215     aFilter = new GEOM_CompoundFilter(getStudy());
216     QList<int> aTopAbsTypes;
217     QList<int>::const_iterator it;
218     for(it = aSubShapes->constBegin(); it != aSubShapes->constEnd(); ++it ) {
219       int topAbsMode = getTopAbsMode(*it);
220       if(topAbsMode != -1 )
221         aTopAbsTypes.append(topAbsMode);
222     }
223     aFilter->addSubTypes(aTopAbsTypes);
224   }
225   
226   return aFilter;
227 }
228
229 //================================================================
230 // Function : getEntry
231 // Purpose  :
232 //================================================================
233 static std::string getEntry( GEOM::GEOM_Object_ptr object )
234 {
235   SUIT_Session* session = SUIT_Session::session();
236   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
237   if ( app )
238   {
239     CORBA::String_var IOR = app->orb()->object_to_string( object );
240     if ( strcmp(IOR.in(), "") != 0 )
241     {
242       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
243       _PTR(SObject) SO ( study->studyDS()->FindObjectIOR( std::string(IOR) ) );
244       if ( SO )
245         return SO->GetID();
246     }
247   }
248   return "";
249 }
250
251 //================================================================
252 // Function : getName
253 // Purpose  :
254 //================================================================
255 static std::string getName( GEOM::GEOM_Object_ptr object )
256 {
257   SUIT_Session* session = SUIT_Session::session();
258   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
259   if ( app )
260   {
261     CORBA::String_var IOR = app->orb()->object_to_string( object );
262     if ( strcmp(IOR.in(), "") != 0 )
263     {
264       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
265       _PTR(SObject) aSObj ( study->studyDS()->FindObjectIOR( std::string(IOR) ) );
266
267       _PTR(GenericAttribute) anAttr;
268
269       if ( aSObj && aSObj->FindAttribute( anAttr, "AttributeName") )
270       {
271         _PTR(AttributeName) aNameAttr( anAttr );
272         return aNameAttr->Value();
273       }
274     }
275   }
276
277   return "";
278 }
279
280 //=================================================================
281 /*!
282  *  GEOM_Displayer::GEOM_Displayer
283  *  Constructor
284  */
285 //=================================================================
286 GEOM_Displayer::GEOM_Displayer( SalomeApp_Study* st )
287 {
288   if( st )
289     myApp = dynamic_cast<SalomeApp_Application*>( st->application() );
290   else
291     myApp = 0;
292
293   /* Shading Color */
294   SUIT_Session* session = SUIT_Session::session();
295   SUIT_ResourceMgr* resMgr = session->resourceMgr();
296
297   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
298   myShadingColor = SalomeApp_Tools::color( col );
299
300   myDisplayMode = resMgr->integerValue("Geometry", "display_mode", 0);
301   int aType = resMgr->integerValue("Geometry", "type_of_marker", (int)Aspect_TOM_PLUS);
302   myTypeOfMarker = (Aspect_TypeOfMarker)(std::min((int)Aspect_TOM_RING3, std::max((int)Aspect_TOM_POINT, aType)));
303   myScaleOfMarker = (resMgr->integerValue("Geometry", "marker_scale", 1)-(int)GEOM::MS_10)*0.5 + 1.0;
304   myScaleOfMarker = std::min(7.0, std::max(1., myScaleOfMarker));
305
306   myColor = -1;
307   // This color is used for shape displaying. If it is equal -1 then
308   // default color is used.
309
310   myWidth = -1;
311   myType = -1;
312
313   myToActivate = true;
314   // This parameter is used for activisation/deactivisation of objects to be displayed
315
316   myViewFrame = 0;
317 }
318
319 //=================================================================
320 /*!
321  *  GEOM_Displayer::~GEOM_Displayer
322  *  Destructor
323  */
324 //=================================================================
325 GEOM_Displayer::~GEOM_Displayer()
326 {
327 }
328
329 //=================================================================
330 /*!
331  *  GEOM_Displayer::Display
332  *  Display interactive object in the current viewer
333  */
334 //=================================================================
335 void GEOM_Displayer::Display( const Handle(SALOME_InteractiveObject)& theIO,
336                              const bool updateViewer,
337                              SALOME_View* theViewFrame )
338 {
339   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
340   if ( vf )
341   {
342     SALOME_Prs* prs = buildPresentation( theIO->getEntry(), vf );
343
344     if ( prs )
345     {
346       vf->BeforeDisplay( this );
347       vf->Display( prs );
348       vf->AfterDisplay( this );
349
350       if ( updateViewer )
351         vf->Repaint();
352
353       int aMgrId = getViewManagerId(vf);
354       SalomeApp_Study* aStudy = getStudy();
355       aStudy->setObjectProperty(aMgrId, theIO->getEntry(), VISIBILITY_PROP, 1 );
356
357
358       delete prs;  // delete presentation because displayer is its owner
359     }
360   }
361 }
362
363 //=================================================================
364 /*!
365  *  GEOM_Displayer::Display
366  *  This overloaded Display() method can be useful for operations
367  *  not using dialog boxes.
368  */
369 //=================================================================
370 void GEOM_Displayer::Display( GEOM::GEOM_Object_ptr theObj, const bool updateViewer )
371 {
372   if ( theObj->_is_nil() )
373     return;
374
375   std::string entry = getEntry( theObj );
376   if ( entry != "" ) {
377     Display(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
378             updateViewer);
379   }
380 }
381
382 //=================================================================
383 /*!
384  *  GEOM_Displayer::Erase
385  *  Erase interactive object in the current viewer
386  */
387 //=================================================================
388 void GEOM_Displayer::Erase( const Handle(SALOME_InteractiveObject)& theIO,
389                             const bool forced,
390                             const bool updateViewer,
391                             SALOME_View* theViewFrame )
392 {
393   if ( theIO.IsNull() )
394     return;
395
396   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
397
398   if ( vf ) {
399     SALOME_Prs* prs = vf->CreatePrs( theIO->getEntry() );
400     if ( prs ) {
401       vf->Erase( prs, forced );
402       if ( updateViewer )
403         vf->Repaint();
404       delete prs;  // delete presentation because displayer is its owner
405       
406       int aMgrId = getViewManagerId(vf);
407       SalomeApp_Study* aStudy = getStudy();
408       aStudy->setObjectProperty(aMgrId, theIO->getEntry(), VISIBILITY_PROP, 0 );
409     }
410   }
411 }
412
413 //=================================================================
414 /*!
415  *  GEOM_Displayer::Erase
416  *  Erase geometry object in the current viewer
417  */
418 //=================================================================
419 void GEOM_Displayer::Erase( GEOM::GEOM_Object_ptr theObj,
420                             const bool forced,
421                             const bool updateViewer )
422 {
423   std::string entry = getEntry( theObj );
424   if ( entry != "" )
425   {
426     Erase(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
427           forced, updateViewer);
428   }
429 }
430
431 //=================================================================
432 /*!
433  *  GEOM_Displayer::Redisplay
434  *  Redisplay (erase and then display again) interactive object
435  *  in the current viewer
436  */
437 //=================================================================
438 void GEOM_Displayer::Redisplay( const Handle(SALOME_InteractiveObject)& theIO,
439                                 const bool updateViewer )
440 {
441   // Remove the object permanently (<forced> == true)
442   SUIT_Session* ses = SUIT_Session::session();
443   SUIT_Application* app = ses->activeApplication();
444   if ( app )
445   {
446     SUIT_Desktop* desk = app->desktop();
447     QList<SUIT_ViewWindow*> wnds = desk->windows();
448     SUIT_ViewWindow* wnd;
449     QListIterator<SUIT_ViewWindow*> it( wnds );
450     while ( it.hasNext() && (wnd = it.next()) )
451     {
452       SUIT_ViewManager* vman = wnd->getViewManager();
453       if ( vman )
454       {
455         SUIT_ViewModel* vmodel = vman->getViewModel();
456         if ( vmodel )
457         {
458           SALOME_View* view = dynamic_cast<SALOME_View*>(vmodel);
459           if ( view )
460           {
461             if ( view->isVisible( theIO ) || view == GetActiveView() )
462             {
463               Erase( theIO, true, false, view );
464               Display( theIO, updateViewer, view );
465             }
466           }
467         }
468       }
469     }
470   }
471 }
472
473 //=================================================================
474 /*!
475  *  GEOM_Displayer::Display
476  *  Calls Display() method for each object in the given list
477  */
478 //=================================================================
479 void GEOM_Displayer::Display( const SALOME_ListIO& theIOList, const bool updateViewer )
480 {
481   SALOME_ListIteratorOfListIO Iter( theIOList );
482   for ( ; Iter.More(); Iter.Next() ) {
483     Display( Iter.Value(), false );
484   }
485   if ( updateViewer )
486     UpdateViewer();
487 }
488
489 //=================================================================
490 /*!
491  *  GEOM_Displayer::Erase
492  *  Calls Erase() method for each object in the given list
493  */
494 //=================================================================
495 void GEOM_Displayer::Erase( const SALOME_ListIO& theIOList,
496                             const bool forced,
497                             const bool updateViewer )
498 {
499   SALOME_ListIteratorOfListIO Iter( theIOList );
500   for ( ; Iter.More(); Iter.Next() )
501     Erase( Iter.Value(), forced, false );
502
503   if ( updateViewer )
504     UpdateViewer();
505 }
506
507 //=================================================================
508 /*!
509  *  GEOM_Displayer::Redisplay
510  *  Calls Redisplay() method for each object in the given list
511  */
512 //=================================================================
513 void GEOM_Displayer::Redisplay( const SALOME_ListIO& theIOList, const bool updateViewer )
514 {
515   SALOME_ListIteratorOfListIO Iter( theIOList );
516   for ( ; Iter.More(); Iter.Next() )
517     Redisplay( Iter.Value(), false );
518
519   if ( updateViewer )
520     UpdateViewer();
521 }
522
523 //=================================================================
524 /*!
525  *  GEOM_Displayer::Update
526  *  Update OCC presentaion
527  *  [ Reimplemented from SALOME_Displayer ]
528  */
529 //=================================================================
530 void GEOM_Displayer::Update( SALOME_OCCPrs* prs )
531 {
532   SOCC_Prs* occPrs = dynamic_cast<SOCC_Prs*>( prs );
533   if ( !occPrs )
534     return;
535   
536   if ( myType == GEOM_MARKER && !myShape.IsNull() && myShape.ShapeType() == TopAbs_FACE )
537   {
538     TopoDS_Face aFace = TopoDS::Face( myShape );
539     Handle(Geom_Plane) aPlane = Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( aFace ) );
540     if ( !aPlane.IsNull() )
541     {
542       gp_Ax3 aPos = aPlane->Pln().Position();
543       Handle(Geom_Axis2Placement) aPlc = new Geom_Axis2Placement( aPos.Ax2() );
544
545       Handle(GEOM_AISTrihedron) aTrh;
546
547       if ( occPrs->IsNull() )
548       {
549         aTrh = new GEOM_AISTrihedron( aPlc );
550
551         if ( HasColor() )
552           aTrh->SetColor( (Quantity_NameOfColor)GetColor() );
553
554         if ( HasWidth() )
555           aTrh->SetWidth( GetWidth() );
556
557         if ( !myIO.IsNull() )
558         {
559           aTrh->setIO( myIO );
560           aTrh->SetOwner( myIO );
561         }
562
563         occPrs->AddObject( aTrh );
564       }
565       else
566       {
567         AIS_ListOfInteractive aList;
568         occPrs->GetObjects( aList );
569         AIS_ListIteratorOfListOfInteractive anIter( aList );
570         for ( ; anIter.More(); anIter.Next() )
571         {
572           aTrh = Handle(GEOM_AISTrihedron)::DownCast( anIter.Value() );
573           if ( !aTrh.IsNull() )
574           {
575             aTrh->SetComponent( aPlc );
576             aTrh->SetToUpdate();
577           }
578         }
579       }
580
581       occPrs->SetToActivate( ToActivate() );
582     }
583   }
584   else
585   {
586     // if presentation is empty we try to create new one
587     if ( occPrs->IsNull() )
588     {
589       SalomeApp_Study* aStudy = getStudy();
590       if(!aStudy)
591         return;
592       if ( !myShape.IsNull() ) {
593
594         bool onlyVertex = (myShape.ShapeType() == TopAbs_VERTEX || isCompoundOfVertices( myShape ));
595
596         QString anEntry;
597         int aMgrId = -1;
598         if(!myIO.IsNull()) {
599           aMgrId = getViewManagerId(myViewFrame);
600           anEntry = myIO->getEntry();
601         }
602         bool useStudy = !anEntry.isEmpty() && aMgrId != -1;
603         bool useObjColor = false;
604         bool useObjMarker = false;
605         
606         PropMap aPropMap;
607         PropMap aDefPropMap;
608         
609         if(useStudy){
610           aPropMap = aStudy->getObjectPropMap(aMgrId,anEntry);
611           aDefPropMap = getDefaultPropepryMap(SOCC_Viewer::Type());
612           bool isDiff = MergePropertyMaps(aPropMap, aDefPropMap);
613                      
614           if(isDiff)
615             aStudy->setObjectPropMap(aMgrId,anEntry,aPropMap);
616         }
617
618         //Handle(GEOM_AISShape) AISShape = new GEOM_AISShape( myShape, "" );
619         Handle(GEOM_AISShape) AISShape;
620         if (myType == GEOM_VECTOR)
621           AISShape = new GEOM_AISVector (myShape, "");
622         else {
623           if (myShape.ShapeType() != TopAbs_VERTEX && // fix pb with not displayed points
624               !TopoDS_Iterator(myShape).More())
625             return;// NPAL15983 (Bug when displaying empty groups)
626           AISShape = new GEOM_AISShape (myShape, "");
627         }
628         // Temporary staff: vertex must be infinite for correct visualization
629         AISShape->SetInfiniteState( myShape.Infinite() ); // || myShape.ShapeType() == TopAbs_VERTEX // VSR: 05/04/2010: Fix 20668 (Fit All for points & lines)
630
631         // Setup shape properties here ..., e.g. display mode, color, transparency, etc
632         if(useStudy) {
633           AISShape->SetDisplayMode( aPropMap.value(DISPLAY_MODE_PROP).toInt() );
634           AISShape->SetDisplayVectors(aPropMap.value(VECTOR_MODE_PROP).toInt());
635
636           //Color property
637           if(aPropMap.contains(COLOR_PROP)) {
638             Quantity_Color  quant_col = SalomeApp_Tools::color( aPropMap.value(COLOR_PROP).value<QColor>());
639             AISShape->SetShadingColor( quant_col );
640           } else 
641             useObjColor = true;   
642         }else {
643           AISShape->SetDisplayMode( myDisplayMode );
644           AISShape->SetShadingColor( myShadingColor );
645         }
646         
647
648
649         // Set color and number for iso lines
650         SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
651         QColor col = aResMgr->colorValue( "Geometry", "isos_color",
652                                           QColor(int(0.5*255), int(0.5*255), int(0.5*255)) );
653         Quantity_Color aColor = SalomeApp_Tools::color( col );
654         
655         //get the ISOS number, set transparency if need
656         int anUIsoNumber, aVIsoNumber;
657         if(useStudy) {
658           QString anIsos = aPropMap.value(ISOS_PROP).toString();
659           QStringList uv =  anIsos.split(DIGIT_SEPARATOR);
660           anUIsoNumber = uv[0].toInt();
661           aVIsoNumber = uv[1].toInt();
662           AISShape->SetTransparency(aPropMap.value(TRANSPARENCY_PROP).toDouble());
663         } else {
664           anUIsoNumber = aResMgr->integerValue("OCCViewer", "iso_number_u", 1);
665           aVIsoNumber  = aResMgr->integerValue("OCCViewer", "iso_number_v", 1);
666         }
667
668         Handle(Prs3d_IsoAspect) anAspect = AISShape->Attributes()->UIsoAspect();
669         anAspect->SetNumber( anUIsoNumber );
670         anAspect->SetColor( aColor );
671         AISShape->Attributes()->SetUIsoAspect( anAspect );
672
673         anAspect = AISShape->Attributes()->VIsoAspect();
674         anAspect->SetNumber( aVIsoNumber );
675         anAspect->SetColor( aColor );
676         AISShape->Attributes()->SetVIsoAspect( anAspect );
677
678         if ( HasColor() )
679         {
680           AISShape->SetColor( (Quantity_NameOfColor)GetColor() );
681           if ( onlyVertex )
682           {
683             if(aPropMap.contains(MARKER_TYPE_PROP)) {
684               QStringList aList = aPropMap.value(MARKER_TYPE_PROP).toString().split(DIGIT_SEPARATOR);
685               if(aList.size() == 2) { //Standard marker string contains "TypeOfMarker:ScaleOfMarker"
686                 Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
687                 int  aTypeOfMarker = aList[0].toInt();
688                 double  aScaleOfMarker = aList[1].toDouble();
689                 anAspect->SetScale( aScaleOfMarker );
690                 anAspect->SetTypeOfMarker((Aspect_TypeOfMarker) (aTypeOfMarker-1) );
691                 anAspect->SetColor( (Quantity_NameOfColor)GetColor() );
692                 AISShape->Attributes()->SetPointAspect( anAspect );
693               } else { //Custom marker string contains "IdOfTexsture"
694                 int textureId = aList[0].toInt();
695                 Standard_Integer aWidth, aHeight;
696                 Handle(Graphic3d_HArray1OfBytes) aTexture = GeometryGUI::getTexture( aStudy, textureId, aWidth, aHeight );
697                 if ( !aTexture.IsNull() ) {
698                   static int TextureId = 0;
699                   Handle(Prs3d_PointAspect) aTextureAspect = new Prs3d_PointAspect((Quantity_NameOfColor)GetColor(),
700                                                                                    ++TextureId,
701                                                                                    aWidth, aHeight,                                                                                
702                                                                                    aTexture );
703                   AISShape->Attributes()->SetPointAspect( aTextureAspect );
704                   
705                 } else {
706                   useObjMarker = true;
707                 }
708               }
709             } else {
710               useObjMarker = true;
711             }       
712           }
713         }
714         else
715         {
716           if ( onlyVertex )
717           {
718             col = aResMgr->colorValue( "Geometry", "point_color", QColor( 255, 255, 0 ) );
719             aColor = SalomeApp_Tools::color( col );
720
721             if(aPropMap.contains(MARKER_TYPE_PROP)) {
722               QStringList aList = aPropMap.value(MARKER_TYPE_PROP).toString().split(DIGIT_SEPARATOR);
723               if(aList.size() == 2) { //Standard marker string contains "TypeOfMarker:ScaleOfMarker"
724                 int  aTypeOfMarker = aList[0].toInt();
725                 double  aScaleOfMarker = aList[1].toDouble();
726                 Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
727                 anAspect->SetScale( aScaleOfMarker );
728                 anAspect->SetTypeOfMarker((Aspect_TypeOfMarker) (aTypeOfMarker-1) );
729                 anAspect->SetColor( aColor );
730                 AISShape->Attributes()->SetPointAspect( anAspect );
731               } else { //Custom marker string contains "IdOfTexsture"
732                 int textureId = aList[0].toInt();
733                 Standard_Integer aWidth, aHeight;
734                 Handle(Graphic3d_HArray1OfBytes) aTexture = GeometryGUI::getTexture( aStudy, textureId, aWidth, aHeight );
735                 if ( !aTexture.IsNull() ) {
736                   static int TextureId = 0;
737                   Handle(Prs3d_PointAspect) aTextureAspect = new Prs3d_PointAspect(aColor,
738                                                                                    ++TextureId,
739                                                                                    aWidth, aHeight,                                                                                
740                                                                                    aTexture );
741                   AISShape->Attributes()->SetPointAspect( aTextureAspect );
742                   
743                 } else {
744                   useObjMarker = true;
745                 }
746               }
747             } else {
748               useObjMarker = true;
749             }       
750           }
751           else
752           {
753             // Set line aspect
754             col = aResMgr->colorValue( "Geometry", "wireframe_color", QColor( 255, 255, 0 ) );
755             aColor = SalomeApp_Tools::color( col );
756             
757             Handle(Prs3d_LineAspect) anAspect = AISShape->Attributes()->LineAspect();
758             anAspect->SetColor( aColor );
759             AISShape->Attributes()->SetLineAspect( anAspect );
760             
761             // Set unfree boundaries aspect
762             anAspect = AISShape->Attributes()->UnFreeBoundaryAspect();
763             anAspect->SetColor( aColor );
764             AISShape->Attributes()->SetUnFreeBoundaryAspect( anAspect );
765             
766             // Set free boundaries aspect
767             col = aResMgr->colorValue( "Geometry", "free_bound_color", QColor( 0, 255, 0 ) );
768             aColor = SalomeApp_Tools::color( col );
769             
770             anAspect = AISShape->Attributes()->FreeBoundaryAspect();
771             anAspect->SetColor( aColor );
772             AISShape->Attributes()->SetFreeBoundaryAspect( anAspect );
773             
774             // Set wire aspect
775             col = aResMgr->colorValue( "Geometry", "line_color", QColor( 255, 0, 0 ) );
776             aColor = SalomeApp_Tools::color( col );
777             
778             anAspect = AISShape->Attributes()->WireAspect();
779             anAspect->SetColor( aColor );
780             AISShape->Attributes()->SetWireAspect( anAspect );
781             
782             // bug [SALOME platform 0019868]
783             // Set deviation angle. Default one is 12 degrees (Prs3d_Drawer.cxx:18)
784             //AISShape->SetOwnDeviationAngle( 10*PI/180 );
785
786             // IMP 0020626
787             double aDC = 0;
788             if(useStudy) {
789               aDC = aPropMap.value(DEFLECTION_COEFF_PROP).toDouble();
790             }
791             else {
792               aDC = aResMgr->doubleValue("Geometry", "deflection_coeff", 0.001);
793             }
794
795             aDC = std::max( aDC, DEFLECTION_MIN ); // to avoid to small values of the coefficient
796             AISShape->SetOwnDeviationCoefficient(aDC);
797           }
798         }
799
800         if ( HasWidth() )
801           AISShape->SetWidth( GetWidth() );
802
803         if ( !myIO.IsNull() )
804         {
805           AISShape->setIO( myIO );
806           AISShape->SetOwner( myIO );
807         }
808         else if ( !myName.empty() )
809         {
810           // Workaround to allow selection of temporary objects
811           static int tempId = 0;
812           char buf[50];
813           sprintf( buf, "TEMP_%d", tempId++ );
814           Handle( SALOME_InteractiveObject ) anObj =
815             new SALOME_InteractiveObject( buf, "GEOM", myName.c_str() );
816           AISShape->setIO( anObj );
817           AISShape->SetOwner( anObj );
818         }
819
820         Handle( SALOME_InteractiveObject ) anIO = AISShape->getIO();
821         if ( !anIO.IsNull() ) {
822           _PTR(SObject) SO ( aStudy->studyDS()->FindObjectID( anIO->getEntry() ) );
823           if ( SO ) {
824             // get CORBA reference to data object
825             CORBA::Object_var object = GeometryGUI::ClientSObjectToObject(SO);
826             if ( !CORBA::is_nil( object ) ) {
827               // downcast to GEOM object
828               GEOM::GEOM_Object_var aGeomObject = GEOM::GEOM_Object::_narrow( object );
829               bool hasColor = false;
830               SALOMEDS::Color aSColor = getColor(aGeomObject,hasColor);
831               if( hasColor && useObjColor) {
832                 Quantity_Color aQuanColor( aSColor.R, aSColor.G, aSColor.B, Quantity_TOC_RGB );
833                 AISShape->SetColor( aQuanColor );
834                 AISShape->SetShadingColor( aQuanColor );
835                 if ( onlyVertex ) {
836                   Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
837                   anAspect->SetColor( aQuanColor );
838                   anAspect->SetScale( myScaleOfMarker );
839                   anAspect->SetTypeOfMarker( myTypeOfMarker );
840                   AISShape->Attributes()->SetPointAspect( anAspect );
841                 }
842               } else if(!hasColor) {
843                 //In case if color wasn't defined in the property map of the object 
844                 //and GEOM_Object color also wasn't defined get default color from Resource Mgr.
845                 QColor col = aResMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
846                 Quantity_Color aQuanColor = SalomeApp_Tools::color( col );
847                 AISShape->SetShadingColor( aQuanColor );
848                 aStudy->setObjectProperty( aMgrId, anIO->getEntry(), COLOR_PROP, col );
849               }
850
851               // ... marker type
852               if(useObjMarker) {
853                 GEOM::marker_type aType = aGeomObject->GetMarkerType();
854                 GEOM::marker_size aSize = aGeomObject->GetMarkerSize();
855                 if ( aType > GEOM::MT_NONE && aType < GEOM::MT_USER && aSize > GEOM::MS_NONE && aSize <= GEOM::MS_70 ) {
856                   Aspect_TypeOfMarker aMType = (Aspect_TypeOfMarker)( (int)aType-1 );
857                   double aMSize = ((int)aSize+1)*0.5;
858                   Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
859                   anAspect->SetScale( aMSize );
860                   anAspect->SetTypeOfMarker( aMType );
861                   Quantity_Color aQuanColor = SalomeApp_Tools::color( aResMgr->colorValue( "Geometry", "point_color", QColor( 255, 255, 0 ) ) );
862                   if ( hasColor )
863                     aQuanColor = Quantity_Color( aSColor.R, aSColor.G, aSColor.B, Quantity_TOC_RGB );
864                   anAspect->SetColor( aQuanColor );
865                   AISShape->Attributes()->SetPointAspect( anAspect );
866                 }
867                 else if ( aType == GEOM::MT_USER ) {
868                   int aTextureId = aGeomObject->GetMarkerTexture();
869                   Quantity_Color aQuanColor = SalomeApp_Tools::color( aResMgr->colorValue( "Geometry", "point_color", QColor( 255, 255, 0 ) ) );
870                   if ( hasColor ) aQuanColor = Quantity_Color( aSColor.R, aSColor.G, aSColor.B, Quantity_TOC_RGB );
871                   Standard_Integer aWidth, aHeight;
872                   Handle(Graphic3d_HArray1OfBytes) aTexture = GeometryGUI::getTexture( getStudy(), aTextureId, aWidth, aHeight );
873                   if ( !aTexture.IsNull() ) {
874                     static int TextureId = 0;
875                     Handle(Prs3d_PointAspect) aTextureAspect = new Prs3d_PointAspect(aQuanColor,
876                                                                                      ++TextureId,
877                                                                                      aWidth, aHeight,
878                                                                                      aTexture );
879                     AISShape->Attributes()->SetPointAspect( aTextureAspect );
880                   }
881                 } else { //Use marker from the preferences
882                   Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
883                   anAspect->SetScale( myScaleOfMarker );
884                   anAspect->SetTypeOfMarker( myTypeOfMarker );
885                   Quantity_Color aQuanColor = SalomeApp_Tools::color( aResMgr->colorValue( "Geometry", "point_color", QColor( 255, 255, 0 ) ) );
886                   if ( hasColor )
887                     aQuanColor = Quantity_Color( aSColor.R, aSColor.G, aSColor.B, Quantity_TOC_RGB );
888                   anAspect->SetColor( aQuanColor );
889                   AISShape->Attributes()->SetPointAspect( anAspect );           
890                 }
891               }
892             }
893           }
894         }
895         // AISShape->SetName(???); ??? necessary to set name ???
896         occPrs->AddObject( AISShape );
897
898         // In accordance with ToActivate() value object will be activated/deactivated
899         // when it will be displayed
900         occPrs->SetToActivate( ToActivate() );
901       }
902     }
903     // if presentation is found -> set again shape for it
904     else
905     {
906       if ( !myShape.IsNull() )
907       {
908         AIS_ListOfInteractive IOList;
909         occPrs->GetObjects( IOList );
910         AIS_ListIteratorOfListOfInteractive Iter( IOList );
911         for ( ; Iter.More(); Iter.Next() )
912         {
913           Handle(GEOM_AISShape) AISShape = Handle(GEOM_AISShape)::DownCast( Iter.Value() );
914           if ( AISShape.IsNull() )
915             continue;
916           if ( AISShape->Shape() != myShape )
917           {
918             AISShape->Set( myShape );
919             AISShape->UpdateSelection();
920             AISShape->SetToUpdate();
921           }
922           if ( !myIO.IsNull() )
923           {
924             AISShape->setIO( myIO );
925             AISShape->SetOwner( myIO );
926           }
927         }
928       }
929     }
930   }
931 }
932
933 //=================================================================
934 /*!
935  *  GEOM_Displayer::Update
936  *  Update VTK presentaion
937  *  [ Reimplemented from SALOME_Displayer ]
938  */
939 //=================================================================
940 void GEOM_Displayer::Update( SALOME_VTKPrs* prs )
941 {
942   SalomeApp_Study* aStudy = getStudy();
943   int aMgrId = -1;
944   SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
945
946   if ( !vtkPrs || myShape.IsNull() || !aStudy)
947     return;
948   
949   bool useStudy = false;
950   PropMap aPropMap;
951
952   vtkActorCollection* theActors = 0;
953
954   if ( myType == GEOM_MARKER && myShape.ShapeType() == TopAbs_FACE ) {
955     //myToActivate = false; // ouv: commented to make the trihedron pickable (see IPAL18657)
956     GEOM_VTKTrihedron* aTrh = GEOM_VTKTrihedron::New();
957     
958     if ( HasColor() ) {
959       Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
960       aTrh->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
961     }
962
963     Handle(Geom_Plane) aPlane =
964       Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( TopoDS::Face( myShape ) ) );
965     if ( aPlane.IsNull() )
966       return;
967
968     gp_Ax2 anAx2 = aPlane->Pln().Position().Ax2();
969     aTrh->SetPlacement( new Geom_Axis2Placement( anAx2 ) );
970     
971     //    if ( SVTK_Viewer* vf = dynamic_cast<SVTK_Viewer*>( GetActiveView() ) )
972     //      aTrh->SetSize( 0.5 * vf->GetTrihedronSize() );
973
974     vtkPrs->AddObject( aTrh );
975
976     theActors = vtkActorCollection::New();
977     theActors->AddItem( aTrh );
978   }
979   else {
980     theActors = GEOM_AssemblyBuilder::BuildActors( myShape, 0, 0, Standard_True, myType == GEOM_VECTOR );
981     QString anEntry;
982     if(!myIO.IsNull()) {
983       aMgrId = getViewManagerId(myViewFrame);
984       anEntry = myIO->getEntry();
985     }
986     useStudy = !anEntry.isEmpty() && aMgrId != -1;
987     
988     if(useStudy){
989       aPropMap = aStudy->getObjectPropMap(aMgrId,anEntry);
990       PropMap aDefPropMap = getDefaultPropepryMap(SOCC_Viewer::Type());
991       bool isDiff = MergePropertyMaps(aPropMap, aDefPropMap);
992       if(isDiff)
993         aStudy->setObjectPropMap(aMgrId,anEntry,aPropMap);
994     }
995   }
996
997   theActors->InitTraversal();
998   
999   vtkActor* anActor = (vtkActor*)theActors->GetNextActor();
1000   
1001   vtkProperty* aProp = 0;
1002   
1003   if ( HasColor() || HasWidth() )
1004   {
1005     aProp = vtkProperty::New();
1006     aProp->SetRepresentationToWireframe();
1007   }
1008
1009   if ( HasColor() )
1010   {
1011     Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
1012     aProp->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
1013   }
1014
1015   if ( HasWidth() )
1016   {
1017     aProp->SetLineWidth( GetWidth() );
1018   }
1019
1020   while ( anActor != NULL )
1021   {
1022     SALOME_Actor* GActor = SALOME_Actor::SafeDownCast( anActor );
1023
1024     GActor->setIO( myIO );
1025
1026     if ( aProp )
1027     {
1028       GActor->SetProperty( aProp );
1029       GActor->SetPreviewProperty( aProp );
1030     }
1031     
1032     GEOM_Actor* aGeomGActor = GEOM_Actor::SafeDownCast( anActor );
1033     if ( aGeomGActor != 0 )
1034       {
1035         if ( aProp ) {
1036           aGeomGActor->SetShadingProperty( aProp );
1037           aGeomGActor->SetWireframeProperty( aProp );
1038         }
1039         int aIsos[2]= { 1, 1 };
1040         if(useStudy) {
1041           QString anIsos = aPropMap.value(ISOS_PROP).toString();
1042           QStringList uv =  anIsos.split(DIGIT_SEPARATOR);
1043           aIsos[0] = uv[0].toInt(); aIsos[1] = uv[1].toInt();
1044           aGeomGActor->SetNbIsos(aIsos);
1045           aGeomGActor->SetOpacity(1.0 - aPropMap.value(TRANSPARENCY_PROP).toDouble());
1046           aGeomGActor->SetVectorMode(aPropMap.value(VECTOR_MODE_PROP).toInt());
1047           aGeomGActor->setDisplayMode(aPropMap.value(DISPLAY_MODE_PROP).toInt());
1048           aGeomGActor->SetDeflection(aPropMap.value(DEFLECTION_COEFF_PROP).toDouble(), aGeomGActor->GetIsRelative());
1049
1050           vtkFloatingPointType aColor[3] = {1.,0.,0.};
1051           if(aPropMap.contains(COLOR_PROP)) {
1052             QColor c = aPropMap.value(COLOR_PROP).value<QColor>();
1053             aColor[0] = c.red()/255.; aColor[1] = c.green()/255.; aColor[2] = c.blue()/255.;
1054           } else { //Get Color from geom object
1055             Handle( SALOME_InteractiveObject ) anIO = aGeomGActor->getIO();
1056             if ( !anIO.IsNull() ) {
1057               _PTR(SObject) SO ( aStudy->studyDS()->FindObjectID( anIO->getEntry() ) );
1058               if ( SO ) {
1059                 // get CORBA reference to data object
1060                 CORBA::Object_var object = GeometryGUI::ClientSObjectToObject(SO);
1061                 if ( !CORBA::is_nil( object ) ) {
1062                   // downcast to GEOM object
1063                   GEOM::GEOM_Object_var aGeomObject = GEOM::GEOM_Object::_narrow( object );
1064                   bool hasColor = false;
1065                   SALOMEDS::Color aSColor = getColor(aGeomObject,hasColor);
1066                   if(hasColor) {
1067                     aColor[0] = aSColor.R; aColor[1] = aSColor.G; aColor[2] = aSColor.B;
1068                   } else {
1069                     SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
1070                     if(aResMgr) {
1071                       QColor c = aResMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
1072                       aColor[0] = c.red()/255.; aColor[1] = c.green()/255.; aColor[2] = c.blue()/255.;
1073                       aStudy->setObjectProperty( aMgrId, anIO->getEntry(), COLOR_PROP, c );
1074                     }
1075                   }
1076                 }
1077               }
1078             }
1079           }
1080           aGeomGActor->SetColor(aColor[0],aColor[1],aColor[2]);
1081         }
1082       }
1083
1084     if ( myToActivate )
1085       GActor->PickableOn();
1086     else
1087       GActor->PickableOff();
1088
1089     vtkPrs->AddObject( GActor );
1090
1091     anActor = (vtkActor*)theActors->GetNextActor();
1092   }
1093
1094   if ( aProp )
1095     aProp->Delete();
1096
1097   theActors->Delete();
1098 }
1099
1100 //=================================================================
1101 /*!
1102  *  GEOM_Displayer::BuildPrs
1103  *  Build presentation accordint to the current viewer type
1104  */
1105 //=================================================================
1106 SALOME_Prs* GEOM_Displayer::BuildPrs( GEOM::GEOM_Object_ptr theObj )
1107 {
1108   if ( theObj->_is_nil() )
1109     return 0;
1110
1111   myViewFrame = GetActiveView();
1112   if ( myViewFrame == 0 )
1113     return 0;
1114
1115   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
1116   if ( aPrs == 0 )
1117     return 0;
1118
1119   internalReset();
1120   setShape( GEOM_Client::get_client().GetShape( GeometryGUI::GetGeomGen(), theObj ) );
1121   myType = theObj->GetType();
1122
1123   // Update presentation
1124   UpdatePrs( aPrs );
1125
1126   return aPrs;
1127 }
1128
1129 //=================================================================
1130 /*!
1131  *  GEOM_Displayer::BuildPrs
1132  *  Build presentation accordint to the current viewer type
1133  */
1134 //=================================================================
1135 SALOME_Prs* GEOM_Displayer::BuildPrs( const TopoDS_Shape& theShape )
1136 {
1137   myViewFrame = GetActiveView();
1138   if ( theShape.IsNull() || myViewFrame == 0 )
1139     return 0;
1140
1141   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
1142   if ( aPrs == 0 )
1143     return 0;
1144
1145   internalReset();
1146   setShape( theShape );
1147   myType = -1;
1148
1149   UpdatePrs( aPrs );
1150
1151   return aPrs;
1152 }
1153
1154 //=================================================================
1155 /*!
1156  *  GEOM_Displayer::buildPresentation
1157  *  Builds/finds object's presentation for the current viewer
1158  *  Calls corresponding Update() method by means of double dispatch
1159  *  [ internal ]
1160  */
1161 //=================================================================
1162 SALOME_Prs* GEOM_Displayer::buildPresentation( const QString& entry,
1163                                                SALOME_View* theViewFrame )
1164 {
1165   SALOME_Prs* prs = 0;
1166   internalReset();
1167
1168   myViewFrame = theViewFrame ? theViewFrame : GetActiveView();
1169
1170   if ( myViewFrame )
1171   {
1172     prs = LightApp_Displayer::buildPresentation( entry, theViewFrame );
1173     if ( prs )
1174     {
1175       Handle( SALOME_InteractiveObject ) theIO = new SALOME_InteractiveObject();
1176       theIO->setEntry( entry.toLatin1().constData() );
1177       if ( !theIO.IsNull() )
1178       {
1179         // set interactive object
1180         setIO( theIO );
1181         //  Find SOBject (because shape should be published previously)
1182         SUIT_Session* session = SUIT_Session::session();
1183         SUIT_Application* app = session->activeApplication();
1184         if ( app )
1185         {
1186           SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
1187           if ( study )
1188           {
1189             _PTR(SObject) SO ( study->studyDS()->FindObjectID( theIO->getEntry() ) );
1190             if ( SO )
1191             {
1192               // get CORBA reference to data object
1193               CORBA::Object_var object = GeometryGUI::ClientSObjectToObject(SO);
1194               if ( !CORBA::is_nil( object ) )
1195               {
1196                 // downcast to GEOM object
1197                 GEOM::GEOM_Object_var GeomObject = GEOM::GEOM_Object::_narrow( object );
1198                 if ( !GeomObject->_is_nil() )
1199                 {
1200                   // finally set shape
1201                   setShape( GEOM_Client::get_client().GetShape( GeometryGUI::GetGeomGen(), GeomObject ) );
1202                   myType = GeomObject->GetType();
1203                 }
1204               }
1205             }
1206           }
1207         }
1208       }
1209       UpdatePrs( prs );  // Update presentation by using of the double dispatch
1210     }
1211   }
1212   return prs;
1213 }
1214
1215 //=================================================================
1216 /*!
1217  *  GEOM_Displayer::buildSubshapePresentation
1218  *  Builds/finds object's presentation for the current viewer
1219  *  Calls corresponding Update() method by means of double dispatch
1220  *  For not published objects (for Mantis issue 0020435)
1221  */
1222 //=================================================================
1223 SALOME_Prs* GEOM_Displayer::buildSubshapePresentation(const TopoDS_Shape& aShape,
1224                                                       const QString& entry,
1225                                                       SALOME_View* theViewFrame)
1226 {
1227   SALOME_Prs* prs = 0;
1228   internalReset();
1229
1230   myViewFrame = theViewFrame ? theViewFrame : GetActiveView();
1231
1232   if (myViewFrame)
1233   {
1234     prs = LightApp_Displayer::buildPresentation(entry, theViewFrame);
1235     if (prs)
1236     {
1237       Handle(SALOME_InteractiveObject) theIO = new SALOME_InteractiveObject();
1238       theIO->setEntry(entry.toLatin1().constData());
1239       if (!theIO.IsNull())
1240       {
1241         // set interactive object
1242         setIO(theIO);
1243         // finally set shape
1244         setShape(aShape);
1245         myType = GEOM_SUBSHAPE;
1246       }
1247       UpdatePrs(prs);  // Update presentation by using of the double dispatch
1248     }
1249   }
1250   return prs;
1251 }
1252
1253 //=================================================================
1254 /*!
1255  *  GEOM_Displayer::internalReset
1256  *  Resets internal data
1257  *  [internal]
1258  */
1259 //=================================================================
1260 void GEOM_Displayer::internalReset()
1261 {
1262   myIO.Nullify();
1263   myShape.Nullify();
1264 }
1265
1266 //=================================================================
1267 /*!
1268  *  GEOM_Displayer::LocalSelection
1269  *  Activate selection of CAD shapes with activisation of selection
1270  *  of their sub-shapes (with opened local context for OCC viewer)
1271  */
1272 //=================================================================
1273 void GEOM_Displayer::LocalSelection( const Handle(SALOME_InteractiveObject)& theIO, const int theMode )
1274 {
1275   SUIT_Session* session = SUIT_Session::session();
1276   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
1277   if ( !app )
1278     return;
1279
1280   LightApp_SelectionMgr* sm = app->selectionMgr();
1281
1282   // remove all filters from selection
1283   sm->clearFilters();
1284
1285   SALOME_View* vf = GetActiveView();
1286   if ( vf ) {
1287     if (!theIO.IsNull() && !vf->isVisible(theIO))
1288       Display(theIO);
1289     SALOME_Prs* prs = vf->CreatePrs( theIO.IsNull() ? 0 : theIO->getEntry() );
1290     vf->LocalSelection( prs, theMode );
1291     delete prs;  // delete presentation because displayer is its owner
1292   }
1293 }
1294
1295 //=================================================================
1296 /*!
1297  *  GEOM_Displayer::globalSelection
1298  *  Activate selection of CAD shapes without activisation of selection
1299  *  of their sub-shapes (without opened local context for OCC viewer)
1300  */
1301 //=================================================================
1302 void GEOM_Displayer::GlobalSelection( const int theMode, const bool update )
1303 {
1304   TColStd_MapOfInteger aModes;
1305   aModes.Add( theMode );
1306   GlobalSelection( aModes, update );
1307 }
1308
1309 //=================================================================
1310 /*!
1311  *  GEOM_Displayer::globalSelection
1312  *  Activate selection of CAD shapes without activisation of selection
1313  *  of their sub-shapes (without opened local context for OCC viewer)
1314  */
1315 //=================================================================
1316 void GEOM_Displayer::GlobalSelection( const TColStd_MapOfInteger& theModes,
1317                                       const bool update, const QList<int>* theSubShapes )
1318 {
1319   SUIT_Session* session = SUIT_Session::session();
1320   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
1321   if ( !app )
1322     return;
1323
1324   SALOME_View* vf = GetActiveView();
1325   if ( vf == 0 )
1326     return;
1327
1328   // Close local context
1329   vf->GlobalSelection( update );
1330
1331   // Set selection filters in accordance with current mode
1332   LightApp_SelectionMgr* sm = app->selectionMgr();
1333   if ( !sm )
1334     return;
1335
1336   // Remove from selection temporary objects if necessary
1337   if ( !theModes.Contains( GEOM_PREVIEW ) )
1338     clearTemporary( sm );
1339
1340   //@ aSel->ClearIndex();
1341
1342   sm->clearFilters();
1343
1344   // Remove filters from AIS_InteractiveContext
1345   Handle(AIS_InteractiveContext) ic;
1346   SOCC_Viewer* viewer = dynamic_cast<SOCC_Viewer*>( vf );
1347   if ( viewer )
1348     {
1349       ic = viewer->getAISContext();
1350       if ( !ic.IsNull() )
1351         ic->RemoveFilters();
1352     }
1353
1354   if ( theModes.Contains( GEOM_ALLOBJECTS ) )
1355     return;
1356
1357   SUIT_SelectionFilter* aFilter;
1358   if ( theModes.Extent() == 1 )
1359     {
1360       int aMode = TColStd_MapIteratorOfMapOfInteger( theModes ).Key();
1361       
1362       if ( aMode == GEOM_COMPOUNDFILTER )
1363         aFilter = getComplexFilter( theSubShapes );
1364       else    
1365         aFilter = getFilter( aMode );
1366     }
1367   else if ( theModes.Extent() > 1 )
1368     {
1369       TColStd_MapOfInteger aTopAbsModes;
1370       TColStd_MapIteratorOfMapOfInteger anIter( theModes );
1371       QList<SUIT_SelectionFilter*> aListOfFilters;
1372       for ( ; anIter.More(); anIter.Next() )
1373         {
1374           SUIT_SelectionFilter* aFilter;
1375           int aMode = anIter.Key();
1376           if ( aMode == GEOM_COMPOUNDFILTER )
1377             aFilter = getComplexFilter( theSubShapes );
1378           else    
1379             aFilter = getFilter( aMode );
1380
1381           if ( aFilter )
1382             aListOfFilters.append( aFilter );
1383         }
1384
1385       aFilter = new GEOM_LogicalFilter( aListOfFilters, GEOM_LogicalFilter::LO_OR );
1386     }
1387   else
1388     return;
1389
1390   if ( aFilter )
1391     {
1392       sm->installFilter( aFilter );
1393       if ( !ic.IsNull() )
1394         {
1395           Handle(GEOM_OCCFilter) anOCCFilter = new GEOM_OCCFilter( sm );
1396           ic->AddFilter( anOCCFilter );
1397         }
1398     }
1399 }
1400
1401 //=================================================================
1402 /*!
1403  *  GEOM_Displayer::LocalSelection
1404  *  Activate selection of CAD shapes with activisation of selection
1405  *  of their sub-shapes (with opened local context for OCC viewer)
1406  */
1407 //=================================================================
1408 void GEOM_Displayer::LocalSelection( const SALOME_ListIO& theIOList, const int theMode )
1409 {
1410   SALOME_ListIteratorOfListIO Iter( theIOList );
1411   for ( ; Iter.More(); Iter.Next() )
1412     LocalSelection( Iter.Value(), theMode );
1413 }
1414
1415 //=================================================================
1416 /*!
1417  *  GEOM_Displayer::BeforeDisplay
1418  *  Called before displaying of pars. Close local context
1419  *  [ Reimplemented from SALOME_Displayer ]
1420  */
1421 //=================================================================
1422 void GEOM_Displayer::BeforeDisplay( SALOME_View* v, const SALOME_OCCViewType& )
1423 {
1424   SOCC_Viewer* vf = dynamic_cast<SOCC_Viewer*>( v );
1425   if ( vf )
1426   {
1427     Handle(AIS_InteractiveContext) ic = vf->getAISContext();
1428     if ( !ic.IsNull() )
1429     {
1430       if ( ic->HasOpenedContext() )
1431       ic->CloseAllContexts();
1432     }
1433   }
1434 }
1435
1436 void GEOM_Displayer::AfterDisplay( SALOME_View*, const SALOME_OCCViewType& )
1437 {
1438 }
1439
1440
1441 //=================================================================
1442 /*!
1443  *  GEOM_Displayer::SetColor
1444  *  Set color for shape displaying. If it is equal -1 then default color is used.
1445  *  Available values are from Quantity_NameOfColor enumeration
1446  */
1447 //=================================================================
1448 void GEOM_Displayer::SetColor( const int color )
1449 {
1450   if ( color == -1 )
1451     UnsetColor();
1452   else
1453   {
1454     myColor = color;
1455     myShadingColor = Quantity_Color( (Quantity_NameOfColor)color );
1456   }
1457 }
1458
1459 int GEOM_Displayer::GetColor() const
1460 {
1461   return myColor;
1462 }
1463
1464 bool GEOM_Displayer::HasColor() const
1465 {
1466   return myColor != -1;
1467 }
1468
1469 void GEOM_Displayer::UnsetColor()
1470 {
1471   myColor = -1;
1472   
1473   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1474   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
1475   myShadingColor = SalomeApp_Tools::color( col );
1476 }
1477
1478 //=================================================================
1479 /*!
1480  *  GEOM_Displayer::SetWidth
1481  *  Set width of shape displaying. If it is equal -1 then default width is used.
1482  */
1483 //=================================================================
1484 void GEOM_Displayer::SetWidth( const double width )
1485 {
1486   myWidth = width;
1487 }
1488
1489 double GEOM_Displayer::GetWidth() const
1490 {
1491   return myWidth;
1492 }
1493
1494 bool GEOM_Displayer::HasWidth() const
1495 {
1496   return myWidth != -1;
1497 }
1498
1499 void GEOM_Displayer::UnsetWidth()
1500 {
1501   myWidth = -1;
1502 }
1503
1504 //=================================================================
1505 /*!
1506  *  GEOM_Displayer::SetToActivate
1507  *  This method is used for activisation/deactivisation of objects to be displayed
1508  */
1509 //=================================================================
1510 void GEOM_Displayer::SetToActivate( const bool toActivate )
1511 {
1512   myToActivate = toActivate;
1513 }
1514 bool GEOM_Displayer::ToActivate() const
1515 {
1516   return myToActivate;
1517 }
1518
1519 //=================================================================
1520 /*!
1521  *  GEOM_Displayer::clearTemporary
1522  *  Removes from selection temporary objects
1523  */
1524 //=================================================================
1525 void GEOM_Displayer::clearTemporary( LightApp_SelectionMgr* theSelMgr )
1526 {
1527   SALOME_ListIO selected, toSelect;
1528   theSelMgr->selectedObjects( selected );
1529
1530   for (  SALOME_ListIteratorOfListIO it( selected ) ; it.More(); it.Next() ) {
1531     Handle(SALOME_InteractiveObject) io = it.Value();
1532     if ( !io.IsNull() && io->hasEntry() && strncmp( io->getEntry(), "TEMP_", 5 ) != 0 )
1533       toSelect.Append( it.Value() );
1534   }
1535
1536   theSelMgr->setSelectedObjects( toSelect, true );
1537 }
1538
1539 void GEOM_Displayer::SetName( const char* theName )
1540 {
1541   myName = theName;
1542 }
1543
1544 void GEOM_Displayer::UnsetName()
1545 {
1546   myName = "";
1547 }
1548
1549 SalomeApp_Study* GEOM_Displayer::getStudy() const
1550 {
1551   return dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
1552 }
1553
1554 void GEOM_Displayer::setIO( const Handle(SALOME_InteractiveObject)& theIO )
1555 {
1556   myIO = theIO;
1557 }
1558
1559 void GEOM_Displayer::setShape( const TopoDS_Shape& theShape )
1560 {
1561   myShape = theShape;
1562 }
1563
1564 bool GEOM_Displayer::canBeDisplayed( const QString& /*entry*/, const QString& viewer_type ) const
1565 {
1566   return viewer_type==SOCC_Viewer::Type() || viewer_type==SVTK_Viewer::Type();
1567 }
1568
1569 int GEOM_Displayer::SetDisplayMode( const int theMode )
1570 {
1571   int aPrevMode = myDisplayMode;
1572   if ( theMode != -1 )
1573     myDisplayMode = theMode;
1574   else
1575   {
1576     SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1577     myDisplayMode = resMgr->integerValue( "Geometry", "display_mode", 0 );
1578   }
1579   return aPrevMode;
1580 }
1581
1582 int GEOM_Displayer::GetDisplayMode() const
1583 {
1584   return myDisplayMode;
1585 }
1586
1587 int GEOM_Displayer::UnsetDisplayMode()
1588 {
1589   int aPrevMode = myDisplayMode;
1590   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1591   myDisplayMode = resMgr->integerValue( "Geometry", "display_mode", 0 );
1592   return aPrevMode;
1593 }
1594
1595 SALOMEDS::Color GEOM_Displayer::getUniqueColor( const QList<SALOMEDS::Color>& theReservedColors )
1596 {
1597   int aHue = -1;
1598   int aTolerance = 64;
1599   int anIterations = 0;
1600   int aPeriod = 5;
1601
1602   while( 1 )
1603   {
1604     anIterations++;
1605     if( anIterations % aPeriod == 0 )
1606     {
1607       aTolerance /= 2;
1608       if( aTolerance < 1 )
1609         break;
1610     }
1611     //std::cout << "Iteration N" << anIterations << " (tolerance=" << aTolerance << ")"<< std::endl;
1612
1613     aHue = (int)( 360.0 * rand() / RAND_MAX );
1614     //std::cout << "Hue = " << aHue << std::endl;
1615
1616     //std::cout << "Auto colors : ";
1617     bool ok = true;
1618     QList<SALOMEDS::Color>::const_iterator it = theReservedColors.constBegin();
1619     QList<SALOMEDS::Color>::const_iterator itEnd = theReservedColors.constEnd();
1620     for( ; it != itEnd; ++it )
1621     {
1622       SALOMEDS::Color anAutoColor = *it;
1623       QColor aQColor( (int)( anAutoColor.R * 255.0 ), (int)( anAutoColor.G * 255.0 ), (int)( anAutoColor.B * 255.0 ) );
1624
1625       int h, s, v;
1626       aQColor.getHsv( &h, &s, &v );
1627       //std::cout << h << " ";
1628       if( abs( h - aHue ) < aTolerance )
1629       {
1630         ok = false;
1631         //std::cout << "break (diff = " << abs( h - aHue ) << ")";
1632         break;
1633       }
1634     }
1635     //std::cout << std::endl;
1636
1637     if( ok )
1638       break;
1639   }
1640
1641   //std::cout << "Hue of the returned color = " << aHue << std::endl;
1642   QColor aColor;
1643   aColor.setHsv( aHue, 255, 255 );
1644
1645   SALOMEDS::Color aSColor;
1646   aSColor.R = (double)aColor.red() / 255.0;
1647   aSColor.G = (double)aColor.green() / 255.0;
1648   aSColor.B = (double)aColor.blue() / 255.0;
1649
1650   return aSColor;
1651 }
1652
1653
1654
1655 PropMap GEOM_Displayer::getDefaultPropepryMap(const QString& viewer_type){
1656   PropMap aDefaultMap;
1657   SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();    
1658   //1. Visibility 
1659   aDefaultMap.insert(VISIBILITY_PROP , 1);
1660
1661   //2. Nb Isos
1662   int anUIsoNumber;
1663   int aVIsoNumber;
1664   if(viewer_type == SOCC_Viewer::Type()) {
1665     anUIsoNumber = aResMgr->integerValue("OCCViewer", "iso_number_u", 1);
1666     aVIsoNumber = aResMgr->integerValue("OCCViewer", "iso_number_v", 1);
1667   } else if( viewer_type==SVTK_Viewer::Type()) {
1668     anUIsoNumber = aResMgr->integerValue("VTKViewer", "iso_number_u", 1);
1669     aVIsoNumber = aResMgr->integerValue("VTKViewer", "iso_number_u", 1);
1670   }
1671   QString anIsos("%1%2%3");
1672   anIsos = anIsos.arg(anUIsoNumber);anIsos = anIsos.arg(DIGIT_SEPARATOR);anIsos = anIsos.arg(aVIsoNumber);
1673   aDefaultMap.insert(ISOS_PROP , anIsos);
1674
1675   //3. Transparency
1676   aDefaultMap.insert( TRANSPARENCY_PROP , 0.0 );
1677
1678   //4. Display Mode
1679   aDefaultMap.insert( DISPLAY_MODE_PROP , aResMgr->integerValue("Geometry", "display_mode", 0));
1680
1681   //5. Vector Mode
1682   aDefaultMap.insert( VECTOR_MODE_PROP , 0);
1683   
1684   //6. Color
1685   QColor col = aResMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
1686   aDefaultMap.insert( COLOR_PROP , col);
1687     
1688   //7. Deflection Coeff
1689   double aDC;
1690   //rnv: Currently deflection coefficient is not supported by VTK viewer.
1691   if(viewer_type == SOCC_Viewer::Type()) {
1692     aDC = aResMgr->doubleValue("Geometry", "deflection_coeff", 0.001);
1693   } else if( viewer_type==SVTK_Viewer::Type()) {
1694     aDC = 0.0;
1695   }
1696   aDefaultMap.insert( DEFLECTION_COEFF_PROP , aDC);
1697
1698   return aDefaultMap;
1699 }
1700
1701 bool GEOM_Displayer::MergePropertyMaps(PropMap& theOrigin, PropMap& theDefault) {
1702   int nbInserted = 0;
1703   if(!theOrigin.contains(VISIBILITY_PROP)) {
1704     theOrigin.insert(VISIBILITY_PROP, 0);
1705     nbInserted++;
1706   }
1707   if(!theOrigin.contains(TRANSPARENCY_PROP)) {
1708     theOrigin.insert(TRANSPARENCY_PROP, theDefault.value(TRANSPARENCY_PROP));
1709     nbInserted++;
1710   }
1711   if(!theOrigin.contains(DISPLAY_MODE_PROP)) {
1712     theOrigin.insert(DISPLAY_MODE_PROP, theDefault.value(DISPLAY_MODE_PROP));
1713     nbInserted++;
1714   }
1715   if(!theOrigin.contains(ISOS_PROP)) {
1716     theOrigin.insert(ISOS_PROP, theDefault.value(ISOS_PROP));
1717     nbInserted++;
1718   }
1719   if(!theOrigin.contains(VECTOR_MODE_PROP)) {
1720     theOrigin.insert(VECTOR_MODE_PROP, theDefault.value(VECTOR_MODE_PROP));
1721     nbInserted++;
1722   }
1723   if(!theOrigin.contains(DEFLECTION_COEFF_PROP)) {
1724     theOrigin.insert(DEFLECTION_COEFF_PROP, theDefault.value(DEFLECTION_COEFF_PROP));
1725     nbInserted++;
1726   }
1727   return (nbInserted > 0);
1728 }
1729
1730
1731 SALOMEDS::Color GEOM_Displayer::getColor(GEOM::GEOM_Object_var theGeomObject, bool& hasColor) {
1732   SALOMEDS::Color aSColor;
1733   hasColor = false;
1734
1735   SUIT_Session* session = SUIT_Session::session();
1736   SUIT_Application* app = session->activeApplication();
1737
1738   if ( app && !theGeomObject->_is_nil()) {
1739     SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
1740     
1741     if ( study ) {
1742       aSColor = theGeomObject->GetColor();
1743       hasColor = aSColor.R >= 0 && aSColor.G >= 0 && aSColor.B >= 0;
1744       if( !hasColor && theGeomObject->GetType() == GEOM_GROUP ) { // auto color for group
1745         GEOM::GEOM_Gen_var theGeomGen = GeometryGUI::GetGeomGen();
1746         GEOM::GEOM_IGroupOperations_var anOperations = theGeomGen->GetIGroupOperations( study->id() );
1747         GEOM::GEOM_Object_var aMainObject = anOperations->GetMainShape( theGeomObject );
1748         if ( !aMainObject->_is_nil() && aMainObject->GetAutoColor() )
1749           {
1750             QList<SALOMEDS::Color> aReservedColors;
1751             
1752             SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( app );
1753             CORBA::String_var IOR = app->orb()->object_to_string( aMainObject );
1754             if ( strcmp(IOR.in(), "") != 0 )
1755               {
1756                 _PTR(Study) aStudy = study->studyDS();
1757                 _PTR(SObject) aMainSObject( aStudy->FindObjectIOR( std::string(IOR) ) );
1758                 _PTR(ChildIterator) it( aStudy->NewChildIterator( aMainSObject ) );
1759                 for( ; it->More(); it->Next() )
1760                   {
1761                     _PTR(SObject) aChildSObject( it->Value() );
1762                     GEOM::GEOM_Object_var aChildObject =
1763                       GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aChildSObject));
1764                     if( CORBA::is_nil( aChildObject ) )
1765                       continue;
1766                     
1767                     if( aChildObject->GetType() != GEOM_GROUP )
1768                       continue;
1769                     
1770                     SALOMEDS::Color aReservedColor = aChildObject->GetColor();
1771                     aReservedColors.append( aReservedColor );
1772                   }
1773               }
1774             
1775             aSColor = getUniqueColor( aReservedColors );
1776             hasColor = true;
1777           }
1778       }
1779     }
1780   }
1781   return aSColor;
1782 }