]> Creatis software - cpPlugins.git/blob - lib/cpExtensions/QT/SimpleMPRWidget.cxx
...
[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   this->m_XImage->ResetCamera( );
348   this->m_YImage->ResetCamera( );
349   this->m_ZImage->ResetCamera( );
350   this->m_3DView->ResetCamera( );
351 }
352
353 // -------------------------------------------------------------------------
354 void cpExtensions::QT::SimpleMPRWidget::
355 Render( )
356 {
357   this->m_XImage->Render( );
358   this->m_YImage->Render( );
359   this->m_ZImage->Render( );
360   this->m_3DView->Render( );
361 }
362
363 // -------------------------------------------------------------------------
364 std::set< std::string > cpExtensions::QT::SimpleMPRWidget::
365 GetActorsNames( ) const
366 {
367   std::set< std::string > names = this->m_XImage->GetActorsNames( );
368   std::set< std::string > y = this->m_YImage->GetActorsNames( );
369   std::set< std::string > z = this->m_ZImage->GetActorsNames( );
370   std::set< std::string > w = this->m_3DView->GetActorsNames( );
371   names.insert( y.begin( ), y.end( ) );
372   names.insert( z.begin( ), z.end( ) );
373   names.insert( w.begin( ), w.end( ) );
374   return( names );
375 }
376
377 // -------------------------------------------------------------------------
378 bool cpExtensions::QT::SimpleMPRWidget::
379 IsWindowLevelImageActor( const std::string& name ) const
380 {
381   return( this->m_XImage->IsWindowLevelImageActor( name ) );
382 }
383
384 // -------------------------------------------------------------------------
385 bool cpExtensions::QT::SimpleMPRWidget::
386 IsLUTImageActor( const std::string& name ) const
387 {
388   return( this->m_XImage->IsLUTImageActor( name ) );
389 }
390
391 // -------------------------------------------------------------------------
392 bool cpExtensions::QT::SimpleMPRWidget::
393 Is3DActor( const std::string& name ) const
394 {
395   return(
396     this->m_XImage->Is3DActor( name ) || this->m_3DView->Is3DActor( name )
397     );
398 }
399
400 // -------------------------------------------------------------------------
401 void cpExtensions::QT::SimpleMPRWidget::
402 GetScalarRange( const std::string& name, double r[ 2 ] ) const
403 {
404   this->m_XImage->GetScalarRange( name, r );
405 }
406
407 // -------------------------------------------------------------------------
408 void cpExtensions::QT::SimpleMPRWidget::
409 GetWindowLevel( const std::string& name, double wl[ 2 ] ) const
410 {
411   this->m_XImage->GetWindowLevel( name, wl );
412 }
413
414 // -------------------------------------------------------------------------
415 double cpExtensions::QT::SimpleMPRWidget::
416 GetWindow( const std::string& name ) const
417 {
418   return( this->m_XImage->GetWindow( name ) );
419 }
420
421 // -------------------------------------------------------------------------
422 double cpExtensions::QT::SimpleMPRWidget::
423 GetLevel( const std::string& name ) const
424 {
425   return( this->m_XImage->GetLevel( name ) );
426 }
427
428 // -------------------------------------------------------------------------
429 char cpExtensions::QT::SimpleMPRWidget::
430 GetImageInterpolation( const std::string& name ) const
431 {
432   return( this->m_XImage->GetImageInterpolation( name ) );
433 }
434
435 // -------------------------------------------------------------------------
436 void cpExtensions::QT::SimpleMPRWidget::
437 GetColor( const std::string& name, double& r, double& g, double& b ) const
438 {
439   this->m_XImage->GetColor( name, r, g, b );
440 }
441
442 // -------------------------------------------------------------------------
443 double cpExtensions::QT::SimpleMPRWidget::
444 GetOpacity( const std::string& name ) const
445 {
446   return( this->m_XImage->GetOpacity( name ) );
447 }
448
449 // -------------------------------------------------------------------------
450 double cpExtensions::QT::SimpleMPRWidget::
451 GetPointSize( const std::string& name ) const
452 {
453   return( this->m_XImage->GetPointSize( name ) );
454 }
455
456 // -------------------------------------------------------------------------
457 double cpExtensions::QT::SimpleMPRWidget::
458 GetLineWidth( const std::string& name ) const
459 {
460   return( this->m_XImage->GetLineWidth( name ) );
461 }
462
463 // -------------------------------------------------------------------------
464 int cpExtensions::QT::SimpleMPRWidget::
465 GetRepresentation( const std::string& name ) const
466 {
467   return( this->m_XImage->GetRepresentation( name ) );
468 }
469
470 // -------------------------------------------------------------------------
471 void cpExtensions::QT::SimpleMPRWidget::
472 SetScalarRange( const std::string& name, double r[ 2 ] )
473 {
474   this->m_XImage->SetScalarRange( name, r );
475   this->m_YImage->SetScalarRange( name, r );
476   this->m_ZImage->SetScalarRange( name, r );
477   this->m_3DView->SetScalarRange( name, r );
478 }
479
480 // -------------------------------------------------------------------------
481 void cpExtensions::QT::SimpleMPRWidget::
482 SetScalarRange( const std::string& name, double min, double max )
483 {
484   this->m_XImage->SetScalarRange( name, min, max );
485   this->m_YImage->SetScalarRange( name, min, max );
486   this->m_ZImage->SetScalarRange( name, min, max );
487   this->m_3DView->SetScalarRange( name, min, max );
488 }
489
490 // -------------------------------------------------------------------------
491 void cpExtensions::QT::SimpleMPRWidget::
492 SetWindowLevel( const std::string& name, double wl[ 2 ] )
493 {
494   this->m_XImage->SetWindowLevel( name, wl );
495   this->m_YImage->SetWindowLevel( name, wl );
496   this->m_ZImage->SetWindowLevel( name, wl );
497   this->m_3DView->SetWindowLevel( name, wl );
498 }
499
500 // -------------------------------------------------------------------------
501 void cpExtensions::QT::SimpleMPRWidget::
502 SetWindowLevel( const std::string& name, double w, double l )
503 {
504   this->m_XImage->SetWindowLevel( name, w, l );
505   this->m_YImage->SetWindowLevel( name, w, l );
506   this->m_ZImage->SetWindowLevel( name, w, l );
507   this->m_3DView->SetWindowLevel( name, w, l );
508 }
509
510 // -------------------------------------------------------------------------
511 void cpExtensions::QT::SimpleMPRWidget::
512 SetWindow( const std::string& name, double w )
513 {
514   this->m_XImage->SetWindow( name, w );
515   this->m_YImage->SetWindow( name, w );
516   this->m_ZImage->SetWindow( name, w );
517   this->m_3DView->SetWindow( name, w );
518 }
519
520 // -------------------------------------------------------------------------
521 void cpExtensions::QT::SimpleMPRWidget::
522 SetLevel( const std::string& name, double l )
523 {
524   this->m_XImage->SetLevel( name, l );
525   this->m_YImage->SetLevel( name, l );
526   this->m_ZImage->SetLevel( name, l );
527   this->m_3DView->SetLevel( name, l );
528 }
529
530 // -------------------------------------------------------------------------
531 void cpExtensions::QT::SimpleMPRWidget::
532 SetImageInterpolation( const std::string& name, char i )
533 {
534   this->m_XImage->SetImageInterpolation( name, i );
535   this->m_YImage->SetImageInterpolation( name, i );
536   this->m_ZImage->SetImageInterpolation( name, i );
537   this->m_3DView->SetImageInterpolation( name, i );
538 }
539
540 // -------------------------------------------------------------------------
541 void cpExtensions::QT::SimpleMPRWidget::
542 SetColor( const std::string& name, double r, double g, double b )
543 {
544   this->m_XImage->SetColor( name, r, g, b );
545   this->m_YImage->SetColor( name, r, g, b );
546   this->m_ZImage->SetColor( name, r, g, b );
547   this->m_3DView->SetColor( name, r, g, b );
548 }
549
550 // -------------------------------------------------------------------------
551 void cpExtensions::QT::SimpleMPRWidget::
552 SetOpacity( const std::string& name, double o )
553 {
554   this->m_XImage->SetOpacity( name, o );
555   this->m_YImage->SetOpacity( name, o );
556   this->m_ZImage->SetOpacity( name, o );
557   this->m_3DView->SetOpacity( name, o );
558 }
559
560 // -------------------------------------------------------------------------
561 void cpExtensions::QT::SimpleMPRWidget::
562 SetPointSize( const std::string& name, double s )
563 {
564   this->m_XImage->SetPointSize( name, s );
565   this->m_YImage->SetPointSize( name, s );
566   this->m_ZImage->SetPointSize( name, s );
567   this->m_3DView->SetPointSize( name, s );
568 }
569
570 // -------------------------------------------------------------------------
571 void cpExtensions::QT::SimpleMPRWidget::
572 SetLineWidth( const std::string& name, double w )
573 {
574   this->m_XImage->SetLineWidth( name, w );
575   this->m_YImage->SetLineWidth( name, w );
576   this->m_ZImage->SetLineWidth( name, w );
577   this->m_3DView->SetLineWidth( name, w );
578 }
579
580 // -------------------------------------------------------------------------
581 void cpExtensions::QT::SimpleMPRWidget::
582 SetRepresentationToPoints( const std::string& name )
583 {
584   this->m_XImage->SetRepresentationToPoints( name );
585   this->m_YImage->SetRepresentationToPoints( name );
586   this->m_ZImage->SetRepresentationToPoints( name );
587   this->m_3DView->SetRepresentationToPoints( name );
588 }
589
590 // -------------------------------------------------------------------------
591 void cpExtensions::QT::SimpleMPRWidget::
592 SetRepresentationToSurface( const std::string& name )
593 {
594   this->m_XImage->SetRepresentationToSurface( name );
595   this->m_YImage->SetRepresentationToSurface( name );
596   this->m_ZImage->SetRepresentationToSurface( name );
597   this->m_3DView->SetRepresentationToSurface( name );
598 }
599
600 // -------------------------------------------------------------------------
601 void cpExtensions::QT::SimpleMPRWidget::
602 SetRepresentationToWireframe( const std::string& name )
603 {
604   this->m_XImage->SetRepresentationToWireframe( name );
605   this->m_YImage->SetRepresentationToWireframe( name );
606   this->m_ZImage->SetRepresentationToWireframe( name );
607   this->m_3DView->SetRepresentationToWireframe( name );
608 }
609
610 // -------------------------------------------------------------------------
611 void cpExtensions::QT::SimpleMPRWidget::
612 _SyncBottom( int a, int b )
613 {
614   this->m_UI->Bottom->setSizes( this->m_UI->Top->sizes( ) );
615 }
616
617 // -------------------------------------------------------------------------
618 void cpExtensions::QT::SimpleMPRWidget::
619 _SyncTop( int a, int b )
620 {
621   this->m_UI->Top->setSizes( this->m_UI->Bottom->sizes( ) );
622 }
623
624 #endif // cpExtensions_QT4
625
626 // eof - $RCSfile$