]> Creatis software - cpPlugins.git/blob - lib/cpExtensions/QT/SimpleMPRWidget.cxx
Visualization integration in a single interface.
[cpPlugins.git] / lib / cpExtensions / QT / SimpleMPRWidget.cxx
1 #include <cpExtensions/QT/SimpleMPRWidget.h>
2
3 #ifdef cpExtensions_QT4
4
5 #include <cpExtensions/QT/ui_SimpleMPRWidget.h>
6 #include <cpExtensions/QT/ImageWidget.h>
7 #include <cpExtensions/QT/MPR3DWidget.h>
8 #include <cpExtensions/QT/MPRInteractionCommand.h>
9 #include <cpExtensions/QT/ConfigurationChooser.h>
10
11 #include <vtkImageData.h>
12 #include <vtkPolyData.h>
13 #include <vtkProp.h>
14 #include <vtkPropCollection.h>
15
16 // -------------------------------------------------------------------------
17 cpExtensions::QT::SimpleMPRWidget::
18 SimpleMPRWidget( QWidget* parent, Qt::WindowFlags f )
19   : Superclass( parent, f ),
20     Superclass2( ),
21     m_UI( new Ui::SimpleMPRWidget ),
22     m_MainImageName( "" )
23 {
24   this->m_UI->setupUi( this );
25
26   // Prepare default configuration
27   this->m_UI->Q1->hide( );
28   this->m_UI->Q2->hide( );
29   this->m_UI->Q3->hide( );
30   this->m_UI->Q4->hide( );
31   this->m_UI->Q1->close( );
32   this->m_UI->Q2->close( );
33   this->m_UI->Q3->close( );
34   this->m_UI->Q4->close( );
35   delete this->m_UI->Q1;
36   delete this->m_UI->Q2;
37   delete this->m_UI->Q3;
38   delete this->m_UI->Q4;
39   this->m_XImage = new ImageWidget( this );
40   this->m_YImage = new ImageWidget( this );
41   this->m_ZImage = new ImageWidget( this );
42   this->m_3DView = new MPR3DWidget( this );
43   this->m_UI->Q1 = this->m_XImage;
44   this->m_UI->Q2 = this->m_YImage;
45   this->m_UI->Q3 = this->m_ZImage;
46   this->m_UI->Q4 = this->m_3DView;
47   this->Configure( 'y', 'x', 'w', 'z' );
48
49   // Interaction synchronizer
50   unsigned long ev1 = vtkCommand::UserEvent + 1;
51   unsigned long ev2 = vtkCommand::UserEvent + 2;
52   vtkSmartPointer< cpExtensions::QT::MPRInteractionCommand > cmd =
53     vtkSmartPointer< cpExtensions::QT::MPRInteractionCommand >::New( );
54   cmd->AddWidget( this->m_XImage );
55   cmd->AddWidget( this->m_YImage );
56   cmd->AddWidget( this->m_ZImage );
57   cmd->AddWidget( this->m_3DView );
58   this->m_XImage->GetStyle( )->AddObserver( ev1, cmd );
59   this->m_YImage->GetStyle( )->AddObserver( ev1, cmd );
60   this->m_ZImage->GetStyle( )->AddObserver( ev1, cmd );
61   this->m_XImage->GetStyle( )->AddObserver( ev2, cmd );
62   this->m_YImage->GetStyle( )->AddObserver( ev2, cmd );
63   this->m_ZImage->GetStyle( )->AddObserver( ev2, cmd );
64
65   // Connect slots
66   this->connect(
67     this->m_UI->Top, SIGNAL( splitterMoved( int, int ) ),
68     this, SLOT( _SyncBottom( int, int ) )
69     );
70   this->connect(
71     this->m_UI->Bottom, SIGNAL( splitterMoved( int, int ) ),
72     this, SLOT( _SyncTop( int, int ) )
73     );
74 }
75
76 // -------------------------------------------------------------------------
77 cpExtensions::QT::SimpleMPRWidget::
78 ~SimpleMPRWidget( )
79 {
80   delete this->m_UI;
81 }
82
83 // -------------------------------------------------------------------------
84 void cpExtensions::QT::SimpleMPRWidget::
85 Configure( char q1, char q2, char q3, char q4 )
86 {
87   // Hide all widgets
88   this->m_UI->Q1->hide( );
89   this->m_UI->Q2->hide( );
90   this->m_UI->Q3->hide( );
91   this->m_UI->Q4->hide( );
92   this->m_UI->Q1->close( );
93   this->m_UI->Q2->close( );
94   this->m_UI->Q3->close( );
95   this->m_UI->Q4->close( );
96
97   // Reorder them
98   if     ( q1 == 'x' ) this->m_UI->Top->addWidget( this->m_XImage );
99   else if( q1 == 'y' ) this->m_UI->Top->addWidget( this->m_YImage );
100   else if( q1 == 'z' ) this->m_UI->Top->addWidget( this->m_ZImage );
101   else if( q1 == 'w' ) this->m_UI->Top->addWidget( this->m_3DView );
102   if     ( q2 == 'x' ) this->m_UI->Top->addWidget( this->m_XImage );
103   else if( q2 == 'y' ) this->m_UI->Top->addWidget( this->m_YImage );
104   else if( q2 == 'z' ) this->m_UI->Top->addWidget( this->m_ZImage );
105   else if( q2 == 'w' ) this->m_UI->Top->addWidget( this->m_3DView );
106   this->m_UI->Top->update( );
107   if     ( q4 == 'x' ) this->m_UI->Bottom->addWidget( this->m_XImage );
108   else if( q4 == 'y' ) this->m_UI->Bottom->addWidget( this->m_YImage );
109   else if( q4 == 'z' ) this->m_UI->Bottom->addWidget( this->m_ZImage );
110   else if( q4 == 'w' ) this->m_UI->Bottom->addWidget( this->m_3DView );
111   if     ( q3 == 'x' ) this->m_UI->Bottom->addWidget( this->m_XImage );
112   else if( q3 == 'y' ) this->m_UI->Bottom->addWidget( this->m_YImage );
113   else if( q3 == 'z' ) this->m_UI->Bottom->addWidget( this->m_ZImage );
114   else if( q3 == 'w' ) this->m_UI->Bottom->addWidget( this->m_3DView );
115   this->m_UI->Bottom->update( );
116
117   // Keep track
118   if     ( q1 == 'x' ) this->m_UI->Q1 = this->m_XImage;
119   else if( q1 == 'y' ) this->m_UI->Q1 = this->m_YImage;
120   else if( q1 == 'z' ) this->m_UI->Q1 = this->m_ZImage;
121   else if( q1 == 'w' ) this->m_UI->Q1 = this->m_3DView;
122   if     ( q2 == 'x' ) this->m_UI->Q2 = this->m_XImage;
123   else if( q2 == 'y' ) this->m_UI->Q2 = this->m_YImage;
124   else if( q2 == 'z' ) this->m_UI->Q2 = this->m_ZImage;
125   else if( q2 == 'w' ) this->m_UI->Q2 = this->m_3DView;
126   if     ( q3 == 'x' ) this->m_UI->Q3 = this->m_XImage;
127   else if( q3 == 'y' ) this->m_UI->Q3 = this->m_YImage;
128   else if( q3 == 'z' ) this->m_UI->Q3 = this->m_ZImage;
129   else if( q3 == 'w' ) this->m_UI->Q3 = this->m_3DView;
130   if     ( q4 == 'x' ) this->m_UI->Q4 = this->m_XImage;
131   else if( q4 == 'y' ) this->m_UI->Q4 = this->m_YImage;
132   else if( q4 == 'z' ) this->m_UI->Q4 = this->m_ZImage;
133   else if( q4 == 'w' ) this->m_UI->Q4 = this->m_3DView;
134
135   // Draw all
136   this->m_UI->Q1->show( );
137   this->m_UI->Q2->show( );
138   this->m_UI->Q3->show( );
139   this->m_UI->Q4->show( );
140   dynamic_cast< RendererWidget* >( this->m_UI->Q1 )->SetQuadrant( 1 );
141   dynamic_cast< RendererWidget* >( this->m_UI->Q2 )->SetQuadrant( 2 );
142   dynamic_cast< RendererWidget* >( this->m_UI->Q3 )->SetQuadrant( 3 );
143   dynamic_cast< RendererWidget* >( this->m_UI->Q4 )->SetQuadrant( 4 );
144 }
145
146 // -------------------------------------------------------------------------
147 bool cpExtensions::QT::SimpleMPRWidget::
148 HasImage( ) const
149 {
150   return( this->m_MainImage.GetPointer( ) != NULL );
151 }
152
153 // -------------------------------------------------------------------------
154 void cpExtensions::QT::SimpleMPRWidget::
155 SetImage( vtkImageData* image, const std::string& name )
156 {
157   if( this->m_MainImageName != "" || image == NULL )
158   {
159     // TODO: Clear visualization
160
161   } // fi
162   this->m_MainImageName = name;
163   this->m_MainImage = image;
164
165   if( this->m_MainImage != NULL && this->m_MainImageName != "" )
166   {
167     this->m_XImage->SetImage( this->m_MainImage, 0, name );
168     this->m_YImage->SetImage( this->m_MainImage, 1, name );
169     this->m_ZImage->SetImage( this->m_MainImage, 2, name );
170     this->m_3DView->SetImage( this->m_MainImage, name );
171
172   } // fi
173 }
174
175 // -------------------------------------------------------------------------
176 bool cpExtensions::QT::SimpleMPRWidget::
177 Add( vtkDataSet* data, const std::string& name )
178 {
179   bool success = true;
180   auto image = dynamic_cast< vtkImageData* >( data );
181   auto pdata = dynamic_cast< vtkPolyData* >( data );
182
183   if( image != NULL )
184   {
185     if( this->m_MainImageName != "" )
186     {
187       this->m_XImage->Add( image, name );
188       this->m_YImage->Add( image, name );
189       this->m_ZImage->Add( image, name );
190       // TODO: this->m_3DView->Add( image, name );
191     }
192     else
193       this->SetImage( image, name );
194   }
195   else if( pdata != NULL )
196     this->m_3DView->Add( pdata, name );
197   else
198     success = false;
199   return( success );
200 }
201
202 // -------------------------------------------------------------------------
203 cpExtensions::QT::SimpleMPRWidget::
204 TProps cpExtensions::QT::SimpleMPRWidget::
205 GetViewProps( const std::string& name ) const
206 {
207 /*
208   auto x = this->m_XImage->GetViewProps( name );
209   auto y = this->m_YImage->GetViewProps( name );
210   auto z = this->m_ZImage->GetViewProps( name );
211   auto w = this->m_3DView->GetViewProps( name );
212
213   TProps props;
214   if( x != NULL ) props.insert( x );
215   if( y != NULL ) props.insert( y );
216   if( z != NULL ) props.insert( z );
217   if( w != NULL ) props.insert( w );
218   return( props );
219 */
220 }
221
222 // -------------------------------------------------------------------------
223 cpExtensions::QT::SimpleMPRWidget::
224 TProps cpExtensions::QT::SimpleMPRWidget::
225 GetImageProps( ) const
226 {
227   return( this->GetViewProps( this->m_MainImageName ) );
228 }
229
230 // -------------------------------------------------------------------------
231 vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
232 GetXInteractor( )
233 {
234   return( this->m_XImage->GetInteractor( ) );
235 }
236
237 // -------------------------------------------------------------------------
238 const vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
239 GetXInteractor( ) const
240 {
241   return( this->m_XImage->GetInteractor( ) );
242 }
243
244 // -------------------------------------------------------------------------
245 vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
246 GetYInteractor( )
247 {
248   return( this->m_YImage->GetInteractor( ) );
249 }
250
251 // -------------------------------------------------------------------------
252 const vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
253 GetYInteractor( ) const
254 {
255   return( this->m_YImage->GetInteractor( ) );
256 }
257
258 // -------------------------------------------------------------------------
259 vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
260 GetZInteractor( )
261 {
262   return( this->m_ZImage->GetInteractor( ) );
263 }
264
265 // -------------------------------------------------------------------------
266 const vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
267 GetZInteractor( ) const
268 {
269   return( this->m_ZImage->GetInteractor( ) );
270 }
271
272 // -------------------------------------------------------------------------
273 vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
274 GetWInteractor( )
275 {
276   return( this->m_3DView->GetInteractor( ) );
277 }
278
279 // -------------------------------------------------------------------------
280 const vtkRenderWindowInteractor* cpExtensions::QT::SimpleMPRWidget::
281 GetWInteractor( ) const
282 {
283   return( this->m_3DView->GetInteractor( ) );
284 }
285
286 // -------------------------------------------------------------------------
287 vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
288 GetXRenderWindow( )
289 {
290   return( this->m_XImage->GetRenderWindow( ) );
291 }
292
293 // -------------------------------------------------------------------------
294 const vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
295 GetXRenderWindow( ) const
296 {
297   return( this->m_XImage->GetRenderWindow( ) );
298 }
299
300 // -------------------------------------------------------------------------
301 vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
302 GetYRenderWindow( )
303 {
304   return( this->m_YImage->GetRenderWindow( ) );
305 }
306
307 // -------------------------------------------------------------------------
308 const vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
309 GetYRenderWindow( ) const
310 {
311   return( this->m_YImage->GetRenderWindow( ) );
312 }
313
314 // -------------------------------------------------------------------------
315 vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
316 GetZRenderWindow( )
317 {
318   return( this->m_ZImage->GetRenderWindow( ) );
319 }
320
321 // -------------------------------------------------------------------------
322 const vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
323 GetZRenderWindow( ) const
324 {
325   return( this->m_ZImage->GetRenderWindow( ) );
326 }
327
328 // -------------------------------------------------------------------------
329 vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
330 GetWRenderWindow( )
331 {
332   return( this->m_3DView->GetRenderWindow( ) );
333 }
334
335
336 // -------------------------------------------------------------------------
337 const vtkRenderWindow* cpExtensions::QT::SimpleMPRWidget::
338 GetWRenderWindow( ) const
339 {
340   return( this->m_3DView->GetRenderWindow( ) );
341 }
342
343 // -------------------------------------------------------------------------
344 void cpExtensions::QT::SimpleMPRWidget::
345 ResetCameras( )
346 {
347 /*
348   this->m_XImage->ResetCamera( );
349   this->m_YImage->ResetCamera( );
350   this->m_ZImage->ResetCamera( );
351   this->m_3DView->ResetCamera( );
352 */
353 }
354
355 // -------------------------------------------------------------------------
356 void cpExtensions::QT::SimpleMPRWidget::
357 Render( )
358 {
359 /*
360   this->m_XImage->Render( );
361   this->m_YImage->Render( );
362   this->m_ZImage->Render( );
363   this->m_3DView->Render( );
364 */
365 }
366
367 // -------------------------------------------------------------------------
368 std::set< std::string > cpExtensions::QT::SimpleMPRWidget::
369 GetActorsNames( ) const
370 {
371   std::set< std::string > names = this->m_XImage->GetActorsNames( );
372   std::set< std::string > y = this->m_YImage->GetActorsNames( );
373   std::set< std::string > z = this->m_ZImage->GetActorsNames( );
374   std::set< std::string > w = this->m_3DView->GetActorsNames( );
375   names.insert( y.begin( ), y.end( ) );
376   names.insert( z.begin( ), z.end( ) );
377   names.insert( w.begin( ), w.end( ) );
378   return( names );
379 }
380
381 // -------------------------------------------------------------------------
382 bool cpExtensions::QT::SimpleMPRWidget::
383 IsWindowLevelImageActor( const std::string& name ) const
384 {
385   return( this->m_XImage->IsWindowLevelImageActor( name ) );
386 }
387
388 // -------------------------------------------------------------------------
389 bool cpExtensions::QT::SimpleMPRWidget::
390 IsLUTImageActor( const std::string& name ) const
391 {
392   return( this->m_XImage->IsLUTImageActor( name ) );
393 }
394
395 // -------------------------------------------------------------------------
396 bool cpExtensions::QT::SimpleMPRWidget::
397 Is3DActor( const std::string& name ) const
398 {
399   return(
400     this->m_XImage->Is3DActor( name ) || this->m_3DView->Is3DActor( name )
401     );
402 }
403
404 // -------------------------------------------------------------------------
405 void cpExtensions::QT::SimpleMPRWidget::
406 GetScalarRange( const std::string& name, double r[ 2 ] ) const
407 {
408   this->m_XImage->GetScalarRange( name, r );
409 }
410
411 // -------------------------------------------------------------------------
412 void cpExtensions::QT::SimpleMPRWidget::
413 GetWindowLevel( const std::string& name, double wl[ 2 ] ) const
414 {
415   this->m_XImage->GetWindowLevel( name, wl );
416 }
417
418 // -------------------------------------------------------------------------
419 double cpExtensions::QT::SimpleMPRWidget::
420 GetWindow( const std::string& name ) const
421 {
422   return( this->m_XImage->GetWindow( name ) );
423 }
424
425 // -------------------------------------------------------------------------
426 double cpExtensions::QT::SimpleMPRWidget::
427 GetLevel( const std::string& name ) const
428 {
429   return( this->m_XImage->GetLevel( name ) );
430 }
431
432 // -------------------------------------------------------------------------
433 char cpExtensions::QT::SimpleMPRWidget::
434 GetImageInterpolation( const std::string& name ) const
435 {
436   return( this->m_XImage->GetImageInterpolation( name ) );
437 }
438
439 // -------------------------------------------------------------------------
440 void cpExtensions::QT::SimpleMPRWidget::
441 GetColor( const std::string& name, double& r, double& g, double& b ) const
442 {
443   this->m_XImage->GetColor( name, r, g, b );
444 }
445
446 // -------------------------------------------------------------------------
447 double cpExtensions::QT::SimpleMPRWidget::
448 GetOpacity( const std::string& name ) const
449 {
450   return( this->m_XImage->GetOpacity( name ) );
451 }
452
453 // -------------------------------------------------------------------------
454 double cpExtensions::QT::SimpleMPRWidget::
455 GetPointSize( const std::string& name ) const
456 {
457   return( this->m_XImage->GetPointSize( name ) );
458 }
459
460 // -------------------------------------------------------------------------
461 double cpExtensions::QT::SimpleMPRWidget::
462 GetLineWidth( const std::string& name ) const
463 {
464   return( this->m_XImage->GetLineWidth( name ) );
465 }
466
467 // -------------------------------------------------------------------------
468 int cpExtensions::QT::SimpleMPRWidget::
469 GetRepresentation( const std::string& name ) const
470 {
471   return( this->m_XImage->GetRepresentation( name ) );
472 }
473
474 // -------------------------------------------------------------------------
475 void cpExtensions::QT::SimpleMPRWidget::
476 SetScalarRange( const std::string& name, double r[ 2 ] )
477 {
478   this->m_XImage->SetScalarRange( name, r );
479   this->m_YImage->SetScalarRange( name, r );
480   this->m_ZImage->SetScalarRange( name, r );
481   this->m_3DView->SetScalarRange( name, r );
482 }
483
484 // -------------------------------------------------------------------------
485 void cpExtensions::QT::SimpleMPRWidget::
486 SetScalarRange( const std::string& name, double min, double max )
487 {
488   this->m_XImage->SetScalarRange( name, min, max );
489   this->m_YImage->SetScalarRange( name, min, max );
490   this->m_ZImage->SetScalarRange( name, min, max );
491   this->m_3DView->SetScalarRange( name, min, max );
492 }
493
494 // -------------------------------------------------------------------------
495 void cpExtensions::QT::SimpleMPRWidget::
496 SetWindowLevel( const std::string& name, double wl[ 2 ] )
497 {
498   this->m_XImage->SetWindowLevel( name, wl );
499   this->m_YImage->SetWindowLevel( name, wl );
500   this->m_ZImage->SetWindowLevel( name, wl );
501   this->m_3DView->SetWindowLevel( name, wl );
502 }
503
504 // -------------------------------------------------------------------------
505 void cpExtensions::QT::SimpleMPRWidget::
506 SetWindowLevel( const std::string& name, double w, double l )
507 {
508   this->m_XImage->SetWindowLevel( name, w, l );
509   this->m_YImage->SetWindowLevel( name, w, l );
510   this->m_ZImage->SetWindowLevel( name, w, l );
511   this->m_3DView->SetWindowLevel( name, w, l );
512 }
513
514 // -------------------------------------------------------------------------
515 void cpExtensions::QT::SimpleMPRWidget::
516 SetWindow( const std::string& name, double w )
517 {
518   this->m_XImage->SetWindow( name, w );
519   this->m_YImage->SetWindow( name, w );
520   this->m_ZImage->SetWindow( name, w );
521   this->m_3DView->SetWindow( name, w );
522 }
523
524 // -------------------------------------------------------------------------
525 void cpExtensions::QT::SimpleMPRWidget::
526 SetLevel( const std::string& name, double l )
527 {
528   this->m_XImage->SetLevel( name, l );
529   this->m_YImage->SetLevel( name, l );
530   this->m_ZImage->SetLevel( name, l );
531   this->m_3DView->SetLevel( name, l );
532 }
533
534 // -------------------------------------------------------------------------
535 void cpExtensions::QT::SimpleMPRWidget::
536 SetImageInterpolation( const std::string& name, char i )
537 {
538   this->m_XImage->SetImageInterpolation( name, i );
539   this->m_YImage->SetImageInterpolation( name, i );
540   this->m_ZImage->SetImageInterpolation( name, i );
541   this->m_3DView->SetImageInterpolation( name, i );
542 }
543
544 // -------------------------------------------------------------------------
545 void cpExtensions::QT::SimpleMPRWidget::
546 SetColor( const std::string& name, double r, double g, double b )
547 {
548   this->m_XImage->SetColor( name, r, g, b );
549   this->m_YImage->SetColor( name, r, g, b );
550   this->m_ZImage->SetColor( name, r, g, b );
551   this->m_3DView->SetColor( name, r, g, b );
552 }
553
554 // -------------------------------------------------------------------------
555 void cpExtensions::QT::SimpleMPRWidget::
556 SetOpacity( const std::string& name, double o )
557 {
558   this->m_XImage->SetOpacity( name, o );
559   this->m_YImage->SetOpacity( name, o );
560   this->m_ZImage->SetOpacity( name, o );
561   this->m_3DView->SetOpacity( name, o );
562 }
563
564 // -------------------------------------------------------------------------
565 void cpExtensions::QT::SimpleMPRWidget::
566 SetPointSize( const std::string& name, double s )
567 {
568   this->m_XImage->SetPointSize( name, s );
569   this->m_YImage->SetPointSize( name, s );
570   this->m_ZImage->SetPointSize( name, s );
571   this->m_3DView->SetPointSize( name, s );
572 }
573
574 // -------------------------------------------------------------------------
575 void cpExtensions::QT::SimpleMPRWidget::
576 SetLineWidth( const std::string& name, double w )
577 {
578   this->m_XImage->SetLineWidth( name, w );
579   this->m_YImage->SetLineWidth( name, w );
580   this->m_ZImage->SetLineWidth( name, w );
581   this->m_3DView->SetLineWidth( name, w );
582 }
583
584 // -------------------------------------------------------------------------
585 void cpExtensions::QT::SimpleMPRWidget::
586 SetRepresentationToPoints( const std::string& name )
587 {
588   this->m_XImage->SetRepresentationToPoints( name );
589   this->m_YImage->SetRepresentationToPoints( name );
590   this->m_ZImage->SetRepresentationToPoints( name );
591   this->m_3DView->SetRepresentationToPoints( name );
592 }
593
594 // -------------------------------------------------------------------------
595 void cpExtensions::QT::SimpleMPRWidget::
596 SetRepresentationToSurface( const std::string& name )
597 {
598   this->m_XImage->SetRepresentationToSurface( name );
599   this->m_YImage->SetRepresentationToSurface( name );
600   this->m_ZImage->SetRepresentationToSurface( name );
601   this->m_3DView->SetRepresentationToSurface( name );
602 }
603
604 // -------------------------------------------------------------------------
605 void cpExtensions::QT::SimpleMPRWidget::
606 SetRepresentationToWireframe( const std::string& name )
607 {
608   this->m_XImage->SetRepresentationToWireframe( name );
609   this->m_YImage->SetRepresentationToWireframe( name );
610   this->m_ZImage->SetRepresentationToWireframe( name );
611   this->m_3DView->SetRepresentationToWireframe( name );
612 }
613
614 // -------------------------------------------------------------------------
615 void cpExtensions::QT::SimpleMPRWidget::
616 _SyncBottom( int a, int b )
617 {
618   this->m_UI->Bottom->setSizes( this->m_UI->Top->sizes( ) );
619 }
620
621 // -------------------------------------------------------------------------
622 void cpExtensions::QT::SimpleMPRWidget::
623 _SyncTop( int a, int b )
624 {
625   this->m_UI->Top->setSizes( this->m_UI->Bottom->sizes( ) );
626 }
627
628 #endif // cpExtensions_QT4
629
630 // eof - $RCSfile$