Salome HOME
Merge remote branch 'origin/hydro/imps_2015'
[modules/gui.git] / src / SVTK / SVTK_RenderWindowInteractor.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 //  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
517 #else // QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
518
519 bool QVTK_RenderWindowInteractor
520 ::nativeEvent(const QByteArray& eventType, void* message, long* result)
521 {
522 #ifdef WIN32
523   // TODO: WIN32-related implementation
524 #else
525   if ( eventType == "xcb_generic_event_t" )
526   {
527     xcb_generic_event_t* ev = static_cast<xcb_generic_event_t *>(message);
528 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
529     // TODO: this code is never called
530     if ( SVTK_SpaceMouseX* aSpaceMouse = SVTK_SpaceMouseX::getInstance() )
531 #else
532     if ( SVTK_SpaceMouseXCB* aSpaceMouse = SVTK_SpaceMouseXCB::getInstance() )
533 #endif
534     {
535       if ( aSpaceMouse->isSpaceMouseOn() && ev->response_type == XCB_CLIENT_MESSAGE )
536       {
537         SVTK_SpaceMouse::MoveEvent anEvent;
538 #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
539         // TODO: this code is never called
540         int type = aSpaceMouse->translateEvent( QX11Info::display(), xEvent, &anEvent, 1.0, 1.0 );
541 #else
542         int type = aSpaceMouse->translateEvent( QX11Info::connection(), (xcb_client_message_event_t*)ev, &anEvent, 1.0, 1.0 );
543 #endif
544         switch ( type )
545         {
546         case SVTK_SpaceMouse::SpaceMouseMove:
547                 GetDevice()->InvokeEvent( SVTK::SpaceMouseMoveEvent, anEvent.data );
548                 break;
549         case SVTK_SpaceMouse::SpaceButtonPress:
550                 GetDevice()->InvokeEvent( SVTK::SpaceMouseButtonEvent, &anEvent.button );
551                 break;
552         case SVTK_SpaceMouse::SpaceButtonRelease:
553                 break;
554         }
555         return true; // stop handling the event
556       }
557     }
558   }
559 #endif
560  return QWidget::nativeEvent( eventType, message, result );
561 }
562 #endif
563 /*!
564   Constructor
565 */
566 SVTK_RenderWindowInteractor
567 ::SVTK_RenderWindowInteractor(QWidget* theParent, 
568                                const char* theName):
569   QVTK_RenderWindowInteractor(theParent,theName),
570   myEventCallbackCommand(vtkCallbackCommand::New())
571 {
572   myEventCallbackCommand->Delete();
573
574   myEventCallbackCommand->SetClientData(this); 
575   myPriority = 0.0;
576
577   myEventCallbackCommand->SetCallback(SVTK_RenderWindowInteractor::ProcessEvents);
578 }
579
580 /*!
581   To initialize properly the class
582 */
583 void
584 SVTK_RenderWindowInteractor
585 ::Initialize(vtkGenericRenderWindowInteractor* theDevice,
586              SVTK_Renderer* theRenderer,
587              SVTK_Selector* theSelector)
588 {
589   QVTK_RenderWindowInteractor::Initialize(theDevice);
590   SetRenderer(theRenderer);
591   SetSelector(theSelector);
592 }
593
594 /*!
595   Destructor
596 */
597 SVTK_RenderWindowInteractor
598 ::~SVTK_RenderWindowInteractor() 
599 {
600   // Sequence of the destruction call are fixed and should be changed.
601   // vtkRenderWindow instance should be destroyed after all vtkRenderer's
602   GetDevice()->SetInteractorStyle(NULL); 
603   while(!myInteractorStyles.empty()){
604     const PInteractorStyle& aStyle = myInteractorStyles.top();
605     aStyle->SetInteractor(NULL);
606     myInteractorStyles.pop();
607   }
608
609   SetRenderer(NULL);
610
611   GetDevice()->SetRenderWindow(NULL);
612 }
613
614 /*!
615   To get corresponding SVTK_Renderer instance
616 */
617 SVTK_Renderer* 
618 SVTK_RenderWindowInteractor
619 ::GetRenderer()
620 {
621   return myRenderer.GetPointer();
622 }
623
624 /*!
625   To get corresponding SVTK_Renderer device (just to simplify collobaration with SVTK_Renderer)
626 */
627 vtkRenderer* 
628 SVTK_RenderWindowInteractor
629 ::getRenderer()
630 {
631   return GetRenderer()->GetDevice();
632 }
633
634 /*!
635   Changes renderer
636   \param theRenderer - new renderer
637 */
638 void
639 SVTK_RenderWindowInteractor
640 ::SetRenderer(SVTK_Renderer* theRenderer)
641 {
642   if(theRenderer == myRenderer.GetPointer())
643     return;
644
645   if(GetRenderer())
646     myRenderWindow->RemoveRenderer(getRenderer());
647
648   myRenderer = theRenderer;
649
650   if(GetRenderer())
651     myRenderWindow->AddRenderer(getRenderer());
652 }
653
654
655 /*!
656   Changes interactor style
657   \param theStyle - new interactor style
658 */
659 void
660 SVTK_RenderWindowInteractor
661 ::InitInteractorStyle(vtkInteractorStyle* theStyle)
662 {
663   GetDevice()->SetInteractorStyle(theStyle); 
664 }
665
666 /*!
667   To change current interactor style by pushing the new one into the container
668 */
669 void
670 SVTK_RenderWindowInteractor
671 ::PushInteractorStyle(vtkInteractorStyle* theStyle)
672 {
673   myInteractorStyles.push(PInteractorStyle(theStyle));
674   InitInteractorStyle(theStyle);
675 }
676
677 /*!
678   To restore previous interactor style
679 */
680 void
681 SVTK_RenderWindowInteractor
682 ::PopInteractorStyle()
683 {
684   if(GetInteractorStyle())
685     myInteractorStyles.pop();
686   
687   if(GetInteractorStyle()) 
688     InitInteractorStyle(GetInteractorStyle());
689 }
690
691 /*!
692   To get current interactor style
693 */
694 vtkInteractorStyle* 
695 SVTK_RenderWindowInteractor
696 ::GetInteractorStyle()
697 {
698   return myInteractorStyles.empty() ? 0 : myInteractorStyles.top().GetPointer();
699 }
700
701
702 /*!
703   To get current selector
704 */
705 SVTK_Selector* 
706 SVTK_RenderWindowInteractor
707 ::GetSelector() 
708
709   return mySelector.GetPointer(); 
710 }
711
712
713 /*!
714   Changes selector
715   \param theSelector - new selector
716 */
717 void
718 SVTK_RenderWindowInteractor
719 ::SetSelector(SVTK_Selector* theSelector)
720
721   if(mySelector.GetPointer())
722     mySelector->RemoveObserver(myEventCallbackCommand.GetPointer());
723
724   mySelector = theSelector; 
725
726   if(mySelector.GetPointer())
727     mySelector->AddObserver(vtkCommand::EndPickEvent, 
728                             myEventCallbackCommand.GetPointer(), 
729                             myPriority);
730 }
731
732 /*!
733   Main process VTK event method
734 */
735 void 
736 SVTK_RenderWindowInteractor
737 ::ProcessEvents(vtkObject* vtkNotUsed(theObject), 
738                 unsigned long theEvent,
739                 void* theClientData, 
740                 void* vtkNotUsed(theCallData))
741 {
742   SVTK_RenderWindowInteractor* self = reinterpret_cast<SVTK_RenderWindowInteractor*>(theClientData);
743
744   switch(theEvent){
745   case vtkCommand::EndPickEvent:
746     self->onEmitSelectionChanged();
747     break;
748   }
749 }
750
751 /*!
752   To change selection mode (just to simplify collobaration with SVTK_Selector)
753 */
754 void
755 SVTK_RenderWindowInteractor
756 ::SetSelectionMode(Selection_Mode theMode)
757 {
758   mySelector->SetSelectionMode(theMode);
759 }
760
761 /*!
762   To get current selection mode (just to simplify collobaration with SVTK_Selector)
763 */
764 Selection_Mode
765 SVTK_RenderWindowInteractor
766 ::SelectionMode() const
767 {
768   return mySelector->SelectionMode();
769 }
770
771
772 /*!
773   Emits signal selectionChanged()
774 */
775 void
776 SVTK_RenderWindowInteractor
777 ::onEmitSelectionChanged()
778 {
779   return emit selectionChanged();
780 }
781
782
783 /*!
784   Custom mouse move event handler
785 */
786 void
787 SVTK_RenderWindowInteractor
788 ::mouseMoveEvent( QMouseEvent* event ) 
789 {
790   QVTK_RenderWindowInteractor::mouseMoveEvent(event);
791
792   if(GENERATE_SUIT_EVENTS)
793     emit MouseMove( event );
794 }
795
796
797 /*!
798   Custom mouse press event handler
799 */
800 void
801 SVTK_RenderWindowInteractor
802 ::mousePressEvent( QMouseEvent* event ) 
803 {
804   QVTK_RenderWindowInteractor::mousePressEvent(event);
805
806   if(GENERATE_SUIT_EVENTS)
807     emit MouseButtonPressed( event );
808 }
809
810
811 /*!
812   Custom mouse release event handler
813 */
814 void
815 SVTK_RenderWindowInteractor
816 ::mouseReleaseEvent( QMouseEvent *event )
817 {
818   SVTK_InteractorStyle* style = 0;
819   bool aRightBtn = event->button() == Qt::RightButton;
820   bool isOperation = false;
821   bool isPolygonalSelection = false;
822   if( aRightBtn && GetInteractorStyle()) {
823     style = dynamic_cast<SVTK_InteractorStyle*>( GetInteractorStyle() );
824     if ( style )
825       isOperation = style->CurrentState() != VTK_INTERACTOR_STYLE_CAMERA_NONE;
826   }
827
828   QVTK_RenderWindowInteractor::mouseReleaseEvent(event);
829
830   if ( style ) {
831     isPolygonalSelection = style->GetPolygonState() == Finished;
832     style->SetPolygonState( Disable );
833   }
834
835   if ( aRightBtn && !isOperation && !isPolygonalSelection &&
836        !( event->modifiers() & Qt::ControlModifier ) &&
837        !( event->modifiers() & Qt::ShiftModifier ) ) {
838     QContextMenuEvent aEvent( QContextMenuEvent::Mouse,
839                               event->pos(), event->globalPos() );
840     emit contextMenuRequested( &aEvent );
841   }
842   if(GENERATE_SUIT_EVENTS)
843     emit MouseButtonReleased( event );
844 }
845
846
847 /*!
848   Custom mouse double click event handler
849 */
850 void
851 SVTK_RenderWindowInteractor
852 ::mouseDoubleClickEvent( QMouseEvent* event )
853 {
854   if( GetInteractorStyle() && event->button() == Qt::LeftButton ) {
855     SVTK_InteractorStyle* style = dynamic_cast<SVTK_InteractorStyle*>( GetInteractorStyle() );
856     if ( style )
857       style->OnMouseButtonDoubleClick();
858   }
859
860   QVTK_RenderWindowInteractor::mouseDoubleClickEvent(event);
861
862   if(GENERATE_SUIT_EVENTS)
863     emit MouseDoubleClicked( event );
864 }
865
866
867 /*!
868   Custom mouse wheel event handler
869 */
870 void
871 SVTK_RenderWindowInteractor
872 ::wheelEvent( QWheelEvent* event )
873 {
874   QVTK_RenderWindowInteractor::wheelEvent(event);
875
876   if(event->delta() > 0)
877     GetDevice()->InvokeEvent(SVTK::ZoomInEvent,NULL);
878   else
879     GetDevice()->InvokeEvent(SVTK::ZoomOutEvent,NULL);
880
881   if(GENERATE_SUIT_EVENTS)
882     emit WheelMoved( event );
883 }
884
885 /*!
886   Custom key press event handler
887 */
888 void
889 SVTK_RenderWindowInteractor
890 ::keyPressEvent( QKeyEvent* event ) 
891 {
892   QVTK_RenderWindowInteractor::keyPressEvent(event);
893
894   if(GENERATE_SUIT_EVENTS)
895     emit KeyPressed( event );
896 }
897
898 /*!
899   Custom key release event handler
900 */
901 void
902 SVTK_RenderWindowInteractor
903 ::keyReleaseEvent( QKeyEvent * event ) 
904 {
905   QVTK_RenderWindowInteractor::keyReleaseEvent(event);
906
907   if(GENERATE_SUIT_EVENTS)
908     emit KeyReleased( event );
909 }
910