Salome HOME
Fix compilation problem
[modules/smesh.git] / src / OBJECT / SMESH_Actor.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 //  SMESH OBJECT : interactive object for SMESH visualization
24 //  File   : SMESH_Actor.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27
28 #include "SMESH_ActorDef.h"
29 #include "SMESH_ActorUtils.h"
30 #include "SMESH_DeviceActor.h"
31 #include "SMESH_NodeLabelActor.h"
32 #include "SMESH_CellLabelActor.h"
33 #include "SMESH_ObjectDef.h"
34 #include "SMESH_ControlsDef.hxx"
35 #include "SMDS_UnstructuredGrid.hxx"
36 #include "SMESH_ScalarBarActor.h"
37 #include "VTKViewer_ExtractUnstructuredGrid.h"
38 #include "VTKViewer_FramedTextActor.h"
39 #include "SALOME_InteractiveObject.hxx"
40 #include "SMESH_SVTKActor.h"
41
42 #include "SUIT_Session.h"
43 #include "SUIT_ResourceMgr.h"
44
45 #include <Qtx.h>
46
47 #ifndef DISABLE_PLOT2DVIEWER
48 #include <SPlot2d_Histogram.h>
49 #endif
50
51 #include <vtkProperty.h>
52 #include <vtkTimeStamp.h>
53 #include <vtkObjectFactory.h>
54 #include <vtkShrinkPolyData.h>
55 #include <vtkMergeFilter.h>
56
57 #include <vtkMatrix4x4.h>
58 #include <vtkUnstructuredGrid.h>
59 #include <vtkPointData.h>
60 #include <vtkCellData.h>
61
62 #include <vtkMapper.h>
63 #include <vtkRenderer.h>
64
65 #include <vtkCell.h>
66 #include <vtkIdList.h>
67 #include <vtkIntArray.h>
68
69 #include <vtkActor2D.h>
70 #include <vtkProperty2D.h>
71 #include <vtkPolyData.h>
72 #include <vtkTextProperty.h>
73
74 #include <vtkLookupTable.h>
75
76 #include <vtkMath.h>
77 #include <vtkPlane.h>
78 #include <vtkPlaneCollection.h>
79 #include <vtkImplicitBoolean.h>
80 #include <vtkImplicitFunctionCollection.h>
81
82 #include "utilities.h"
83
84 #ifdef _DEBUG_
85 static int MYDEBUG = 0;
86 #else
87 static int MYDEBUG = 0;
88 #endif
89
90 static int aLineWidthInc = 2;
91
92
93 SMESH_ActorDef* SMESH_ActorDef::New(){
94   return new SMESH_ActorDef();
95 }
96
97
98 SMESH_Actor* SMESH_Actor::New(TVisualObjPtr theVisualObj,
99                               const char* theEntry,
100                               const char* theName,
101                               int theIsClear)
102 {
103   SMESH_ActorDef* anActor = NULL;
104   if(theVisualObj->IsValid() ) {
105     anActor = SMESH_ActorDef::New();
106     if(!anActor->Init(theVisualObj,theEntry,theName,theIsClear)){
107       anActor->Delete();
108       anActor = NULL;
109     }
110     if( anActor )
111       anActor->UpdateScalarBar();
112   }
113   return anActor;
114 }
115
116
117 SMESH_ActorDef::SMESH_ActorDef()
118 {
119   if(MYDEBUG) MESSAGE("SMESH_ActorDef - "<<this);
120   myBaseActor = SMESH_DeviceActor::New();
121
122   myTimeStamp = vtkTimeStamp::New();
123
124   myIsPointsVisible = false;
125   myIsEntityModeCache = false;
126
127   myHighlightActor = SMESH_SVTKActor::New();
128   myHighlightActor->Delete(); // vtkSmartPointer!
129   myHighlightActor->Initialize();
130
131   myPreHighlightActor = SMESH_SVTKActor::New();
132   myPreHighlightActor->Delete();
133   myPreHighlightActor->Initialize();
134
135   myIsShrinkable = false;
136   myIsShrunk = false;
137
138   myIsFacesOriented = false;
139
140   myControlsPrecision = -1;
141   SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
142
143   if ( mgr && mgr->booleanValue( "SMESH", "use_precision", false ) )
144     myControlsPrecision = mgr->integerValue( "SMESH", "controls_precision", -1);
145
146   double aElem0DSize    = SMESH::GetFloat("SMESH:elem0d_size",5);
147   double aBallElemSize  = SMESH::GetFloat("SMESH:ball_elem_size",10);
148   double aBallElemScale = SMESH::GetFloat("SMESH:ball_elem_scale",1.0);
149   double aLineWidth     = SMESH::GetFloat("SMESH:element_width",1);
150   double aOutlineWidth  = SMESH::GetFloat("SMESH:outline_width",1);
151
152   SMESH::LabelFont aFamilyNd = SMESH::FntTimes;
153   bool aBoldNd    = true;
154   bool anItalicNd = false;
155   bool aShadowNd  = false;
156   int  aSizeNd    = 10;
157   if ( mgr->hasValue( "SMESH", "numbering_node_font" ) ) {
158     QFont f = mgr->fontValue( "SMESH", "numbering_node_font" );
159     if ( f.family()      == "Arial" )   aFamilyNd = SMESH::FntArial;
160     else if ( f.family() == "Courier" ) aFamilyNd = SMESH::FntCourier;
161     else if ( f.family() == "Times" )   aFamilyNd = SMESH::FntTimes;
162     aBoldNd    = f.bold();
163     anItalicNd = f.italic();
164     aShadowNd  = f.overline();
165     aSizeNd    = f.pointSize();
166   }
167   double anRGBNd[3] = {1,1,1};
168   SMESH::GetColor( "SMESH", "numbering_node_color", anRGBNd[0], anRGBNd[1], anRGBNd[2], QColor( 255, 255, 255 ) );
169
170   SMESH::LabelFont aFamilyEl = SMESH::FntTimes;
171   bool aBoldEl    = true;
172   bool anItalicEl = false;
173   bool aShadowEl  = false;
174   int  aSizeEl    = 12;
175   if ( mgr->hasValue( "SMESH", "numbering_elem_font" ) ) {
176     QFont f = mgr->fontValue( "SMESH", "numbering_elem_font" );
177     if ( f.family()      == "Arial" )   aFamilyEl = SMESH::FntArial;
178     else if ( f.family() == "Courier" ) aFamilyEl = SMESH::FntCourier;
179     else if ( f.family() == "Times" )   aFamilyEl = SMESH::FntTimes;
180     aBoldEl    = f.bold();
181     anItalicEl = f.italic();
182     aShadowEl  = f.overline();
183     aSizeEl    = f.pointSize();
184   }
185   double anRGBEl[3] = {0,1,0};
186   SMESH::GetColor( "SMESH", "numbering_elem_color", anRGBEl[0], anRGBEl[1], anRGBEl[2], QColor( 0, 255, 0 ) );
187
188   vtkMatrix4x4 *aMatrix = vtkMatrix4x4::New();
189   VTKViewer_ExtractUnstructuredGrid* aFilter = NULL;
190
191   //Definition 2D and 3D devices of the actor
192   //-----------------------------------------
193   double anRGB[3] = {1,1,1};
194   mySurfaceProp = vtkProperty::New();
195   QColor ffc, bfc;
196   int delta;
197   SMESH::GetColor( "SMESH", "fill_color", ffc, delta, "0,170,255|-100" ) ;
198   mySurfaceProp->SetColor( ffc.red() / 255. , ffc.green() / 255. , ffc.blue() / 255. );
199   myDeltaBrightness = delta;
200
201   myBackSurfaceProp = vtkProperty::New();
202   bfc = Qtx::mainColorToSecondary(ffc, delta);
203   myBackSurfaceProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
204
205   myNormalVProp = vtkProperty::New();
206   SMESH::GetColor( "SMESH", "volume_color", ffc, delta, "255,0,170|-100" );
207   myNormalVProp->SetColor( ffc.redF(), ffc.greenF(), ffc.blueF() );
208   myDeltaVBrightness = delta;
209
210   myReversedVProp = vtkProperty::New();
211   bfc = Qtx::mainColorToSecondary(ffc, delta);
212   myReversedVProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
213
214   my2DActor = SMESH_CellLabelActor::New();
215   my2DActor->SetStoreGemetryMapping(true);
216   my2DActor->SetUserMatrix(aMatrix);
217   my2DActor->PickableOff();
218   my2DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
219   my2DActor->SetProperty(mySurfaceProp);
220   my2DActor->SetBackfaceProperty(myBackSurfaceProp);
221   my2DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
222   aFilter = my2DActor->GetExtractUnstructuredGrid();
223   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
224   aFilter->RegisterCellsWithType(VTK_TRIANGLE);
225   aFilter->RegisterCellsWithType(VTK_QUAD);
226   aFilter->RegisterCellsWithType(VTK_POLYGON);
227   aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
228   aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
229   aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
230   aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
231   aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
232
233   my2DExtProp = vtkProperty::New();
234   my2DExtProp->DeepCopy(mySurfaceProp);
235   SMESH::GetColor( "SMESH", "fill_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
236   anRGB[0] = 1 - anRGB[0];
237   anRGB[1] = 1 - anRGB[1];
238   anRGB[2] = 1 - anRGB[2];
239   my2DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
240
241   my2DExtActor = SMESH_DeviceActor::New();
242   my2DExtActor->SetUserMatrix(aMatrix);
243   my2DExtActor->PickableOff();
244   my2DExtActor->SetProperty(my2DExtProp);
245   my2DExtActor->SetBackfaceProperty(my2DExtProp);
246   my2DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
247   aFilter = my2DExtActor->GetExtractUnstructuredGrid();
248   aFilter->RegisterCellsWithType(VTK_TRIANGLE);
249   aFilter->RegisterCellsWithType(VTK_QUAD);
250   aFilter->RegisterCellsWithType(VTK_POLYGON);
251   aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
252   aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
253   aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
254   aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
255   aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
256
257   my3DActor = SMESH_CellLabelActor::New();
258   my3DActor->SetStoreGemetryMapping(true);
259   my3DActor->SetUserMatrix(aMatrix);
260   my3DActor->PickableOff();
261   my3DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
262   my3DActor->SetProperty(myNormalVProp);
263   my3DActor->SetBackfaceProperty(myReversedVProp);
264   my3DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
265   my3DActor->SetCoincident3DAllowed(true);
266   aFilter = my3DActor->GetExtractUnstructuredGrid();
267   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
268   aFilter->RegisterCellsWithType(VTK_TETRA);
269   aFilter->RegisterCellsWithType(VTK_VOXEL);
270   aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
271   aFilter->RegisterCellsWithType(VTK_WEDGE);
272   aFilter->RegisterCellsWithType(VTK_PYRAMID);
273   aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
274   aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
275   aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
276   aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
277   aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
278   aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
279   aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
280   aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
281
282   my3DExtProp = vtkProperty::New();
283   my3DExtProp->DeepCopy(myNormalVProp);
284   SMESH::GetColor( "SMESH", "volume_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 0, 170 ) );
285   anRGB[0] = 1 - anRGB[0];
286   anRGB[1] = 1 - anRGB[1];
287   anRGB[2] = 1 - anRGB[2];
288   my3DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
289
290   my3DExtActor = SMESH_DeviceActor::New();
291   my3DExtActor->SetUserMatrix(aMatrix);
292   my3DExtActor->PickableOff();
293   my3DExtActor->SetProperty(my3DExtProp);
294   my3DExtActor->SetBackfaceProperty(my3DExtProp);
295   my3DExtActor->SetRepresentation(SMESH_DeviceActor::eSurface);
296   my3DExtActor->SetCoincident3DAllowed(true);
297   aFilter = my3DExtActor->GetExtractUnstructuredGrid();
298   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
299   aFilter->RegisterCellsWithType(VTK_TETRA);
300   aFilter->RegisterCellsWithType(VTK_VOXEL);
301   aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
302   aFilter->RegisterCellsWithType(VTK_WEDGE);
303   aFilter->RegisterCellsWithType(VTK_PYRAMID);
304   aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
305   aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
306   aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
307   aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
308   aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
309   aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
310   aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
311   aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
312
313   //Definition 1D device of the actor
314   //---------------------------------
315   myEdgeProp = vtkProperty::New();
316   myEdgeProp->SetAmbient(1.0);
317   myEdgeProp->SetDiffuse(0.0);
318   myEdgeProp->SetSpecular(0.0);
319   SMESH::GetColor( "SMESH", "wireframe_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
320   myEdgeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
321   myEdgeProp->SetLineWidth(aLineWidth);
322
323   my1DActor = SMESH_CellLabelActor::New();
324   my1DActor->SetStoreGemetryMapping(true);
325   my1DActor->SetUserMatrix(aMatrix);
326   my1DActor->PickableOff();
327   my1DActor->SetHighlited(true);
328   my1DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
329   my1DActor->SetProperty(myEdgeProp);
330   my1DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
331   aFilter = my1DActor->GetExtractUnstructuredGrid();
332   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
333   aFilter->RegisterCellsWithType(VTK_LINE);
334   aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
335
336   my1DProp = vtkProperty::New();
337   my1DProp->DeepCopy(myEdgeProp);
338   my1DProp->SetLineWidth(aLineWidth + aLineWidthInc);
339   my1DProp->SetPointSize(aElem0DSize);
340
341   my1DExtProp = vtkProperty::New();
342   my1DExtProp->DeepCopy(myEdgeProp);
343   anRGB[0] = 1 - anRGB[0];
344   anRGB[1] = 1 - anRGB[1];
345   anRGB[2] = 1 - anRGB[2];
346   my1DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
347   my1DExtProp->SetLineWidth(aLineWidth + aLineWidthInc);
348   my1DExtProp->SetPointSize(aElem0DSize);
349
350   my1DExtActor = SMESH_DeviceActor::New();
351   my1DExtActor->SetUserMatrix(aMatrix);
352   my1DExtActor->PickableOff();
353   my1DExtActor->SetHighlited(true);
354   my1DExtActor->SetVisibility(false);
355   my1DExtActor->SetProperty(my1DExtProp);
356   my1DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
357   aFilter = my1DExtActor->GetExtractUnstructuredGrid();
358   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
359   aFilter->RegisterCellsWithType(VTK_LINE);
360   aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
361
362
363   //Definition 0D device of the actor (0d elements)
364   //-----------------------------------------------
365   my0DProp = vtkProperty::New();
366   SMESH::GetColor( "SMESH", "elem0d_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 0 ) );
367   my0DProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
368   my0DProp->SetPointSize(aElem0DSize);
369
370   my0DActor = SMESH_CellLabelActor::New();
371   my0DActor->SetUserMatrix(aMatrix);
372   my0DActor->SetStoreGemetryMapping(true);
373   my0DActor->PickableOff();
374   my0DActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
375   my0DActor->SetVisibility(false);
376   my0DActor->SetProperty(my0DProp);
377   my0DActor->SetRepresentation(SMESH_DeviceActor::eSurface);
378   aFilter = my0DActor->GetExtractUnstructuredGrid();
379   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
380   aFilter->RegisterCellsWithType(VTK_VERTEX);
381
382   //Definition 0D device of the actor (ball elements)
383   //-----------------------------------------------
384   myBallProp = vtkProperty::New();
385   SMESH::GetColor( "SMESH", "ball_elem_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 85, 255 ) );
386   myBallProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
387   myBallProp->SetPointSize(aBallElemSize);
388
389   myBallActor = SMESH_CellLabelActor::New();
390   myBallActor->SetUserMatrix(aMatrix);
391   myBallActor->SetStoreGemetryMapping(true);
392   myBallActor->PickableOff();
393   myBallActor->SetFontProperties( aFamilyEl, aSizeEl, aBoldEl, anItalicEl, aShadowEl, anRGBEl[0], anRGBEl[1], anRGBEl[2] );
394   myBallActor->SetVisibility(false);
395   myBallActor->SetProperty(myBallProp);
396   myBallActor->SetRepresentation(SMESH_DeviceActor::eSurface);
397   myBallActor->SetBallEnabled(true);
398   aFilter = myBallActor->GetExtractUnstructuredGrid();
399   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
400   aFilter->RegisterCellsWithType(VTK_POLY_VERTEX);
401
402   //my0DExtProp = vtkProperty::New();
403   //my0DExtProp->DeepCopy(my0DProp);
404   //anRGB[0] = 1 - anRGB[0];
405   //anRGB[1] = 1 - anRGB[1];
406   //anRGB[2] = 1 - anRGB[2];
407   //my0DExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
408   //my0DExtProp->SetPointSize(aElem0DSize);
409   //
410   //my0DExtActor = SMESH_DeviceActor::New();
411   //my0DExtActor->SetUserMatrix(aMatrix);
412   //my0DExtActor->SetStoreClippingMapping(true);
413   //my0DExtActor->PickableOff();
414   //my0DExtActor->SetHighlited(true);
415   //my0DExtActor->SetVisibility(false);
416   //my0DExtActor->SetProperty(my0DExtProp);
417   //my0DExtActor->SetRepresentation(SMESH_DeviceActor::eInsideframe);
418   //aFilter = my0DExtActor->GetExtractUnstructuredGrid();
419   ////aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
420   //aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
421   //aFilter->RegisterCellsWithType(VTK_VERTEX);
422
423
424   //Definition 0D device of the actor (nodes)
425   //-----------------------------------------
426   myNodeProp = vtkProperty::New();
427   SMESH::GetColor( "SMESH", "node_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 0, 0 ) );
428   myNodeProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
429
430   myNodeActor = SMESH_NodeLabelActor::New();
431   myNodeActor->SetUserMatrix(aMatrix);
432   myNodeActor->SetStoreClippingMapping(true);
433   myNodeActor->PickableOff();
434   myNodeActor->SetVisibility(false);
435   myNodeActor->SetFontProperties( aFamilyNd, aSizeNd, aBoldNd, anItalicNd, aShadowNd, anRGBNd[0], anRGBNd[1], anRGBNd[2] );
436   myNodeActor->SetProperty(myNodeProp);
437   myNodeActor->SetRepresentation(SMESH_DeviceActor::ePoint);
438   aFilter = myNodeActor->GetExtractUnstructuredGrid();
439   aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
440
441   myNodeExtProp = vtkProperty::New();
442   myNodeExtProp->DeepCopy(myNodeProp);
443   anRGB[0] = 1 - anRGB[0];
444   anRGB[1] = 1 - anRGB[1];
445   anRGB[2] = 1 - anRGB[2];
446   myNodeExtProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
447
448   myNodeExtActor = SMESH_DeviceActor::New();
449   myNodeExtActor->SetUserMatrix(aMatrix);
450   myNodeExtActor->SetStoreClippingMapping(true);
451   myNodeExtActor->PickableOff();
452   myNodeExtActor->SetHighlited(true);
453   myNodeExtActor->SetVisibility(false);
454   myNodeExtActor->SetProperty(myNodeExtProp);
455   myNodeExtActor->SetRepresentation(SMESH_DeviceActor::ePoint);
456   aFilter = myNodeExtActor->GetExtractUnstructuredGrid();
457   aFilter->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
458   aFilter->RegisterCellsWithType(VTK_VERTEX);
459
460   //Definition of Pickable and Highlitable engines
461   //----------------------------------------------
462
463   myBaseActor->SetUserMatrix(aMatrix);
464   myBaseActor->SetStoreGemetryMapping(true);
465   myBaseActor->GetProperty()->SetOpacity(0.0);
466   myPickableActor = myBaseActor;
467
468   myHighlightProp = vtkProperty::New();
469   myHighlightProp->SetAmbient(1.0);
470   myHighlightProp->SetDiffuse(0.0);
471   myHighlightProp->SetSpecular(0.0);
472   SMESH::GetColor( "SMESH", "selection_object_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 255, 255 ) );
473   myHighlightProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
474   myHighlightProp->SetPointSize(aElem0DSize); // ??
475   myHighlightProp->SetLineWidth(aLineWidth);
476   myHighlightProp->SetRepresentation(1);
477
478   myOutLineProp = vtkProperty::New();
479   myOutLineProp->SetAmbient(1.0);
480   myOutLineProp->SetDiffuse(0.0);
481   myOutLineProp->SetSpecular(0.0);
482   SMESH::GetColor( "SMESH", "outline_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 70, 0 ) );
483   myOutLineProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
484   myOutLineProp->SetLineWidth(aOutlineWidth);
485   myOutLineProp->SetRepresentation(1);
486
487   myPreselectProp = vtkProperty::New();
488   myPreselectProp->SetAmbient(1.0);
489   myPreselectProp->SetDiffuse(0.0);
490   myPreselectProp->SetSpecular(0.0);
491   SMESH::GetColor( "SMESH", "highlight_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 255, 255 ) );
492   myPreselectProp->SetColor(anRGB[0],anRGB[1],anRGB[2]);
493   myPreselectProp->SetPointSize(aElem0DSize); // ??
494   myPreselectProp->SetLineWidth(aLineWidth);
495   myPreselectProp->SetRepresentation(1);
496
497   myHighlitableActor = SMESH_DeviceActor::New();
498   myHighlitableActor->SetUserMatrix(aMatrix);
499   myHighlitableActor->PickableOff();
500   myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
501   myHighlitableActor->SetCoincident3DAllowed(true);
502
503   aMatrix->Delete();
504
505   myName = "";
506   myIO = NULL;
507
508   myControlMode = eNone;
509   myControlActor = my2DActor;
510
511   //Definition of myScalarBarActor
512   //------------------------------
513   myLookupTable = vtkLookupTable::New();
514   //Fix for Bug PAL5195 - SMESH764:
515   //Controls - Aspect Ratio: incorrect colors of the best and worst values
516   myLookupTable->SetHueRange(0.667,0.0);
517
518   myScalarBarActor = SMESH_ScalarBarActor::New();
519   myScalarBarActor->SetVisibility(false);
520   myScalarBarActor->SetLookupTable(myLookupTable);
521
522   //Fix for Bug 13314:
523   //Incorrect "Min value" in Scalar Bar in Mesh:
524   //  myScalarBarActor->SetLabelFormat("%.4g");
525   // changes was commented because of regression bug IPAL 19981
526
527   mgr = SUIT_Session::session()->resourceMgr();
528   if( !mgr )
529     return;
530
531   myEntityMode = eAllEntity;
532   myEntityModeCache = eAllEntity;
533
534   // Clipping planes
535   myImplicitBoolean = vtkImplicitBoolean::New();
536   myImplicitBoolean->SetOperationTypeToIntersection();
537
538   myPlaneCollection = vtkPlaneCollection::New();
539
540   //Quadratic 2D elements representation
541   //-----------------------------------------------------------------------------
542   int aQuadratic2DMode = mgr->integerValue( "SMESH", "quadratic_mode", 0);
543   if(aQuadratic2DMode == 0){
544     myHighlitableActor->SetQuadraticArcMode(false);
545     my2DActor->SetQuadraticArcMode(false);
546     my1DActor->SetQuadraticArcMode(false);
547   }
548   else if(aQuadratic2DMode == 1){
549     myHighlitableActor->SetQuadraticArcMode(true);
550     my2DActor->SetQuadraticArcMode(true);
551     my1DActor->SetQuadraticArcMode(true);
552   }
553
554   int aQuadraticAngle = mgr->integerValue( "SMESH", "max_angle", 2);
555   myHighlitableActor->SetQuadraticArcAngle(aQuadraticAngle);
556   my2DActor->SetQuadraticArcAngle(aQuadraticAngle);
557
558   // Set colors of the name actor
559   SMESH::GetColor( "SMESH", "default_grp_color", anRGB[0], anRGB[1], anRGB[2], QColor( 0, 170, 255 ) );
560   myNameActor->SetBackgroundColor(anRGB[0], anRGB[1], anRGB[2]);
561   SMESH::GetColor( "SMESH", "group_name_color", anRGB[0], anRGB[1], anRGB[2], QColor( 255, 255, 255 ) );
562   myNameActor->SetForegroundColor(anRGB[0], anRGB[1], anRGB[2]);
563
564 #ifndef DISABLE_PLOT2DVIEWER
565   my2dHistogram = 0;
566 #endif
567
568   SetBallSize(aBallElemSize);
569   SetBallScale(aBallElemScale);
570   Set0DSize(aElem0DSize);
571 }
572
573
574 SMESH_ActorDef::~SMESH_ActorDef()
575 {
576   if(MYDEBUG) MESSAGE("~SMESH_ActorDef - "<<this);
577
578   // Please keep the order same as one in the header file
579
580   myTimeStamp->Delete();
581
582   myScalarBarActor->Delete();
583   myLookupTable->Delete();
584
585   mySurfaceProp->Delete();
586   myBackSurfaceProp->Delete();
587   myNormalVProp->Delete();
588   myReversedVProp->Delete();
589   myEdgeProp->Delete();
590   myNodeProp->Delete();
591
592   myNodeActor->Delete();
593   myBaseActor->Delete();
594   //myPickableActor->Delete(); myPickableActor == myBaseActor
595
596   myHighlightProp->Delete();
597   myOutLineProp->Delete();
598   myPreselectProp->Delete();
599
600   myHighlitableActor->Delete();
601
602   my2DExtProp->Delete();
603   my3DExtProp->Delete();
604   my2DActor->Delete();
605   my2DExtActor->Delete();
606   my3DActor->Delete();
607   my3DExtActor->Delete();
608   // myControlActor->Delete(); myControlActor == my2DActor
609
610   myNodeExtProp->Delete();
611   myNodeExtActor->Delete();
612
613   my1DProp->Delete();
614   my1DActor->Delete();
615   my1DExtProp->Delete();
616   my1DExtActor->Delete();
617
618   my0DProp->Delete();
619   my0DActor->Delete();
620   myBallProp->Delete();
621   myBallActor->Delete();
622   //my0DExtProp->Delete();
623   //my0DExtActor->Delete();
624
625   myImplicitBoolean->Delete();
626   myPlaneCollection->Delete();
627
628 #ifndef DISABLE_PLOT2DVIEWER
629   if(my2dHistogram) {
630     SMESH::ProcessIn2DViewers(this,SMESH::RemoveFrom2dViewer);
631     delete my2dHistogram;
632   }
633 #endif
634 }
635
636 void SMESH_ActorDef::Delete()
637 {
638   // This is just to guarantee that the DeleteActorEvent (which was previously invoked
639   // from the actor's destructor) will be thrown before removing the actor's observers,
640   // that is done inside the Superclass::Delete() method but before the destructor itself
641   // (see the issue 0021562: EDF SMESH: clipping and delete mesh clipped leads to crash).
642   // The event is caught by SMESHGUI::ProcessEvents() static method.
643   this->InvokeEvent( SMESH::DeleteActorEvent, NULL );
644
645   Superclass::Delete();
646 }
647
648 void SMESH_ActorDef::SetPointsLabeled( bool theIsPointsLabeled )
649 {
650   if(myNodeActor) {
651     myNodeActor->SetPointsLabeled(theIsPointsLabeled);
652     SetRepresentation(GetRepresentation());
653     myTimeStamp->Modified();
654   }
655 }
656
657 void SMESH_ActorDef::SetPointsFontProperties( SMESH::LabelFont theFamily, int theSize,
658                                               bool theBold, bool theItalic, bool theShadow,
659                                               double r, double g, double b )
660 {    
661   if(myNodeActor) {
662     myNodeActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
663     SetRepresentation( GetRepresentation() );
664     myTimeStamp->Modified();
665   }
666 }
667
668 void SMESH_ActorDef::SetCellsFontProperties( SMESH::LabelFont theFamily, int theSize,
669                                              bool theBold, bool theItalic, bool theShadow,
670                                              double r, double g, double b )
671 {    
672   if(my3DActor) {
673     my3DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
674   }
675   if(my2DActor) {
676     my2DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
677     SetRepresentation( GetRepresentation() );
678     myTimeStamp->Modified();
679   }
680   if(my1DActor) {
681     my1DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
682     SetRepresentation( GetRepresentation() );
683     myTimeStamp->Modified();
684   }
685   if(my0DActor) {
686     my0DActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
687     SetRepresentation( GetRepresentation() );
688     myTimeStamp->Modified();
689   }
690   if(myBallActor) {
691     myBallActor->SetFontProperties( theFamily, theSize, theBold, theItalic, theShadow, r, g, b );
692     SetRepresentation( GetRepresentation() );
693     myTimeStamp->Modified();
694   }
695 }
696
697 bool SMESH_ActorDef::GetPointsLabeled() {
698   return myNodeActor && myNodeActor->GetPointsLabeled();
699 }
700
701 void SMESH_ActorDef::SetCellsLabeled(bool theIsCellsLabeled)
702 {
703   if(my3DActor)
704     my3DActor->SetCellsLabeled(theIsCellsLabeled);
705
706   if(my2DActor)
707     my2DActor->SetCellsLabeled(theIsCellsLabeled);
708
709   if(my1DActor)
710     my1DActor->SetCellsLabeled(theIsCellsLabeled);
711
712   if(my0DActor)
713     my0DActor->SetCellsLabeled(theIsCellsLabeled);
714
715   if(myBallActor)
716     myBallActor->SetCellsLabeled(theIsCellsLabeled);
717
718   myTimeStamp->Modified();
719 }
720
721
722 bool SMESH_ActorDef::GetCellsLabeled() {
723   bool result = false;
724   if(my3DActor)
725     result = result || my3DActor->GetCellsLabeled();
726
727   if(my2DActor)
728     result = result || my2DActor->GetCellsLabeled();
729
730   if(my1DActor)
731     result = result || my1DActor->GetCellsLabeled();
732
733   if(my0DActor)
734     result = result || my0DActor->GetCellsLabeled();
735
736   if(myBallActor)
737     result = result || myBallActor->GetCellsLabeled();
738
739   return result;
740 }
741
742
743 void SMESH_ActorDef::SetFacesOriented(bool theIsFacesOriented)
744 {
745   myIsFacesOriented = theIsFacesOriented;
746
747   my2DActor->SetFacesOriented(theIsFacesOriented);
748   my3DActor->SetFacesOriented(theIsFacesOriented);
749
750   myTimeStamp->Modified();
751 }
752
753 bool SMESH_ActorDef::GetFacesOriented()
754 {
755   return myIsFacesOriented;
756 }
757
758 void SMESH_ActorDef::SetFacesOrientationColor(double r,double g,double b)
759 {
760   my2DActor->SetFacesOrientationColor( r, g, b );
761   my3DActor->SetFacesOrientationColor( r, g, b );
762 }
763
764 void SMESH_ActorDef::GetFacesOrientationColor(double& r,double& g,double& b)
765 {
766   my3DActor->GetFacesOrientationColor( r, g, b );
767 }
768
769 void SMESH_ActorDef::SetFacesOrientationScale(double theScale)
770 {
771   my2DActor->SetFacesOrientationScale( theScale );
772   my3DActor->SetFacesOrientationScale( theScale );
773 }
774
775 double SMESH_ActorDef::GetFacesOrientationScale()
776 {
777   return my3DActor->GetFacesOrientationScale();
778 }
779
780 void SMESH_ActorDef::SetFacesOrientation3DVectors(bool theState)
781 {
782   my2DActor->SetFacesOrientation3DVectors( theState );
783   my3DActor->SetFacesOrientation3DVectors( theState );
784 }
785
786 bool SMESH_ActorDef::GetFacesOrientation3DVectors()
787 {
788   return my3DActor->GetFacesOrientation3DVectors();
789 }
790
791
792 void
793 SMESH_ActorDef::
794 SetControlMode(eControl theMode)
795 {
796   SetControlMode(theMode,true);
797 }
798
799
800 void
801 SMESH_ActorDef::
802 SetControlMode( eControl theMode, bool theCheckEntityMode )
803 {
804   vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
805   bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
806   lookupTable->SetScale(VTK_SCALE_LINEAR);
807
808   SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
809   if( !mgr )
810     return;
811
812   myControlMode = eNone;
813   theCheckEntityMode &= mgr->booleanValue( "SMESH", "display_entity", false );
814
815   my0DActor->GetMapper()->SetScalarVisibility(false);
816   my1DActor->GetMapper()->SetScalarVisibility(false);
817   my2DActor->GetMapper()->SetScalarVisibility(false);
818   my3DActor->GetMapper()->SetScalarVisibility(false);
819   myBallActor->GetMapper()->SetScalarVisibility(false);
820   myScalarBarActor->SetVisibility(false);
821
822   bool anIsScalarVisible = theMode > eNone;
823
824   if(anIsScalarVisible) {
825     switch(theMode) {
826     case eLength:
827     {
828       SMESH::Controls::Length* aControl = new SMESH::Controls::Length();
829       aControl->SetPrecision( myControlsPrecision );
830       myFunctor.reset( aControl );
831       myControlActor = my1DActor;
832       break;
833     }
834     case eLength2D:
835     {
836       myFunctor.reset(new SMESH::Controls::Length2D());
837       myControlActor = my2DActor;
838       break;
839     }
840     case eFreeBorders:
841       myFunctor.reset(new SMESH::Controls::FreeBorders());
842       myControlActor = my1DActor;
843       break;
844     case eFreeEdges:
845       myFunctor.reset(new SMESH::Controls::FreeEdges());
846       myControlActor = my2DActor;
847       break;
848     case eFreeNodes:
849       myFunctor.reset(new SMESH::Controls::FreeNodes());
850       myControlActor = myNodeActor;
851       break;
852     case eFreeFaces:
853       myFunctor.reset(new SMESH::Controls::FreeFaces());
854       myControlActor = my2DActor;
855       break;
856     case eCoincidentNodes:
857       {
858         SMESH::Controls::CoincidentNodes* cn = new SMESH::Controls::CoincidentNodes();
859         double tol = mgr->doubleValue( "SMESH", "equal_nodes_tolerance", 1e-7 );
860         cn->SetTolerance( tol );
861         myFunctor.reset(cn);
862         myControlActor = myNodeActor;
863         break;
864       }
865     case eCoincidentElems1D:
866       myFunctor.reset(new SMESH::Controls::CoincidentElements1D());
867       myControlActor = my1DActor;
868       break;
869     case eCoincidentElems2D:
870       myFunctor.reset(new SMESH::Controls::CoincidentElements2D());
871       myControlActor = my2DActor;
872       break;
873     case eCoincidentElems3D:
874       myFunctor.reset(new SMESH::Controls::CoincidentElements3D());
875       myControlActor = my3DActor;
876       break;
877     case eBareBorderFace:
878       myFunctor.reset(new SMESH::Controls::BareBorderFace());
879       myControlActor = my2DActor;
880       break;
881     case eOverConstrainedFace:
882       myFunctor.reset(new SMESH::Controls::OverConstrainedFace());
883       myControlActor = my2DActor;
884       break;
885     case eMultiConnection:
886       myFunctor.reset(new SMESH::Controls::MultiConnection());
887       myControlActor = my1DActor;
888       break;
889     case eMultiConnection2D:
890       myFunctor.reset(new SMESH::Controls::MultiConnection2D());
891       myControlActor = my2DActor;
892       break;
893     case eArea:
894     {
895       SMESH::Controls::Area* aControl = new SMESH::Controls::Area();
896       aControl->SetPrecision( myControlsPrecision );
897       myFunctor.reset( aControl );
898       myControlActor = my2DActor;
899       break;
900     }
901     case eTaper:
902     {
903       SMESH::Controls::Taper* aControl = new SMESH::Controls::Taper();
904       aControl->SetPrecision( myControlsPrecision );
905       myFunctor.reset( aControl );
906       myControlActor = my2DActor;
907       break;
908     }
909     case eAspectRatio:
910     {
911       SMESH::Controls::AspectRatio* aControl = new SMESH::Controls::AspectRatio();
912       aControl->SetPrecision( myControlsPrecision );
913       myFunctor.reset( aControl );
914       myControlActor = my2DActor;
915       break;
916     }
917     case eAspectRatio3D:
918     {
919       SMESH::Controls::AspectRatio3D* aControl = new SMESH::Controls::AspectRatio3D();
920       aControl->SetPrecision( myControlsPrecision );
921       myFunctor.reset( aControl );
922       myControlActor = my3DActor;
923       break;
924     }
925     case eVolume3D:
926     {
927       SMESH::Controls::Volume* aControl = new SMESH::Controls::Volume();
928       aControl->SetPrecision( myControlsPrecision );
929       myFunctor.reset( aControl );
930       myControlActor = my3DActor;
931       break;
932     }
933     case eMaxElementLength2D:
934     {
935       SMESH::Controls::MaxElementLength2D* aControl = new SMESH::Controls::MaxElementLength2D();
936       aControl->SetPrecision( myControlsPrecision );
937       myFunctor.reset( aControl );
938       myControlActor = my2DActor;
939       break;
940     }
941     case eMaxElementLength3D:
942     {
943       SMESH::Controls::MaxElementLength3D* aControl = new SMESH::Controls::MaxElementLength3D();
944       aControl->SetPrecision( myControlsPrecision );
945       myFunctor.reset( aControl );
946       myControlActor = my3DActor;
947       break;
948     }
949     case eBareBorderVolume:
950     {
951       myFunctor.reset(new SMESH::Controls::BareBorderVolume());
952       myControlActor = my3DActor;
953       break;
954     }
955     case eOverConstrainedVolume:
956     {
957       myFunctor.reset(new SMESH::Controls::OverConstrainedVolume());
958       myControlActor = my3DActor;
959       break;
960     }
961     case eMinimumAngle:
962     {
963       SMESH::Controls::MinimumAngle* aControl = new SMESH::Controls::MinimumAngle();
964       aControl->SetPrecision( myControlsPrecision );
965       myFunctor.reset( aControl );
966       myControlActor = my2DActor;
967       break;
968     }
969     case eWarping:
970     {
971       SMESH::Controls::Warping* aControl = new SMESH::Controls::Warping();
972       aControl->SetPrecision( myControlsPrecision );
973       myFunctor.reset( aControl );
974       myControlActor = my2DActor;
975       break;
976     }
977     case eSkew:
978     {
979       SMESH::Controls::Skew* aControl = new SMESH::Controls::Skew();
980       aControl->SetPrecision( myControlsPrecision );
981       myFunctor.reset( aControl );
982       myControlActor = my2DActor;
983       break;
984     }
985     default:
986       return;
987     }
988
989     vtkUnstructuredGrid* aGrid = myControlActor->GetUnstructuredGrid();
990     vtkIdType aNbCells = aGrid->GetNumberOfCells();
991     if(aNbCells){
992       myControlMode = theMode;
993       switch(myControlMode){
994       case eFreeNodes:
995       case eCoincidentNodes:
996         myNodeExtActor->SetExtControlMode(myFunctor);
997         break;
998       case eFreeEdges:
999       case eFreeBorders:
1000       case eCoincidentElems1D:
1001         my1DExtActor->SetExtControlMode(myFunctor);
1002         break;
1003       case eFreeFaces:
1004       case eBareBorderFace:
1005       case eOverConstrainedFace:
1006       case eCoincidentElems2D:
1007         my2DExtActor->SetExtControlMode(myFunctor);
1008         break;
1009       case eBareBorderVolume:
1010       case eOverConstrainedVolume:
1011       case eCoincidentElems3D:
1012         my3DExtActor->SetExtControlMode(myFunctor);
1013         break;
1014       case eLength2D:
1015       case eMultiConnection2D:
1016         my1DExtActor->SetExtControlMode(myFunctor,myScalarBarActor,myLookupTable);
1017         UpdateDistribution();
1018         break;
1019       default:
1020         myControlActor->SetControlMode(myFunctor,myScalarBarActor,myLookupTable);
1021         UpdateDistribution();
1022       }
1023     }
1024
1025     if(theCheckEntityMode) {
1026       if(myControlActor == my1DActor) {
1027         if (!myIsEntityModeCache){
1028           myEntityModeCache = GetEntityMode();
1029           myIsEntityModeCache=true;
1030         }
1031         SetEntityMode(eEdges);
1032       }
1033       else if(myControlActor == my2DActor) {
1034         switch(myControlMode) {
1035         case eLength2D:
1036         case eFreeEdges:
1037         case eFreeFaces:
1038         case eMultiConnection2D:
1039           if (!myIsEntityModeCache){
1040             myEntityModeCache = GetEntityMode();
1041             myIsEntityModeCache=true;
1042           }
1043           SetEntityMode(eFaces);
1044           break;
1045         default:
1046           if (!myIsEntityModeCache){
1047             myEntityModeCache = GetEntityMode();
1048             myIsEntityModeCache=true;
1049           }
1050           SetEntityMode(eFaces);
1051         }
1052       }else if(myControlActor == my3DActor) {
1053         if (!myIsEntityModeCache){
1054             myEntityModeCache = GetEntityMode();
1055             myIsEntityModeCache=true;
1056         }
1057         SetEntityMode(eVolumes);
1058     }
1059     }
1060
1061   }
1062   else {
1063     if(theCheckEntityMode){
1064       myEntityMode = myEntityModeCache;
1065       myIsEntityModeCache = false;
1066     }
1067     myFunctor.reset();
1068   }
1069
1070   SetRepresentation(GetRepresentation());
1071
1072   myTimeStamp->Modified();
1073   Modified();
1074
1075   lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
1076   double * range = lookupTable->GetRange();
1077
1078   if (isLogarithmic && range[0] > 1e-07 && range[1] > 1e-07)
1079     lookupTable->SetScale(VTK_SCALE_LOG10);
1080
1081   Update();
1082 }
1083
1084
1085 void SMESH_ActorDef::AddToRender(vtkRenderer* theRenderer){
1086
1087   theRenderer->AddActor(myBaseActor);
1088   theRenderer->AddActor(myNodeExtActor);
1089   theRenderer->AddActor(my1DExtActor);
1090
1091   my3DActor   ->AddToRender(theRenderer);
1092   my3DExtActor->AddToRender(theRenderer);
1093   my2DActor   ->AddToRender(theRenderer);
1094   my2DExtActor->AddToRender(theRenderer);
1095   myNodeActor ->AddToRender(theRenderer);
1096   my1DActor   ->AddToRender(theRenderer);
1097   my0DActor   ->AddToRender(theRenderer);
1098   myBallActor ->AddToRender(theRenderer);
1099
1100   theRenderer->AddActor(myHighlitableActor);
1101
1102   theRenderer->AddActor2D(myScalarBarActor);
1103
1104   // the superclass' method should be called at the end
1105   // (in particular, for correct work of selection)
1106   SALOME_Actor::AddToRender(theRenderer);
1107 }
1108
1109 void SMESH_ActorDef::RemoveFromRender(vtkRenderer* theRenderer){
1110   SALOME_Actor::RemoveFromRender(theRenderer);
1111
1112   theRenderer->RemoveActor(myBaseActor);
1113
1114   theRenderer->RemoveActor(myNodeExtActor);
1115
1116   theRenderer->RemoveActor(myHighlitableActor);
1117
1118   //theRenderer->RemoveActor(my0DExtActor);
1119
1120   theRenderer->RemoveActor(my1DExtActor);
1121
1122   my2DActor->RemoveFromRender(theRenderer);
1123   my2DExtActor->RemoveFromRender(theRenderer);
1124   my3DActor->RemoveFromRender(theRenderer);
1125   my3DExtActor->RemoveFromRender(theRenderer);
1126   myNodeActor->RemoveFromRender(theRenderer);
1127   my0DActor->RemoveFromRender(theRenderer);
1128   myBallActor->RemoveFromRender(theRenderer);
1129   my1DActor->RemoveFromRender(theRenderer);
1130
1131   theRenderer->RemoveActor(myScalarBarActor);
1132 }
1133
1134
1135 bool SMESH_ActorDef::Init(TVisualObjPtr theVisualObj,
1136                           const char* theEntry,
1137                           const char* theName,
1138                           int theIsClear)
1139 {
1140   Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(theEntry,"SMESH",theName);
1141   setIO(anIO);
1142   setName(theName);
1143
1144   myVisualObj = theVisualObj;
1145   myVisualObj->Update(theIsClear);
1146
1147   SMESH_SVTKActor::SafeDownCast(myHighlightActor)->SetVisualObject(myVisualObj);
1148   SMESH_SVTKActor::SafeDownCast(myPreHighlightActor)->SetVisualObject(myVisualObj);
1149
1150   myNodeActor->Init(myVisualObj,myImplicitBoolean);
1151   myBaseActor->Init(myVisualObj,myImplicitBoolean);
1152
1153   myHighlitableActor->Init(myVisualObj,myImplicitBoolean);
1154
1155   myNodeExtActor->Init(myVisualObj,myImplicitBoolean);
1156
1157   my0DActor->Init(myVisualObj,myImplicitBoolean);
1158   myBallActor->Init(myVisualObj,myImplicitBoolean);
1159   //my0DExtActor->Init(myVisualObj,myImplicitBoolean);
1160
1161   my1DActor->Init(myVisualObj,myImplicitBoolean);
1162   my1DExtActor->Init(myVisualObj,myImplicitBoolean);
1163
1164   my2DActor->Init(myVisualObj,myImplicitBoolean);
1165   my2DExtActor->Init(myVisualObj,myImplicitBoolean);
1166   my3DActor->Init(myVisualObj,myImplicitBoolean);
1167   my3DExtActor->Init(myVisualObj,myImplicitBoolean);
1168
1169   my0DActor->GetMapper()->SetLookupTable(myLookupTable);
1170   myBallActor->GetMapper()->SetLookupTable(myLookupTable);
1171   //my0DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1172
1173   my1DActor->GetMapper()->SetLookupTable(myLookupTable);
1174   my1DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1175
1176   my2DActor->GetMapper()->SetLookupTable(myLookupTable);
1177   my2DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1178   my3DActor->GetMapper()->SetLookupTable(myLookupTable);
1179   my3DExtActor->GetMapper()->SetLookupTable(myLookupTable);
1180     
1181   double aFactor, aUnits;
1182   my2DActor->GetPolygonOffsetParameters(aFactor,aUnits);
1183   my2DActor->SetPolygonOffsetParameters(aFactor,aUnits*0.75);
1184   my2DExtActor->SetPolygonOffsetParameters(aFactor,aUnits*0.5);
1185   my3DActor->SetPolygonOffsetParameters(2*aFactor,aUnits);
1186
1187   SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
1188   if( !mgr )
1189     return false;
1190
1191   //SetIsShrunkable(theGrid->GetNumberOfCells() > 10);
1192   SetIsShrunkable(true);
1193
1194   SetShrinkFactor( SMESH::GetFloat( "SMESH:shrink_coeff", 75 ) / 100. );
1195
1196   int aMode = mgr->integerValue( "SMESH", "display_mode" );
1197   SetRepresentation(-1);
1198
1199   if(aMode == 0){
1200     SetRepresentation(eEdge);
1201   }else if(aMode == 1){
1202     SetRepresentation(eSurface);
1203   }else if(aMode == 2){
1204     SetRepresentation(ePoint);
1205   }
1206
1207   if(aMode == 3){
1208     SetShrink();
1209   }
1210
1211   if( dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1212     SetIsDisplayNameActor( true );
1213
1214   int aMarkerType = mgr->integerValue( "SMESH", "type_of_marker", 1 ); // dot
1215   int aMarkerScale = mgr->integerValue( "SMESH", "marker_scale", 9 );  // 5 pixels
1216   SetMarkerStd( (VTK::MarkerType)aMarkerType, (VTK::MarkerScale)aMarkerScale );
1217
1218   myTimeStamp->Modified();
1219   Modified();
1220   return true;
1221 }
1222
1223
1224 double* SMESH_ActorDef::GetBounds(){
1225   return myNodeActor->GetBounds();
1226 }
1227
1228
1229 vtkDataSet* SMESH_ActorDef::GetInput(){
1230   return GetUnstructuredGrid();
1231 }
1232
1233
1234 void SMESH_ActorDef::SetTransform(VTKViewer_Transform* theTransform){
1235   Superclass::SetTransform(theTransform);
1236
1237   myNodeActor->SetTransform(theTransform);
1238   myBaseActor->SetTransform(theTransform);
1239
1240   myHighlitableActor->SetTransform(theTransform);
1241
1242   myNodeExtActor->SetTransform(theTransform);
1243
1244   my0DActor->SetTransform(theTransform);
1245   myBallActor->SetTransform(theTransform);
1246   //my0DExtActor->SetTransform(theTransform);
1247
1248   my1DActor->SetTransform(theTransform);
1249   my1DExtActor->SetTransform(theTransform);
1250
1251   my2DActor->SetTransform(theTransform);
1252   my2DExtActor->SetTransform(theTransform);
1253   my3DActor->SetTransform(theTransform);
1254   my3DExtActor->SetTransform(theTransform);
1255
1256   Modified();
1257 }
1258
1259
1260 void SMESH_ActorDef::SetMapper(vtkMapper* theMapper){
1261   vtkLODActor::SetMapper(theMapper);
1262 }
1263
1264
1265 void SMESH_ActorDef::ShallowCopy(vtkProp *prop){
1266   SALOME_Actor::ShallowCopy(prop);
1267 }
1268
1269
1270 vtkMapper* SMESH_ActorDef::GetMapper(){
1271   return myPickableActor->GetMapper();
1272 }
1273
1274
1275 vtkUnstructuredGrid* SMESH_ActorDef::GetUnstructuredGrid(){
1276   return myVisualObj->GetUnstructuredGrid();
1277 }
1278
1279
1280 bool SMESH_ActorDef::IsInfinitive(){
1281   vtkDataSet *aDataSet = myPickableActor->GetUnstructuredGrid();
1282   myIsInfinite = aDataSet->GetNumberOfCells() == 0 ||
1283     ( aDataSet->GetNumberOfCells() == 1 &&
1284     aDataSet->GetCell(0)->GetCellType() == VTK_VERTEX );
1285   return SALOME_Actor::IsInfinitive();
1286 }
1287
1288
1289 void SMESH_ActorDef::SetIsShrunkable(bool theShrunkable){
1290   if ( myIsShrinkable == theShrunkable )
1291     return;
1292   myIsShrinkable = theShrunkable;
1293   Modified();
1294 }
1295
1296 double SMESH_ActorDef::GetShrinkFactor(){
1297   return myBaseActor->GetShrinkFactor();
1298 }
1299
1300 void SMESH_ActorDef::SetShrinkFactor(double theValue){
1301   myBaseActor->SetShrinkFactor(theValue);
1302
1303   my1DActor->SetShrinkFactor(theValue);
1304   my1DExtActor->SetShrinkFactor(theValue);
1305
1306   my2DActor->SetShrinkFactor(theValue);
1307   my2DExtActor->SetShrinkFactor(theValue);
1308   my3DActor->SetShrinkFactor(theValue);
1309   my3DExtActor->SetShrinkFactor(theValue);
1310   my3DExtActor->SetShrinkFactor(theValue);
1311   myHighlitableActor->SetShrinkFactor(theValue);
1312
1313   Modified();
1314 }
1315
1316 void SMESH_ActorDef::SetShrink() {
1317   if(!myIsShrinkable) return;
1318
1319   myBaseActor->SetShrink();
1320
1321   my1DActor->SetShrink();
1322   my1DExtActor->SetShrink();
1323
1324   my2DActor->SetShrink();
1325   my2DExtActor->SetShrink();
1326   my3DActor->SetShrink();
1327   my3DExtActor->SetShrink();
1328   myHighlitableActor->SetShrink();
1329
1330   myIsShrunk = true;
1331   Modified();
1332 }
1333
1334 void SMESH_ActorDef::UnShrink(){
1335   if(!myIsShrunk) return;
1336
1337   myBaseActor->UnShrink();
1338
1339   my1DActor->UnShrink();
1340   my1DExtActor->UnShrink();
1341
1342   my2DActor->UnShrink();
1343   my2DExtActor->UnShrink();
1344   my3DActor->UnShrink();
1345   my3DExtActor->UnShrink();
1346   myHighlitableActor->UnShrink();
1347
1348   myIsShrunk = false;
1349   Modified();
1350 }
1351
1352
1353 int SMESH_ActorDef::GetNodeObjId(int theVtkID){
1354   return myPickableActor->GetNodeObjId(theVtkID);
1355 }
1356
1357 double* SMESH_ActorDef::GetNodeCoord(int theObjID){
1358   return myPickableActor->GetNodeCoord(theObjID);
1359 }
1360
1361
1362 int SMESH_ActorDef::GetElemObjId(int theVtkID){
1363   return myPickableActor->GetElemObjId(theVtkID);
1364 }
1365
1366 vtkCell* SMESH_ActorDef::GetElemCell(int theObjID){
1367   return myPickableActor->GetElemCell(theObjID);
1368 }
1369
1370
1371 void SMESH_ActorDef::SetVisibility(int theMode){
1372   SetVisibility(theMode,true);
1373 }
1374
1375
1376 void SMESH_ActorDef::SetVisibility(int theMode, bool theIsUpdateRepersentation){
1377   SALOME_Actor::SetVisibility(theMode);
1378
1379   myNodeActor->VisibilityOff();
1380   myBaseActor->VisibilityOff();
1381
1382   myNodeExtActor->VisibilityOff();
1383
1384   my0DActor->VisibilityOff();
1385   myBallActor->VisibilityOff();
1386   //my0DExtActor->VisibilityOff();
1387
1388   my1DActor->VisibilityOff();
1389   my1DExtActor->VisibilityOff();
1390
1391   my2DActor->VisibilityOff();
1392   my2DExtActor->VisibilityOff();
1393   my3DActor->VisibilityOff();
1394   my3DExtActor->VisibilityOff();
1395
1396   myScalarBarActor->VisibilityOff();
1397
1398   if(GetVisibility()){
1399     if(theIsUpdateRepersentation)
1400       SetRepresentation(GetRepresentation());
1401
1402     if(myControlMode != eNone){
1403       switch(myControlMode){
1404       case eFreeNodes:
1405       case eCoincidentNodes:
1406         myNodeExtActor->VisibilityOn();
1407         break;
1408       case eFreeEdges:
1409       case eFreeBorders:
1410       case eCoincidentElems1D:
1411         my1DExtActor->VisibilityOn();
1412         break;
1413       case eFreeFaces:
1414       case eBareBorderFace:
1415       case eOverConstrainedFace:
1416       case eCoincidentElems2D:
1417         my2DExtActor->VisibilityOn();
1418         break;
1419       case eBareBorderVolume:
1420       case eOverConstrainedVolume:
1421       case eCoincidentElems3D:
1422         my3DExtActor->VisibilityOn();
1423         break;
1424       case eLength2D:
1425       case eMultiConnection2D:
1426         my1DExtActor->VisibilityOn();
1427       default:
1428         if(myControlActor->GetUnstructuredGrid()->GetNumberOfCells())
1429           myScalarBarActor->VisibilityOn();
1430       }
1431     }
1432
1433     if(myRepresentation != ePoint)
1434       myPickableActor->VisibilityOn();
1435     else {
1436       myNodeActor->VisibilityOn();
1437     }
1438
1439     if(myEntityMode & e0DElements && GetRepresentation() != ePoint ){
1440       my0DActor->VisibilityOn();
1441     }
1442     if(myEntityMode & eBallElem && GetRepresentation() != ePoint ){
1443       myBallActor->VisibilityOn();
1444     }
1445
1446     if(myEntityMode & eEdges && GetRepresentation() != ePoint){
1447       my1DActor->VisibilityOn();
1448     }
1449
1450     if(myEntityMode & eFaces && GetRepresentation() != ePoint){
1451       my2DActor->VisibilityOn();
1452     }
1453
1454     if(myEntityMode & eVolumes && GetRepresentation() != ePoint){
1455       my3DActor->VisibilityOn();
1456     }
1457
1458     if(myNodeActor->GetPointsLabeled()){
1459       myNodeActor->VisibilityOn();
1460     }
1461
1462     if(my0DActor)
1463       my0DActor->UpdateLabels();
1464
1465     if(myBallActor)
1466       myBallActor->UpdateLabels();
1467
1468     if(my1DActor)
1469       my1DActor->UpdateLabels();
1470
1471     if(my2DActor)
1472       my2DActor->UpdateLabels();
1473
1474     if(my3DActor)
1475       my3DActor->UpdateLabels();
1476   }
1477 #ifndef DISABLE_PLOT2DVIEWER
1478   else
1479     SMESH::ProcessIn2DViewers(this,SMESH::RemoveFrom2dViewer);
1480 #endif
1481   UpdateHighlight();
1482   Modified();
1483 }
1484
1485
1486 void SMESH_ActorDef::SetEntityMode(unsigned int theMode)
1487 {
1488   myEntityState = eAllEntity;
1489
1490   if(!myVisualObj->GetNbEntities(SMDSAbs_0DElement)) {
1491     myEntityState &= ~e0DElements;
1492     theMode &= ~e0DElements;
1493   }
1494
1495   if(!myVisualObj->GetNbEntities(SMDSAbs_Ball)) {
1496     myEntityState &= ~eBallElem;
1497     theMode &= ~eBallElem;
1498   }
1499
1500   if(!myVisualObj->GetNbEntities(SMDSAbs_Edge)) {
1501     myEntityState &= ~eEdges;
1502     theMode &= ~eEdges;
1503   }
1504
1505   if(!myVisualObj->GetNbEntities(SMDSAbs_Face)) {
1506     myEntityState &= ~eFaces;
1507     theMode &= ~eFaces;
1508   }
1509
1510   if(!myVisualObj->GetNbEntities(SMDSAbs_Volume)) {
1511     myEntityState &= ~eVolumes;
1512     theMode &= ~eVolumes;
1513   }
1514
1515   if (!theMode) {
1516     if(myVisualObj->GetNbEntities(SMDSAbs_0DElement))
1517       theMode |= e0DElements;
1518
1519     if(myVisualObj->GetNbEntities(SMDSAbs_Ball))
1520       theMode |= eBallElem;
1521
1522     if(myVisualObj->GetNbEntities(SMDSAbs_Edge))
1523       theMode |= eEdges;
1524
1525     if(myVisualObj->GetNbEntities(SMDSAbs_Face))
1526       theMode |= eFaces;
1527
1528     if(myVisualObj->GetNbEntities(SMDSAbs_Volume))
1529       theMode |= eVolumes;
1530   }
1531
1532   myBaseActor->myGeomFilter->SetInside(myEntityMode != myEntityState);
1533
1534   myEntityMode = theMode;
1535   VTKViewer_ExtractUnstructuredGrid* aFilter = NULL;
1536   aFilter = myBaseActor->GetExtractUnstructuredGrid();
1537   aFilter->ClearRegisteredCellsWithType();
1538   aFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
1539
1540   VTKViewer_ExtractUnstructuredGrid* aHightFilter = myHighlitableActor->GetExtractUnstructuredGrid();
1541   aHightFilter->ClearRegisteredCellsWithType();
1542   aHightFilter->SetModeOfChanging(VTKViewer_ExtractUnstructuredGrid::eAdding);
1543
1544   if (myEntityMode & e0DElements) {
1545     if (MYDEBUG) MESSAGE("0D ELEMENTS");
1546     aFilter->RegisterCellsWithType(VTK_VERTEX);
1547     aHightFilter->RegisterCellsWithType(VTK_VERTEX);
1548   }
1549
1550   if (myEntityMode & eBallElem) {
1551     aFilter->RegisterCellsWithType(VTK_POLY_VERTEX);
1552   }
1553
1554   if (myEntityMode & eEdges) {
1555     if (MYDEBUG) MESSAGE("EDGES");
1556     aFilter->RegisterCellsWithType(VTK_LINE);
1557     aFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
1558
1559     aHightFilter->RegisterCellsWithType(VTK_LINE);
1560     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_EDGE);
1561   }
1562
1563   if (myEntityMode & eFaces) {
1564     if (MYDEBUG) MESSAGE("FACES");
1565     aFilter->RegisterCellsWithType(VTK_TRIANGLE);
1566     aFilter->RegisterCellsWithType(VTK_QUAD);
1567     aFilter->RegisterCellsWithType(VTK_POLYGON);
1568     aFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
1569     aFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
1570     aFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
1571     aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
1572     aFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
1573
1574     aHightFilter->RegisterCellsWithType(VTK_TRIANGLE);
1575     aHightFilter->RegisterCellsWithType(VTK_QUAD);
1576     aHightFilter->RegisterCellsWithType(VTK_POLYGON);
1577     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_TRIANGLE);
1578     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_QUAD);
1579     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_POLYGON);
1580     aHightFilter->RegisterCellsWithType(VTK_BIQUADRATIC_QUAD);
1581     aHightFilter->RegisterCellsWithType(VTK_BIQUADRATIC_TRIANGLE);
1582   }
1583
1584   if (myEntityMode & eVolumes) {
1585     if (MYDEBUG) MESSAGE("VOLUMES");
1586     aFilter->RegisterCellsWithType(VTK_TETRA);
1587     aFilter->RegisterCellsWithType(VTK_VOXEL);
1588     aFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
1589     aFilter->RegisterCellsWithType(VTK_WEDGE);
1590     aFilter->RegisterCellsWithType(VTK_PYRAMID);
1591     aFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
1592     aFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
1593     aFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
1594     aFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
1595     aFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
1596     aFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
1597     aFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
1598     aFilter->RegisterCellsWithType(VTK_POLYHEDRON);
1599
1600     aHightFilter->RegisterCellsWithType(VTK_TETRA);
1601     aHightFilter->RegisterCellsWithType(VTK_VOXEL);
1602     aHightFilter->RegisterCellsWithType(VTK_HEXAHEDRON);
1603     aHightFilter->RegisterCellsWithType(VTK_WEDGE);
1604     aHightFilter->RegisterCellsWithType(VTK_PYRAMID);
1605     aHightFilter->RegisterCellsWithType(VTK_HEXAGONAL_PRISM);
1606     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_TETRA);
1607     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_HEXAHEDRON);
1608     aHightFilter->RegisterCellsWithType(VTK_TRIQUADRATIC_HEXAHEDRON);
1609     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_WEDGE);
1610     aHightFilter->RegisterCellsWithType(VTK_QUADRATIC_PYRAMID);
1611     aHightFilter->RegisterCellsWithType(VTK_CONVEX_POINT_SET);
1612     aHightFilter->RegisterCellsWithType(VTK_POLYHEDRON);
1613   }
1614   aFilter->Update();
1615   if (MYDEBUG) MESSAGE(aFilter->GetOutput()->GetNumberOfCells());
1616   SetVisibility(GetVisibility(),false);
1617 }
1618
1619 void SMESH_ActorDef::SetRepresentation (int theMode)
1620 {
1621   int aNbEdges = myVisualObj->GetNbEntities(SMDSAbs_Edge);
1622   int aNbFaces = myVisualObj->GetNbEntities(SMDSAbs_Face);
1623   int aNbVolumes = myVisualObj->GetNbEntities(SMDSAbs_Volume);
1624   int aNb0Ds       = myVisualObj->GetNbEntities(SMDSAbs_0DElement);
1625   int aNbBalls       = myVisualObj->GetNbEntities(SMDSAbs_Ball);
1626
1627   if (theMode < 0) {
1628     myRepresentation = eSurface;
1629     if (!aNbFaces && !aNbVolumes && !aNbBalls && aNbEdges) {
1630       myRepresentation = eEdge;
1631     } else if (!aNbFaces && !aNbVolumes && !aNbEdges && !aNbBalls) {
1632       myRepresentation = ePoint;
1633     }
1634   } else {
1635     switch (theMode) {
1636     case eEdge:
1637       if (!aNbFaces && !aNbVolumes && !aNbEdges && !aNb0Ds && !aNbBalls) return;
1638       break;
1639     case eSurface:
1640       if (!aNbFaces && !aNbVolumes && !aNb0Ds && !aNbBalls) return;
1641       break;
1642     }
1643     myRepresentation = theMode;
1644   }
1645
1646   if (!GetUnstructuredGrid()->GetNumberOfCells())
1647     myRepresentation = ePoint;
1648
1649   if (myIsShrunk) {
1650     if (myRepresentation == ePoint) {
1651       UnShrink();
1652       myIsShrunk = true;
1653     } else {
1654       SetShrink();
1655     }
1656   }
1657
1658   myPickableActor = myBaseActor;
1659   myNodeActor->SetVisibility(false);
1660   myNodeExtActor->SetVisibility(false);
1661   vtkProperty *aProp = NULL, *aBackProp = NULL;
1662   vtkProperty *aPropVN = NULL, *aPropVR = NULL;
1663   SMESH_DeviceActor::EReperesent aReperesent = SMESH_DeviceActor::EReperesent(-1);
1664   SMESH_Actor::EQuadratic2DRepresentation aQuadraticMode = GetQuadratic2DRepresentation();
1665   switch (myRepresentation) {
1666   case ePoint:
1667     myPickableActor = myNodeActor;
1668     myNodeActor->SetVisibility(true);
1669     aQuadraticMode = SMESH_Actor::eLines;
1670     aProp = aBackProp = aPropVN = aPropVR = myNodeProp;
1671     aReperesent = SMESH_DeviceActor::ePoint;
1672     break;
1673   case eEdge:
1674     aProp = aBackProp = aPropVN = aPropVR = myEdgeProp;
1675     aReperesent = SMESH_DeviceActor::eInsideframe;
1676     break;
1677   case eSurface:
1678     aProp = mySurfaceProp;
1679     aBackProp = myBackSurfaceProp;
1680     aPropVN = myNormalVProp;
1681     aPropVR = myReversedVProp;
1682     aReperesent = SMESH_DeviceActor::eSurface;
1683     break;
1684   }
1685
1686   my2DActor->SetProperty(aProp);
1687   my2DActor->SetBackfaceProperty(aBackProp);
1688   my2DActor->SetRepresentation(aReperesent);
1689
1690   if(aQuadraticMode == SMESH_Actor::eLines)
1691     my2DActor->SetQuadraticArcMode(false);
1692   else if(aQuadraticMode == SMESH_Actor::eArcs)
1693     my2DActor->SetQuadraticArcMode(true);
1694
1695   my2DExtActor->SetRepresentation(aReperesent);
1696
1697   my3DActor->SetProperty(aPropVN);
1698   my3DActor->SetBackfaceProperty(aPropVR);
1699   my3DActor->SetRepresentation(aReperesent);
1700
1701
1702   my1DExtActor->SetVisibility(false);
1703   my2DExtActor->SetVisibility(false);
1704   my3DExtActor->SetVisibility(false);
1705
1706   my0DActor->SetRepresentation(aReperesent);
1707   myBallActor->SetRepresentation(aReperesent);
1708
1709   switch ( myControlMode ) {
1710   case eLength:
1711   case eMultiConnection:
1712     aProp = aBackProp = my1DProp;
1713     if(myRepresentation != ePoint)
1714       aReperesent = SMESH_DeviceActor::eInsideframe;
1715     break;
1716   default:;
1717   }
1718
1719   if(aQuadraticMode == SMESH_Actor::eLines)
1720     my1DActor->SetQuadraticArcMode(false);
1721   else if(aQuadraticMode == SMESH_Actor::eArcs)
1722     my1DActor->SetQuadraticArcMode(true);
1723
1724   my1DActor->SetProperty(aProp);
1725   my1DActor->SetBackfaceProperty(aBackProp);
1726   my1DActor->SetRepresentation(aReperesent);
1727
1728   my1DExtActor->SetRepresentation(aReperesent);
1729
1730   if(myIsPointsVisible)
1731     myPickableActor = myNodeActor;
1732   if(GetPointRepresentation())
1733     myNodeActor->SetVisibility(true);
1734
1735   SetMapper(myPickableActor->GetMapper());
1736
1737   SetVisibility(GetVisibility(),false);
1738
1739   Modified();
1740 }
1741
1742
1743 void SMESH_ActorDef::SetPointRepresentation(bool theIsPointsVisible){
1744   if ( myIsPointsVisible == theIsPointsVisible )
1745     return;
1746   myIsPointsVisible = theIsPointsVisible;
1747   SetRepresentation(GetRepresentation());
1748 }
1749
1750 bool SMESH_ActorDef::GetPointRepresentation(){
1751   return myIsPointsVisible || myNodeActor->GetPointsLabeled();
1752 }
1753
1754
1755 void SMESH_ActorDef::UpdateHighlight(){
1756   myHighlitableActor->SetHighlited(false);
1757   myHighlitableActor->SetVisibility(false);
1758   bool anIsVisible = GetVisibility();
1759
1760   switch(myRepresentation){
1761   case SMESH_DeviceActor::eSurface:
1762   case SMESH_DeviceActor::eWireframe:
1763     {
1764       if(myIsHighlighted) {
1765         myHighlitableActor->SetProperty(myHighlightProp);
1766       }else if(myIsPreselected){
1767         myHighlitableActor->SetProperty(myPreselectProp);
1768       } else if(anIsVisible){
1769         (myRepresentation == eSurface) ?
1770           myHighlitableActor->SetProperty(myOutLineProp) : myHighlitableActor->SetProperty(myEdgeProp);
1771       }
1772       if(GetUnstructuredGrid()->GetNumberOfCells()) {
1773         myHighlitableActor->SetHighlited(anIsVisible);
1774         myHighlitableActor->GetExtractUnstructuredGrid()->
1775           SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::eCells);
1776         myHighlitableActor->SetRepresentation(SMESH_DeviceActor::eWireframe);
1777       }
1778       myHighlitableActor->SetVisibility(anIsVisible);
1779       break;
1780     }
1781   case SMESH_DeviceActor::ePoint:
1782     {
1783       if(myIsHighlighted) {
1784         myNodeActor->SetProperty(myHighlightProp);
1785       }else if(myIsPreselected) {
1786         myNodeActor->SetProperty(myPreselectProp);
1787       } else if(anIsVisible) {
1788         myNodeActor->SetProperty(myNodeProp);
1789       }
1790       myNodeActor->SetRepresentation(SMESH_DeviceActor::ePoint);
1791       myNodeActor->GetExtractUnstructuredGrid()->SetModeOfExtraction(VTKViewer_ExtractUnstructuredGrid::ePoints);
1792       break;
1793     }
1794   }
1795 }
1796
1797
1798 void SMESH_ActorDef::highlight(bool theHighlight){
1799   if ( myIsHighlighted == theHighlight )
1800     return;
1801   myIsHighlighted = theHighlight;
1802   UpdateHighlight();
1803 }
1804
1805
1806 void SMESH_ActorDef::SetPreSelected(bool thePreselect){
1807   if ( myIsPreselected == thePreselect )
1808     return;
1809   myIsPreselected = thePreselect;
1810   UpdateHighlight();
1811 }
1812
1813
1814 // From vtkFollower
1815 int SMESH_ActorDef::RenderOpaqueGeometry(vtkViewport *vp)
1816 {
1817   if (myPickableActor->GetIsOpaque())
1818     {
1819     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1820     this->Render(ren);
1821     return 1;
1822     }
1823   return 0;
1824 }
1825
1826
1827 int SMESH_ActorDef::RenderTranslucentGeometry(vtkViewport *vp)
1828 {
1829   if (!myPickableActor->GetIsOpaque())
1830     {
1831     vtkRenderer *ren = static_cast<vtkRenderer *>(vp);
1832     this->Render(ren);
1833     return 1;
1834     }
1835   return 0;
1836 }
1837
1838
1839 void SMESH_ActorDef::Render(vtkRenderer *ren){
1840   unsigned long aTime = myTimeStamp->GetMTime();
1841   unsigned long anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1842   unsigned long aClippingTime = myImplicitBoolean->GetMTime();
1843   if(anObjTime > aTime || aClippingTime > aTime)
1844     Update();
1845 }
1846
1847
1848 void SMESH_ActorDef::Update(){
1849   if(MYDEBUG) MESSAGE("SMESH_ActorDef::Update");
1850
1851   if(GetControlMode() != eNone) {
1852     unsigned long aTime = myTimeStamp->GetMTime();
1853     unsigned long anObjTime = myVisualObj->GetUnstructuredGrid()->GetMTime();
1854     if (anObjTime > aTime)
1855       SetControlMode(GetControlMode(),false);
1856   }
1857
1858   if(myNodeActor)
1859     myNodeActor->UpdateLabels();
1860
1861   if(my0DActor)
1862     my0DActor->UpdateLabels();
1863
1864   if(myBallActor)
1865     myBallActor->UpdateLabels();
1866
1867   if(my1DActor)
1868     my1DActor->UpdateLabels();
1869
1870   if(my2DActor)
1871     my2DActor->UpdateLabels();
1872
1873   if(my3DActor)
1874     my3DActor->UpdateLabels();
1875
1876   if(myIsFacesOriented){
1877     SetFacesOriented(myIsFacesOriented);
1878   }
1879
1880   if(myVisualObj->GetEntitiesFlag()) {
1881     myEntityMode |= myVisualObj->GetEntitiesState();
1882   }
1883
1884   SetEntityMode(GetEntityMode());
1885   SetVisibility(GetVisibility());
1886
1887   myTimeStamp->Modified();
1888   Modified();
1889 }
1890
1891
1892 void SMESH_ActorDef::ReleaseGraphicsResources(vtkWindow *renWin){
1893   SALOME_Actor::ReleaseGraphicsResources(renWin);
1894
1895   myPickableActor->ReleaseGraphicsResources(renWin);
1896 }
1897
1898
1899 static void GetColor(vtkProperty *theProperty, double& r,double& g,double& b){
1900   double* aColor = theProperty->GetColor();
1901   r = aColor[0];
1902   g = aColor[1];
1903   b = aColor[2];
1904 }
1905
1906
1907 void SMESH_ActorDef::SetOpacity(double theValue){
1908   mySurfaceProp->SetOpacity(theValue);
1909   myBackSurfaceProp->SetOpacity(theValue);
1910   myNormalVProp->SetOpacity(theValue);
1911   myReversedVProp->SetOpacity(theValue);
1912   myEdgeProp->SetOpacity(theValue);
1913   myOutLineProp->SetOpacity(theValue);
1914   myNodeProp->SetOpacity(theValue);
1915
1916   my1DProp->SetOpacity(theValue);
1917   my0DProp->SetOpacity(theValue);
1918   myBallProp->SetOpacity(theValue);
1919 }
1920
1921
1922 double SMESH_ActorDef::GetOpacity(){
1923   return mySurfaceProp->GetOpacity();
1924 }
1925
1926
1927 void SMESH_ActorDef::SetSufaceColor(double r,double g,double b, int delta){
1928   mySurfaceProp->SetColor(r,g,b);
1929   my2DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1930   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1931     if( aGroupObj->GetElementType() == SMDSAbs_Face )
1932       myNameActor->SetBackgroundColor(r,g,b);
1933
1934   myDeltaBrightness = delta;
1935   QColor bfc = Qtx::mainColorToSecondary(QColor(int(r*255),int(g*255),int(b*255)), delta);
1936   myBackSurfaceProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
1937   Modified();
1938 }
1939
1940 void SMESH_ActorDef::GetSufaceColor(double& r,double& g,double& b, int& delta){
1941   ::GetColor(mySurfaceProp,r,g,b);
1942   delta = myDeltaBrightness;
1943 }
1944
1945 void SMESH_ActorDef::SetVolumeColor(double r,double g,double b, int delta){
1946   myNormalVProp->SetColor(r,g,b);
1947   my3DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1948   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1949     if( aGroupObj->GetElementType() == SMDSAbs_Volume )
1950       myNameActor->SetBackgroundColor(r,g,b);
1951
1952   myDeltaVBrightness = delta;
1953   QColor bfc = Qtx::mainColorToSecondary(QColor(int(r*255),int(g*255),int(b*255)), delta);
1954   myReversedVProp->SetColor( bfc.red() / 255. , bfc.green() / 255. , bfc.blue() / 255. );
1955   Modified();
1956 }
1957
1958 void SMESH_ActorDef::GetVolumeColor(double& r,double& g,double& b, int& delta){
1959   ::GetColor(myNormalVProp,r,g,b);
1960   delta = myDeltaVBrightness;
1961 }
1962
1963 void SMESH_ActorDef::SetEdgeColor(double r,double g,double b){
1964   myEdgeProp->SetColor(r,g,b);
1965   my1DProp->SetColor(r,g,b);
1966   my1DExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1967   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1968     if( aGroupObj->GetElementType() == SMDSAbs_Edge )
1969       myNameActor->SetBackgroundColor(r,g,b);
1970   Modified();
1971 }
1972
1973 void SMESH_ActorDef::GetEdgeColor(double& r,double& g,double& b){
1974   ::GetColor(myEdgeProp,r,g,b);
1975 }
1976
1977 void SMESH_ActorDef::SetOutlineColor(double r,double g,double b){
1978   myOutLineProp->SetColor(r,g,b);
1979   Modified();
1980 }
1981
1982 void SMESH_ActorDef::GetOutlineColor(double& r,double& g,double& b){
1983   ::GetColor(myOutLineProp,r,g,b);
1984 }
1985
1986
1987 void SMESH_ActorDef::SetNodeColor(double r,double g,double b){ 
1988   myNodeProp->SetColor(r,g,b);
1989   myNodeExtProp->SetColor(1.0-r,1.0-g,1.0-b);
1990   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
1991     if( aGroupObj->GetElementType() == SMDSAbs_Node )
1992       myNameActor->SetBackgroundColor(r,g,b);
1993   Modified();
1994 }
1995
1996 void SMESH_ActorDef::GetNodeColor(double& r,double& g,double& b){ 
1997   ::GetColor(myNodeProp,r,g,b);
1998 }
1999
2000 void SMESH_ActorDef::Set0DColor(double r,double g,double b){ 
2001   my0DProp->SetColor(r,g,b);
2002   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2003     if( aGroupObj->GetElementType() == SMDSAbs_0DElement )
2004       myNameActor->SetBackgroundColor(r,g,b);
2005   Modified();
2006 }
2007
2008 void SMESH_ActorDef::Get0DColor(double& r,double& g,double& b){ 
2009   ::GetColor(my0DProp,r,g,b);
2010 }
2011
2012 void SMESH_ActorDef::SetBallColor(double r,double g,double b){ 
2013   myBallProp->SetColor(r,g,b);
2014   if( SMESH_GroupObj* aGroupObj = dynamic_cast<SMESH_GroupObj*>( myVisualObj.get() ) )
2015     if( aGroupObj->GetElementType() == SMDSAbs_Ball )
2016       myNameActor->SetBackgroundColor(r,g,b);
2017   Modified();
2018 }
2019
2020 void SMESH_ActorDef::GetBallColor(double& r,double& g,double& b){ 
2021   ::GetColor(myBallProp,r,g,b);
2022 }
2023
2024 void SMESH_ActorDef::SetHighlightColor(double r,double g,double b){ 
2025   myHighlightProp->SetColor(r,g,b);
2026   Modified();
2027 }
2028
2029 void SMESH_ActorDef::GetHighlightColor(double& r,double& g,double& b){ 
2030   ::GetColor(myHighlightProp,r,g,b);
2031 }
2032
2033 void SMESH_ActorDef::SetPreHighlightColor(double r,double g,double b){ 
2034   myPreselectProp->SetColor(r,g,b);
2035   Modified();
2036 }
2037
2038 void SMESH_ActorDef::GetPreHighlightColor(double& r,double& g,double& b){ 
2039   ::GetColor(myPreselectProp,r,g,b);
2040 }
2041
2042
2043 double SMESH_ActorDef::GetLineWidth(){
2044   return myEdgeProp->GetLineWidth();
2045 }
2046
2047
2048 void SMESH_ActorDef::SetLineWidth(double theVal){
2049   myEdgeProp->SetLineWidth(theVal);
2050
2051   my1DProp->SetLineWidth(theVal + aLineWidthInc);
2052   my1DExtProp->SetLineWidth(theVal + aLineWidthInc);
2053   my2DExtProp->SetLineWidth(theVal + aLineWidthInc);
2054   my3DExtProp->SetLineWidth(theVal + aLineWidthInc);
2055   myOutLineProp->SetLineWidth(theVal);
2056   myHighlightProp->SetLineWidth(theVal);
2057   myPreselectProp->SetLineWidth(theVal);
2058   Modified();
2059 }
2060
2061 double SMESH_ActorDef::GetOutlineWidth()
2062 {
2063   return myOutLineProp->GetLineWidth();
2064 }
2065
2066 void SMESH_ActorDef::SetOutlineWidth(double theVal)
2067 {
2068   myOutLineProp->SetLineWidth(theVal);
2069   Modified();
2070 }
2071
2072 void SMESH_ActorDef::Set0DSize(double theVal){
2073   my0DProp->SetPointSize(theVal);
2074   myHighlightProp->SetPointSize(theVal);
2075   myPreselectProp->SetPointSize(theVal);
2076
2077   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2078     aCustom->Set0DSize(theVal);
2079   }
2080   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2081     aCustom->Set0DSize(theVal);
2082   }
2083
2084   Modified();
2085 }
2086
2087 double SMESH_ActorDef::Get0DSize(){
2088   return my0DProp->GetPointSize();
2089 }
2090
2091 void SMESH_ActorDef::SetBallSize(double theVal){
2092   myBallProp->SetPointSize(theVal);
2093
2094   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2095     aCustom->SetBallSize(theVal);
2096   }
2097   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2098     aCustom->SetBallSize(theVal);
2099   }
2100
2101   Modified();
2102 }
2103
2104 double SMESH_ActorDef::GetBallSize(){
2105   return myBallProp->GetPointSize();
2106 }
2107
2108 double SMESH_ActorDef::GetBallScale()
2109 {
2110   return myBallActor->GetBallScale();
2111 }
2112
2113 void SMESH_ActorDef::SetBallScale( double theVal )
2114 {
2115   myBallActor->SetBallScale( theVal );
2116   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myHighlightActor )) {
2117     aCustom->SetBallScale(theVal);
2118   }
2119   if(SMESH_SVTKActor* aCustom = SMESH_SVTKActor::SafeDownCast( myPreHighlightActor )) {
2120     aCustom->SetBallScale(theVal);
2121   }
2122
2123   Modified();
2124 }
2125
2126 int SMESH_ActorDef::GetObjDimension( const int theObjId )
2127 {
2128   return myVisualObj->GetElemDimension( theObjId );
2129 }
2130
2131 bool
2132 SMESH_ActorDef::
2133 IsImplicitFunctionUsed() const
2134 {
2135   return myBaseActor->IsImplicitFunctionUsed();
2136 }
2137
2138 void
2139 SMESH_ActorDef::SetImplicitFunctionUsed(bool theIsImplicitFunctionUsed)
2140 {
2141   myNodeActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2142   myBaseActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2143
2144   myHighlitableActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2145
2146   myNodeExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2147
2148   my0DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2149   myBallActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2150   //my0DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2151
2152   my1DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2153   my1DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2154
2155   my2DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2156   my2DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2157   my3DActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2158   my3DExtActor->SetImplicitFunctionUsed(theIsImplicitFunctionUsed);
2159 }
2160
2161 vtkIdType
2162 SMESH_ActorDef::AddClippingPlane(vtkPlane* thePlane)
2163 {
2164   if(thePlane){
2165     myImplicitBoolean->GetFunction()->AddItem(thePlane);
2166     myCippingPlaneCont.push_back(thePlane);
2167     if(!IsImplicitFunctionUsed())
2168       SetImplicitFunctionUsed(true);
2169     myNodeActor->UpdateLabels();
2170   }
2171   return myCippingPlaneCont.size();
2172 }
2173
2174 void
2175 SMESH_ActorDef::AddOpenGLClippingPlane(vtkPlane* thePlane)
2176 {
2177   if(thePlane)
2178     myPlaneCollection->AddItem( thePlane );
2179 }
2180
2181 void
2182 SMESH_ActorDef::SetOpenGLClippingPlane()
2183 {
2184   // before use this method you must add clipping planes using method
2185   // SMESH_ActorDef::AddOpenGLClippingPlane(vtkPlane* thePlane)
2186   if( !myPlaneCollection->GetNumberOfItems() )
2187     return;
2188
2189   // It is necessary to set plane collection for each mapper of actor
2190   // and update current inputs of mapper
2191   myNodeActor->SetPlaneCollection( myPlaneCollection );
2192   myNodeActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2193
2194   myBaseActor->SetPlaneCollection( myPlaneCollection );
2195   myBaseActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2196
2197   myHighlitableActor->SetPlaneCollection( myPlaneCollection );
2198   myHighlitableActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2199
2200   my1DActor->SetPlaneCollection( myPlaneCollection );
2201   my1DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2202
2203   my2DActor->SetPlaneCollection( myPlaneCollection );
2204   my2DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2205
2206   myNodeExtActor->SetPlaneCollection( myPlaneCollection );
2207   myNodeExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2208
2209   my0DActor->SetPlaneCollection( myPlaneCollection );
2210   my0DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2211
2212   myBallActor->SetPlaneCollection( myPlaneCollection );
2213   myBallActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2214
2215   my1DExtActor->SetPlaneCollection( myPlaneCollection );
2216   my1DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2217
2218   my2DExtActor->SetPlaneCollection( myPlaneCollection );
2219   my2DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2220
2221   my3DActor->SetPlaneCollection( myPlaneCollection );
2222   my3DActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2223
2224   my3DExtActor->SetPlaneCollection( myPlaneCollection );
2225   my3DExtActor->SetUnstructuredGrid(myVisualObj->GetUnstructuredGrid());
2226
2227   if(IsShrunk())
2228     SetShrink();
2229   else  
2230     Modified();
2231 }
2232
2233 void
2234 SMESH_ActorDef::
2235 RemoveAllClippingPlanes()
2236 {
2237   myPlaneCollection->RemoveAllItems();
2238   myImplicitBoolean->GetFunction()->RemoveAllItems();
2239   myImplicitBoolean->GetFunction()->Modified(); // VTK bug
2240   myCippingPlaneCont.clear();
2241   SetImplicitFunctionUsed(false);
2242   myNodeActor->UpdateLabels();
2243 }
2244
2245 vtkIdType
2246 SMESH_ActorDef::
2247 GetNumberOfClippingPlanes()
2248 {
2249   return myCippingPlaneCont.size();
2250 }
2251
2252 vtkPlane*
2253 SMESH_ActorDef::
2254 GetClippingPlane(vtkIdType theID)
2255 {
2256   if ( theID >= (vtkIdType)myCippingPlaneCont.size() )
2257     return NULL;
2258   return myCippingPlaneCont[theID].Get();
2259 }
2260
2261 void SMESH_ActorDef::UpdateScalarBar()
2262 {
2263   SUIT_ResourceMgr* mgr = SUIT_Session::session()->resourceMgr();
2264   if( !mgr )
2265     return;
2266
2267   vtkTextProperty* aScalarBarTitleProp = vtkTextProperty::New();
2268
2269   QColor aTColor = mgr->colorValue( "SMESH", "scalar_bar_title_color", QColor( 255, 255, 255 ) );
2270   aScalarBarTitleProp->SetColor( aTColor.red()/255., aTColor.green()/255., aTColor.blue()/255. );
2271
2272   aScalarBarTitleProp->SetFontFamilyToArial();
2273
2274   if ( mgr->hasValue( "SMESH", "scalar_bar_title_font" ) )
2275   {
2276     QFont f = mgr->fontValue( "SMESH", "scalar_bar_title_font" );
2277     if ( f.family() == "Arial" )
2278       aScalarBarTitleProp->SetFontFamilyToArial();
2279     else if ( f.family() == "Courier" )
2280       aScalarBarTitleProp->SetFontFamilyToCourier();
2281     else if ( f.family() == "Times" )
2282       aScalarBarTitleProp->SetFontFamilyToTimes();
2283
2284     if ( f.bold() )
2285       aScalarBarTitleProp->BoldOn();
2286     else
2287       aScalarBarTitleProp->BoldOff();
2288
2289     if ( f.italic() )
2290       aScalarBarTitleProp->ItalicOn();
2291     else
2292      aScalarBarTitleProp->ItalicOff();
2293
2294     if ( f.overline() )
2295       aScalarBarTitleProp->ShadowOn();
2296     else
2297       aScalarBarTitleProp->ShadowOff();
2298   }
2299
2300   myScalarBarActor->SetTitleTextProperty( aScalarBarTitleProp );
2301   aScalarBarTitleProp->Delete();
2302
2303   vtkTextProperty* aScalarBarLabelProp = vtkTextProperty::New();
2304
2305   aTColor = mgr->colorValue( "SMESH", "scalar_bar_label_color", QColor( 255, 255, 255 ) );
2306   aScalarBarLabelProp->SetColor( aTColor.red()/255., aTColor.green()/255., aTColor.blue()/255. );
2307
2308   aScalarBarLabelProp->SetFontFamilyToArial();
2309   if( mgr->hasValue( "SMESH", "scalar_bar_label_font" ) )
2310   {
2311     QFont f = mgr->fontValue( "SMESH", "scalar_bar_label_font" );
2312     if( f.family() == "Arial" )
2313       aScalarBarLabelProp->SetFontFamilyToArial();
2314     else if( f.family() == "Courier" )
2315       aScalarBarLabelProp->SetFontFamilyToCourier();
2316     else if( f.family() == "Times" )
2317       aScalarBarLabelProp->SetFontFamilyToTimes();
2318
2319     if ( f.bold() )
2320       aScalarBarLabelProp->BoldOn();
2321     else
2322       aScalarBarLabelProp->BoldOff();
2323
2324     if ( f.italic() )
2325       aScalarBarLabelProp->ItalicOn();
2326     else
2327       aScalarBarLabelProp->ItalicOff();
2328
2329     if( f.overline() )
2330       aScalarBarLabelProp->ShadowOn();
2331     else
2332       aScalarBarLabelProp->ShadowOff();
2333   }
2334
2335   myScalarBarActor->SetLabelTextProperty( aScalarBarLabelProp );
2336   aScalarBarLabelProp->Delete();
2337
2338   bool horiz = ( mgr->integerValue( "SMESH", "scalar_bar_orientation" ) == 1 );
2339   QString name = QString( "scalar_bar_%1_" ).arg( horiz ? "horizontal" : "vertical" );
2340   if( horiz )
2341     myScalarBarActor->SetOrientationToHorizontal();
2342   else
2343     myScalarBarActor->SetOrientationToVertical();
2344
2345
2346   double aXVal = horiz ? 0.20 : 0.01;
2347   if( mgr->hasValue( "SMESH", name + "x" ) )
2348     aXVal = mgr->doubleValue( "SMESH", name + "x", aXVal );
2349
2350   double aYVal = horiz ? 0.01 : 0.1;
2351   if( mgr->hasValue( "SMESH", name + "y" ) )
2352     aYVal = mgr->doubleValue( "SMESH", name + "y", aYVal );
2353   myScalarBarActor->SetPosition( aXVal, aYVal );
2354
2355   double aWVal = horiz ? 0.60 : 0.10;
2356   if( mgr->hasValue( "SMESH", name + "width" ) )
2357     aWVal = mgr->doubleValue( "SMESH", name + "width", aWVal );
2358   myScalarBarActor->SetWidth( aWVal );
2359
2360   double aHVal = horiz ? 0.12 : 0.80;
2361   if( mgr->hasValue( "SMESH", name + "height" ) )
2362     aHVal = mgr->doubleValue( "SMESH", name + "height", aHVal );
2363   myScalarBarActor->SetHeight( aHVal );
2364
2365   int anIntVal = 5;
2366   if( mgr->hasValue( "SMESH", "scalar_bar_num_labels" ) )
2367     anIntVal = mgr->integerValue( "SMESH", "scalar_bar_num_labels", anIntVal );
2368   myScalarBarActor->SetNumberOfLabels( anIntVal == 0 ? 5: anIntVal );
2369
2370   anIntVal = 64;
2371   if( mgr->hasValue( "SMESH", "scalar_bar_num_colors" ) )
2372     anIntVal = mgr->integerValue( "SMESH", "scalar_bar_num_colors", anIntVal );
2373   myScalarBarActor->SetMaximumNumberOfColors( anIntVal == 0 ? 64 : anIntVal );
2374
2375   bool distributionVisibility = mgr->booleanValue("SMESH","distribution_visibility");
2376   myScalarBarActor->SetDistributionVisibility(distributionVisibility);
2377
2378   int coloringType = mgr->integerValue("SMESH", "distribution_coloring_type", 0);
2379   myScalarBarActor->SetDistributionColoringType(coloringType);
2380
2381   QColor distributionColor = mgr->colorValue("SMESH", "distribution_color",
2382                                              QColor(255, 255, 255));
2383   double rgb[3];
2384   rgb[0]= distributionColor.red()/255.;
2385   rgb[1]= distributionColor.green()/255.;
2386   rgb[2]= distributionColor.blue()/255.;
2387   myScalarBarActor->SetDistributionColor(rgb);
2388
2389
2390 }
2391
2392 void SMESH_ActorDef::UpdateDistribution()
2393 {
2394   if(SMESH::Controls::NumericalFunctor* fun =
2395      dynamic_cast<SMESH::Controls::NumericalFunctor*>(myFunctor.get()))
2396   {
2397     int nbIntervals = myScalarBarActor->GetMaximumNumberOfColors();
2398     std::vector<int> nbEvents;
2399     std::vector<double> funValues;
2400     SMESH_VisualObjDef::TEntityList elems;
2401     if ( ! dynamic_cast<SMESH_MeshObj*>(myVisualObj.get()))
2402       dynamic_cast<SMESH_VisualObjDef*>(myVisualObj.get())->GetEntities( fun->GetType(), elems );
2403     std::vector<int> elemIds;
2404     for ( SMESH_VisualObjDef::TEntityList::iterator e = elems.begin(); e != elems.end(); ++e)
2405       elemIds.push_back( (*e)->GetID());
2406     vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
2407     double * range = lookupTable->GetRange();
2408     bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
2409     fun->GetHistogram(nbIntervals, nbEvents, funValues, elemIds, range, isLogarithmic);
2410     myScalarBarActor->SetDistribution(nbEvents);
2411   }
2412 }
2413
2414 void SMESH_ActorDef::SetQuadratic2DRepresentation(EQuadratic2DRepresentation theMode)
2415 {
2416   switch(theMode) {
2417   case SMESH_Actor::eLines :
2418     myHighlitableActor->SetQuadraticArcMode(false);
2419     my2DActor->SetQuadraticArcMode(false);
2420     my1DActor->SetQuadraticArcMode(false);
2421     break;
2422   case SMESH_Actor::eArcs :
2423     myHighlitableActor->SetQuadraticArcMode(true);
2424     if(GetRepresentation() != SMESH_Actor::ePoint) {
2425       my2DActor->SetQuadraticArcMode(true);
2426       my1DActor->SetQuadraticArcMode(true);
2427     }
2428     break;
2429   default:
2430     break;
2431   }
2432 }
2433
2434
2435 SMESH_Actor::EQuadratic2DRepresentation SMESH_ActorDef::GetQuadratic2DRepresentation()
2436 {
2437   if(myHighlitableActor->GetQuadraticArcMode())
2438     return SMESH_Actor::eArcs;
2439   else
2440     return SMESH_Actor::eLines;
2441 }
2442
2443 void SMESH_ActorDef::SetMarkerStd( VTK::MarkerType theMarkerType, VTK::MarkerScale theMarkerScale )
2444 {
2445   SALOME_Actor::SetMarkerStd( theMarkerType, theMarkerScale );
2446   myNodeActor->SetMarkerStd( theMarkerType, theMarkerScale );
2447   myNodeExtActor->SetMarkerStd( theMarkerType, theMarkerScale );
2448 }
2449
2450 void SMESH_ActorDef::SetMarkerTexture( int theMarkerId, VTK::MarkerTexture theMarkerTexture )
2451 {
2452   SALOME_Actor::SetMarkerTexture( theMarkerId, theMarkerTexture );
2453   myNodeActor->SetMarkerTexture( theMarkerId, theMarkerTexture );
2454   myNodeExtActor->SetMarkerTexture( theMarkerId, theMarkerTexture );
2455   myMarkerTexture = theMarkerTexture; // for deferred update of myHighlightActor
2456 }
2457
2458 #ifndef DISABLE_PLOT2DVIEWER
2459 SPlot2d_Histogram* SMESH_ActorDef::UpdatePlot2Histogram() {
2460
2461   if(my2dHistogram)
2462     my2dHistogram->clearAllPoints();
2463
2464   if(SMESH::Controls::NumericalFunctor* fun =
2465      dynamic_cast<SMESH::Controls::NumericalFunctor*>(myFunctor.get()))
2466   {
2467
2468     if(!my2dHistogram) {
2469       my2dHistogram = new SPlot2d_Histogram();
2470       Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject(getIO()->getEntry(),"SMESH",getName());
2471       my2dHistogram->setIO(anIO);
2472     }
2473
2474     int nbIntervals = myScalarBarActor->GetMaximumNumberOfColors();
2475     std::vector<int> nbEvents;
2476     std::vector<double> funValues;
2477     SMESH_VisualObjDef::TEntityList elems;
2478     if ( ! dynamic_cast<SMESH_MeshObj*>(myVisualObj.get()))
2479       dynamic_cast<SMESH_VisualObjDef*>(myVisualObj.get())->GetEntities( fun->GetType(), elems );
2480     std::vector<int> elemIds;
2481
2482     for ( SMESH_VisualObjDef::TEntityList::iterator e = elems.begin(); e != elems.end(); ++e)
2483       elemIds.push_back( (*e)->GetID());
2484
2485     vtkLookupTable* lookupTable = static_cast<vtkLookupTable*>(myScalarBarActor->GetLookupTable());
2486     double * range = lookupTable->GetRange();
2487     bool isLogarithmic = lookupTable->GetScale() == VTK_SCALE_LOG10;
2488     fun->GetHistogram(nbIntervals, nbEvents, funValues, elemIds, range, isLogarithmic);
2489
2490     for ( size_t i = 0; i < std::min( nbEvents.size(), funValues.size() -1 ); i++ )
2491       my2dHistogram->addPoint(funValues[i] + (funValues[i+1] - funValues[i])/2.0, static_cast<double>(nbEvents[i]));
2492
2493     if(funValues.size() >= 2)
2494       my2dHistogram->setWidth((funValues[1] - funValues[0]) * 0.8) ;
2495
2496   }
2497
2498   //Color of the histogram
2499   if(myScalarBarActor->GetDistributionColoringType() == SMESH_MULTICOLOR_TYPE)
2500     my2dHistogram->setAutoAssign(true);
2501   else {
2502     double rgb[3];
2503     myScalarBarActor->GetDistributionColor(rgb);
2504     QColor aColor = QColor( (int)( rgb[0]*255 ), (int)( rgb[1]*255 ), (int)( rgb[2]*255 ) );
2505     my2dHistogram->setColor(aColor);
2506
2507   }
2508
2509   return my2dHistogram;
2510 }
2511 #endif