Salome HOME
API modif of vtkOpenGLTexture::ResampleToPowerOfTwo
[modules/gui.git] / src / SVTK / SVTK_ViewWindow.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 #include "SVTK_NonIsometricDlg.h"
24 #include "SVTK_UpdateRateDlg.h"
25 #include "SVTK_CubeAxesDlg.h"
26 #include "SVTK_PsOptionsDlg.h"
27 #include "SVTK_SetRotationPointDlg.h"
28 #include "SVTK_ViewParameterDlg.h"
29 #include "SVTK_ViewModel.h"
30 #include "VTKViewer_Texture.h"
31 #include "VTKViewer_OpenGLRenderer.h"
32
33 #include "SALOME_Actor.h"
34
35 #include <QMenu>
36 #include <QToolBar>
37 #include <QEvent>
38 #include <QFileInfo>
39 #include <QSignalMapper>
40 #include <QXmlStreamWriter>
41 #include <QXmlStreamReader>
42 #include <QXmlStreamAttributes>
43
44 #include <vtkTextProperty.h>
45 #include <vtkActorCollection.h>
46 #include <vtkRenderWindow.h>
47 #include <vtkRenderer.h>
48 #include <vtkCamera.h>
49 #include <vtkPointPicker.h>
50 #include <vtkCellPicker.h>
51 #include <vtkAxisActor2D.h>
52 #include <vtkGL2PSExporter.h>
53 #include <vtkInteractorStyle.h>
54 #include <vtkProperty.h>
55 #include <vtkCallbackCommand.h>
56 #include <vtkJPEGReader.h>
57 #include <vtkBMPReader.h>
58 #include <vtkTIFFReader.h>
59 #include <vtkPNGReader.h>
60 #include <vtkMetaImageReader.h>
61 #include <vtkImageMapToColors.h>
62 #include <vtkTexture.h>
63
64 #include "QtxAction.h"
65
66 #include "SUIT_Session.h"
67 #include "SUIT_MessageBox.h"
68 #include "SUIT_Accel.h"
69 #include "SUIT_Tools.h"
70 #include "SUIT_ResourceMgr.h"
71 #include "SUIT_Accel.h"
72 #include "SUIT_OverrideCursor.h"
73 #include "SUIT_ViewManager.h"
74 #include "QtxActionToolMgr.h"
75 #include "QtxMultiAction.h"
76 #include "QtxActionGroup.h"
77
78 #include "VTKViewer_Utilities.h"
79 #include "VTKViewer_Trihedron.h"
80 #include "VTKViewer_Actor.h"
81
82 #include "SVTK_View.h"
83 #include "SVTK_Selector.h"
84
85 #include "SVTK_Event.h"
86 #include "SVTK_Renderer.h"
87 #include "SVTK_ViewWindow.h"
88 #include "SVTK_InteractorStyle.h"
89 #include "SVTK_RenderWindowInteractor.h"
90 #include "SVTK_GenericRenderWindowInteractor.h"
91 #include "SVTK_CubeAxesActor2D.h"
92 #include "SVTK_ComboAction.h"
93 #include "SVTK_KeyFreeInteractorStyle.h"
94 #include "SVTK_Selector.h"
95 #include "SVTK_Recorder.h"
96 #include "SVTK_RecorderDlg.h"
97
98 #include "salomevtkPVAxesWidget.h"
99 #include "salomevtkPVAxesActor.h"
100
101 #include "SALOME_ListIO.hxx"
102
103 #include "VTKViewer_Algorithm.h"
104 #include "SVTK_Functor.h"
105
106 #include <OpenGLUtils_FrameBuffer.h>
107
108 #ifdef __APPLE__
109 #include <OpenGL/gl.h>
110 #else
111 #include <GL/gl.h>
112 #endif
113
114 namespace SVTK
115 {
116   int convertAction( const int accelAction )
117   {
118     switch ( accelAction ) {
119     case SUIT_Accel::PanLeft     : return SVTK::PanLeftEvent;
120     case SUIT_Accel::PanRight    : return SVTK::PanRightEvent;
121     case SUIT_Accel::PanUp       : return SVTK::PanUpEvent;
122     case SUIT_Accel::PanDown     : return SVTK::PanDownEvent;
123     case SUIT_Accel::ZoomIn      : return SVTK::ZoomInEvent;
124     case SUIT_Accel::ZoomOut     : return SVTK::ZoomOutEvent;
125     case SUIT_Accel::RotateLeft  : return SVTK::RotateLeftEvent;
126     case SUIT_Accel::RotateRight : return SVTK::RotateRightEvent;
127     case SUIT_Accel::RotateUp    : return SVTK::RotateUpEvent;
128     case SUIT_Accel::RotateDown  : return SVTK::RotateDownEvent;  
129     }
130     return accelAction;
131   }
132 }
133
134 /*!
135   Constructor
136 */
137 SVTK_ViewWindow::SVTK_ViewWindow(SUIT_Desktop* theDesktop):
138   SUIT_ViewWindow(theDesktop),
139   myView(NULL),
140   myDumpImage(QImage()),
141   myKeyFreeInteractorStyle(SVTK_KeyFreeInteractorStyle::New()),
142   myEventCallbackCommand(vtkCallbackCommand::New())
143 {
144   setWindowFlags( windowFlags() & ~Qt::Window );
145   // specific of vtkSmartPointer
146   myKeyFreeInteractorStyle->Delete();
147 }
148
149 /*!
150   To initialize #SVTK_ViewWindow instance
151 */
152 void SVTK_ViewWindow::Initialize(SVTK_ViewModelBase* theModel)
153 {
154   myModel = theModel;
155   myInteractor = new SVTK_RenderWindowInteractor(this,"SVTK_RenderWindowInteractor");
156
157   SVTK_Selector* aSelector = SVTK_Selector::New();
158   int aPreselectionMode =  SUIT_Session::session()->resourceMgr()->
159     integerValue( "VTKViewer", "preselection", Standard_Preselection );
160   aSelector->SetDynamicPreSelection( aPreselectionMode == Dynamic_Preselection );
161   aSelector->SetPreSelectionEnabled( aPreselectionMode != Preselection_Disabled );
162   bool isSelectionEnabled = SUIT_Session::session()->resourceMgr()->
163     booleanValue( "VTKViewer", "enable_selection", true );
164   aSelector->SetSelectionEnabled( isSelectionEnabled );
165
166   SVTK_GenericRenderWindowInteractor* aDevice = SVTK_GenericRenderWindowInteractor::New();
167   aDevice->SetRenderWidget(myInteractor);
168   aDevice->SetSelector(aSelector);
169
170   SVTK_Renderer* aRenderer = SVTK_Renderer::New();
171   aRenderer->Initialize(aDevice,aSelector);
172
173   myInteractor->Initialize(aDevice,aRenderer,aSelector);
174
175   aDevice->Delete();
176   aRenderer->Delete();
177   aSelector->Delete();
178
179   myToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_LABEL"),                       // title (language-dependant)
180                                         QString( "VTKViewerViewOperations" ),          // name (language-independant)
181                                         false );                                       // disable floatable toolbar
182
183   myRecordingToolBar = toolMgr()->createToolBar( tr("LBL_TOOLBAR_RECORD_LABEL"),       // title (language-dependant)
184                                                  QString( "VTKRecordingOperations" ),  // name (language-independant)
185                                                  false );                              // disable floatable toolbar
186
187   createActions( SUIT_Session::session()->resourceMgr() );
188   createToolBar();
189
190   SetEventDispatcher(myInteractor->GetDevice());
191   myInteractor->setBackgroundRole( QPalette::NoRole );//NoBackground
192   myInteractor->setFocusPolicy(Qt::StrongFocus);
193   myInteractor->setFocus();
194   bool isSupportQuadBuffer = SUIT_Session::session()->resourceMgr()->
195     booleanValue( "VTKViewer", "enable_quad_buffer_support", false );
196   myInteractor->getRenderWindow()->SetStereoCapableWindow((int)isSupportQuadBuffer);
197   setFocusProxy(myInteractor);
198
199   myUpdateRateDlg = new SVTK_UpdateRateDlg( getAction( UpdateRate ), this, "SVTK_UpdateRateDlg" );
200   myNonIsometricDlg = new SVTK_NonIsometricDlg( getAction( NonIsometric ), this, "SVTK_NonIsometricDlg" );
201   myCubeAxesDlg = new SVTK_CubeAxesDlg( getAction( GraduatedAxes ), this, "SVTK_CubeAxesDlg" );
202   myCubeAxesDlg->initialize();
203   mySetRotationPointDlg = new SVTK_SetRotationPointDlg
204     ( getAction( ChangeRotationPointId ), this, "SVTK_SetRotationPointDlg" );
205   myViewParameterDlg = new SVTK_ViewParameterDlg
206     ( getAction( ViewParametersId ), this, "SVTK_ViewParameterDlg" );
207   
208   myDefaultInteractorStyle = SVTK_InteractorStyle::New();
209   myInteractor->PushInteractorStyle(myDefaultInteractorStyle);
210   myDefaultInteractorStyle->Delete();
211   
212   myRecorder = SVTK_Recorder::New();
213   
214   myRecorder->SetNbFPS( 17.3 );
215   myRecorder->SetQuality( 100 );
216   myRecorder->SetProgressiveMode( true );
217   myRecorder->SetUseSkippedFrames( true );
218   myRecorder->SetRenderWindow( myInteractor->getRenderWindow() );
219   
220   setCentralWidget(myInteractor);
221   
222   myAxesWidget = salomevtk::vtkPVAxesWidget::New();
223   myAxesWidget->SetParentRenderer(aRenderer->GetDevice());
224   myAxesWidget->SetViewport(0, 0, 0.25, 0.25);
225   myAxesWidget->SetInteractor(myInteractor->GetDevice());
226   myAxesWidget->SetEnabled(1);
227   myAxesWidget->SetInteractive(0);
228
229   salomevtk::vtkPVAxesActor* anAxesActor = myAxesWidget->GetAxesActor();
230   anAxesActor->GetXAxisTipProperty()->SetColor(   1.0, 0.0, 0.0 );
231   anAxesActor->GetXAxisShaftProperty()->SetColor( 1.0, 0.0, 0.0 );
232   anAxesActor->GetXAxisLabelProperty()->SetColor( 1.0, 0.0, 0.0 );
233   anAxesActor->GetYAxisTipProperty()->SetColor(   0.0, 1.0, 0.0 );
234   anAxesActor->GetYAxisShaftProperty()->SetColor( 0.0, 1.0, 0.0 );
235   anAxesActor->GetYAxisLabelProperty()->SetColor( 0.0, 1.0, 0.0 );
236   anAxesActor->GetZAxisTipProperty()->SetColor(   0.0, 0.0, 1.0 );
237   anAxesActor->GetZAxisShaftProperty()->SetColor( 0.0, 0.0, 1.0 );
238   anAxesActor->GetZAxisLabelProperty()->SetColor( 0.0, 0.0, 1.0 );
239
240   myView = new SVTK_View(this);
241   Initialize(myView,theModel);
242
243
244   myEventCallbackCommand->SetClientData(this);
245   myEventCallbackCommand->SetCallback(SVTK_ViewWindow::ProcessEvents);
246   myEventCallbackCommand->Delete();
247
248   GetInteractor()->GetInteractorStyle()->AddObserver(SVTK::OperationFinished,
249                                                      myEventCallbackCommand.GetPointer(), 0.0);
250   myKeyFreeInteractorStyle->AddObserver(SVTK::OperationFinished,
251                                         myEventCallbackCommand.GetPointer(), 0.0);
252
253
254
255   myInteractor->getRenderWindow()->Render();
256   setBackground( Qtx::BackgroundData( Qt::black ) ); // set default background
257   onResetView();
258 }
259
260 /*!
261   To initialize #SVTK_ViewWindow instance
262 */
263 void SVTK_ViewWindow::Initialize(SVTK_View* theView,
264                                  SVTK_ViewModelBase* theModel)
265 {
266   connect(theView,SIGNAL(KeyPressed(QKeyEvent*)),
267           this,SLOT(onKeyPressed(QKeyEvent*)) );
268   connect(theView,SIGNAL(KeyReleased(QKeyEvent*)),
269           this,SLOT(onKeyReleased(QKeyEvent*)));
270   connect(theView,SIGNAL(MouseButtonPressed(QMouseEvent*)),
271           this,SLOT(onMousePressed(QMouseEvent*)));
272   connect(theView,SIGNAL(MouseButtonReleased(QMouseEvent*)),
273           this,SLOT(onMouseReleased(QMouseEvent*)));
274   connect(theView,SIGNAL(MouseDoubleClicked(QMouseEvent*)),
275           this,SLOT(onMouseDoubleClicked(QMouseEvent*)));
276   connect(theView,SIGNAL(MouseMove(QMouseEvent*)),
277           this,SLOT(onMouseMoving(QMouseEvent*)));
278   connect(theView,SIGNAL(contextMenuRequested(QContextMenuEvent*)),
279           this,SIGNAL(contextMenuRequested(QContextMenuEvent *)));
280   connect(theView,SIGNAL(selectionChanged()),
281           theModel,SLOT(onSelectionChanged()));
282
283   connect( this, SIGNAL( transformed( SVTK_ViewWindow* ) ), SLOT( emitViewModified() ) );
284 }
285
286 /*!
287   Destructor
288 */
289 SVTK_ViewWindow::~SVTK_ViewWindow()
290 {
291   myRecorder->Delete();
292   myAxesWidget->Delete();
293 }
294
295
296 /*!
297   \return corresponding view
298 */
299 SVTK_View* SVTK_ViewWindow::getView() 
300
301   return myView; 
302 }
303
304 /*!
305   \return corresponding vtk render window
306 */
307 vtkRenderWindow* SVTK_ViewWindow::getRenderWindow()
308 {
309   return GetInteractor()->getRenderWindow();
310 }
311
312 /*!
313   \return corresponding vtk render window interactor
314 */
315 SVTK_RenderWindowInteractor* SVTK_ViewWindow::GetInteractor() const
316 {
317   return myInteractor;
318 }
319
320 /*!
321   \return corresponding vtk render window interactor
322 */
323 vtkRenderWindowInteractor* SVTK_ViewWindow::getInteractor() const
324 {
325   return myInteractor->GetDevice();
326 }
327
328 /*!
329   \return corresponding vtk renderer
330 */
331 vtkRenderer* SVTK_ViewWindow::getRenderer() const
332 {
333   return GetInteractor()->getRenderer();
334 }
335
336 /*!
337   Redirect the request to SVTK_RenderWindowInteractor::GetRenderer
338 */
339 SVTK_Renderer* SVTK_ViewWindow::GetRenderer() const
340 {
341   return GetInteractor()->GetRenderer();
342 }
343
344 /*!
345   \return corresponding vtk selector
346 */
347 SVTK_Selector* SVTK_ViewWindow::GetSelector() const
348
349   return GetInteractor()->GetSelector(); 
350 }
351
352 /*!
353   Processes transformation "front view"
354 */
355 void SVTK_ViewWindow::onFrontView()
356 {
357   GetRenderer()->OnFrontView();
358   Repaint();
359   emit transformed( this );
360 }
361
362 /*!
363   Processes transformation "back view"
364 */
365 void SVTK_ViewWindow::onBackView()
366 {
367   GetRenderer()->OnBackView();
368   Repaint();
369   emit transformed( this );
370 }
371
372 /*!
373   Processes transformation "top view"
374 */
375 void SVTK_ViewWindow::onTopView()
376 {
377   GetRenderer()->OnTopView();
378   Repaint();
379   emit transformed( this );
380 }
381
382 /*!
383   Processes transformation "bottom view"
384 */
385 void SVTK_ViewWindow::onBottomView()
386 {
387   GetRenderer()->OnBottomView();
388   Repaint();
389   emit transformed( this );
390 }
391
392 /*!
393   Processes transformation "left view"
394 */
395 void SVTK_ViewWindow::onLeftView()
396 {
397   GetRenderer()->OnLeftView();
398   Repaint();
399   emit transformed( this );
400 }
401
402 /*!
403   Processes transformation "right view"
404 */
405 void SVTK_ViewWindow::onRightView()
406 {
407   GetRenderer()->OnRightView();
408   Repaint();
409   emit transformed( this );
410 }
411
412 /*!
413   \brief Rotate view 90 degrees clockwise
414 */
415 void SVTK_ViewWindow::onClockWiseView()
416 {
417   GetRenderer()->onClockWiseView();
418   Repaint();
419   emit transformed( this );
420 }
421
422 /*!
423   \brief Rotate view 90 degrees conterclockwise
424 */
425 void SVTK_ViewWindow::onAntiClockWiseView()
426 {
427   GetRenderer()->onAntiClockWiseView();
428   Repaint();
429   emit transformed( this );
430 }
431
432 /*!
433   Processes transformation "reset view": sets default orientation of viewport camera
434 */
435 void SVTK_ViewWindow::onResetView()
436 {
437   GetRenderer()->OnResetView();
438   Repaint();
439   emit transformed( this );
440 }
441
442 /*!
443   Processes transformation "fit all"
444 */
445 void SVTK_ViewWindow::onFitAll()
446 {
447   GetRenderer()->OnFitAll();
448   Repaint();
449   emit transformed( this );
450 }
451
452 /*!
453   Processes transformation "fit selection"
454 */
455 void SVTK_ViewWindow::onFitSelection()
456 {
457   GetRenderer()->onFitSelection();
458   Repaint();
459   emit transformed( this );
460 }
461
462 /*!
463   SLOT: called if selection is changed
464 */
465 void SVTK_ViewWindow::onSelectionChanged()
466 {
467   myView->onSelectionChanged();
468 }
469
470 /*!
471   Change selection mode
472   \param theMode - new selection mode
473 */
474 void SVTK_ViewWindow::SetSelectionMode(Selection_Mode theMode)
475 {
476   GetSelector()->SetSelectionMode(theMode);
477 }
478
479 /*!
480   \return selection mode
481 */
482 Selection_Mode SVTK_ViewWindow::SelectionMode() const
483 {
484   return GetSelector()->SelectionMode();
485 }
486
487 /*!
488   Unhilights all objects in viewer
489 */
490 void SVTK_ViewWindow::unHighlightAll() 
491 {
492   myView->unHighlightAll();
493 }
494
495 /*!
496   Hilights/unhilights object in viewer
497   \param theIO - object to be updated
498   \param theIsHighlight - if it is true, object will be hilighted, otherwise it will be unhilighted
499   \param theIsUpdate - update current viewer
500 */
501 void SVTK_ViewWindow::highlight(const Handle(SALOME_InteractiveObject)& theIO, 
502                                 bool theIsHighlight, 
503                                 bool theIsUpdate ) 
504 {
505   myView->highlight( theIO, theIsHighlight, theIsUpdate );
506 }
507
508 /*!
509   \return true if object is in viewer or in collector
510   \param theIO - object to be checked
511 */
512 bool SVTK_ViewWindow::isInViewer( const Handle(SALOME_InteractiveObject)& theIO ) 
513 {
514   return myView->isInViewer( theIO );
515 }
516
517 /*!
518   \return true if object is displayed in viewer
519   \param theIO - object to be checked
520 */
521 bool SVTK_ViewWindow::isVisible( const Handle(SALOME_InteractiveObject)& theIO ) 
522 {
523   return myView->isVisible( theIO );
524 }
525
526 /*!
527   Display object
528   \param theEntry - entry that corresponds to intractive objects
529 */
530 Handle(SALOME_InteractiveObject) SVTK_ViewWindow::FindIObject(const char* theEntry) 
531 {
532   return myView->FindIObject(theEntry);
533 }
534
535 /*!
536   Display object
537   \param theIO - object
538   \param theImmediatly - update viewer
539 */
540 void SVTK_ViewWindow::Display(const Handle(SALOME_InteractiveObject)& theIO,
541                               bool theImmediatly) 
542 {
543   myView->Display(theIO,theImmediatly);
544 }
545
546 /*!
547   Erase object
548   \param theIO - object
549   \param theImmediatly - update viewer
550 */
551 void SVTK_ViewWindow::Erase(const Handle(SALOME_InteractiveObject)& theIO,
552                             bool theImmediatly) 
553 {
554   myView->Erase(theIO,theImmediatly);
555 }
556
557 /*!
558   Display only passed object
559   \param theIO - object
560 */
561 void SVTK_ViewWindow::DisplayOnly(const Handle(SALOME_InteractiveObject)& theIO) 
562 {
563   myView->DisplayOnly(theIO);
564 }
565
566 /*!
567   Display all objects in view
568 */
569 void SVTK_ViewWindow::DisplayAll() 
570 {
571   myView->DisplayAll();
572 }
573
574 /*!
575   Erase all objects in view
576 */
577 void SVTK_ViewWindow::EraseAll() 
578 {
579   myView->EraseAll();
580 }
581
582 /*!
583   Sets background color [obsolete]
584   \param color - new background color
585 */
586 void SVTK_ViewWindow::setBackgroundColor( const QColor& c )
587 {
588   Qtx::BackgroundData bg = background();
589   bg.setColor( c );
590   setBackground( bg );
591 }
592
593 /*!
594   \return background color of viewer [obsolete]
595 */
596 QColor SVTK_ViewWindow::backgroundColor() const
597 {
598   return background().color();
599 }
600
601 /*!
602   Sets background data
603   \param bgData - new background data
604 */
605 void SVTK_ViewWindow::setBackground( const Qtx::BackgroundData& bgData )
606 {
607   bool ok = false;
608
609   if ( bgData.isValid() ) {
610     switch ( bgData.mode() ) {
611     case Qtx::ColorBackground:
612       {
613         QColor c = bgData.color();
614         if ( c.isValid() ) {
615           // show solid-colored background
616           getRenderer()->SetTexturedBackground( false );  // cancel texture mode
617           getRenderer()->SetGradientBackground( false );  // cancel gradient mode
618           getRenderer()->SetBackground( c.red()/255.0,
619                                         c.green()/255.0,
620                                         c.blue()/255.0 ); // set background color
621           ok = true;
622         }
623         break;
624       }
625     case Qtx::SimpleGradientBackground:
626       {
627         QColor c1, c2;
628         int type = bgData.gradient( c1, c2 );
629         if ( c1.isValid() )
630         {
631           if ( !c2.isValid() )
632             c2 = c1;
633
634           // show two-color gradient background
635           getRenderer()->SetTexturedBackground( false );    // cancel texture mode
636           getRenderer()->SetGradientBackground( true );     // switch to gradient mode
637
638           VTKViewer_OpenGLRenderer* aRenderer =
639             VTKViewer_OpenGLRenderer::SafeDownCast( getRenderer() );
640           if( aRenderer )
641           {
642             aRenderer->SetGradientType( type );
643             aRenderer->SetBackground( c1.redF(), c1.greenF(), c1.blueF() );
644             aRenderer->SetBackground2( c2.redF(), c2.greenF(), c2.blueF() );
645             ok = true;
646           }
647         }
648         break;
649       }
650     case Qtx::CustomGradientBackground:
651       {
652         // NOT IMPLEMENTED YET
653         getRenderer()->SetTexturedBackground( false );  // cancel texture mode
654         getRenderer()->SetGradientBackground( false );  // cancel gradient mode
655         // .........
656         break;
657       }
658     default:
659       break;
660     }
661     if ( bgData.isTextureShown() ) {
662       QString fileName;
663       int textureMode = bgData.texture( fileName );
664       QFileInfo fi( fileName );
665       if ( !fileName.isEmpty() && fi.exists() ) {
666         // read texture from file
667         QString extension = fi.suffix().toLower();
668         vtkImageReader2* aReader = 0;
669         if ( extension == "jpg" || extension == "jpeg" )
670           aReader = vtkJPEGReader::New();
671         else if ( extension == "bmp" )
672           aReader = vtkBMPReader::New();
673         else if ( extension == "tif" || extension == "tiff" )
674           aReader = vtkTIFFReader::New();
675         else if ( extension == "png" )
676           aReader = vtkPNGReader::New();
677         else if ( extension == "mhd" || extension == "mha" )
678           aReader = vtkMetaImageReader::New();
679         if ( aReader ) {
680           // create texture
681           aReader->SetFileName( fi.absoluteFilePath().toLatin1().constData() );
682           aReader->Update();
683           VTKViewer_Texture* aTexture = VTKViewer_Texture::New();
684           vtkImageMapToColors* aMap = 0;
685           vtkAlgorithmOutput* anOutput;
686           /*
687           // special processing for BMP reader
688           vtkBMPReader* aBMPReader = (vtkBMPReader*)aReader;
689           if ( aBMPReader ) {
690           // Special processing for BMP file
691           aBMPReader->SetAllow8BitBMP(1);
692
693           aMap = vtkImageMapToColors::New();
694           aMap->SetInputConnection( aBMPReader->GetOutputPort() );
695           aMap->SetLookupTable( (vtkScalarsToColors*)aBMPReader->GetLookupTable() );
696           aMap->SetOutputFormatToRGB();
697
698           anOutput = aMap->GetOutputPort();
699           }
700           else {
701           }
702           */
703           anOutput = aReader->GetOutputPort( 0 );
704           aTexture->SetInputConnection( anOutput );
705           // set texture mode
706           // VSR: Currently, VTK only supports Stretch mode, so below code will give
707           // the same results for all modes
708           switch ( textureMode ) {
709           case Qtx::TileTexture:
710             aTexture->SetPosition((int)VTKViewer_Texture::Tiled);
711             break;
712           case Qtx::StretchTexture:
713             aTexture->SetPosition((int)VTKViewer_Texture::Stretched);
714             break;
715           case Qtx::CenterTexture:
716             aTexture->SetPosition((int)VTKViewer_Texture::Centered);
717           default:
718             break;
719           }
720           // show textured background
721           getRenderer()->SetTexturedBackground( true );
722           getRenderer()->SetBackgroundTexture( aTexture );
723
724           // clean-up resources
725           if ( aMap )
726             aMap->Delete();
727           aReader->Delete();
728           aTexture->Delete();
729           ok = true;
730         }
731       }
732     }
733   }
734   if ( ok )
735     myBackground = bgData;
736 }
737
738 /*!
739   \return background data of viewer
740 */
741 Qtx::BackgroundData SVTK_ViewWindow::background() const
742 {
743   return myBackground;
744 }
745
746
747 /*!
748   Redirect the request to SVTK_RenderWindowInteractor::GetInteractorStyle
749 */
750 vtkInteractorStyle* SVTK_ViewWindow::GetInteractorStyle() const
751 {
752   return GetInteractor()->GetInteractorStyle();
753 }
754
755 /*!
756   Redirect the request to SVTK_RenderWindowInteractor::PushInteractorStyle
757 */
758 void SVTK_ViewWindow::PushInteractorStyle(vtkInteractorStyle* theStyle)
759 {
760   GetInteractor()->PushInteractorStyle(theStyle);
761 }
762
763 /*!
764   Redirect the request to SVTK_RenderWindowInteractor::PopInteractorStyle
765 */
766 void SVTK_ViewWindow::PopInteractorStyle()
767 {
768   GetInteractor()->PopInteractorStyle();
769 }
770
771 /*!
772   Updates current viewer
773 */
774 void SVTK_ViewWindow::Repaint(bool theUpdateTrihedron)
775 {
776   if(theUpdateTrihedron) 
777     GetRenderer()->OnAdjustTrihedron();
778
779   GetInteractor()->update();
780
781   SVTK_InteractorStyle* aStyle = (SVTK_InteractorStyle*)getInteractor()->GetInteractorStyle();
782   if ( aStyle )
783     aStyle->OnTimer();
784 }
785
786 /*!
787   Redirect the request to #SVTK_Renderer::GetScale
788 */
789 void SVTK_ViewWindow::GetScale( double theScale[3] ) 
790 {
791   GetRenderer()->GetScale( theScale );
792 }
793
794 /*!
795   Redirect the request to #SVTK_Renderer::SetScale
796 */
797 void SVTK_ViewWindow::SetScale( double theScale[3] ) 
798 {
799   GetRenderer()->SetScale( theScale );
800   Repaint();
801   emit transformed( this );
802 }
803
804 /*!
805   Redirect the request to #SVTK_Renderer::IsTrihedronDisplayed
806 */
807 bool SVTK_ViewWindow::isTrihedronDisplayed()
808 {
809   return GetRenderer()->IsTrihedronDisplayed();
810 }
811
812 /*!
813   Redirect the request to #SVTK_Renderer::IsCubeAxesDisplayed
814 */
815 bool SVTK_ViewWindow::isCubeAxesDisplayed()
816 {
817   return GetRenderer()->IsCubeAxesDisplayed();
818 }
819
820 /*!
821   Redirect the request to #SVTK_Renderer::OnViewTrihedron
822 */
823 void SVTK_ViewWindow::onViewTrihedron(bool show)
824 {
825   GetRenderer()->SetTrihedronVisibility(show);
826   Repaint();
827 }
828
829 /*!
830   Redirect the request to #SVTK_Renderer::OnViewCubeAxes
831 */
832 void SVTK_ViewWindow::onViewCubeAxes()
833 {
834   GetRenderer()->OnViewCubeAxes();
835   Repaint();
836 }
837
838 /*!
839   Redirect the request to #SVTK_Renderer::GetTrihedron
840 */
841 VTKViewer_Trihedron* SVTK_ViewWindow::GetTrihedron()
842 {
843   return GetRenderer()->GetTrihedron();
844 }
845
846 /*!
847   Redirect the request to #SVTK_Renderer::GetCubeAxes
848 */
849 SVTK_CubeAxesActor2D* SVTK_ViewWindow::GetCubeAxes()
850 {
851   return GetRenderer()->GetCubeAxes();
852 }
853
854 /*!
855   \return trihedron size
856 */
857 double SVTK_ViewWindow::GetTrihedronSize() const
858 {
859   return GetRenderer()->GetTrihedronSize();
860 }
861
862 /*!
863   Sets projection mode
864   \param theMode - projection mode ( 0 - orthogonal, 1 - perspective, 2 - stereo )
865 */
866 void SVTK_ViewWindow::SetProjectionMode(const int theMode)
867 {
868   QtxAction* aParallelAction = dynamic_cast<QtxAction*>( toolMgr()->action( ParallelModeId ) );
869   QtxAction* aProjectionAction = dynamic_cast<QtxAction*>( toolMgr()->action( ProjectionModeId ) );
870   QtxAction* aStereoAction = dynamic_cast<QtxAction*>( toolMgr()->action( StereoModeId ) );
871
872   switch ( theMode ) {
873     case Parallel:
874       onProjectionMode( aParallelAction );
875       break;
876     case Projection:
877       onProjectionMode( aProjectionAction );
878       break;
879     case Stereo:
880       onStereoMode( true );
881       break;
882   }
883
884   // update action state if method is called outside
885   SVTK_Viewer* aViewer = dynamic_cast<SVTK_Viewer*>(myModel);
886   QtxAction* aSwitchZoomingStyle = dynamic_cast<QtxAction*>( toolMgr()->action( SwitchZoomingStyleId ) );
887   if ( theMode == Parallel && !aParallelAction->isChecked() ) {
888     aParallelAction->setChecked( true );
889     aSwitchZoomingStyle->setEnabled(true);
890     aStereoAction->setChecked( false );
891   }
892   if ( theMode == Projection && !aProjectionAction->isChecked() ) {
893     aProjectionAction->setChecked( true );
894     aSwitchZoomingStyle->setEnabled(false);
895   }
896   if ( theMode == Stereo ) {
897     aStereoAction->setChecked( true );
898     if ( aParallelAction->isEnabled() ) {
899       aParallelAction->setEnabled( false );
900       aParallelAction->setChecked( false );
901       aStereoAction->setChecked( false );
902     }
903     else {
904       aParallelAction->setEnabled( true );
905       aStereoAction->setChecked( false );
906       aParallelAction->setChecked( aViewer->projectionMode() == Parallel );
907     }
908     if ( aProjectionAction->isEnabled() ) {
909       aProjectionAction->setEnabled( false );
910       aProjectionAction->setChecked( true );
911       if ( getRenderWindow()->GetStereoCapableWindow() == 1 && !isOpenGlStereoSupport() &&
912            strcmp( "CrystalEyes", getRenderWindow()->GetStereoTypeAsString() ) == 0 &&
913            toolMgr()->action( StereoModeId )->isChecked() ) {
914         SUIT_MessageBox::warning( 0, tr( "WRN_WARNING" ),  tr( "WRN_SUPPORT_QUAD_BUFFER" ) );
915       }
916     }
917     else {
918       aProjectionAction->setEnabled( true );
919       aStereoAction->setChecked( false );
920       aProjectionAction->setChecked( aViewer->projectionMode() == Projection );
921       onProjectionMode();
922     }
923   }
924   else {
925     if ( !aParallelAction->isEnabled() )
926       aParallelAction->setEnabled( true );
927     if ( !aProjectionAction->isEnabled() )
928       aProjectionAction->setEnabled( true );
929   }
930 }
931
932 /*!
933   Sets stereo type
934   \param theType - stereo type
935 */
936 void SVTK_ViewWindow::SetStereoType(const int theType)
937 {
938   vtkRenderWindow* aWindow = getRenderWindow();
939   switch (theType ) {
940   case CrystalEyes:
941     aWindow->SetStereoTypeToCrystalEyes();
942     break;
943   case RedBlue:
944     aWindow->SetStereoTypeToRedBlue();
945     break;
946   case Interlaced:
947     aWindow->SetStereoTypeToInterlaced();
948     break;
949   case Left:
950     aWindow->SetStereoTypeToLeft();
951     break;
952   case Right:
953     aWindow->SetStereoTypeToRight();
954     break;
955   case Dresden:
956     aWindow->SetStereoTypeToDresden();
957     break;
958   case Anaglyph:
959     aWindow->SetStereoTypeToAnaglyph();
960     break;
961   case Checkerboard:
962     aWindow->SetStereoTypeToCheckerboard();
963     break;
964   case SplitViewPortHorizontal:
965     aWindow->SetStereoTypeToSplitViewportHorizontal();
966     break;
967   }
968 }
969
970 /*!
971   Sets anaglyph filter
972   \param theFilter - anaglyph filter
973 */
974 void SVTK_ViewWindow::SetAnaglyphFilter(const int theFilter)
975 {
976   vtkRenderWindow* aWindow = getRenderWindow();
977   switch (theFilter ) {
978   case RedCyan:
979     aWindow->SetAnaglyphColorMask(4,3);
980     break;
981   case YellowBlue:
982     aWindow->SetAnaglyphColorMask(6,1);
983     break;
984   case GreenMagenta:
985     aWindow->SetAnaglyphColorMask(2,5);
986     break;
987   }
988 }
989
990 /*!
991   Set support quad-buffered stereo
992   \param theEnable - enable/disable support quad-buffered stereo
993 */
994 void SVTK_ViewWindow::SetQuadBufferSupport(const bool theEnable)
995 {
996   vtkRenderWindow* aWindow = getRenderWindow();
997   aWindow->SetStereoCapableWindow((int)theEnable);
998 }
999
1000 /*!
1001   \return OpenGl stereo support
1002 */
1003 bool SVTK_ViewWindow::isOpenGlStereoSupport() const
1004 {
1005   GLboolean support[1];
1006   glGetBooleanv (GL_STEREO, support);
1007   if ( support[0] )
1008     return true;
1009   return false;
1010 }
1011
1012 /*!
1013   Set the gravity center as a focal point
1014 */
1015 void SVTK_ViewWindow::activateSetFocalPointGravity()
1016 {
1017   myEventDispatcher->InvokeEvent(SVTK::SetFocalPointGravity, 0);
1018 }
1019
1020 /*!
1021   Set the selected point as a focal point
1022 */
1023 void SVTK_ViewWindow::activateSetFocalPointSelected()
1024 {
1025   myEventDispatcher->InvokeEvent(SVTK::SetFocalPointSelected, 0);
1026 }
1027
1028 /*!
1029   Set the point selected by user as a focal point
1030 */
1031 void SVTK_ViewWindow::activateStartFocalPointSelection()
1032 {
1033   myEventDispatcher->InvokeEvent(SVTK::StartFocalPointSelection,0);
1034 }
1035
1036 void SVTK_ViewWindow::activateProjectionMode(int theMode)
1037 {
1038   QtxAction* aParallelAction = dynamic_cast<QtxAction*>( toolMgr()->action( ParallelModeId ) );
1039   QtxAction* aProjectionAction = dynamic_cast<QtxAction*>( toolMgr()->action( ProjectionModeId ) );
1040   if (theMode)
1041     aParallelAction->setChecked( true );
1042   else
1043     aProjectionAction->setChecked( true );
1044
1045   if ( !aParallelAction->isEnabled() )
1046     aParallelAction->setEnabled( true );
1047   if ( !aProjectionAction->isEnabled() )
1048     aProjectionAction->setEnabled( true );
1049 }
1050
1051 /*!
1052   Sets actual interaction style
1053   \param theStyle - type of interaction style ( 0 - standard, 1 - keyboard free )
1054 */
1055 void SVTK_ViewWindow::SetInteractionStyle(const int theStyle)
1056 {
1057   onSwitchInteractionStyle( theStyle==1 );
1058 }
1059
1060 /*!
1061   Sets actual zooming style
1062   \param theStyle - type of zooming style ( 0 - standard, 1 - advanced (at cursor) )
1063 */
1064 void SVTK_ViewWindow::SetZoomingStyle(const int theStyle)
1065 {
1066   onSwitchZoomingStyle( theStyle==1 );
1067 }
1068
1069 /*!
1070   Set preselection mode.
1071   \param theMode the mode to set (standard, dynamic or disabled)
1072 */
1073 void SVTK_ViewWindow::SetPreSelectionMode( Preselection_Mode theMode )
1074 {
1075   onSwitchPreSelectionMode( theMode );
1076 }
1077
1078 /*!
1079   Enables/disables selection.
1080   \param theEnable if true - selection will be enabled
1081 */
1082 void SVTK_ViewWindow::SetSelectionEnabled( bool theEnable )
1083 {
1084   GetSelector()->SetSelectionEnabled( theEnable );
1085   QtxAction* a = getAction( EnableSelectionId );
1086   if ( a->isChecked() !=  theEnable)
1087     a->setChecked( theEnable );
1088   QtxActionGroup* aPreselectionGroup = 
1089     dynamic_cast<QtxActionGroup*>( getAction( PreselectionId ) );
1090   if ( aPreselectionGroup )
1091     aPreselectionGroup->setEnabled( theEnable );
1092
1093   // notify actors
1094   vtkActorCollection *actors = getRenderer()->GetActors();
1095   for (int i = 0; i < actors->GetNumberOfItems(); ++i )
1096     if (VTKViewer_Actor *actor = dynamic_cast<VTKViewer_Actor*>(actors->GetItemAsObject(i)))
1097     {
1098       actor->EnableSelection( theEnable );
1099     }
1100 }
1101
1102 /*!
1103   Switches "keyboard free" interaction style on/off
1104 */
1105 void SVTK_ViewWindow::onSwitchInteractionStyle(bool theOn)
1106 {
1107   if (theOn) {
1108     // check if style is already set
1109     if ( GetInteractorStyle() != myKeyFreeInteractorStyle.GetPointer() )
1110     {
1111       // keep the same style extensions
1112       SVTK_InteractorStyle* aStyle = (SVTK_InteractorStyle*)GetInteractorStyle();
1113       if ( aStyle ) {
1114         myKeyFreeInteractorStyle->SetControllerIncrement(aStyle->ControllerIncrement());
1115         myKeyFreeInteractorStyle->SetControllerOnKeyDown(aStyle->ControllerOnKeyDown());
1116       }
1117
1118       PushInteractorStyle(myKeyFreeInteractorStyle.GetPointer());
1119     }
1120   }
1121   else {
1122     // pop only key free  style
1123     if ( GetInteractorStyle() == myKeyFreeInteractorStyle.GetPointer() )
1124       PopInteractorStyle();
1125   }
1126
1127   // update action state if method is called outside
1128   QtxAction* a = getAction( SwitchInteractionStyleId );
1129   if ( a->isChecked() != theOn ) a->setChecked( theOn );
1130 }
1131
1132 /*!
1133   Toogles advanced zooming style (relatively to the cursor position) on/off
1134 */
1135 void SVTK_ViewWindow::onSwitchZoomingStyle( bool theOn )
1136 {
1137   if( myDefaultInteractorStyle.GetPointer() )
1138     myDefaultInteractorStyle->SetAdvancedZoomingEnabled( theOn );
1139   if( myKeyFreeInteractorStyle.GetPointer() )
1140     myKeyFreeInteractorStyle->SetAdvancedZoomingEnabled( theOn );
1141
1142   // update action state if method is called outside
1143   QtxAction* a = getAction( SwitchZoomingStyleId );
1144   if ( a->isChecked() != theOn )
1145     a->setChecked( theOn );
1146 }
1147
1148 /*!
1149   Switch preselection mode.
1150   \param theMode the preselection mode
1151 */
1152 void SVTK_ViewWindow::onSwitchPreSelectionMode( int theMode )
1153 {
1154   GetSelector()->SetDynamicPreSelection( theMode == Dynamic_Preselection );
1155   GetSelector()->SetPreSelectionEnabled( theMode != Preselection_Disabled );
1156
1157   // update action state if method is called outside
1158   QtxAction* a = getAction( StandardPreselectionId + theMode );
1159   if ( a && !a->isChecked() )
1160     a->setChecked( true );
1161 }
1162
1163 /*!
1164   Enables/disables selection.
1165   \param theOn if true - selection will be enabled
1166 */
1167 void SVTK_ViewWindow::onEnableSelection( bool on )
1168 {
1169   SVTK_Viewer* aViewer = dynamic_cast<SVTK_Viewer*>(myModel);
1170   if(aViewer)
1171     aViewer->enableSelection(on);  
1172 }
1173
1174 /*!
1175   Sets incremental speed
1176   \param theValue - new incremental speed
1177   \param theMode - modification mode
1178 */
1179 void SVTK_ViewWindow::SetIncrementalSpeed(const int theValue, const int theMode)
1180 {
1181   if ( (SVTK_InteractorStyle*)GetInteractorStyle() )
1182     ((SVTK_InteractorStyle*)GetInteractorStyle())->SetIncrementSpeed(theValue, theMode);
1183 }
1184
1185 /*!
1186   Sets spacemouse buttons for the functions
1187   \param theBtn1 - spacemouse button for the "decrease speed increment"
1188   \param theBtn2 - spacemouse button for the "increase speed increment"
1189   \param theBtn3 - spacemouse button for the "dominant combined switch"
1190 */
1191 void SVTK_ViewWindow::SetSpacemouseButtons(const int theBtn1, 
1192                                            const int theBtn2,
1193                                            const int theBtn3)
1194 {
1195   int val = theBtn1;
1196   myEventDispatcher->InvokeEvent(SVTK::SetSMDecreaseSpeedEvent, &val);
1197   val = theBtn2;
1198   myEventDispatcher->InvokeEvent(SVTK::SetSMIncreaseSpeedEvent, &val);
1199   val = theBtn3;
1200   myEventDispatcher->InvokeEvent(SVTK::SetSMDominantCombinedSwitchEvent, &val);
1201 }
1202
1203 /*!
1204   Sets trihedron size
1205   \param theSize - new trihedron size
1206   \param theRelative - trihedron relativeness
1207 */
1208 void SVTK_ViewWindow::SetTrihedronSize(const double theSize, const bool theRelative)
1209 {
1210   GetRenderer()->SetTrihedronSize(theSize, theRelative);
1211   Repaint();
1212 }
1213
1214 /*! If parameter theIsForcedUpdate is true, recalculate parameters for
1215  *  trihedron and cube axes, even if trihedron and cube axes is invisible.
1216  */
1217 void SVTK_ViewWindow::AdjustTrihedrons(const bool theIsForcedUpdate)
1218 {
1219   GetRenderer()->AdjustActors();
1220   Repaint();
1221 }
1222
1223 /*!
1224   Redirect the request to #SVTK_Renderer::OnAdjustTrihedron
1225 */
1226 void SVTK_ViewWindow::onAdjustTrihedron()
1227 {   
1228   GetRenderer()->OnAdjustTrihedron();
1229 }
1230
1231 /*!
1232   Redirect the request to #SVTK_Renderer::OnAdjustCubeAxes
1233 */
1234 void SVTK_ViewWindow::onAdjustCubeAxes()
1235 {   
1236   GetRenderer()->OnAdjustCubeAxes();
1237 }
1238
1239 void SVTK_ViewWindow::synchronize(SVTK_ViewWindow* otherViewWindow )
1240 {
1241   if ( otherViewWindow ) {
1242     bool blocked = blockSignals( true );
1243     doSetVisualParameters( otherViewWindow->getVisualParameters(), true );
1244     blockSignals( blocked );
1245   }
1246 }
1247
1248 /*!
1249   Emits key pressed
1250 */
1251 void SVTK_ViewWindow::onKeyPressed(QKeyEvent* event)
1252 {
1253   emit keyPressed( this, event );
1254 }
1255
1256 /*!
1257   Emits key released
1258 */
1259 void SVTK_ViewWindow::onKeyReleased(QKeyEvent* event)
1260 {
1261   emit keyReleased( this, event );
1262 }
1263
1264 /*!
1265   Emits mouse pressed
1266 */
1267 void SVTK_ViewWindow::onMousePressed(QMouseEvent* event)
1268 {
1269   emit mousePressed(this, event);
1270 }
1271
1272 /*!
1273   Emits mouse released
1274 */
1275 void SVTK_ViewWindow::onMouseReleased(QMouseEvent* event)
1276 {
1277   emit mouseReleased( this, event );
1278 }
1279
1280 /*!
1281   Emits mouse moving
1282 */
1283 void SVTK_ViewWindow::onMouseMoving(QMouseEvent* event)
1284 {
1285   emit mouseMoving( this, event );
1286 }
1287
1288 /*!
1289   Emits mouse double clicked
1290 */
1291 void SVTK_ViewWindow::onMouseDoubleClicked( QMouseEvent* event )
1292 {
1293   emit mouseDoubleClicked( this, event );
1294 }
1295
1296 /*!
1297   Redirect the request to #SVTK_Renderer::AddActor
1298 */
1299 void SVTK_ViewWindow::AddActor( VTKViewer_Actor* theActor, 
1300                                 bool theUpdate,
1301                                 bool theIsAdjustActors )
1302 {
1303   GetRenderer()->AddActor(theActor, theIsAdjustActors);
1304   if(theUpdate) 
1305     Repaint();
1306   emit actorAdded(theActor);
1307 }
1308
1309 /*!
1310   Redirect the request to #SVTK_Renderer::RemoveActor
1311 */
1312 void SVTK_ViewWindow::RemoveActor( VTKViewer_Actor* theActor, 
1313                                    bool theUpdate,
1314                                    bool theIsAdjustActors )
1315 {
1316   GetRenderer()->RemoveActor(theActor, theIsAdjustActors);
1317   if ( myDefaultInteractorStyle )
1318     myDefaultInteractorStyle->FreeActors();
1319   if ( myKeyFreeInteractorStyle )
1320     myKeyFreeInteractorStyle->FreeActors();
1321   if(theUpdate) 
1322     Repaint();
1323   emit actorRemoved(theActor);
1324 }
1325
1326 QImage SVTK_ViewWindow::dumpViewContent()
1327 {
1328   vtkRenderWindow* aWindow = getRenderWindow();
1329   int* aSize = aWindow->GetSize();
1330   int aWidth = aSize[0];
1331   int aHeight = aSize[1];
1332   
1333 #ifndef DISABLE_GLVIEWER
1334   OpenGLUtils_FrameBuffer aFrameBuffer;
1335   if( aFrameBuffer.init( aWidth, aHeight ) )
1336   {
1337     glPushAttrib( GL_VIEWPORT_BIT );
1338     glViewport( 0, 0, aWidth, aHeight );
1339     aFrameBuffer.bind();
1340
1341     // draw scene
1342     aWindow->Render();
1343
1344     aFrameBuffer.unbind();
1345     glPopAttrib();
1346
1347     QImage anImage( aWidth, aHeight, QImage::Format_RGB32 );
1348
1349     aFrameBuffer.bind();
1350     glReadPixels( 0, 0, aWidth, aHeight, GL_RGBA, GL_UNSIGNED_BYTE, anImage.bits() );
1351     aFrameBuffer.unbind();
1352
1353     anImage = anImage.rgbSwapped();
1354     anImage = anImage.mirrored();
1355     return anImage;
1356   }
1357 #endif
1358
1359   // if frame buffers are unsupported, use old functionality
1360   unsigned char *aData = 
1361     aWindow->GetRGBACharPixelData( 0, 0, aWidth-1, aHeight-1, 0 );
1362   
1363   QImage anImage( aData, aWidth, aHeight, QImage::Format_ARGB32 );
1364
1365   anImage = anImage.rgbSwapped();
1366   anImage = anImage.mirrored();
1367   return anImage;
1368 }
1369
1370 /*!
1371   \return QImage, containing all scene rendering in window
1372 */
1373 QImage SVTK_ViewWindow::dumpView()
1374 {
1375   if( myDumpImage.isNull() )
1376     return dumpViewContent();
1377   
1378   RefreshDumpImage();
1379   return myDumpImage;
1380 }
1381
1382 QString SVTK_ViewWindow::filter() const
1383 {
1384   return tr( "SVTK_IMAGE_FILES" );
1385 }
1386
1387 bool SVTK_ViewWindow::dumpViewToFormat( const QImage& img, const QString& fileName, const QString& format )
1388 {
1389   if ( format != "PS" && format != "EPS" && format != "PDF" )
1390     return SUIT_ViewWindow::dumpViewToFormat( img, fileName, format );
1391
1392   SVTK_PsOptionsDlg* optionsDlg = new SVTK_PsOptionsDlg(this);
1393   if ( optionsDlg->exec() == QDialog::Accepted ) {
1394     SUIT_OverrideCursor wc;
1395
1396     vtkGL2PSExporter *anExporter = vtkGL2PSExporter::New();
1397     anExporter->SetRenderWindow(getRenderWindow());
1398
1399     // Set options
1400     anExporter->SetLineWidthFactor(optionsDlg->getLineFactor());
1401     anExporter->SetPointSizeFactor(optionsDlg->getPointFactor());
1402     anExporter->SetSort((vtkGL2PSExporter::SortScheme)optionsDlg->getSortType());
1403     anExporter->SetWrite3DPropsAsRasterImage((int)optionsDlg->isRasterize3D());
1404     anExporter->SetPS3Shading((int)optionsDlg->isPs3Shading());
1405     
1406     if ( format == "PS" ) {
1407       anExporter->SetFileFormatToPS();
1408       anExporter->CompressOff();
1409     }
1410     
1411     if ( format == "EPS" ) {
1412       anExporter->SetFileFormatToEPS();
1413       anExporter->CompressOff();
1414     }
1415
1416     if ( format == "PDF" ) {
1417       anExporter->SetFileFormatToPDF();
1418     }
1419     
1420     QString aFilePrefix(fileName);
1421     QString anExtension(SUIT_Tools::extension(fileName));
1422     aFilePrefix.truncate(aFilePrefix.length() - 1 - anExtension.length());
1423     anExporter->SetFilePrefix(aFilePrefix.toLatin1().data());
1424     anExporter->Write();
1425     anExporter->Delete();
1426   }
1427   delete optionsDlg;
1428   return true;  
1429 }
1430
1431 /*!
1432   \refresh QImage, containing all scene rendering in window
1433 */
1434 void SVTK_ViewWindow::RefreshDumpImage()
1435 {
1436   myDumpImage = dumpViewContent();
1437 }
1438
1439 /*!
1440   Redirect the request to #SVTK_Renderer::SetSelectionProp
1441 */
1442 void SVTK_ViewWindow::SetSelectionProp(const double& theRed, 
1443                                        const double& theGreen, 
1444                                        const double& theBlue, 
1445                                        const int& theWidth) 
1446 {
1447   myView->SetSelectionProp(theRed,theGreen,theBlue,theWidth);
1448 }
1449
1450 /*!
1451   Redirect the request to #SVTK_Renderer::SetSelectionProp
1452 */
1453 void SVTK_ViewWindow::SetPreselectionProp(const double& theRed, 
1454                                           const double& theGreen, 
1455                                           const double& theBlue, 
1456                                           const int& theWidth) 
1457 {
1458   myView->SetPreselectionProp(theRed,theGreen,theBlue,theWidth);
1459 }
1460
1461 /*!
1462   Redirect the request to #SVTK_Renderer::SetSelectionTolerance
1463 */
1464 void SVTK_ViewWindow::SetSelectionTolerance(const double& theTolNodes, 
1465                                             const double& theTolItems,
1466                                             const double& theTolObjects)
1467 {
1468   myView->SetSelectionTolerance(theTolNodes, theTolItems, theTolObjects);
1469 }
1470
1471 /*!
1472   Get visibility status of the static trihedron
1473 */
1474 bool SVTK_ViewWindow::IsStaticTrihedronVisible() const
1475 {
1476   return (bool)myAxesWidget->GetEnabled();
1477 }
1478
1479 /*!
1480   Set visibility status of the static trihedron
1481 */
1482 void SVTK_ViewWindow::SetStaticTrihedronVisible( const bool theIsVisible )
1483 {
1484   myAxesWidget->SetEnabled( (int)theIsVisible );
1485 }
1486
1487 /*!
1488   Performs action
1489   \param accelAction - action
1490 */
1491 bool SVTK_ViewWindow::action( const int accelAction  )
1492 {
1493   if ( accelAction == SUIT_Accel::ZoomFit )
1494     onFitAll();
1495   else {
1496     int anEvent = SVTK::convertAction( accelAction );
1497     GetInteractor()->InvokeEvent(anEvent, 0);
1498   }
1499   return true;
1500 }
1501
1502 /*!
1503   \return action by it's id
1504 */
1505 QtxAction* SVTK_ViewWindow::getAction( int id ) const
1506 {
1507   return dynamic_cast<QtxAction*>( toolMgr()->action( id ) );
1508 }
1509
1510
1511 // old visual parameters had 13 values.  New format added additional 
1512 // 76 values for graduated axes, so both numbers are processed.
1513 const int nNormalParams = 13;   // number of view windows parameters excluding graduated axes params
1514 const int nGradAxisParams = 25; // number of parameters of ONE graduated axis (X, Y, or Z)
1515 const int nTrihedronParams = 3; // number of parameters for Trihedron
1516 const int nAllParams = nNormalParams + 3*nGradAxisParams + nTrihedronParams + 1; // number of all visual parameters
1517
1518 /*! The method returns visual parameters of a graduated axis actor (x,y,z axis of graduated axes)
1519  */
1520 void getGradAxisVisualParams( QXmlStreamWriter& writer, vtkAxisActor2D* actor, QString theAxis )
1521 {
1522   //QString params;
1523   if ( !actor )
1524     return ;//params;
1525
1526   // Name
1527   bool isVisible = actor->GetTitleVisibility();
1528   QString title ( actor->GetTitle() );
1529   double color[ 3 ];
1530   int font = VTK_ARIAL;
1531   int bold = 0;
1532   int italic = 0;
1533   int shadow = 0;
1534
1535   vtkTextProperty* txtProp = actor->GetTitleTextProperty();
1536   if ( txtProp )
1537   {
1538     txtProp->GetColor( color );
1539     font = txtProp->GetFontFamily();
1540     bold = txtProp->GetBold();
1541     italic = txtProp->GetItalic();
1542     shadow = txtProp->GetShadow();
1543   }
1544   writer.writeStartElement("GraduatedAxis");
1545   writer.writeAttribute("Axis", theAxis);
1546
1547   writer.writeStartElement("Title");
1548   writer.writeAttribute("isVisible", QString("%1").arg(isVisible));
1549   writer.writeAttribute("Text", title);
1550   writer.writeAttribute("Font", QString("%1").arg(font));
1551   writer.writeAttribute("Bold", QString("%1").arg(bold));
1552   writer.writeAttribute("Italic", QString("%1").arg(italic));
1553   writer.writeAttribute("Shadow", QString("%1").arg(shadow));
1554
1555   writer.writeStartElement("Color");
1556   writer.writeAttribute("R", QString("%1").arg(color[0]));
1557   writer.writeAttribute("G", QString("%1").arg(color[1]));
1558   writer.writeAttribute("B", QString("%1").arg(color[2]));
1559   writer.writeEndElement();
1560   writer.writeEndElement();
1561
1562   //params.sprintf( "* Graduated Axis: * Name *%u*%s*%.2f*%.2f*%.2f*%u*%u*%u*%u", isVisible, 
1563   //              title.toLatin1().data(), color[0], color[1], color[2], font, bold, italic, shadow );
1564
1565   // Labels
1566   isVisible = actor->GetLabelVisibility();
1567   int labels = actor->GetNumberOfLabels();
1568   int offset = actor->GetTickOffset();
1569   font = VTK_ARIAL;
1570   bold = false;
1571   italic = false;
1572   shadow = false;
1573
1574   txtProp = actor->GetLabelTextProperty();
1575   if ( txtProp )
1576   {
1577     txtProp->GetColor( color );
1578     font = txtProp->GetFontFamily();
1579     bold = txtProp->GetBold();
1580     italic = txtProp->GetItalic();
1581     shadow = txtProp->GetShadow();
1582   }
1583
1584   writer.writeStartElement("Labels");
1585   writer.writeAttribute("isVisible", QString("%1").arg(isVisible));
1586   writer.writeAttribute("Number", QString("%1").arg(labels));
1587   writer.writeAttribute("Offset", QString("%1").arg(offset));
1588   writer.writeAttribute("Font", QString("%1").arg(font));
1589   writer.writeAttribute("Bold", QString("%1").arg(bold));
1590   writer.writeAttribute("Italic", QString("%1").arg(italic));
1591   writer.writeAttribute("Shadow", QString("%1").arg(shadow));
1592
1593   writer.writeStartElement("Color");
1594   writer.writeAttribute("R", QString("%1").arg(color[0]));
1595   writer.writeAttribute("G", QString("%1").arg(color[1]));
1596   writer.writeAttribute("B", QString("%1").arg(color[2]));
1597   writer.writeEndElement();
1598   writer.writeEndElement();
1599   //  params += QString().sprintf( "* Labels *%u*%u*%u*%.2f*%.2f*%.2f*%u*%u*%u*%u", isVisible, labels, offset,  
1600   //                           color[0], color[1], color[2], font, bold, italic, shadow );
1601
1602   // Tick marks
1603   isVisible = actor->GetTickVisibility();
1604   int length = actor->GetTickLength();
1605   writer.writeStartElement("TickMarks");
1606   writer.writeAttribute("isVisible", QString("%1").arg(isVisible));
1607   writer.writeAttribute("Length", QString("%1").arg(length));
1608   writer.writeEndElement();
1609   
1610   //params += QString().sprintf( "* Tick marks *%u*%u", isVisible, length );
1611   
1612   writer.writeEndElement();
1613   //return params;
1614 }
1615
1616 void setGradAxisVisualParams(QXmlStreamReader& reader, vtkAxisActor2D* actor)
1617 {
1618   if ( !actor )
1619     return;
1620
1621   do {
1622     reader.readNext();
1623   } while (!reader.isStartElement());
1624
1625   // Read title params
1626   QXmlStreamAttributes aAttr = reader.attributes();
1627   bool isVisible = aAttr.value("isVisible").toString().toUShort();
1628   QString title = aAttr.value("Text").toString();
1629   int font = aAttr.value("Font").toString().toInt();
1630   int bold = aAttr.value("Bold").toString().toInt();
1631   int italic = aAttr.value("Italic").toString().toInt();
1632   int shadow = aAttr.value("Shadow").toString().toInt();
1633
1634   //printf("#### TITLE: %i, %s, %i, %i, %i, %i\n", isVisible, qPrintable(title), font, bold, italic, shadow);
1635
1636   do {
1637     reader.readNext();
1638   } while (!reader.isStartElement());
1639   
1640   // Read title color
1641   aAttr = reader.attributes();
1642
1643   double color[3];
1644   color[0] = aAttr.value("R").toString().toDouble();
1645   color[1] = aAttr.value("G").toString().toDouble();
1646   color[2] = aAttr.value("B").toString().toDouble();
1647   //printf("#### Color: %f, %f, %f\n", color[0], color[1], color[2]);
1648
1649   actor->SetTitleVisibility( isVisible );
1650   actor->SetTitle( title.toLatin1() );
1651   vtkTextProperty* txtProp = actor->GetTitleTextProperty();
1652   if ( txtProp ) {
1653     txtProp->SetColor( color );
1654     txtProp->SetFontFamily( font );
1655     txtProp->SetBold( bold );
1656     txtProp->SetItalic( italic );
1657     txtProp->SetShadow( shadow );
1658   }
1659
1660   // Labels
1661
1662   do {
1663     reader.readNext();
1664   } while (!reader.isStartElement()); 
1665   // Read labels
1666   aAttr = reader.attributes();
1667   isVisible = aAttr.value("isVisible").toString().toUShort();
1668   int labels = aAttr.value("Number").toString().toInt();
1669   int offset = aAttr.value("Offset").toString().toInt();
1670   font = aAttr.value("Font").toString().toInt();
1671   bold = aAttr.value("Bold").toString().toInt();
1672   italic = aAttr.value("Italic").toString().toInt();
1673   shadow = aAttr.value("Shadow").toString().toInt();
1674
1675   do {
1676     reader.readNext();
1677   } while (!reader.isStartElement()); 
1678   // Read Color
1679   aAttr = reader.attributes();
1680
1681   color[0] = aAttr.value("R").toString().toDouble();
1682   color[1] = aAttr.value("G").toString().toDouble();
1683   color[2] = aAttr.value("B").toString().toDouble();
1684
1685   actor->SetLabelVisibility( isVisible );
1686   actor->SetNumberOfLabels( labels );
1687   actor->SetTickOffset( offset );
1688   txtProp = actor->GetLabelTextProperty();
1689   if ( txtProp ) {
1690     txtProp->SetColor( color );
1691     txtProp->SetFontFamily( font );
1692     txtProp->SetBold( bold );
1693     txtProp->SetItalic( italic );
1694     txtProp->SetShadow( shadow );
1695   }
1696
1697   // Tick Marks
1698   do {
1699     reader.readNext();
1700   } while (!reader.isStartElement()); 
1701   aAttr = reader.attributes();
1702
1703   // retrieve and set tick marks properties
1704   isVisible = aAttr.value("isVisible").toString().toUShort();
1705   int length = aAttr.value("Length").toString().toInt();
1706   
1707   actor->SetTickVisibility( isVisible );
1708   actor->SetTickLength( length );
1709 }
1710
1711 /*! The method restores visual parameters of a graduated axis actor (x,y,z axis)
1712  */
1713 void setGradAxisVisualParams( vtkAxisActor2D* actor, const QString& params )
1714 {
1715   if ( !actor )
1716     return;
1717
1718   QStringList paramsLst = params.split( '*' );
1719
1720   if ( paramsLst.size() == nGradAxisParams ) { // altogether name, lable, ticks parameters make up 25 values
1721
1722     // retrieve and set name parameters
1723     bool isVisible = paramsLst[2].toUShort();
1724     QString title = paramsLst[3];
1725     double color[3];
1726     color[0] = paramsLst[4].toDouble();
1727     color[1] = paramsLst[5].toDouble();
1728     color[2] = paramsLst[6].toDouble();
1729     int font = paramsLst[7].toInt();
1730     int bold = paramsLst[8].toInt();
1731     int italic = paramsLst[9].toInt();
1732     int shadow = paramsLst[10].toInt();
1733
1734     actor->SetTitleVisibility( isVisible );
1735     actor->SetTitle( title.toLatin1() );
1736     vtkTextProperty* txtProp = actor->GetTitleTextProperty();
1737     if ( txtProp ) {
1738       txtProp->SetColor( color );
1739       txtProp->SetFontFamily( font );
1740       txtProp->SetBold( bold );
1741       txtProp->SetItalic( italic );
1742       txtProp->SetShadow( shadow );
1743     }
1744
1745     // retrieve and set lable parameters
1746     isVisible = paramsLst[12].toUShort();
1747     int labels = paramsLst[13].toInt();
1748     int offset = paramsLst[14].toInt();
1749     color[0] = paramsLst[15].toDouble();
1750     color[1] = paramsLst[16].toDouble();
1751     color[2] = paramsLst[17].toDouble();
1752     font = paramsLst[18].toInt();
1753     bold = paramsLst[19].toInt();
1754     italic = paramsLst[20].toInt();
1755     shadow = paramsLst[21].toInt();
1756
1757     actor->SetLabelVisibility( isVisible );
1758     actor->SetNumberOfLabels( labels );
1759     actor->SetTickOffset( offset );
1760     txtProp = actor->GetLabelTextProperty();
1761     if ( txtProp ) {
1762       txtProp->SetColor( color );
1763       txtProp->SetFontFamily( font );
1764       txtProp->SetBold( bold );
1765       txtProp->SetItalic( italic );
1766       txtProp->SetShadow( shadow );
1767     }
1768
1769     // retrieve and set tick marks properties
1770     isVisible = paramsLst[23].toUShort();
1771     int length = paramsLst[24].toInt();
1772
1773     actor->SetTickVisibility( isVisible );
1774     actor->SetTickLength( length );
1775   }
1776 }
1777
1778 /*! The method returns the visual parameters of this view as a formated string
1779  */
1780 QString SVTK_ViewWindow::getVisualParameters()
1781 {
1782   double pos[3], focalPnt[3], viewUp[3], parScale, scale[3];
1783   
1784   // save position, focal point, viewUp, scale
1785   vtkCamera* camera = getRenderer()->GetActiveCamera();
1786   camera->GetPosition( pos );
1787   camera->GetFocalPoint( focalPnt );
1788   camera->GetViewUp( viewUp );
1789   parScale = camera->GetParallelScale();
1790   GetScale( scale );
1791
1792   // Parameters are given in the following format:view position (3 digits), focal point position (3 digits)
1793   // view up values (3 digits), parallel scale (1 digit), scale (3 digits, 
1794   // Graduated axes parameters (X, Y, Z axes parameters)
1795   QString retStr;
1796   QXmlStreamWriter aWriter(&retStr);
1797   aWriter.setAutoFormatting(true);
1798
1799   aWriter.writeStartDocument();
1800   aWriter.writeStartElement("ViewState");
1801
1802   aWriter.writeStartElement("Position");
1803   aWriter.writeAttribute("X", QString("%1").arg(pos[0]));
1804   aWriter.writeAttribute("Y", QString("%1").arg(pos[1]));
1805   aWriter.writeAttribute("Z", QString("%1").arg(pos[2]));
1806   aWriter.writeEndElement();
1807
1808   aWriter.writeStartElement("FocalPoint");
1809   aWriter.writeAttribute("X", QString::number(focalPnt[0]));
1810   aWriter.writeAttribute("Y", QString::number(focalPnt[1]));
1811   aWriter.writeAttribute("Z", QString::number(focalPnt[2]));
1812   aWriter.writeEndElement();
1813
1814   aWriter.writeStartElement("ViewUp");
1815   aWriter.writeAttribute("X", QString::number(viewUp[0]));
1816   aWriter.writeAttribute("Y", QString::number(viewUp[1]));
1817   aWriter.writeAttribute("Z", QString::number(viewUp[2]));
1818   aWriter.writeEndElement();
1819
1820   aWriter.writeStartElement("ViewScale");
1821   aWriter.writeAttribute("Parallel", QString::number(parScale));
1822   aWriter.writeAttribute("X", QString::number(scale[0]));
1823   aWriter.writeAttribute("Y", QString::number(scale[1]));
1824   aWriter.writeAttribute("Z", QString::number(scale[2]));
1825   aWriter.writeEndElement();
1826
1827   if ( SVTK_CubeAxesActor2D* gradAxesActor = GetCubeAxes() ) {
1828     aWriter.writeStartElement("DisplayCubeAxis");
1829     aWriter.writeAttribute("Show", QString( "%1" ).arg( GetRenderer()->IsCubeAxesDisplayed()));
1830     aWriter.writeEndElement();
1831
1832     getGradAxisVisualParams(aWriter, gradAxesActor->GetXAxisActor2D(), "X");
1833     getGradAxisVisualParams(aWriter, gradAxesActor->GetYAxisActor2D(), "Y");
1834     getGradAxisVisualParams(aWriter, gradAxesActor->GetZAxisActor2D(), "Z");
1835   }
1836
1837   aWriter.writeStartElement("Trihedron");
1838   aWriter.writeAttribute("isShown",  QString( "%1" ).arg( isTrihedronDisplayed()));
1839   aWriter.writeAttribute("Size", QString::number(GetTrihedronSize()));
1840   aWriter.writeEndElement();
1841
1842   aWriter.writeStartElement("Background");
1843   aWriter.writeAttribute("Value",  QString( "%1" ).arg( Qtx::backgroundToString(background()) ));
1844   aWriter.writeEndElement();
1845
1846   aWriter.writeEndElement();
1847   aWriter.writeEndDocument();
1848
1849   return retStr;
1850 }
1851
1852 /*!
1853   The method restores visual parameters of this view or postpones it untill the view is shown
1854 */ 
1855 void SVTK_ViewWindow::setVisualParameters( const QString& parameters )
1856 {
1857   //printf("#### %s\n", qPrintable(parameters));
1858   SVTK_RenderWindowInteractor* anInteractor = GetInteractor();
1859   if ( anInteractor->isVisible() ) {
1860     doSetVisualParameters( parameters ); 
1861   }
1862   else {
1863     myVisualParams = parameters;
1864     anInteractor->installEventFilter(this);
1865   }
1866 }
1867
1868 /*!
1869   The method restores visual parameters of this view from a formated string
1870 */
1871 void SVTK_ViewWindow::doSetVisualParameters( const QString& parameters, bool baseParamsOnly )
1872 {
1873
1874   double pos[3], focalPnt[3], viewUp[3], parScale, scale[3];
1875
1876   QXmlStreamReader aReader(parameters);
1877   SVTK_CubeAxesActor2D* gradAxesActor = GetCubeAxes();
1878
1879   while(!aReader.atEnd()) {
1880     aReader.readNext();
1881     if (aReader.isStartElement()) {
1882       QXmlStreamAttributes aAttr = aReader.attributes();
1883       //printf("### Name = %s\n", qPrintable(aReader.name().toString()));
1884       if (aReader.name() == "Position") {
1885         pos[0] = aAttr.value("X").toString().toDouble();
1886         pos[1] = aAttr.value("Y").toString().toDouble();
1887         pos[2] = aAttr.value("Z").toString().toDouble();
1888         //printf("#### Position %f; %f; %f\n", pos[0], pos[1], pos[2]);
1889       }
1890       else if (aReader.name() == "FocalPoint") {
1891         focalPnt[0] = aAttr.value("X").toString().toDouble();
1892         focalPnt[1] = aAttr.value("Y").toString().toDouble();
1893         focalPnt[2] = aAttr.value("Z").toString().toDouble();
1894         //printf("#### FocalPoint %f; %f; %f\n", focalPnt[0], focalPnt[1], focalPnt[2]);
1895       }
1896       else if (aReader.name() == "ViewUp") {
1897         viewUp[0] = aAttr.value("X").toString().toDouble();
1898         viewUp[1] = aAttr.value("Y").toString().toDouble();
1899         viewUp[2] = aAttr.value("Z").toString().toDouble();
1900         //printf("#### ViewUp %f; %f; %f\n", viewUp[0], viewUp[1], viewUp[2]);
1901       }
1902       else if (aReader.name() == "ViewScale") {
1903         parScale = aAttr.value("Parallel").toString().toDouble();
1904         scale[0] = aAttr.value("X").toString().toDouble();
1905         scale[1] = aAttr.value("Y").toString().toDouble();
1906         scale[2] = aAttr.value("Z").toString().toDouble();
1907         //printf("#### ViewScale %f; %f; %f\n", scale[0], scale[1], scale[2]);
1908       }
1909       else if (aReader.name() == "DisplayCubeAxis") {
1910         if ( !baseParamsOnly ) {
1911           if (aAttr.value("Show") == "0")
1912             gradAxesActor->VisibilityOff();
1913           else
1914             gradAxesActor->VisibilityOn();
1915         }
1916       }
1917       else if (aReader.name() == "GraduatedAxis") {
1918         if ( !baseParamsOnly ) {
1919           if(aAttr.value("Axis") == "X")
1920             setGradAxisVisualParams(aReader, gradAxesActor->GetXAxisActor2D());
1921           else if(aAttr.value("Axis") == "Y")
1922             setGradAxisVisualParams(aReader, gradAxesActor->GetYAxisActor2D());
1923           else if(aAttr.value("Axis") == "Z")
1924             setGradAxisVisualParams(aReader, gradAxesActor->GetZAxisActor2D());
1925         }
1926       }
1927       else if (aReader.name() == "Trihedron") {
1928         if ( !baseParamsOnly ) {
1929           if (aAttr.value("isShown") == "0")
1930             GetTrihedron()->VisibilityOff();
1931           else
1932             GetTrihedron()->VisibilityOn();
1933           SetTrihedronSize(aAttr.value("Size").toString().toDouble());
1934         }
1935       }
1936       else if (aReader.name() == "Background") {
1937         if ( !baseParamsOnly ) {
1938           setBackground( Qtx::stringToBackground( aAttr.value("Value").toString() ) );
1939         }
1940       }
1941     }
1942   }
1943   if (!aReader.hasError()) {
1944     vtkCamera* camera = getRenderer()->GetActiveCamera();
1945     camera->SetPosition( pos );
1946     camera->SetFocalPoint( focalPnt );
1947     camera->SetViewUp( viewUp );
1948     camera->SetParallelScale( parScale );
1949     GetRenderer()->SetScale( scale );
1950     //SetScale( scale );
1951   }
1952   else {
1953     QStringList paramsLst = parameters.split( '*' );
1954     if ( paramsLst.size() >= nNormalParams ) {
1955       // 'reading' list of parameters
1956       pos[0] = paramsLst[0].toDouble();
1957       pos[1] = paramsLst[1].toDouble();
1958       pos[2] = paramsLst[2].toDouble();
1959       focalPnt[0] = paramsLst[3].toDouble();
1960       focalPnt[1] = paramsLst[4].toDouble();
1961       focalPnt[2] = paramsLst[5].toDouble();
1962       viewUp[0] = paramsLst[6].toDouble();
1963       viewUp[1] = paramsLst[7].toDouble();
1964       viewUp[2] = paramsLst[8].toDouble();
1965       parScale = paramsLst[9].toDouble();
1966       scale[0] = paramsLst[10].toDouble();
1967       scale[1] = paramsLst[11].toDouble();
1968       scale[2] = paramsLst[12].toDouble();
1969
1970       // applying parameters
1971       vtkCamera* camera = getRenderer()->GetActiveCamera();
1972       camera->SetPosition( pos );
1973       camera->SetFocalPoint( focalPnt );
1974       camera->SetViewUp( viewUp );
1975       camera->SetParallelScale( parScale );
1976       GetRenderer()->SetScale( scale );
1977       //SetScale( scale );
1978
1979       // apply graduated axes parameters
1980       if ( !baseParamsOnly ) {
1981         SVTK_CubeAxesActor2D* gradAxesActor = GetCubeAxes();
1982         if ( gradAxesActor && paramsLst.size() == nAllParams ) {
1983           int i = nNormalParams+1, j = i + nGradAxisParams - 1;
1984           ::setGradAxisVisualParams( gradAxesActor->GetXAxisActor2D(), parameters.section( '*', i, j ) );
1985           i = j + 1; j += nGradAxisParams;
1986           ::setGradAxisVisualParams( gradAxesActor->GetYAxisActor2D(), parameters.section( '*', i, j ) );
1987           i = j + 1; j += nGradAxisParams;
1988           ::setGradAxisVisualParams( gradAxesActor->GetZAxisActor2D(), parameters.section( '*', i, j ) );
1989
1990           if ( paramsLst[13].toUShort() )
1991             gradAxesActor->VisibilityOn();
1992           else
1993             gradAxesActor->VisibilityOff();
1994         }
1995         else if ( paramsLst.size() == nAllParams ) {
1996           if ( paramsLst[90].toUShort() )
1997             GetTrihedron()->VisibilityOn();
1998           else
1999             GetTrihedron()->VisibilityOff();
2000
2001           SetTrihedronSize(paramsLst[91].toDouble());
2002         }
2003       }
2004     }
2005   }
2006   Repaint();
2007 }
2008
2009
2010 /*!
2011   Delayed setVisualParameters
2012 */
2013 bool SVTK_ViewWindow::eventFilter( QObject* theWatched, QEvent* theEvent )
2014 {
2015   if ( theEvent->type() == QEvent::Show && theWatched->inherits( "SVTK_RenderWindowInteractor" ) ) {
2016     SVTK_RenderWindowInteractor* anInteractor = (SVTK_RenderWindowInteractor*)theWatched;
2017     if ( anInteractor->isVisible() ) {
2018       doSetVisualParameters( myVisualParams );
2019       anInteractor->removeEventFilter( this ); // theWatched = RenderWindowInteractor
2020     }
2021   }
2022   return SUIT_ViewWindow::eventFilter( theWatched, theEvent );
2023 }
2024
2025
2026 /*!
2027   Change rotation point
2028 */
2029 void SVTK_ViewWindow::onChangeRotationPoint(bool theIsActivate)
2030 {
2031   if(theIsActivate){
2032     mySetRotationPointDlg->addObserver();
2033     if ( mySetRotationPointDlg->IsFirstShown() )
2034       activateSetRotationGravity();
2035     mySetRotationPointDlg->show();
2036   }else
2037     mySetRotationPointDlg->hide();
2038 }
2039
2040 /*!
2041   Set the gravity center as a rotation point
2042 */
2043 void SVTK_ViewWindow::activateSetRotationGravity()
2044 {
2045   myEventDispatcher->InvokeEvent(SVTK::SetRotateGravity,0);
2046 }
2047
2048 /*!
2049   Set the selected point as a rotation point
2050 */
2051 void SVTK_ViewWindow::activateSetRotationSelected(void* theData)
2052 {
2053   myEventDispatcher->InvokeEvent(SVTK::ChangeRotationPoint,theData);
2054 }
2055
2056 /*!
2057   Set the gravity center of element selected by user as a rotation point
2058 */
2059 void SVTK_ViewWindow::activateStartPointSelection( Selection_Mode theSelectionMode )
2060 {
2061   SetSelectionMode( theSelectionMode );
2062   myEventDispatcher->InvokeEvent(SVTK::StartPointSelection,0);
2063 }
2064
2065 /*!
2066   \brief Set the given projection mode.
2067
2068   Set the given projection mode: Orthographic or Perspective.
2069 */
2070 void SVTK_ViewWindow::onProjectionMode( QAction* theAction )
2071 {
2072   int aMode = Parallel;
2073   if (theAction == toolMgr()->action( ProjectionModeId ))
2074     aMode = Projection;
2075   SVTK_Viewer* aViewer = dynamic_cast<SVTK_Viewer*>(myModel);
2076   aViewer->setProjectionMode(aMode);
2077   bool anIsParallelMode = (aMode == Parallel);
2078   vtkCamera* aCamera = getRenderer()->GetActiveCamera();
2079   aCamera->SetParallelProjection(anIsParallelMode);
2080   GetInteractor()->GetDevice()->CreateTimer(VTKI_TIMER_FIRST);
2081   getRenderWindow()->SetStereoRender(0);
2082   Repaint();
2083 }
2084
2085 /*!
2086   \brief Sets Stereo projection mode.
2087
2088   Sets Stereo projection mode.
2089 */
2090 void SVTK_ViewWindow::onStereoMode( bool activate )
2091 {
2092   if (activate) {
2093     toolMgr()->action( ProjectionModeId )->setChecked(true);
2094     vtkCamera* aCamera = getRenderer()->GetActiveCamera();
2095     aCamera->SetParallelProjection(false);
2096     toolMgr()->action( ProjectionModeId )->actionGroup()->setEnabled(false);
2097     SUIT_ResourceMgr* aResMgr = SUIT_Session::session()->resourceMgr();
2098     SetStereoType( aResMgr->integerValue( "VTKViewer", "stereo_type", 0 ) );
2099     getRenderWindow()->SetStereoRender(1);
2100     Repaint();
2101   }
2102   else {
2103     toolMgr()->action( ProjectionModeId )->actionGroup()->setEnabled(true);
2104     SVTK_Viewer* aViewer = dynamic_cast<SVTK_Viewer*>(myModel);
2105     if (aViewer->projectionMode() == Parallel) {
2106       toolMgr()->action( ParallelModeId )->setChecked(true);
2107       onProjectionMode(toolMgr()->action( ParallelModeId ));
2108     }
2109     else if (aViewer->projectionMode() == Projection) {
2110       toolMgr()->action( ProjectionModeId )->setChecked(true);
2111       onProjectionMode(toolMgr()->action( ProjectionModeId ));
2112     }
2113   }
2114   if ( getRenderWindow()->GetStereoCapableWindow() == 1 && !isOpenGlStereoSupport() &&
2115        strcmp( "CrystalEyes", getRenderWindow()->GetStereoTypeAsString() ) == 0 &&
2116        toolMgr()->action( StereoModeId )->isChecked() )
2117     SUIT_MessageBox::warning( 0, tr( "WRN_WARNING" ),  tr( "WRN_SUPPORT_QUAD_BUFFER" ) );
2118 }
2119
2120 /*!
2121   Set the view projection mode: orthogonal or perspective
2122 */
2123 void SVTK_ViewWindow::onProjectionMode()
2124 {
2125   if (toolMgr()->action( ParallelModeId )->isChecked())
2126     SetProjectionMode( Parallel);
2127   if (toolMgr()->action( ProjectionModeId )->isChecked())
2128     SetProjectionMode( Projection);
2129   if (toolMgr()->action( StereoModeId )->isChecked())
2130     SetProjectionMode( Stereo);
2131   emit transformed( this );
2132 }
2133
2134 void SVTK_ViewWindow::SetEventDispatcher(vtkObject* theDispatcher)
2135 {
2136   myEventDispatcher = theDispatcher;
2137 }
2138
2139 /*!
2140   Creates all actions of svtk main window
2141 */
2142 void SVTK_ViewWindow::createActions(SUIT_ResourceMgr* theResourceMgr)
2143 {
2144   QtxAction* anAction;
2145   QtxActionToolMgr* mgr = toolMgr();
2146
2147   // Dump view
2148   anAction = new QtxAction(tr("MNU_DUMP_VIEW"), 
2149                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_DUMP" ) ),
2150                            tr( "MNU_DUMP_VIEW" ), 0, this);
2151   anAction->setStatusTip(tr("DSC_DUMP_VIEW"));
2152   connect(anAction, SIGNAL(triggered()), this, SLOT(onDumpView()));
2153   mgr->registerAction( anAction, DumpId );
2154
2155   // FitAll
2156   anAction = new QtxAction(tr("MNU_FITALL"), 
2157                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_FITALL" ) ),
2158                            tr( "MNU_FITALL" ), 0, this);
2159   anAction->setStatusTip(tr("DSC_FITALL"));
2160   connect(anAction, SIGNAL(triggered()), this, SLOT(onFitAll()));
2161   mgr->registerAction( anAction, FitAllId );
2162
2163   // FitRect
2164   anAction = new QtxAction(tr("MNU_FITRECT"), 
2165                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_FITAREA" ) ),
2166                            tr( "MNU_FITRECT" ), 0, this);
2167   anAction->setStatusTip(tr("DSC_FITRECT"));
2168   connect(anAction, SIGNAL(triggered()), this, SLOT(activateWindowFit()));
2169   mgr->registerAction( anAction, FitRectId );
2170
2171   // FitSelection
2172   anAction = new QtxAction(tr("MNU_FITSELECTION"),
2173                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_FITSELECTION" ) ),
2174                            tr( "MNU_FITSELECTION" ), 0, this);
2175   anAction->setStatusTip(tr("DSC_FITSELECTION"));
2176   connect(anAction, SIGNAL(triggered()), this, SLOT(onFitSelection()));
2177   mgr->registerAction( anAction, FitSelectionId );
2178
2179   // Zoom
2180   anAction = new QtxAction(tr("MNU_ZOOM_VIEW"), 
2181                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_ZOOM" ) ),
2182                            tr( "MNU_ZOOM_VIEW" ), 0, this);
2183   anAction->setStatusTip(tr("DSC_ZOOM_VIEW"));
2184   connect(anAction, SIGNAL(triggered()), this, SLOT(activateZoom()));
2185   mgr->registerAction( anAction, ZoomId );
2186
2187   // Panning
2188   anAction = new QtxAction(tr("MNU_PAN_VIEW"), 
2189                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_PAN" ) ),
2190                            tr( "MNU_PAN_VIEW" ), 0, this);
2191   anAction->setStatusTip(tr("DSC_PAN_VIEW"));
2192   connect(anAction, SIGNAL(triggered()), this, SLOT(activatePanning()));
2193   mgr->registerAction( anAction, PanId );
2194
2195   // Global Panning
2196   anAction = new QtxAction(tr("MNU_GLOBALPAN_VIEW"), 
2197                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_GLOBALPAN" ) ),
2198                            tr( "MNU_GLOBALPAN_VIEW" ), 0, this);
2199   anAction->setStatusTip(tr("DSC_GLOBALPAN_VIEW"));
2200   connect(anAction, SIGNAL(triggered()), this, SLOT(activateGlobalPanning()));
2201   mgr->registerAction( anAction, GlobalPanId );
2202
2203   // Change rotation point
2204   anAction = new QtxAction(tr("MNU_CHANGINGROTATIONPOINT_VIEW"), 
2205                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_ROTATION_POINT" ) ),
2206                            tr( "MNU_CHANGINGROTATIONPOINT_VIEW" ), 0, this);
2207   anAction->setStatusTip(tr("DSC_CHANGINGROTATIONPOINT_VIEW"));
2208   anAction->setCheckable(true);
2209   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onChangeRotationPoint(bool)));
2210   mgr->registerAction( anAction, ChangeRotationPointId );
2211
2212   // Rotation
2213   anAction = new QtxAction(tr("MNU_ROTATE_VIEW"), 
2214                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_ROTATE" ) ),
2215                            tr( "MNU_ROTATE_VIEW" ), 0, this);
2216   anAction->setStatusTip(tr("DSC_ROTATE_VIEW"));
2217   connect(anAction, SIGNAL(triggered()), this, SLOT(activateRotation()));
2218   mgr->registerAction( anAction, RotationId );
2219
2220   // Projections
2221   anAction = new QtxAction(tr("MNU_FRONT_VIEW"), 
2222                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_FRONT" ) ),
2223                            tr( "MNU_FRONT_VIEW" ), 0, this, false, "Viewers:Front view");
2224   anAction->setStatusTip(tr("DSC_FRONT_VIEW"));
2225   connect(anAction, SIGNAL(triggered()), this, SLOT(onFrontView()));
2226   this->addAction(anAction);
2227   mgr->registerAction( anAction, FrontId );
2228
2229   anAction = new QtxAction(tr("MNU_BACK_VIEW"),
2230                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_BACK" ) ),
2231                            tr( "MNU_BACK_VIEW" ), 0, this, false, "Viewers:Back view");
2232   anAction->setStatusTip(tr("DSC_BACK_VIEW"));
2233   connect(anAction, SIGNAL(triggered()), this, SLOT(onBackView()));
2234   this->addAction(anAction);
2235   mgr->registerAction( anAction, BackId );
2236
2237   anAction = new QtxAction(tr("MNU_TOP_VIEW"),
2238                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_TOP" ) ),
2239                            tr( "MNU_TOP_VIEW" ), 0, this, false, "Viewers:Top view");
2240   anAction->setStatusTip(tr("DSC_TOP_VIEW"));
2241   connect(anAction, SIGNAL(triggered()), this, SLOT(onTopView()));
2242   this->addAction(anAction);
2243   mgr->registerAction( anAction, TopId );
2244
2245   anAction = new QtxAction(tr("MNU_BOTTOM_VIEW"),
2246                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_BOTTOM" ) ),
2247                            tr( "MNU_BOTTOM_VIEW" ), 0, this, false, "Viewers:Bottom view");
2248   anAction->setStatusTip(tr("DSC_BOTTOM_VIEW"));
2249   connect(anAction, SIGNAL(triggered()), this, SLOT(onBottomView()));
2250   this->addAction(anAction);
2251   mgr->registerAction( anAction, BottomId );
2252
2253   anAction = new QtxAction(tr("MNU_LEFT_VIEW"),
2254                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_LEFT" ) ),
2255                            tr( "MNU_LEFT_VIEW" ), 0, this, false, "Viewers:Left view");
2256   anAction->setStatusTip(tr("DSC_LEFT_VIEW"));
2257   connect(anAction, SIGNAL(triggered()), this, SLOT(onLeftView()));
2258   this->addAction(anAction);
2259   mgr->registerAction( anAction, LeftId );
2260
2261   anAction = new QtxAction(tr("MNU_RIGHT_VIEW"),
2262                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_RIGHT" ) ),
2263                            tr( "MNU_RIGHT_VIEW" ), 0, this, false, "Viewers:Right view");
2264   anAction->setStatusTip(tr("DSC_RIGHT_VIEW"));
2265   connect(anAction, SIGNAL(triggered()), this, SLOT(onRightView()));
2266   this->addAction(anAction);
2267   mgr->registerAction( anAction, RightId );
2268
2269   // rotate anticlockwise
2270   anAction = new QtxAction(tr("MNU_ANTICLOCKWISE_VIEW"),
2271                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_ANTICLOCKWISE" ) ),
2272                            tr( "MNU_ANTICLOCKWISE_VIEW" ), 0, this, false, "Viewers:Rotate anticlockwise");
2273   anAction->setStatusTip(tr("DSC_ANTICLOCKWISE_VIEW"));
2274   connect(anAction, SIGNAL(triggered()), this, SLOT(onAntiClockWiseView()));
2275   this->addAction(anAction);
2276   mgr->registerAction( anAction, AntiClockWiseId );
2277
2278   // rotate clockwise
2279   anAction = new QtxAction(tr("MNU_CLOCKWISE_VIEW"),
2280                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_CLOCKWISE" ) ),
2281                            tr( "MNU_CLOCKWISE_VIEW" ), 0, this, false, "Viewers:Rotate clockwise");
2282   anAction->setStatusTip(tr("DSC_CLOCKWISE_VIEW"));
2283   connect(anAction, SIGNAL(triggered()), this, SLOT(onClockWiseView()));
2284   this->addAction(anAction);
2285   mgr->registerAction( anAction, ClockWiseId );
2286
2287   // Reset
2288   anAction = new QtxAction(tr("MNU_RESET_VIEW"), 
2289                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_RESET" ) ),
2290                            tr( "MNU_RESET_VIEW" ), 0, this, false, "Viewers:Reset view");
2291   anAction->setStatusTip(tr("DSC_RESET_VIEW"));
2292   connect(anAction, SIGNAL(triggered()), this, SLOT(onResetView()));
2293   this->addAction(anAction);
2294   mgr->registerAction( anAction, ResetId );
2295
2296   // onViewTrihedron: Shows - Hides Trihedron
2297   anAction = new QtxAction(tr("MNU_SHOW_TRIHEDRON"), 
2298                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_VTKVIEWER_VIEW_TRIHEDRON" ) ),
2299                            tr( "MNU_SHOW_TRIHEDRON" ), 0, this);
2300   anAction->setCheckable( true );
2301   anAction->setChecked( true );
2302   
2303   anAction->setStatusTip(tr("DSC_SHOW_TRIHEDRON"));
2304   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onViewTrihedron(bool)));
2305   mgr->registerAction( anAction, ViewTrihedronId );
2306
2307   // onNonIsometric: Manage non-isometric params
2308   anAction = new QtxAction(tr("MNU_SVTK_SCALING"), 
2309                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_SCALING" ) ),
2310                            tr( "MNU_SVTK_SCALING" ), 0, this);
2311   anAction->setStatusTip(tr("DSC_SVTK_SCALING"));
2312   anAction->setCheckable(true);
2313   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onNonIsometric(bool)));
2314   mgr->registerAction( anAction, NonIsometric );
2315
2316   // onGraduatedAxes: Manage graduated axes params
2317   anAction = new QtxAction(tr("MNU_SVTK_GRADUATED_AXES"), 
2318                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_GRADUATED_AXES" ) ),
2319                            tr( "MNU_SVTK_GRADUATED_AXES" ), 0, this);
2320   anAction->setStatusTip(tr("DSC_SVTK_GRADUATED_AXES"));
2321   anAction->setCheckable(true);
2322   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onGraduatedAxes(bool)));
2323   mgr->registerAction( anAction, GraduatedAxes );
2324
2325   // onGraduatedAxes: Manage graduated axes params
2326   anAction = new QtxAction(tr("MNU_SVTK_UPDATE_RATE"), 
2327                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_UPDATE_RATE" ) ),
2328                            tr( "MNU_SVTK_UPDATE_RATE" ), 0, this);
2329   anAction->setStatusTip(tr("DSC_SVTK_UPDATE_RATE"));
2330   anAction->setCheckable(true);
2331   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onUpdateRate(bool)));
2332   mgr->registerAction( anAction, UpdateRate );
2333
2334   // Set perspective mode group
2335   anAction = new QtxAction(tr("MNU_SVTK_PARALLEL_MODE"), 
2336                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_VIEW_PARALLEL" ) ),
2337                            tr( "MNU_SVTK_PARALLEL_MODE" ), 0, this);
2338   anAction->setStatusTip(tr("DSC_SVTK_PARALLEL_MODE"));
2339   anAction->setCheckable(true);
2340   mgr->registerAction( anAction, ParallelModeId );
2341
2342   anAction = new QtxAction(tr("MNU_SVTK_PERSPECTIVE_MODE"), 
2343                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_VIEW_PERSPECTIVE" ) ),
2344                            tr( "MNU_SVTK_PERSPECTIVE_MODE" ), 0, this);
2345   anAction->setStatusTip(tr("DSC_SVTK_PERSPECTIVE_MODE"));
2346   anAction->setCheckable(true);
2347   mgr->registerAction( anAction, ProjectionModeId );
2348
2349   anAction = new QtxAction(tr("MNU_SVTK_STEREO_MODE"),
2350                              theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_VIEW_STEREO" ) ),
2351                              tr( "MNU_SVTK_STEREO_MODE" ), 0, this);
2352   anAction->setStatusTip(tr("DSC_SVTK_STEREO_MODE"));
2353   anAction->setCheckable(true);
2354   connect(anAction, SIGNAL(triggered(bool)), this, SLOT(onStereoMode(bool)));
2355   mgr->registerAction( anAction, StereoModeId );
2356
2357   QActionGroup* aPerspectiveGroup = new QActionGroup( this );
2358   aPerspectiveGroup->addAction( mgr->action( ParallelModeId ) );
2359   aPerspectiveGroup->addAction( mgr->action( ProjectionModeId ) );
2360   connect(aPerspectiveGroup, SIGNAL(triggered(QAction*)), this, SLOT(onProjectionMode(QAction*)));
2361
2362   // View Parameters
2363   anAction = new QtxAction(tr("MNU_VIEWPARAMETERS_VIEW"), 
2364                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_VIEW_PARAMETERS" ) ),
2365                            tr( "MNU_VIEWPARAMETERS_VIEW" ), 0, this);
2366   anAction->setStatusTip(tr("DSC_VIEWPARAMETERS_VIEW"));
2367   anAction->setCheckable(true);
2368   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onViewParameters(bool)));
2369   mgr->registerAction( anAction, ViewParametersId );
2370
2371   // Synchronize View 
2372   mgr->registerAction( synchronizeAction(), SynchronizeId );
2373
2374   // Switch between interaction styles
2375   anAction = new QtxAction(tr("MNU_SVTK_STYLE_SWITCH"), 
2376                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_STYLE_SWITCH" ) ),
2377                            tr( "MNU_SVTK_STYLE_SWITCH" ), 0, this);
2378   anAction->setStatusTip(tr("DSC_SVTK_STYLE_SWITCH"));
2379   anAction->setCheckable(true);
2380   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchInteractionStyle(bool)));
2381   mgr->registerAction( anAction, SwitchInteractionStyleId );
2382
2383   // Switch between zooming styles
2384   anAction = new QtxAction(tr("MNU_SVTK_ZOOMING_STYLE_SWITCH"), 
2385                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_ZOOMING_STYLE_SWITCH" ) ),
2386                            tr( "MNU_SVTK_ZOOMING_STYLE_SWITCH" ), 0, this);
2387   anAction->setStatusTip(tr("DSC_SVTK_ZOOMING_STYLE_SWITCH"));
2388   anAction->setCheckable(true);
2389   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onSwitchZoomingStyle(bool)));
2390   mgr->registerAction( anAction, SwitchZoomingStyleId );
2391
2392   // Pre-selection
2393   QSignalMapper* aSignalMapper = new QSignalMapper( this );
2394   connect(aSignalMapper, SIGNAL(mapped(int)), this, SLOT(onSwitchPreSelectionMode(int)));
2395
2396   anAction = new QtxAction(tr("MNU_SVTK_PRESELECTION_STANDARD"), 
2397                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_PRESELECTION_STANDARD" ) ),
2398                            tr( "MNU_SVTK_PRESELECTION_STANDARD" ), 0, this);
2399   anAction->setStatusTip(tr("DSC_SVTK_PRESELECTION_STANDARD"));
2400   anAction->setCheckable(true);
2401   connect(anAction, SIGNAL(triggered()), aSignalMapper, SLOT(map()));
2402   aSignalMapper->setMapping( anAction, Standard_Preselection );
2403   mgr->registerAction( anAction, StandardPreselectionId );
2404   
2405   anAction = new QtxAction(tr("MNU_SVTK_PRESELECTION_DYNAMIC"), 
2406                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_PRESELECTION_DYNAMIC" ) ),
2407                            tr( "MNU_SVTK_PRESELECTION_DYNAMIC" ), 0, this);
2408   anAction->setStatusTip(tr("DSC_SVTK_PRESELECTION_DYNAMIC"));
2409   anAction->setCheckable(true);
2410   connect(anAction, SIGNAL(triggered()), aSignalMapper, SLOT(map()));
2411   aSignalMapper->setMapping( anAction, Dynamic_Preselection );
2412   mgr->registerAction( anAction, DynamicPreselectionId );
2413
2414   anAction = new QtxAction(tr("MNU_SVTK_PRESELECTION_DISABLED"), 
2415                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_PRESELECTION_DISABLED" ) ),
2416                            tr( "MNU_SVTK_PRESELECTION_DISABLED" ), 0, this);
2417   anAction->setStatusTip(tr("DSC_SVTK_PRESELECTION_DISABLED"));
2418   anAction->setCheckable(true);
2419   connect(anAction, SIGNAL(triggered()), aSignalMapper, SLOT(map()));
2420   aSignalMapper->setMapping( anAction, Preselection_Disabled );
2421   mgr->registerAction( anAction, DisablePreselectionId );
2422
2423   QtxActionGroup* aPreselectionAction = new QtxActionGroup( this, true );
2424   aPreselectionAction->add( getAction( StandardPreselectionId ) );
2425   aPreselectionAction->add( getAction( DynamicPreselectionId ) );
2426   aPreselectionAction->add( getAction( DisablePreselectionId ) );
2427   mgr->registerAction( aPreselectionAction, PreselectionId );
2428
2429   // Selection
2430   anAction = new QtxAction(tr("MNU_SVTK_ENABLE_SELECTION"), 
2431                            theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_SELECTION" ) ),
2432                            tr( "MNU_SVTK_ENABLE_SELECTION" ), 0, this);
2433   anAction->setStatusTip(tr("DSC_SVTK_ENABLE_SELECTION"));
2434   anAction->setCheckable(true);
2435   connect(anAction, SIGNAL(toggled(bool)), this, SLOT(onEnableSelection(bool)));
2436   mgr->registerAction( anAction, EnableSelectionId );
2437
2438   // Start recording
2439   myStartAction = new QtxAction(tr("MNU_SVTK_RECORDING_START"), 
2440                                 theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_RECORDING_START" ) ),
2441                                 tr( "MNU_SVTK_RECORDING_START" ), 0, this);
2442   myStartAction->setStatusTip(tr("DSC_SVTK_RECORDING_START"));
2443   connect( myStartAction, SIGNAL( triggered ( bool ) ), this, SLOT( onStartRecording() ) );
2444   mgr->registerAction( myStartAction, StartRecordingId );
2445
2446   // Play recording
2447   myPlayAction = new QtxAction(tr("MNU_SVTK_RECORDING_PLAY"), 
2448                                theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_RECORDING_PLAY" ) ),
2449                                tr( "MNU_SVTK_RECORDING_PLAY" ), 0, this);
2450   myPlayAction->setStatusTip(tr("DSC_SVTK_RECORDING_PLAY"));
2451   myPlayAction->setEnabled( false );
2452   connect( myPlayAction, SIGNAL( triggered ( bool ) ), this, SLOT( onPlayRecording() ) );
2453   mgr->registerAction( myPlayAction, PlayRecordingId );
2454
2455   // Pause recording
2456   myPauseAction = new QtxAction(tr("MNU_SVTK_RECORDING_PAUSE"), 
2457                                 theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_RECORDING_PAUSE" ) ),
2458                                 tr( "MNU_SVTK_RECORDING_PAUSE" ), 0, this);
2459   myPauseAction->setStatusTip(tr("DSC_SVTK_RECORDING_PAUSE"));
2460   myPauseAction->setEnabled( false );
2461   connect( myPauseAction, SIGNAL( triggered ( bool ) ), this, SLOT( onPauseRecording() ) );
2462   mgr->registerAction( myPauseAction, PauseRecordingId );
2463
2464   // Stop recording
2465   myStopAction = new QtxAction(tr("MNU_SVTK_RECORDING_STOP"), 
2466                                theResourceMgr->loadPixmap( "VTKViewer", tr( "ICON_SVTK_RECORDING_STOP" ) ),
2467                                tr( "MNU_SVTK_RECORDING_STOP" ), 0, this);
2468   myStopAction->setStatusTip(tr("DSC_SVTK_RECORDING_STOP"));
2469   myStopAction->setEnabled( false );
2470   connect( myStopAction, SIGNAL( triggered ( bool ) ), this, SLOT( onStopRecording() ) );
2471   mgr->registerAction( myStopAction, StopRecordingId );
2472 }
2473
2474 /*!
2475   Creates toolbar of svtk main window
2476 */
2477 void SVTK_ViewWindow::createToolBar()
2478 {
2479   QtxActionToolMgr* mgr = toolMgr();
2480   
2481   mgr->append( DumpId, myToolBar );
2482   mgr->append( SwitchInteractionStyleId, myToolBar );
2483   mgr->append( SwitchZoomingStyleId, myToolBar );
2484
2485   mgr->append( mgr->separator(), myToolBar );
2486  
2487   mgr->append( PreselectionId, myToolBar );
2488   mgr->append( EnableSelectionId, myToolBar );
2489
2490   mgr->append( mgr->separator(), myToolBar );
2491
2492   mgr->append( ViewTrihedronId, myToolBar );
2493
2494   QtxMultiAction* aScaleAction = new QtxMultiAction( this );
2495   aScaleAction->insertAction( getAction( FitAllId ) );
2496   aScaleAction->insertAction( getAction( FitRectId ) );
2497   aScaleAction->insertAction( getAction( FitSelectionId ) );
2498   aScaleAction->insertAction( getAction( ZoomId ) );
2499   mgr->append( aScaleAction, myToolBar );
2500
2501   QtxMultiAction* aPanningAction = new QtxMultiAction( this );
2502   aPanningAction->insertAction( getAction( PanId ) );
2503   aPanningAction->insertAction( getAction( GlobalPanId ) );
2504   mgr->append( aPanningAction, myToolBar );
2505
2506   mgr->append( ChangeRotationPointId, myToolBar );
2507
2508   mgr->append( RotationId, myToolBar );
2509
2510   QtxMultiAction* aViewsAction = new QtxMultiAction( this );
2511   aViewsAction->insertAction( getAction( FrontId ) );
2512   aViewsAction->insertAction( getAction( BackId ) );
2513   aViewsAction->insertAction( getAction( TopId ) );
2514   aViewsAction->insertAction( getAction( BottomId ) );
2515   aViewsAction->insertAction( getAction( LeftId ) );
2516   aViewsAction->insertAction( getAction( RightId ) );
2517   mgr->append( aViewsAction, myToolBar );
2518
2519   mgr->append( AntiClockWiseId, myToolBar );
2520   mgr->append( ClockWiseId, myToolBar );
2521
2522   mgr->append( ResetId, myToolBar );
2523
2524   mgr->append( UpdateRate, myToolBar );
2525   mgr->append( NonIsometric, myToolBar );
2526   mgr->append( GraduatedAxes, myToolBar );
2527
2528   mgr->append( ViewParametersId, myToolBar );
2529   mgr->append( SynchronizeId, myToolBar );
2530
2531   mgr->append( toolMgr()->separator(), myToolBar );
2532
2533   mgr->append( ParallelModeId, myToolBar );
2534   mgr->append( ProjectionModeId, myToolBar );
2535   mgr->append( StereoModeId, myToolBar );
2536
2537   mgr->append( StartRecordingId, myRecordingToolBar );
2538   mgr->append( PlayRecordingId, myRecordingToolBar );
2539   mgr->append( PauseRecordingId, myRecordingToolBar );
2540   mgr->append( StopRecordingId, myRecordingToolBar );
2541 }
2542
2543 void SVTK_ViewWindow::onUpdateRate(bool theIsActivate)
2544 {
2545   if(theIsActivate){
2546     myUpdateRateDlg->Update();
2547     myUpdateRateDlg->show();
2548   }else
2549     myUpdateRateDlg->hide();
2550 }
2551
2552 void SVTK_ViewWindow::onNonIsometric(bool theIsActivate)
2553 {
2554   if(theIsActivate){
2555     myNonIsometricDlg->Update();
2556     myNonIsometricDlg->show();
2557   }else
2558     myNonIsometricDlg->hide();
2559 }
2560
2561 void SVTK_ViewWindow::onGraduatedAxes(bool theIsActivate)
2562 {
2563   if(theIsActivate){
2564     myCubeAxesDlg->Update();
2565     myCubeAxesDlg->show();
2566   }else
2567     myCubeAxesDlg->hide();
2568 }
2569
2570 /*!
2571   Starts rotation transformation
2572 */
2573 void SVTK_ViewWindow::activateRotation()
2574 {
2575   myEventDispatcher->InvokeEvent(SVTK::StartRotate,0);
2576 }
2577
2578
2579 /*!
2580   Starts panning transformation
2581 */
2582 void SVTK_ViewWindow::activatePanning()
2583 {
2584   myEventDispatcher->InvokeEvent(SVTK::StartPan,0);
2585 }
2586
2587 /*!
2588   Starts zoom transformation
2589 */
2590 void SVTK_ViewWindow::activateZoom()
2591 {
2592   myEventDispatcher->InvokeEvent(SVTK::StartZoom,0);
2593 }
2594
2595 /*!
2596   Starts window fit transformation
2597 */
2598 void SVTK_ViewWindow::activateWindowFit()
2599 {
2600   myEventDispatcher->InvokeEvent(SVTK::StartFitArea,0);
2601 }
2602
2603 /*!
2604   Starts global panning transformation
2605 */
2606 void SVTK_ViewWindow::activateGlobalPanning()
2607 {
2608   myEventDispatcher->InvokeEvent(SVTK::StartGlobalPan,0);
2609 }
2610
2611 void SVTK_ViewWindow::onStartRecording()
2612 {
2613   myRecorder->CheckExistAVIMaker();
2614   if (myRecorder->ErrorStatus()) {
2615     SUIT_MessageBox::warning(this, tr("ERROR"), tr("MSG_NO_AVI_MAKER") );
2616   }
2617   else {
2618     SVTK_RecorderDlg* aRecorderDlg = new SVTK_RecorderDlg( this, myRecorder );
2619
2620     if( !aRecorderDlg->exec() )
2621       return;
2622
2623     myStartAction->setEnabled( false );
2624     myPlayAction->setEnabled( false );
2625     myPauseAction->setEnabled( true );
2626     myStopAction->setEnabled( true );
2627
2628     // to prevent resizing the window while recording
2629     myPreRecordingMinSize = minimumSize();
2630     myPreRecordingMaxSize = maximumSize();
2631     setFixedSize( size() );
2632
2633     myRecorder->Record();
2634   }
2635 }
2636
2637 void SVTK_ViewWindow::onPlayRecording()
2638 {
2639   myStartAction->setEnabled( false );
2640   myPlayAction->setEnabled( false );
2641   myPauseAction->setEnabled( true );
2642   myStopAction->setEnabled( true );
2643
2644   myRecorder->Pause();
2645 }
2646
2647 void SVTK_ViewWindow::onPauseRecording()
2648 {
2649   myStartAction->setEnabled( false );
2650   myPlayAction->setEnabled( true );
2651   myPauseAction->setEnabled( false );
2652   myStopAction->setEnabled( true );
2653
2654   myRecorder->Pause();
2655 }
2656
2657 void SVTK_ViewWindow::onStopRecording()
2658 {
2659   myStartAction->setEnabled( true );
2660   myPlayAction->setEnabled( false );
2661   myPauseAction->setEnabled( false );
2662   myStopAction->setEnabled( false );
2663
2664   myRecorder->Stop();
2665
2666   setMinimumSize( myPreRecordingMinSize );
2667   setMaximumSize( myPreRecordingMaxSize );
2668 }
2669
2670 /*!
2671   To invoke a VTK event on SVTK_RenderWindowInteractor instance
2672 */
2673 void SVTK_ViewWindow::InvokeEvent(unsigned long theEvent, void* theCallData)
2674 {
2675   GetInteractor()->InvokeEvent(theEvent,theCallData);
2676 }
2677
2678 /*!
2679   Modify view parameters
2680 */
2681 void SVTK_ViewWindow::onViewParameters(bool theIsActivate)
2682 {
2683   if(theIsActivate){
2684     myViewParameterDlg->addObserver();
2685     myViewParameterDlg->show();
2686   }else
2687     myViewParameterDlg->hide();
2688 }
2689
2690 /*!
2691   Custom show event handler
2692 */
2693 void SVTK_ViewWindow::showEvent( QShowEvent * theEvent ) 
2694 {
2695   emit Show( theEvent );
2696 }
2697
2698 /*!
2699   Custom hide event handler
2700 */
2701 void SVTK_ViewWindow::hideEvent( QHideEvent * theEvent ) 
2702 {
2703   emit Hide( theEvent );
2704 }
2705
2706 /*!
2707   Emit transformed signal.
2708 */
2709 void SVTK_ViewWindow::emitTransformed() {
2710   transformed(this);
2711 }
2712
2713 /*!
2714   Processes events
2715 */
2716 void SVTK_ViewWindow::ProcessEvents(vtkObject* vtkNotUsed(theObject),
2717                                     unsigned long theEvent,
2718                                     void* theClientData,
2719                                     void* theCallData)
2720 {
2721   SVTK_ViewWindow* self = reinterpret_cast<SVTK_ViewWindow*>(theClientData);
2722   if(self)
2723     self->emitTransformed();
2724 }
2725
2726 /*!
2727   Get camera properties for the SVTK view window.
2728   \return shared pointer on camera properties.
2729 */
2730 SUIT_CameraProperties SVTK_ViewWindow::cameraProperties()
2731 {
2732   SUIT_CameraProperties aProps;
2733
2734   // get vtk camera
2735   vtkCamera* aCamera = getRenderer()->GetActiveCamera();
2736   if ( !aCamera )
2737     return aProps;
2738   
2739   aProps.setDimension( SUIT_CameraProperties::Dim3D );
2740   if ( toolMgr()->action( ParallelModeId ) ) {
2741     if ( toolMgr()->action( ParallelModeId )->isChecked() )
2742       aProps.setProjection( SUIT_CameraProperties::PrjOrthogonal );
2743     else
2744       aProps.setProjection( SUIT_CameraProperties::PrjPerspective );
2745   }
2746
2747   double aFocalPoint[3];
2748   double aPosition[3];
2749   double aViewUp[3];
2750   double anAxialScale[3];
2751
2752   aCamera->OrthogonalizeViewUp();
2753   aCamera->GetFocalPoint( aFocalPoint );
2754   aCamera->GetPosition( aPosition );
2755   aCamera->GetViewUp( aViewUp );
2756   
2757   aProps.setFocalPoint( aFocalPoint[0], aFocalPoint[1], aFocalPoint[2] );
2758   aProps.setPosition( aPosition[0], aPosition[1], aPosition[2] );
2759   aProps.setViewUp( aViewUp[0], aViewUp[1], aViewUp[2] );
2760   aProps.setMappingScale( aCamera->GetParallelScale() * 2.0 );
2761
2762   if ( aProps.getProjection() == SUIT_CameraProperties::PrjPerspective )
2763   {
2764     aProps.setViewAngle( aCamera->GetViewAngle() );
2765   }
2766
2767   GetRenderer()->GetScale( anAxialScale );
2768   aProps.setAxialScale( anAxialScale[0], anAxialScale[1], anAxialScale[2] );
2769   
2770   return aProps;
2771 }
2772
2773 /*!
2774   Synchronize views.
2775   This implementation synchronizes camera propreties.
2776 */
2777 void SVTK_ViewWindow::synchronize( SUIT_ViewWindow* theView )
2778 {
2779   bool blocked = blockSignals( true );
2780
2781   SUIT_CameraProperties aProps = theView->cameraProperties();
2782   if ( !cameraProperties().isCompatible( aProps ) ) {
2783     // other view, this one is being currently synchronized to, seems has become incompatible
2784     // we have to break synchronization
2785     updateSyncViews();
2786     return;
2787   }
2788
2789   // get camera
2790   vtkCamera* aCamera = getRenderer()->GetActiveCamera();
2791   
2792   double aFocalPoint[3];
2793   double aPosition[3];
2794   double aViewUp[3];
2795   double anAxialScale[3];
2796
2797   // get common properties
2798   aProps.getViewUp( aViewUp[0], aViewUp[1], aViewUp[2] );
2799   aProps.getPosition( aPosition[0], aPosition[1], aPosition[2] );
2800   aProps.getFocalPoint( aFocalPoint[0], aFocalPoint[1], aFocalPoint[2] );
2801   aProps.getAxialScale( anAxialScale[0], anAxialScale[1], anAxialScale[2] );
2802   
2803   // restore properties to the camera
2804   aCamera->SetViewUp( aViewUp );
2805   aCamera->SetPosition( aPosition );
2806   aCamera->SetFocalPoint( aFocalPoint );
2807   aCamera->SetParallelScale( aProps.getMappingScale() / 2.0 );
2808
2809   if ( aProps.getProjection() == SUIT_CameraProperties::PrjPerspective )
2810   {
2811     aCamera->SetViewAngle( aProps.getViewAngle() );
2812   }
2813
2814   GetRenderer()->SetScale( anAxialScale );
2815
2816   getRenderer()->ResetCameraClippingRange();
2817   Repaint( false );
2818
2819   blockSignals( blocked );
2820 }