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