Salome HOME
Merge remote branch 'origin/V7_dev' into V8_0_0_BR
[modules/gui.git] / src / SVTK / SVTK_RenderWindowInteractor.cxx
1 // Copyright (C) 2007-2015  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 //  SALOME VTKViewer : build VTK viewer into Salome desktop
24 //  File   : 
25 //  Author : 
26
27 #include "SVTK_RenderWindowInteractor.h"
28
29 #include "SVTK_InteractorStyle.h"
30 #include "SVTK_Renderer.h"
31 #include "SVTK_Functor.h"
32 #include "SALOME_Actor.h"
33
34 // QT Includes
35 // Put Qt includes before the X11 includes which #define the symbol None
36 // (see SVTK_SpaceMouse.h) to avoid the compilation error.
37 #ifndef WIN32
38 #if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
39 #include <xcb/xcb.h>
40 #endif
41 #include <QX11Info>
42 #endif
43 #include <QMouseEvent>
44
45 #include "SVTK_SpaceMouse.h" 
46 #include "SVTK_Event.h" 
47
48 #include "VTKViewer_Algorithm.h"
49
50 // VTK Includes
51 #include <vtkObjectFactory.h>
52 #include <vtkRendererCollection.h>
53 #include <vtkRenderWindow.h>
54 #include <vtkGenericRenderWindowInteractor.h>
55 #include <vtkCallbackCommand.h>
56 #include <vtkCommand.h>
57 #include <vtkPicker.h>
58 #include <vtkCamera.h>
59
60 static bool GENERATE_SUIT_EVENTS = true;
61 static bool FOCUS_UNDER_MOUSE = false;
62
63 // workaround about the bug in vtkImplicitPlaneWidget class
64 // that eats mouse button release event
65 // causing clipping plane preview in SMESH sticking up
66 #define Fix_Of_vtkImplicitPlaneWidget_bug
67
68 /*!
69   Constructor
70 */
71 QVTK_RenderWindowInteractor
72 ::QVTK_RenderWindowInteractor(QWidget* theParent, 
73                               const char* theName):
74   QWidget(theParent),
75   myRenderWindow(vtkRenderWindow::New())
76 {
77   setAttribute( Qt::WA_PaintOnScreen );
78   setAttribute( Qt::WA_NoSystemBackground );
79
80   setObjectName(theName);
81
82   setMouseTracking(true);
83
84   myRenderWindow->Delete();
85   myRenderWindow->DoubleBufferOn();
86
87 #ifndef WIN32
88   myRenderWindow->SetDisplayId((void*)QX11Info::display());
89 #endif
90   myRenderWindow->SetWindowId((void*)winId());
91 }
92
93 /*!
94   To initialize by vtkGenericRenderWindowInteractor instance
95 */
96 void 
97 QVTK_RenderWindowInteractor
98 ::Initialize(vtkGenericRenderWindowInteractor* theDevice)
99 {
100   if ( GetDevice() )
101     myDevice->SetRenderWindow( NULL );
102
103   myDevice = theDevice;
104
105   if ( theDevice )
106     theDevice->SetRenderWindow( getRenderWindow() );
107 }
108
109 /*!
110   Destructor
111 */
112 QVTK_RenderWindowInteractor
113 ::~QVTK_RenderWindowInteractor() 
114 {
115 #ifndef WIN32
116 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
117   SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance();
118   if ( aSpaceMouse && aSpaceMouse->isSpaceMouseOn() )
119     aSpaceMouse->close( QX11Info::display() );
120 #else
121   SVTK_SpaceMouseXCB* aSpaceMouse = SVTK_SpaceMouseXCB::getInstance();
122   if ( aSpaceMouse && aSpaceMouse->isSpaceMouseOn() )
123     aSpaceMouse->close( QX11Info::connection() );
124 #endif
125 #endif
126 }
127
128
129 /*!
130   \return corresponding render window interactor
131 */
132 vtkGenericRenderWindowInteractor* 
133 QVTK_RenderWindowInteractor
134 ::GetDevice()
135 {
136   return myDevice.GetPointer();
137 }
138
139 /*!
140   \return corresponding render window
141 */
142 vtkRenderWindow*
143 QVTK_RenderWindowInteractor
144 ::getRenderWindow()
145 {
146   return myRenderWindow.GetPointer();
147 }
148
149 /*!
150   Just to simplify usage of its device (vtkGenericRenderWindowInteractor)
151 */
152 void
153 QVTK_RenderWindowInteractor
154 ::InvokeEvent(unsigned long theEvent, void* theCallData)
155 {
156   GetDevice()->InvokeEvent(theEvent,theCallData);
157 }
158
159 /*!
160   Get paint engine for the scene
161 */
162 QPaintEngine* QVTK_RenderWindowInteractor::paintEngine() const
163 {
164   return 0;
165 }
166
167 /*!
168   Need for initial contents display on Win32
169 */
170 void
171 QVTK_RenderWindowInteractor
172 ::show()
173 {
174   QWidget::show();
175   update(); // needed for initial contents display on Win32
176 }
177
178 /*!
179   To implement final initialization, just before the widget is displayed
180 */
181 void
182 QVTK_RenderWindowInteractor
183 ::polish()
184 {
185   // Final initialization just before the widget is displayed
186   GetDevice()->SetSize(width(),height());
187   if(!GetDevice()->GetInitialized() && GetDevice()->GetRenderWindow()){
188     GetDevice()->Initialize();
189     GetDevice()->ConfigureEvent();
190   }
191 }
192
193 /*!
194   To adjust widget and vtkRenderWindow size
195 */
196 void
197 QVTK_RenderWindowInteractor
198 ::resize(int w, int h) 
199 {
200   GetDevice()->UpdateSize(w,h);
201 }
202
203 /*!
204   Custom paint event handler
205 */
206 void
207 QVTK_RenderWindowInteractor
208 ::paintEvent( QPaintEvent* theEvent ) 
209 {
210   GetDevice()->CreateTimer(VTKI_TIMER_FIRST);
211 }
212
213
214 /*!
215   Custom resize event handler
216 */
217 void
218 QVTK_RenderWindowInteractor
219 ::resizeEvent( QResizeEvent* theEvent )
220 {
221   int* aSize = getRenderWindow()->GetSize();
222   int aWidth = aSize[0];
223   int aHeight = aSize[1];
224
225   GetDevice()->UpdateSize(width(),height());
226
227   if(isVisible() && aWidth && aHeight){
228     if( aWidth != width() || aHeight != height() ) {
229       vtkRendererCollection * aRenderers = getRenderWindow()->GetRenderers();
230       aRenderers->InitTraversal();
231       double aCoeff = 1.0;
232       if(vtkRenderer *aRenderer = aRenderers->GetNextItem()) {
233         vtkCamera *aCamera = aRenderer->GetActiveCamera();
234         double aScale = aCamera->GetParallelScale();
235         if((aWidth - width())*(aHeight - height()) > 0)
236           aCoeff = sqrt(double(aWidth)/double(width())*double(height())/double(aHeight));
237         else
238           aCoeff = double(aWidth)/double(width());
239         aCamera->SetParallelScale(aScale*aCoeff);
240       }
241     }
242   }
243
244   update(); 
245 }
246
247
248
249 /*!
250   Custom context menu event handler
251 */
252 void
253 QVTK_RenderWindowInteractor
254 ::contextMenuEvent( QContextMenuEvent* event )
255 {}
256
257 /*!
258   Custom mouse move event handler
259 */
260 void
261 QVTK_RenderWindowInteractor
262 ::mouseMoveEvent( QMouseEvent* event ) 
263 {
264   GetDevice()->SetEventInformationFlipY(event->x(), 
265                                         event->y(),
266                                         event->modifiers() & Qt::ControlModifier,
267                                         event->modifiers() & Qt::ShiftModifier);
268   GetDevice()->MouseMoveEvent();
269 }
270
271
272 /*!
273   Custom mouse press event handler
274 */
275 void
276 QVTK_RenderWindowInteractor
277 ::mousePressEvent( QMouseEvent* event ) 
278 {
279   GetDevice()->SetEventInformationFlipY(event->x(), 
280                                         event->y(),
281                                         event->modifiers() & Qt::ControlModifier,
282                                         event->modifiers() & Qt::ShiftModifier);
283   if( event->button() & Qt::LeftButton )
284     GetDevice()->LeftButtonPressEvent();
285   else if( event->button() & Qt::MidButton )
286     GetDevice()->MiddleButtonPressEvent();
287   else if( event->button() & Qt::RightButton )
288     GetDevice()->RightButtonPressEvent();
289 }
290
291
292 /*!
293   Custom mouse release event handler
294 */
295 void
296 QVTK_RenderWindowInteractor
297 ::mouseReleaseEvent( QMouseEvent *event )
298 {
299   GetDevice()->SetEventInformationFlipY(event->x(), 
300                                         event->y(),
301                                         event->modifiers() & Qt::ControlModifier,
302                                         event->modifiers() & Qt::ShiftModifier);
303
304   if( event->button() & Qt::LeftButton )
305     GetDevice()->LeftButtonReleaseEvent();
306   else if( event->button() & Qt::MidButton )
307     GetDevice()->MiddleButtonReleaseEvent();
308   else if( event->button() & Qt::RightButton ) {
309 #if defined(Fix_Of_vtkImplicitPlaneWidget_bug)
310     GetDevice()->SetEventInformationFlipY( -99999, -99999,
311                                            event->modifiers() & Qt::ControlModifier,
312                                            event->modifiers() & Qt::ShiftModifier);
313     bool blocked = blockSignals( true );
314     GetDevice()->LeftButtonPressEvent();
315     GetDevice()->LeftButtonReleaseEvent();
316     blockSignals( blocked );
317     GetDevice()->SetEventInformationFlipY(event->x(),
318                                           event->y(),
319                                           event->modifiers() & Qt::ControlModifier,
320                                           event->modifiers() & Qt::ShiftModifier);
321 #endif
322     GetDevice()->RightButtonReleaseEvent();
323   }
324 }
325
326
327 /*!
328   Custom mouse double click event handler
329 */
330 void
331 QVTK_RenderWindowInteractor
332 ::mouseDoubleClickEvent( QMouseEvent* event )
333 {}
334
335
336 /*!
337   Custom mouse wheel event handler
338 */
339 void
340 QVTK_RenderWindowInteractor
341 ::wheelEvent( QWheelEvent* event )
342 {
343   activateWindow();
344   setFocus();
345   GetDevice()->SetEventInformationFlipY(event->x(), 
346                                         event->y(),
347                                         event->modifiers() & Qt::ControlModifier,
348                                         event->modifiers() & Qt::ShiftModifier);
349   if ( event->delta()>0)
350     GetDevice()->MouseWheelForwardEvent();
351   else
352     GetDevice()->MouseWheelBackwardEvent();
353 }
354
355
356 /*!
357   Custom key press event handler
358 */
359 void
360 QVTK_RenderWindowInteractor
361 ::keyPressEvent( QKeyEvent* event ) 
362 {
363   GetDevice()->SetKeyEventInformation(event->modifiers() & Qt::ControlModifier,
364                                       event->modifiers() & Qt::ShiftModifier,
365                                       event->key());
366   GetDevice()->KeyPressEvent();
367   GetDevice()->CharEvent();
368 }
369
370 /*!
371   Custom key release event handler
372 */
373 void
374 QVTK_RenderWindowInteractor
375 ::keyReleaseEvent( QKeyEvent * event ) 
376 {
377   GetDevice()->SetKeyEventInformation(event->modifiers() & Qt::ControlModifier,
378                                       event->modifiers() & Qt::ShiftModifier,
379                                       event->key());
380   GetDevice()->KeyReleaseEvent();
381 }
382
383
384 /*!
385   Custom enter event handler
386 */
387 void  
388 QVTK_RenderWindowInteractor
389 ::enterEvent( QEvent* event )
390 {
391   if(FOCUS_UNDER_MOUSE){
392     activateWindow();
393     setFocus();
394   }
395   GetDevice()->EnterEvent();
396 }
397
398 /*!
399   Custom leave event handler
400 */
401 void  
402 QVTK_RenderWindowInteractor
403 ::leaveEvent( QEvent * )
404 {
405   GetDevice()->LeaveEvent();
406 }
407
408 /*!
409   Reimplemented from QWidget in order to set window - receiver
410   of space mouse events. 
411 */
412 void  
413 QVTK_RenderWindowInteractor
414 ::focusInEvent( QFocusEvent* event )
415 {
416   QWidget::focusInEvent( event );
417
418 #ifndef WIN32
419   // register set space mouse events receiver
420 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
421   SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance();
422   if ( aSpaceMouse )
423   {
424     if ( !aSpaceMouse->isSpaceMouseOn() )
425       // initialize 3D space mouse driver 
426       aSpaceMouse->initialize( QX11Info::display(), winId() );
427     else
428       aSpaceMouse->setWindow( QX11Info::display(), winId() );
429   }
430 #else
431   SVTK_SpaceMouseXCB* aSpaceMouse = SVTK_SpaceMouseXCB::getInstance();
432   if ( aSpaceMouse )
433   {
434     if ( !aSpaceMouse->isSpaceMouseOn() )
435       // initialize 3D space mouse driver
436       aSpaceMouse->initialize( QX11Info::connection(), winId() );
437     else
438       aSpaceMouse->setWindow( QX11Info::connection(), winId() );
439   }
440 #endif
441 #endif
442 }
443
444 /*!
445   Reimplemented from QWidget in order to set window - receiver
446   of space mouse events. 
447 */
448 void  
449 QVTK_RenderWindowInteractor
450 ::focusOutEvent ( QFocusEvent* event )
451 {
452   QWidget::focusOutEvent( event );
453
454 #ifndef WIN32
455 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
456   // unregister set space mouse events receiver
457   SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance();
458   if ( aSpaceMouse && aSpaceMouse->isSpaceMouseOn() )
459     aSpaceMouse->setWindow( QX11Info::display(), 0 );
460 #else
461   SVTK_SpaceMouseXCB* aSpaceMouse = SVTK_SpaceMouseXCB::getInstance();
462   if ( aSpaceMouse && aSpaceMouse->isSpaceMouseOn() )
463     aSpaceMouse->setWindow( QX11Info::connection(), 0 );
464 #endif
465 #endif
466 }
467
468 // TODO (QT5 PORTING) Below is a temporary solution, to allow compiling with Qt 5
469 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
470 #ifdef WIN32
471
472 /*!
473   To handle native Win32 events (from such devices as SpaceMouse)
474 */
475 bool QVTK_RenderWindowInteractor::winEvent( MSG* msg, long* result )
476 {
477   // TODO: Implement event handling for SpaceMouse
478   return QWidget::winEvent( msg, result);
479 }
480
481 #else
482
483 /*!
484   To handle native X11 events (from such devices as SpaceMouse)
485 */
486 bool
487 QVTK_RenderWindowInteractor
488 ::x11Event( XEvent *xEvent )
489 {
490   // handle 3d space mouse events
491   if ( SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance() )
492   {
493     if ( aSpaceMouse->isSpaceMouseOn() && xEvent->type == ClientMessage )
494     {
495       SVTK_SpaceMouse::MoveEvent anEvent;
496       int type = aSpaceMouse->translateEvent( QX11Info::display(), xEvent, &anEvent, 1.0, 1.0 );
497       switch ( type )
498       {
499       case SVTK_SpaceMouse::SpaceMouseMove:
500               GetDevice()->InvokeEvent( SVTK::SpaceMouseMoveEvent, anEvent.data );
501               break;
502       case SVTK_SpaceMouse::SpaceButtonPress:
503               GetDevice()->InvokeEvent( SVTK::SpaceMouseButtonEvent, &anEvent.button );
504               break;
505       case SVTK_SpaceMouse::SpaceButtonRelease:
506               break;
507       }
508       return true; // stop handling the event
509     }
510   }
511
512   return QWidget::x11Event( xEvent );
513 }
514
515 #endif
516 #else
517 bool QVTK_RenderWindowInteractor
518 ::nativeEvent(const QByteArray& eventType, void* message, long* result)
519 {
520   if ( eventType == "xcb_generic_event_t" )
521   {
522     xcb_generic_event_t* ev = static_cast<xcb_generic_event_t *>(message);
523 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
524     if ( SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance() )
525 #else
526     if ( SVTK_SpaceMouseXCB* aSpaceMouse = SVTK_SpaceMouseXCB::getInstance() )
527 #endif
528     {
529       if ( aSpaceMouse->isSpaceMouseOn() && ev->response_type == XCB_CLIENT_MESSAGE )
530       {
531         SVTK_SpaceMouse::MoveEvent anEvent;
532 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
533         int type = aSpaceMouse->translateEvent( QX11Info::display(), xEvent, &anEvent, 1.0, 1.0 );
534 #else
535         int type = aSpaceMouse->translateEvent( QX11Info::connection(), (xcb_client_message_event_t*)ev, &anEvent, 1.0, 1.0 );
536 #endif
537         switch ( type )
538         {
539         case SVTK_SpaceMouse::SpaceMouseMove:
540                 GetDevice()->InvokeEvent( SVTK::SpaceMouseMoveEvent, anEvent.data );
541                 break;
542         case SVTK_SpaceMouse::SpaceButtonPress:
543                 GetDevice()->InvokeEvent( SVTK::SpaceMouseButtonEvent, &anEvent.button );
544                 break;
545         case SVTK_SpaceMouse::SpaceButtonRelease:
546                 break;
547         }
548         return true; // stop handling the event
549       }
550     }
551   }
552
553  return QWidget::nativeEvent( eventType, message, result );
554 }
555 #endif
556 /*!
557   Constructor
558 */
559 SVTK_RenderWindowInteractor
560 ::SVTK_RenderWindowInteractor(QWidget* theParent, 
561                                const char* theName):
562   QVTK_RenderWindowInteractor(theParent,theName),
563   myEventCallbackCommand(vtkCallbackCommand::New())
564 {
565   myEventCallbackCommand->Delete();
566
567   myEventCallbackCommand->SetClientData(this); 
568   myPriority = 0.0;
569
570   myEventCallbackCommand->SetCallback(SVTK_RenderWindowInteractor::ProcessEvents);
571 }
572
573 /*!
574   To initialize properly the class
575 */
576 void
577 SVTK_RenderWindowInteractor
578 ::Initialize(vtkGenericRenderWindowInteractor* theDevice,
579              SVTK_Renderer* theRenderer,
580              SVTK_Selector* theSelector)
581 {
582   QVTK_RenderWindowInteractor::Initialize(theDevice);
583   SetRenderer(theRenderer);
584   SetSelector(theSelector);
585 }
586
587 /*!
588   Destructor
589 */
590 SVTK_RenderWindowInteractor
591 ::~SVTK_RenderWindowInteractor() 
592 {
593   // Sequence of the destruction call are fixed and should be changed.
594   // vtkRenderWindow instance should be destroyed after all vtkRenderer's
595   GetDevice()->SetInteractorStyle(NULL); 
596   while(!myInteractorStyles.empty()){
597     const PInteractorStyle& aStyle = myInteractorStyles.top();
598     aStyle->SetInteractor(NULL);
599     myInteractorStyles.pop();
600   }
601
602   SetRenderer(NULL);
603
604   GetDevice()->SetRenderWindow(NULL);
605 }
606
607 /*!
608   To get corresponding SVTK_Renderer instance
609 */
610 SVTK_Renderer* 
611 SVTK_RenderWindowInteractor
612 ::GetRenderer()
613 {
614   return myRenderer.GetPointer();
615 }
616
617 /*!
618   To get corresponding SVTK_Renderer device (just to simplify collobaration with SVTK_Renderer)
619 */
620 vtkRenderer* 
621 SVTK_RenderWindowInteractor
622 ::getRenderer()
623 {
624   return GetRenderer()->GetDevice();
625 }
626
627 /*!
628   Changes renderer
629   \param theRenderer - new renderer
630 */
631 void
632 SVTK_RenderWindowInteractor
633 ::SetRenderer(SVTK_Renderer* theRenderer)
634 {
635   if(theRenderer == myRenderer.GetPointer())
636     return;
637
638   if(GetRenderer())
639     myRenderWindow->RemoveRenderer(getRenderer());
640
641   myRenderer = theRenderer;
642
643   if(GetRenderer())
644     myRenderWindow->AddRenderer(getRenderer());
645 }
646
647
648 /*!
649   Changes interactor style
650   \param theStyle - new interactor style
651 */
652 void
653 SVTK_RenderWindowInteractor
654 ::InitInteractorStyle(vtkInteractorStyle* theStyle)
655 {
656   GetDevice()->SetInteractorStyle(theStyle); 
657 }
658
659 /*!
660   To change current interactor style by pushing the new one into the container
661 */
662 void
663 SVTK_RenderWindowInteractor
664 ::PushInteractorStyle(vtkInteractorStyle* theStyle)
665 {
666   myInteractorStyles.push(PInteractorStyle(theStyle));
667   InitInteractorStyle(theStyle);
668 }
669
670 /*!
671   To restore previous interactor style
672 */
673 void
674 SVTK_RenderWindowInteractor
675 ::PopInteractorStyle()
676 {
677   if(GetInteractorStyle())
678     myInteractorStyles.pop();
679   
680   if(GetInteractorStyle()) 
681     InitInteractorStyle(GetInteractorStyle());
682 }
683
684 /*!
685   To get current interactor style
686 */
687 vtkInteractorStyle* 
688 SVTK_RenderWindowInteractor
689 ::GetInteractorStyle()
690 {
691   return myInteractorStyles.empty() ? 0 : myInteractorStyles.top().GetPointer();
692 }
693
694
695 /*!
696   To get current selector
697 */
698 SVTK_Selector* 
699 SVTK_RenderWindowInteractor
700 ::GetSelector() 
701
702   return mySelector.GetPointer(); 
703 }
704
705
706 /*!
707   Changes selector
708   \param theSelector - new selector
709 */
710 void
711 SVTK_RenderWindowInteractor
712 ::SetSelector(SVTK_Selector* theSelector)
713
714   if(mySelector.GetPointer())
715     mySelector->RemoveObserver(myEventCallbackCommand.GetPointer());
716
717   mySelector = theSelector; 
718
719   if(mySelector.GetPointer())
720     mySelector->AddObserver(vtkCommand::EndPickEvent, 
721                             myEventCallbackCommand.GetPointer(), 
722                             myPriority);
723 }
724
725 /*!
726   Main process VTK event method
727 */
728 void 
729 SVTK_RenderWindowInteractor
730 ::ProcessEvents(vtkObject* vtkNotUsed(theObject), 
731                 unsigned long theEvent,
732                 void* theClientData, 
733                 void* vtkNotUsed(theCallData))
734 {
735   SVTK_RenderWindowInteractor* self = reinterpret_cast<SVTK_RenderWindowInteractor*>(theClientData);
736
737   switch(theEvent){
738   case vtkCommand::EndPickEvent:
739     self->onEmitSelectionChanged();
740     break;
741   }
742 }
743
744 /*!
745   To change selection mode (just to simplify collobaration with SVTK_Selector)
746 */
747 void
748 SVTK_RenderWindowInteractor
749 ::SetSelectionMode(Selection_Mode theMode)
750 {
751   mySelector->SetSelectionMode(theMode);
752 }
753
754 /*!
755   To get current selection mode (just to simplify collobaration with SVTK_Selector)
756 */
757 Selection_Mode
758 SVTK_RenderWindowInteractor
759 ::SelectionMode() const
760 {
761   return mySelector->SelectionMode();
762 }
763
764
765 /*!
766   Emits signal selectionChanged()
767 */
768 void
769 SVTK_RenderWindowInteractor
770 ::onEmitSelectionChanged()
771 {
772   return emit selectionChanged();
773 }
774
775
776 /*!
777   Custom mouse move event handler
778 */
779 void
780 SVTK_RenderWindowInteractor
781 ::mouseMoveEvent( QMouseEvent* event ) 
782 {
783   QVTK_RenderWindowInteractor::mouseMoveEvent(event);
784
785   if(GENERATE_SUIT_EVENTS)
786     emit MouseMove( event );
787 }
788
789
790 /*!
791   Custom mouse press event handler
792 */
793 void
794 SVTK_RenderWindowInteractor
795 ::mousePressEvent( QMouseEvent* event ) 
796 {
797   QVTK_RenderWindowInteractor::mousePressEvent(event);
798
799   if(GENERATE_SUIT_EVENTS)
800     emit MouseButtonPressed( event );
801 }
802
803
804 /*!
805   Custom mouse release event handler
806 */
807 void
808 SVTK_RenderWindowInteractor
809 ::mouseReleaseEvent( QMouseEvent *event )
810 {
811   SVTK_InteractorStyle* style = 0;
812   bool aRightBtn = event->button() == Qt::RightButton;
813   bool isOperation = false;
814   bool isPolygonalSelection = false;
815   if( aRightBtn && GetInteractorStyle()) {
816     style = dynamic_cast<SVTK_InteractorStyle*>( GetInteractorStyle() );
817     if ( style )
818       isOperation = style->CurrentState() != VTK_INTERACTOR_STYLE_CAMERA_NONE;
819   }
820
821   QVTK_RenderWindowInteractor::mouseReleaseEvent(event);
822
823   if ( style ) {
824     isPolygonalSelection = style->GetPolygonState() == Finished;
825     style->SetPolygonState( Disable );
826   }
827
828   if ( aRightBtn && !isOperation && !isPolygonalSelection &&
829        !( event->modifiers() & Qt::ControlModifier ) &&
830        !( event->modifiers() & Qt::ShiftModifier ) ) {
831     QContextMenuEvent aEvent( QContextMenuEvent::Mouse,
832                               event->pos(), event->globalPos() );
833     emit contextMenuRequested( &aEvent );
834   }
835   if(GENERATE_SUIT_EVENTS)
836     emit MouseButtonReleased( event );
837 }
838
839
840 /*!
841   Custom mouse double click event handler
842 */
843 void
844 SVTK_RenderWindowInteractor
845 ::mouseDoubleClickEvent( QMouseEvent* event )
846 {
847   if( GetInteractorStyle() && event->button() == Qt::LeftButton ) {
848     SVTK_InteractorStyle* style = dynamic_cast<SVTK_InteractorStyle*>( GetInteractorStyle() );
849     if ( style )
850       style->OnMouseButtonDoubleClick();
851   }
852
853   QVTK_RenderWindowInteractor::mouseDoubleClickEvent(event);
854
855   if(GENERATE_SUIT_EVENTS)
856     emit MouseDoubleClicked( event );
857 }
858
859
860 /*!
861   Custom mouse wheel event handler
862 */
863 void
864 SVTK_RenderWindowInteractor
865 ::wheelEvent( QWheelEvent* event )
866 {
867   QVTK_RenderWindowInteractor::wheelEvent(event);
868
869   if(event->delta() > 0)
870     GetDevice()->InvokeEvent(SVTK::ZoomInEvent,NULL);
871   else
872     GetDevice()->InvokeEvent(SVTK::ZoomOutEvent,NULL);
873
874   if(GENERATE_SUIT_EVENTS)
875     emit WheelMoved( event );
876 }
877
878 /*!
879   Custom key press event handler
880 */
881 void
882 SVTK_RenderWindowInteractor
883 ::keyPressEvent( QKeyEvent* event ) 
884 {
885   QVTK_RenderWindowInteractor::keyPressEvent(event);
886
887   if(GENERATE_SUIT_EVENTS)
888     emit KeyPressed( event );
889 }
890
891 /*!
892   Custom key release event handler
893 */
894 void
895 SVTK_RenderWindowInteractor
896 ::keyReleaseEvent( QKeyEvent * event ) 
897 {
898   QVTK_RenderWindowInteractor::keyReleaseEvent(event);
899
900   if(GENERATE_SUIT_EVENTS)
901     emit KeyReleased( event );
902 }
903