Salome HOME
PAL16821 (Check Geometry feature should be hidden to the user)
[modules/geom.git] / src / GEOMGUI / GEOM_Displayer.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
24 //  File   : GEOM_Displayer.cxx
25 //  Author : Vadim SANDLER
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GEOM_Displayer.h"
30
31 #include "GeometryGUI.h"
32
33 #include "GEOM_TypeFilter.h"
34 #include "GEOM_EdgeFilter.h"
35 #include "GEOM_FaceFilter.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_AssemblyBuilder.h"
42 #include "GEOM_AISShape.hxx"
43 #include "GEOM_AISVector.hxx"
44 #include "GEOM_AISTrihedron.hxx"
45 #include "GEOM_VTKTrihedron.hxx"
46
47 #include <SUIT_Desktop.h>
48 #include <SUIT_ViewWindow.h>
49 #include <SUIT_Session.h>
50 #include <SUIT_Tools.h>
51 #include <SUIT_ViewManager.h>
52
53 #include <SalomeApp_Study.h>
54 #include <SalomeApp_Application.h>
55 #include <LightApp_SelectionMgr.h>
56 #include <SalomeApp_TypeFilter.h>
57 #include <SalomeApp_Tools.h>
58
59 #include <SALOME_ListIteratorOfListIO.hxx>
60
61 #include <SOCC_Prs.h>
62 #include <SOCC_ViewModel.h>
63
64 #include <SVTK_Prs.h>
65 #include <SVTK_ViewModel.h>
66
67 #include <SALOMEDSClient.hxx>
68 #include <SALOMEDSClient_SObject.hxx>
69
70 // OCCT Includes
71 #include <AIS_Drawer.hxx>
72 #include <AIS_ListIteratorOfListOfInteractive.hxx>
73 #include <Prs3d_IsoAspect.hxx>
74 #include <Prs3d_PointAspect.hxx>
75 #include <Graphic3d_AspectMarker3d.hxx>
76 #include <StdSelect_TypeOfEdge.hxx>
77 #include <StdSelect_TypeOfFace.hxx>
78 #include <TopoDS_Face.hxx>
79 #include <BRep_Tool.hxx>
80 #include <Geom_Plane.hxx>
81 #include <Geom_Axis2Placement.hxx>
82 #include <gp_Pln.hxx>
83 #include <TColStd_MapOfInteger.hxx>
84 #include <TColStd_MapIteratorOfMapOfInteger.hxx>
85 #include <TopoDS_Iterator.hxx>
86
87 // VTK Includes
88 #include <vtkActorCollection.h>
89 #include <vtkProperty.h>
90
91 // STL Includes
92 #include <cstring>
93
94 // CORBA Headers
95 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
96
97 #include "GEOMImpl_Types.hxx"
98
99 using namespace std;
100
101 //================================================================
102 // Function : getActiveStudy
103 // Purpose  : Get active study, returns 0 if no open study frame
104 //================================================================
105 static inline SalomeApp_Study* getActiveStudy()
106 {
107   SUIT_Session* session = SUIT_Session::session();
108   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
109   if ( app )
110     return ( SalomeApp_Study* )app->activeStudy();
111   return 0;
112 }
113
114 //================================================================
115 // Function : getTopAbsMode
116 // Purpose  : Get TopAbs_ShapeEnum value corresponding to the
117 //            one from GEOMImpl_Types.h
118 //================================================================
119 static inline int getTopAbsMode( const int implType )
120 {
121   switch ( implType )
122   {
123     case GEOM_COMPOUND  : return TopAbs_COMPOUND;
124     case GEOM_SOLID     : return TopAbs_SOLID;
125     case GEOM_SHELL     : return TopAbs_SHELL;
126     case GEOM_FACE      : return TopAbs_FACE;
127     case GEOM_WIRE      : return TopAbs_WIRE;
128     case GEOM_EDGE      : return TopAbs_EDGE;
129     case GEOM_POINT     : return TopAbs_VERTEX;
130     default             : return -1;
131   }
132 }
133
134 //================================================================
135 // Function : getFilter
136 // Purpose  : Get filter corresponding to the type of object
137 //            from GEOMImpl_Types.h
138 //================================================================
139 SUIT_SelectionFilter* GEOM_Displayer::getFilter( const int theMode )
140 {
141   SUIT_SelectionFilter* aFilter;
142
143   int aTopAbsMode = getTopAbsMode( theMode );
144   if ( aTopAbsMode != -1 )
145     aFilter = new GEOM_TypeFilter( getStudy(), aTopAbsMode, true ); //@ aFilter = new GEOM_TypeFilter( ( TopAbs_ShapeEnum )aTopAbsMode );
146   else
147     switch ( theMode )
148       {
149       case GEOM_LINE      : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Line ); break;
150       case GEOM_CIRCLE    : aFilter = new GEOM_EdgeFilter( getStudy(), StdSelect_Circle ); break;
151
152       case GEOM_PLANE     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Plane ); break;
153       case GEOM_CYLINDER  : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cylinder ); break;
154       case GEOM_SPHERE    : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Sphere ); break;
155       case GEOM_TORUS     : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Torus ); break;
156       case GEOM_REVOLUTION: aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Revol ); break;
157       case GEOM_CONE      : aFilter = new GEOM_FaceFilter( getStudy(), StdSelect_Cone ); break;
158
159       case GEOM_PREVIEW   : aFilter = new GEOM_PreviewFilter( getStudy() ); break;
160
161       case GEOM_ALLSHAPES : aFilter = new GEOM_SelectionFilter(getStudy(), true ); break;
162       case GEOM_ALLGEOM   : aFilter = new SalomeApp_TypeFilter( getStudy(), "GEOM" ); break;
163
164       default             : aFilter = new GEOM_TypeFilter( getStudy(), theMode ); break;
165       }
166
167   return aFilter;
168 }
169
170 //================================================================
171 // Function : getEntry
172 // Purpose  :
173 //================================================================
174 static string getEntry( GEOM::GEOM_Object_ptr object )
175 {
176   SUIT_Session* session = SUIT_Session::session();
177   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
178   if ( app )
179   {
180     string IOR = app->orb()->object_to_string( object );
181     if ( IOR != "" )
182     {
183       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
184       _PTR(SObject) SO ( study->studyDS()->FindObjectIOR( IOR ) );
185       if ( SO )
186         return SO->GetID();
187     }
188   }
189   return "";
190 }
191
192 //================================================================
193 // Function : getName
194 // Purpose  :
195 //================================================================
196 static string getName( GEOM::GEOM_Object_ptr object )
197 {
198   SUIT_Session* session = SUIT_Session::session();
199   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
200   if ( app )
201   {
202     string IOR = app->orb()->object_to_string( object );
203     if ( IOR != "" )
204     {
205       SalomeApp_Study* study = ( SalomeApp_Study* )app->activeStudy();
206       _PTR(SObject) aSObj ( study->studyDS()->FindObjectIOR( IOR ) );
207
208       _PTR(GenericAttribute) anAttr;
209
210       if ( aSObj && aSObj->FindAttribute( anAttr, "AttributeName") )
211       {
212         _PTR(AttributeName) aNameAttr( anAttr );
213         return aNameAttr->Value();
214       }
215     }
216   }
217
218   return "";
219 }
220
221 //=================================================================
222 /*!
223  *  GEOM_Displayer::GEOM_Displayer
224  *  Constructor
225  */
226 //=================================================================
227 GEOM_Displayer::GEOM_Displayer( SalomeApp_Study* st )
228 {
229   if( st )
230     myApp = dynamic_cast<SalomeApp_Application*>( st->application() );
231   else
232     myApp = 0;
233
234   /* Shading Color */
235   SUIT_Session* session = SUIT_Session::session();
236   SUIT_ResourceMgr* resMgr = session->resourceMgr();
237
238   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
239   myShadingColor = SalomeApp_Tools::color( col );
240
241   myDisplayMode = resMgr->integerValue("Geometry", "display_mode", 0);
242   myTypeOfMarker = (Aspect_TypeOfMarker)resMgr->integerValue("Geometry", "type_of_marker", Aspect_TOM_PLUS);
243   myScaleOfMarker = resMgr->doubleValue("Geometry", "marker_scale", 1.);
244   if(myScaleOfMarker < 1.0)
245     myScaleOfMarker = 1.0;
246   if(myScaleOfMarker > 7.)
247     myScaleOfMarker = 7.;
248
249
250   myColor = -1;
251   // This color is used for shape displaying. If it is equal -1 then
252   // default color is used.
253
254   myWidth = -1;
255   myType = -1;
256
257   myToActivate = true;
258   // This parameter is used for activisation/deactivisation of objects to be displayed
259
260   myViewFrame = 0;
261 }
262
263 //=================================================================
264 /*!
265  *  GEOM_Displayer::~GEOM_Displayer
266  *  Destructor
267  */
268 //=================================================================
269 GEOM_Displayer::~GEOM_Displayer()
270 {
271 }
272
273 //=================================================================
274 /*!
275  *  GEOM_Displayer::Display
276  *  Display interactive object in the current viewer
277  */
278 //=================================================================
279 void GEOM_Displayer::Display( const Handle(SALOME_InteractiveObject)& theIO,
280                              const bool updateViewer,
281                              SALOME_View* theViewFrame )
282 {
283   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
284   if ( vf )
285   {
286     SALOME_Prs* prs = buildPresentation( theIO->getEntry(), vf );
287
288     if ( prs )
289     {
290       vf->BeforeDisplay( this );
291       vf->Display( prs );
292       vf->AfterDisplay( this );
293
294       if ( updateViewer )
295         vf->Repaint();
296
297       delete prs;  // delete presentation because displayer is its owner
298     }
299   }
300 }
301
302 //=================================================================
303 /*!
304  *  GEOM_Displayer::Display
305  *  This overloaded Display() method can be useful for operations
306  *  not using dialog boxes.
307  */
308 //=================================================================
309 void GEOM_Displayer::Display( GEOM::GEOM_Object_ptr theObj, const bool updateViewer )
310 {
311   if ( theObj->_is_nil() )
312     return;
313
314   string entry = getEntry( theObj );
315   if ( entry != "" ) {
316     Display(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
317             updateViewer);
318   }
319 }
320
321 //=================================================================
322 /*!
323  *  GEOM_Displayer::Erase
324  *  Erase interactive object in the current viewer
325  */
326 //=================================================================
327 void GEOM_Displayer::Erase( const Handle(SALOME_InteractiveObject)& theIO,
328                             const bool forced,
329                             const bool updateViewer,
330                             SALOME_View* theViewFrame )
331 {
332   if ( theIO.IsNull() )
333     return;
334
335   SALOME_View* vf = theViewFrame ? theViewFrame : GetActiveView();
336
337   if ( vf ) {
338     SALOME_Prs* prs = vf->CreatePrs( theIO->getEntry() );
339     if ( prs ) {
340       vf->Erase( prs, forced );
341       if ( updateViewer )
342         vf->Repaint();
343       delete prs;  // delete presentation because displayer is its owner
344     }
345   }
346 }
347
348 //=================================================================
349 /*!
350  *  GEOM_Displayer::Erase
351  *  Erase geometry object in the current viewer
352  */
353 //=================================================================
354 void GEOM_Displayer::Erase( GEOM::GEOM_Object_ptr theObj,
355                             const bool forced,
356                             const bool updateViewer )
357 {
358   string entry = getEntry( theObj );
359   if ( entry != "" )
360   {
361     Erase(new SALOME_InteractiveObject(entry.c_str(), "GEOM", getName(theObj).c_str()),
362           forced, updateViewer);
363   }
364 }
365
366 //=================================================================
367 /*!
368  *  GEOM_Displayer::Redisplay
369  *  Redisplay (erase and then display again) interactive object
370  *  in the current viewer
371  */
372 //=================================================================
373 void GEOM_Displayer::Redisplay( const Handle(SALOME_InteractiveObject)& theIO,
374                                 const bool updateViewer )
375 {
376   // Remove the object permanently (<forced> == true)
377   SUIT_Session* ses = SUIT_Session::session();
378   SUIT_Application* app = ses->activeApplication();
379   if ( app )
380   {
381     SUIT_Desktop* desk = app->desktop();
382     QPtrList<SUIT_ViewWindow> wnds = desk->windows();
383     SUIT_ViewWindow* wnd;
384     for ( wnd = wnds.first(); wnd; wnd = wnds.next() )
385     {
386       SUIT_ViewManager* vman = wnd->getViewManager();
387       if ( vman )
388       {
389         SUIT_ViewModel* vmodel = vman->getViewModel();
390         if ( vmodel )
391         {
392           SALOME_View* view = dynamic_cast<SALOME_View*>(vmodel);
393           if ( view )
394           {
395             if ( view->isVisible( theIO ) || view == GetActiveView() )
396             {
397               Erase( theIO, true, false, view );
398               Display( theIO, updateViewer, view );
399             }
400           }
401         }
402       }
403     }
404   }
405 }
406
407 //=================================================================
408 /*!
409  *  GEOM_Displayer::Display
410  *  Calls Display() method for each object in the given list
411  */
412 //=================================================================
413 void GEOM_Displayer::Display( const SALOME_ListIO& theIOList, const bool updateViewer )
414 {
415   SALOME_ListIteratorOfListIO Iter( theIOList );
416   for ( ; Iter.More(); Iter.Next() ) {
417     Display( Iter.Value(), false );
418   }
419   if ( updateViewer )
420     UpdateViewer();
421 }
422
423 //=================================================================
424 /*!
425  *  GEOM_Displayer::Erase
426  *  Calls Erase() method for each object in the given list
427  */
428 //=================================================================
429 void GEOM_Displayer::Erase( const SALOME_ListIO& theIOList,
430                             const bool forced,
431                             const bool updateViewer )
432 {
433   SALOME_ListIteratorOfListIO Iter( theIOList );
434   for ( ; Iter.More(); Iter.Next() )
435     Erase( Iter.Value(), forced, false );
436
437   if ( updateViewer )
438     UpdateViewer();
439 }
440
441 //=================================================================
442 /*!
443  *  GEOM_Displayer::Redisplay
444  *  Calls Redisplay() method for each object in the given list
445  */
446 //=================================================================
447 void GEOM_Displayer::Redisplay( const SALOME_ListIO& theIOList, const bool updateViewer )
448 {
449   SALOME_ListIteratorOfListIO Iter( theIOList );
450   for ( ; Iter.More(); Iter.Next() )
451     Redisplay( Iter.Value(), false );
452
453   if ( updateViewer )
454     UpdateViewer();
455 }
456
457 //=================================================================
458 /*!
459  *  GEOM_Displayer::Update
460  *  Update OCC presentaion
461  *  [ Reimplemented from SALOME_Displayer ]
462  */
463 //=================================================================
464 void GEOM_Displayer::Update( SALOME_OCCPrs* prs )
465 {
466   SOCC_Prs* occPrs = dynamic_cast<SOCC_Prs*>( prs );
467   if ( !occPrs )
468     return;
469
470   if ( myType == GEOM_MARKER && !myShape.IsNull() && myShape.ShapeType() == TopAbs_FACE )
471   {
472     TopoDS_Face aFace = TopoDS::Face( myShape );
473     Handle(Geom_Plane) aPlane = Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( aFace ) );
474     if ( !aPlane.IsNull() )
475     {
476       gp_Ax3 aPos = aPlane->Pln().Position();
477       Handle(Geom_Axis2Placement) aPlc = new Geom_Axis2Placement( aPos.Ax2() );
478
479       Handle(GEOM_AISTrihedron) aTrh;
480
481       if ( occPrs->IsNull() )
482       {
483         aTrh = new GEOM_AISTrihedron( aPlc );
484
485         if ( HasColor() )
486           aTrh->SetColor( (Quantity_NameOfColor)GetColor() );
487
488         if ( HasWidth() )
489           aTrh->SetWidth( GetWidth() );
490
491         if ( !myIO.IsNull() )
492         {
493           aTrh->setIO( myIO );
494           aTrh->SetOwner( myIO );
495         }
496
497         occPrs->AddObject( aTrh );
498       }
499       else
500       {
501         AIS_ListOfInteractive aList;
502         occPrs->GetObjects( aList );
503         AIS_ListIteratorOfListOfInteractive anIter( aList );
504         for ( ; anIter.More(); anIter.Next() )
505         {
506           aTrh = Handle(GEOM_AISTrihedron)::DownCast( anIter.Value() );
507           if ( !aTrh.IsNull() )
508           {
509             aTrh->SetComponent( aPlc );
510             aTrh->SetToUpdate();
511           }
512         }
513       }
514
515       occPrs->SetToActivate( ToActivate() );
516     }
517   }
518   else
519   {
520     // if presentation is empty we try to create new one
521     if ( occPrs->IsNull() )
522     {
523       if ( !myShape.IsNull() )
524       {
525         //Handle(GEOM_AISShape) AISShape = new GEOM_AISShape( myShape, "" );
526         Handle(GEOM_AISShape) AISShape;
527         if (myType == GEOM_VECTOR)
528           AISShape = new GEOM_AISVector (myShape, "");
529         else {
530           if (myShape.ShapeType() != TopAbs_VERTEX && // fix pb with not displayed points
531               !TopoDS_Iterator(myShape).More())
532             return;// NPAL15983 (Bug when displaying empty groups)
533           AISShape = new GEOM_AISShape (myShape, "");
534         }
535         // Temporary staff: vertex must be infinite for correct visualization
536         AISShape->SetInfiniteState( myShape.Infinite() || myShape.ShapeType() == TopAbs_VERTEX );
537
538         // Setup shape properties here ..., e.g. display mode, color, transparency, etc
539         AISShape->SetDisplayMode( myDisplayMode );
540         AISShape->SetShadingColor( myShadingColor );
541
542         // Set color and number for iso lines
543         SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
544         QColor col = aResMgr->colorValue( "Geometry", "isos_color",
545                                           QColor(int(0.5*255), int(0.5*255), int(0.5*255)) );
546         Quantity_Color aColor = SalomeApp_Tools::color( col );
547         int anUIsoNumber = aResMgr->integerValue("OCCViewer", "iso_number_u", 1);
548         int aVIsoNumber  = aResMgr->integerValue("OCCViewer", "iso_number_v", 1);
549
550         Handle(Prs3d_IsoAspect) anAspect = AISShape->Attributes()->UIsoAspect();
551         anAspect->SetNumber( anUIsoNumber );
552         anAspect->SetColor( aColor );
553         AISShape->Attributes()->SetUIsoAspect( anAspect );
554
555         anAspect = AISShape->Attributes()->VIsoAspect();
556         anAspect->SetNumber( aVIsoNumber );
557         anAspect->SetColor( aColor );
558         AISShape->Attributes()->SetVIsoAspect( anAspect );
559
560         if ( HasColor() )
561         {
562           AISShape->SetColor( (Quantity_NameOfColor)GetColor() );
563           if ( myShape.ShapeType() == TopAbs_VERTEX )
564           {
565             Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
566             anAspect->SetColor( (Quantity_NameOfColor)GetColor() );
567             anAspect->SetScale( myScaleOfMarker );
568             anAspect->SetTypeOfMarker( myTypeOfMarker );
569             AISShape->Attributes()->SetPointAspect( anAspect );
570           }
571         }
572         else
573           {
574             if ( myShape.ShapeType() == TopAbs_VERTEX )
575               {
576                 col = aResMgr->colorValue( "Geometry", "point_color", QColor( 255, 255, 0 ) );
577                 aColor = SalomeApp_Tools::color( col );
578
579                 Handle(Prs3d_PointAspect) anAspect = AISShape->Attributes()->PointAspect();
580                 anAspect->SetColor( aColor );
581                 anAspect->SetScale( myScaleOfMarker );
582                 anAspect->SetTypeOfMarker( myTypeOfMarker );
583                 AISShape->Attributes()->SetPointAspect( anAspect );
584               }
585             else
586               {
587                 // Set line aspect
588                 col = aResMgr->colorValue( "Geometry", "wireframe_color", QColor( 255, 255, 0 ) );
589                 aColor = SalomeApp_Tools::color( col );
590
591                 Handle(Prs3d_LineAspect) anAspect = AISShape->Attributes()->LineAspect();
592                 anAspect->SetColor( aColor );
593                 AISShape->Attributes()->SetLineAspect( anAspect );
594
595                 // Set unfree boundaries aspect
596                 anAspect = AISShape->Attributes()->UnFreeBoundaryAspect();
597                 anAspect->SetColor( aColor );
598                 AISShape->Attributes()->SetUnFreeBoundaryAspect( anAspect );
599
600                 // Set free boundaries aspect
601                 col = aResMgr->colorValue( "Geometry", "free_bound_color", QColor( 0, 255, 0 ) );
602                 aColor = SalomeApp_Tools::color( col );
603
604                 anAspect = AISShape->Attributes()->FreeBoundaryAspect();
605                 anAspect->SetColor( aColor );
606                 AISShape->Attributes()->SetFreeBoundaryAspect( anAspect );
607
608                 // Set wire aspect
609                 col = aResMgr->colorValue( "Geometry", "line_color", QColor( 255, 0, 0 ) );
610                 aColor = SalomeApp_Tools::color( col );
611
612                 anAspect = AISShape->Attributes()->WireAspect();
613                 anAspect->SetColor( aColor );
614                 AISShape->Attributes()->SetWireAspect( anAspect );
615               }
616           }
617
618         if ( HasWidth() )
619           AISShape->SetWidth( GetWidth() );
620
621         if ( !myIO.IsNull() )
622         {
623           AISShape->setIO( myIO );
624           AISShape->SetOwner( myIO );
625         }
626         else if ( !myName.empty() )
627         {
628           // Workaround to allow selection of temporary objects
629           static int tempId = 0;
630           char buf[50];
631           sprintf( buf, "TEMP_%d", tempId++ );
632           Handle( SALOME_InteractiveObject ) anObj =
633             new SALOME_InteractiveObject( buf, "GEOM", myName.c_str() );
634           AISShape->setIO( anObj );
635           AISShape->SetOwner( anObj );
636         }
637         // AISShape->SetName(???); ??? necessary to set name ???
638         occPrs->AddObject( AISShape );
639
640         // In accordance with ToActivate() value object will be activated/deactivated
641         // when it will be displayed
642         occPrs->SetToActivate( ToActivate() );
643       }
644     }
645     // if presentation is found -> set again shape for it
646     else
647     {
648       if ( !myShape.IsNull() )
649       {
650         AIS_ListOfInteractive IOList;
651         occPrs->GetObjects( IOList );
652         AIS_ListIteratorOfListOfInteractive Iter( IOList );
653         for ( ; Iter.More(); Iter.Next() )
654         {
655           Handle(GEOM_AISShape) AISShape = Handle(GEOM_AISShape)::DownCast( Iter.Value() );
656           if ( AISShape.IsNull() )
657             continue;
658           if ( AISShape->Shape() != myShape )
659           {
660             AISShape->Set( myShape );
661             AISShape->UpdateSelection();
662             AISShape->SetToUpdate();
663           }
664           if ( !myIO.IsNull() )
665           {
666             AISShape->setIO( myIO );
667             AISShape->SetOwner( myIO );
668           }
669         }
670       }
671     }
672   }
673 }
674
675 //=================================================================
676 /*!
677  *  GEOM_Displayer::Update
678  *  Update VTK presentaion
679  *  [ Reimplemented from SALOME_Displayer ]
680  */
681 //=================================================================
682 void GEOM_Displayer::Update( SALOME_VTKPrs* prs )
683 {
684   SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
685   if ( !vtkPrs || myShape.IsNull() )
686     return;
687
688   vtkActorCollection* theActors = 0;
689
690   if ( myType == GEOM_MARKER && myShape.ShapeType() == TopAbs_FACE )
691   {
692     myToActivate = false;
693     GEOM_VTKTrihedron* aTrh = GEOM_VTKTrihedron::New();
694
695     if ( HasColor() )
696     {
697       Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
698       aTrh->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
699     }
700
701     Handle(Geom_Plane) aPlane =
702       Handle(Geom_Plane)::DownCast( BRep_Tool::Surface( TopoDS::Face( myShape ) ) );
703     if ( aPlane.IsNull() )
704       return;
705
706     gp_Ax2 anAx2 = aPlane->Pln().Position().Ax2();
707     aTrh->SetPlacement( new Geom_Axis2Placement( anAx2 ) );
708
709 //    if ( SVTK_Viewer* vf = dynamic_cast<SVTK_Viewer*>( GetActiveView() ) )
710 //      aTrh->SetSize( 0.5 * vf->GetTrihedronSize() );
711
712     vtkPrs->AddObject( aTrh );
713
714     theActors = vtkActorCollection::New();
715     theActors->AddItem( aTrh );
716   }
717   else
718   {
719     bool isVector = (myType == GEOM_VECTOR);
720     theActors = GEOM_AssemblyBuilder::BuildActors( myShape, 0, 0, Standard_True, isVector );
721   }
722
723   theActors->InitTraversal();
724
725   vtkActor* anActor = (vtkActor*)theActors->GetNextActor();
726
727   vtkProperty* aProp = 0;
728
729   if ( HasColor() || HasWidth() )
730   {
731     aProp = vtkProperty::New();
732     aProp->SetRepresentationToWireframe();
733   }
734
735   if ( HasColor() )
736   {
737     Quantity_Color aColor( (Quantity_NameOfColor)GetColor() );
738     aProp->SetColor( aColor.Red(), aColor.Green(), aColor.Blue() );
739   }
740
741   if ( HasWidth() )
742   {
743     aProp->SetLineWidth( GetWidth() );
744   }
745
746   while ( anActor != NULL )
747   {
748     SALOME_Actor* GActor = SALOME_Actor::SafeDownCast( anActor );
749
750     GActor->setIO( myIO );
751
752     if ( aProp )
753     {
754       GActor->SetProperty( aProp );
755       GActor->SetPreviewProperty( aProp );
756
757       GEOM_Actor* aGeomGActor = GEOM_Actor::SafeDownCast( anActor );
758       if ( aGeomGActor != 0 )
759       {
760         aGeomGActor->SetShadingProperty( aProp );
761         aGeomGActor->SetWireframeProperty( aProp );
762       }
763     }
764
765     if ( myToActivate )
766       GActor->PickableOn();
767     else
768       GActor->PickableOff();
769
770     vtkPrs->AddObject( GActor );
771
772     anActor = (vtkActor*)theActors->GetNextActor();
773   }
774
775   if ( aProp )
776     aProp->Delete();
777
778   theActors->Delete();
779 }
780
781 //=================================================================
782 /*!
783  *  GEOM_Displayer::BuildPrs
784  *  Build presentation accordint to the current viewer type
785  */
786 //=================================================================
787 SALOME_Prs* GEOM_Displayer::BuildPrs( GEOM::GEOM_Object_ptr theObj )
788 {
789   if ( theObj->_is_nil() )
790     return 0;
791
792   myViewFrame = GetActiveView();
793   if ( myViewFrame == 0 )
794     return 0;
795
796   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
797   if ( aPrs == 0 )
798     return 0;
799
800   internalReset();
801   setShape( GEOM_Client().GetShape( GeometryGUI::GetGeomGen(), theObj ) );
802   myType = theObj->GetType();
803
804   // Update presentation
805   UpdatePrs( aPrs );
806
807   return aPrs;
808 }
809
810 //=================================================================
811 /*!
812  *  GEOM_Displayer::BuildPrs
813  *  Build presentation accordint to the current viewer type
814  */
815 //=================================================================
816 SALOME_Prs* GEOM_Displayer::BuildPrs( const TopoDS_Shape& theShape )
817 {
818   myViewFrame = GetActiveView();
819   if ( theShape.IsNull() || myViewFrame == 0 )
820     return 0;
821
822   SALOME_Prs* aPrs = myViewFrame->CreatePrs();
823   if ( aPrs == 0 )
824     return 0;
825
826   internalReset();
827   setShape( theShape );
828   myType = -1;
829
830   UpdatePrs( aPrs );
831
832   return aPrs;
833 }
834
835 //=================================================================
836 /*!
837  *  GEOM_Displayer::buildPresentation
838  *  Builds/finds object's presentation for the current viewer
839  *  Calls corresponding Update() method by means of double dispatch
840  *  [ internal ]
841  */
842 //=================================================================
843 SALOME_Prs* GEOM_Displayer::buildPresentation( const QString& entry,
844                                                SALOME_View* theViewFrame )
845 {
846   SALOME_Prs* prs = 0;
847   internalReset();
848
849   myViewFrame = theViewFrame ? theViewFrame : GetActiveView();
850
851   if ( myViewFrame )
852   {
853     prs = LightApp_Displayer::buildPresentation( entry, theViewFrame );
854     if ( prs )
855     {
856       Handle( SALOME_InteractiveObject ) theIO = new SALOME_InteractiveObject();
857       theIO->setEntry( entry.latin1() );
858       if ( !theIO.IsNull() )
859       {
860         // set interactive object
861         setIO( theIO );
862         //  Find SOBject (because shape should be published previously)
863         SUIT_Session* session = SUIT_Session::session();
864         SUIT_Application* app = session->activeApplication();
865         if ( app )
866         {
867           SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( app->activeStudy() );
868           if ( study )
869           {
870             _PTR(SObject) SO ( study->studyDS()->FindObjectID( theIO->getEntry() ) );
871             if ( SO )
872             {
873               // get CORBA reference to data object
874               CORBA::Object_var object = GeometryGUI::ClientSObjectToObject(SO);
875               if ( !CORBA::is_nil( object ) )
876               {
877                 // downcast to GEOM object
878                 GEOM::GEOM_Object_var GeomObject = GEOM::GEOM_Object::_narrow( object );
879                 if ( !GeomObject->_is_nil() )
880                 {
881                   // finally set shape
882                   setShape( GEOM_Client().GetShape( GeometryGUI::GetGeomGen(), GeomObject ) );
883                   myType = GeomObject->GetType();
884                 }
885               }
886             }
887           }
888         }
889       }
890       UpdatePrs( prs );  // Update presentation by using of the double dispatch
891     }
892   }
893   return prs;
894 }
895
896 //=================================================================
897 /*!
898  *  GEOM_Displayer::internalReset
899  *  Resets internal data
900  *  [internal]
901  */
902 //=================================================================
903 void GEOM_Displayer::internalReset()
904 {
905   myIO.Nullify();
906   myShape.Nullify();
907 }
908
909 //=================================================================
910 /*!
911  *  GEOM_Displayer::LocalSelection
912  *  Activate selection of CAD shapes with activisation of selection
913  *  of their sub-shapes (with opened local context for OCC viewer)
914  */
915 //=================================================================
916 void GEOM_Displayer::LocalSelection( const Handle(SALOME_InteractiveObject)& theIO, const int theMode )
917 {
918   SUIT_Session* session = SUIT_Session::session();
919   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
920   if ( !app )
921     return;
922
923   LightApp_SelectionMgr* sm = app->selectionMgr();
924
925   // remove all filters from selection
926   sm->clearFilters();
927
928   SALOME_View* vf = GetActiveView();
929   if ( vf ) {
930     if (!theIO.IsNull() && !vf->isVisible(theIO))
931       Display(theIO);
932     SALOME_Prs* prs = vf->CreatePrs( theIO.IsNull() ? 0 : theIO->getEntry() );
933     vf->LocalSelection( prs, theMode );
934     delete prs;  // delete presentation because displayer is its owner
935   }
936 }
937
938 //=================================================================
939 /*!
940  *  GEOM_Displayer::globalSelection
941  *  Activate selection of CAD shapes without activisation of selection
942  *  of their sub-shapes (without opened local context for OCC viewer)
943  */
944 //=================================================================
945 void GEOM_Displayer::GlobalSelection( const int theMode, const bool update )
946 {
947   TColStd_MapOfInteger aModes;
948   aModes.Add( theMode );
949   GlobalSelection( aModes, update );
950 }
951
952 //=================================================================
953 /*!
954  *  GEOM_Displayer::globalSelection
955  *  Activate selection of CAD shapes without activisation of selection
956  *  of their sub-shapes (without opened local context for OCC viewer)
957  */
958 //=================================================================
959 void GEOM_Displayer::GlobalSelection( const TColStd_MapOfInteger& theModes,
960                                       const bool update )
961 {
962   SUIT_Session* session = SUIT_Session::session();
963   SalomeApp_Application* app = dynamic_cast<SalomeApp_Application*>( session->activeApplication() );
964   if ( !app )
965     return;
966
967   SALOME_View* vf = GetActiveView();
968   if ( vf == 0 )
969     return;
970
971   // Close local context
972   vf->GlobalSelection( update );
973
974   // Set selection filters in accordance with current mode
975   LightApp_SelectionMgr* sm = app->selectionMgr();
976   if ( !sm )
977     return;
978
979   // Remove from selection temporary objects if necessary
980   if ( !theModes.Contains( GEOM_PREVIEW ) )
981     clearTemporary( sm );
982
983   //@ aSel->ClearIndex();
984
985   sm->clearFilters();
986
987   // Remove filters from AIS_InteractiveContext
988   Handle(AIS_InteractiveContext) ic;
989   SOCC_Viewer* viewer = dynamic_cast<SOCC_Viewer*>( vf );
990   if ( viewer )
991     {
992       ic = viewer->getAISContext();
993       if ( !ic.IsNull() )
994         ic->RemoveFilters();
995     }
996
997   if ( theModes.Contains( GEOM_ALLOBJECTS ) )
998     return;
999
1000   SUIT_SelectionFilter* aFilter;
1001   if ( theModes.Extent() == 1 )
1002     {
1003       int aMode = TColStd_MapIteratorOfMapOfInteger( theModes ).Key();
1004       aFilter = getFilter( aMode );
1005     }
1006   else if ( theModes.Extent() > 1 )
1007     {
1008       TColStd_MapOfInteger aTopAbsModes;
1009       TColStd_MapIteratorOfMapOfInteger anIter( theModes );
1010       QPtrList<SUIT_SelectionFilter> aListOfFilters;
1011       for ( ; anIter.More(); anIter.Next() )
1012         {
1013           SUIT_SelectionFilter* aFilter = getFilter( anIter.Key() );
1014           if ( aFilter )
1015             aListOfFilters.append( aFilter );
1016         }
1017
1018       aFilter = new GEOM_LogicalFilter( aListOfFilters, GEOM_LogicalFilter::LO_OR );
1019     }
1020   else
1021     return;
1022
1023   if ( aFilter )
1024     {
1025       sm->installFilter( aFilter );
1026       if ( !ic.IsNull() )
1027         {
1028           Handle(GEOM_OCCFilter) anOCCFilter = new GEOM_OCCFilter( sm );
1029           ic->AddFilter( anOCCFilter );
1030         }
1031     }
1032 }
1033
1034 //=================================================================
1035 /*!
1036  *  GEOM_Displayer::LocalSelection
1037  *  Activate selection of CAD shapes with activisation of selection
1038  *  of their sub-shapes (with opened local context for OCC viewer)
1039  */
1040 //=================================================================
1041 void GEOM_Displayer::LocalSelection( const SALOME_ListIO& theIOList, const int theMode )
1042 {
1043   SALOME_ListIteratorOfListIO Iter( theIOList );
1044   for ( ; Iter.More(); Iter.Next() )
1045     LocalSelection( Iter.Value(), theMode );
1046 }
1047
1048 //=================================================================
1049 /*!
1050  *  GEOM_Displayer::BeforeDisplay
1051  *  Called before displaying of pars. Close local context
1052  *  [ Reimplemented from SALOME_Displayer ]
1053  */
1054 //=================================================================
1055 void GEOM_Displayer::BeforeDisplay( SALOME_View* v, const SALOME_OCCViewType& )
1056 {
1057   SOCC_Viewer* vf = dynamic_cast<SOCC_Viewer*>( v );
1058   if ( vf )
1059   {
1060     Handle(AIS_InteractiveContext) ic = vf->getAISContext();
1061     if ( !ic.IsNull() )
1062     {
1063       if ( ic->HasOpenedContext() )
1064       ic->CloseAllContexts();
1065     }
1066   }
1067 }
1068
1069 void GEOM_Displayer::AfterDisplay( SALOME_View*, const SALOME_OCCViewType& )
1070 {
1071 }
1072
1073
1074 //=================================================================
1075 /*!
1076  *  GEOM_Displayer::SetColor
1077  *  Set color for shape displaying. If it is equal -1 then default color is used.
1078  *  Available values are from Quantity_NameOfColor enumeration
1079  */
1080 //=================================================================
1081 void GEOM_Displayer::SetColor( const int color )
1082 {
1083   if ( color == -1 )
1084     UnsetColor();
1085   else
1086   {
1087     myColor = color;
1088     myShadingColor = Quantity_Color( (Quantity_NameOfColor)color );
1089   }
1090 }
1091
1092 int GEOM_Displayer::GetColor() const
1093 {
1094   return myColor;
1095 }
1096
1097 bool GEOM_Displayer::HasColor() const
1098 {
1099   return myColor != -1;
1100 }
1101
1102 void GEOM_Displayer::UnsetColor()
1103 {
1104   myColor = -1;
1105   
1106   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1107   QColor col = resMgr->colorValue( "Geometry", "shading_color", QColor( 255, 0, 0 ) );
1108   myShadingColor = SalomeApp_Tools::color( col );
1109 }
1110
1111 //=================================================================
1112 /*!
1113  *  GEOM_Displayer::SetWidth
1114  *  Set width of shape displaying. If it is equal -1 then default width is used.
1115  */
1116 //=================================================================
1117 void GEOM_Displayer::SetWidth( const double width )
1118 {
1119   myWidth = width;
1120 }
1121
1122 double GEOM_Displayer::GetWidth() const
1123 {
1124   return myWidth;
1125 }
1126
1127 bool GEOM_Displayer::HasWidth() const
1128 {
1129   return myWidth != -1;
1130 }
1131
1132 void GEOM_Displayer::UnsetWidth()
1133 {
1134   myWidth = -1;
1135 }
1136
1137 //=================================================================
1138 /*!
1139  *  GEOM_Displayer::SetToActivate
1140  *  This method is used for activisation/deactivisation of objects to be displayed
1141  */
1142 //=================================================================
1143 void GEOM_Displayer::SetToActivate( const bool toActivate )
1144 {
1145   myToActivate = toActivate;
1146 }
1147 bool GEOM_Displayer::ToActivate() const
1148 {
1149   return myToActivate;
1150 }
1151
1152 //=================================================================
1153 /*!
1154  *  GEOM_Displayer::clearTemporary
1155  *  Removes from selection temporary objects
1156  */
1157 //=================================================================
1158 void GEOM_Displayer::clearTemporary( LightApp_SelectionMgr* theSelMgr )
1159 {
1160   SALOME_ListIO selected, toSelect;
1161   theSelMgr->selectedObjects( selected );
1162
1163   for (  SALOME_ListIteratorOfListIO it( selected ) ; it.More(); it.Next() ) {
1164     Handle(SALOME_InteractiveObject) io = it.Value();
1165     if ( !io.IsNull() && io->hasEntry() && strncmp( io->getEntry(), "TEMP_", 5 ) != 0 )
1166       toSelect.Append( it.Value() );
1167   }
1168
1169   theSelMgr->setSelectedObjects( toSelect, true );
1170 }
1171
1172 void GEOM_Displayer::SetName( const char* theName )
1173 {
1174   myName = theName;
1175 }
1176
1177 void GEOM_Displayer::UnsetName()
1178 {
1179   myName = "";
1180 }
1181
1182 SalomeApp_Study* GEOM_Displayer::getStudy() const
1183 {
1184   return dynamic_cast<SalomeApp_Study*>( myApp->activeStudy() );
1185 }
1186
1187 void GEOM_Displayer::setIO( const Handle(SALOME_InteractiveObject)& theIO )
1188 {
1189   myIO = theIO;
1190 }
1191
1192 void GEOM_Displayer::setShape( const TopoDS_Shape& theShape )
1193 {
1194   myShape = theShape;
1195 }
1196
1197 bool GEOM_Displayer::canBeDisplayed( const QString& /*entry*/, const QString& viewer_type ) const
1198 {
1199   return viewer_type==SOCC_Viewer::Type() || viewer_type==SVTK_Viewer::Type();
1200 }
1201
1202 int GEOM_Displayer::SetDisplayMode( const int theMode )
1203 {
1204   int aPrevMode = myDisplayMode;
1205   if ( theMode != -1 )
1206     myDisplayMode = theMode;
1207   else
1208   {
1209     SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1210     myDisplayMode = resMgr->integerValue( "Geometry", "display_mode", 0 );
1211   }
1212   return aPrevMode;
1213 }
1214
1215 int GEOM_Displayer::GetDisplayMode() const
1216 {
1217   return myDisplayMode;
1218 }
1219
1220 int GEOM_Displayer::UnsetDisplayMode()
1221 {
1222   int aPrevMode = myDisplayMode;
1223   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
1224   myDisplayMode = resMgr->integerValue( "Geometry", "display_mode", 0 );
1225   return aPrevMode;
1226 }