Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[modules/gui.git] / src / SVTK / SVTK_GenericRenderWindowInteractor.cxx
1 //  SALOME VTKViewer : build VTK viewer into Salome desktop
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : 
25 //  Author : 
26 //  Module : SALOME
27 //  $Header$
28
29 #include "SVTK_GenericRenderWindowInteractor.h"
30 #include "SVTK_Selector.h"
31
32 #include <vtkObjectFactory.h>
33 #include <vtkCommand.h>
34
35 #include <qtimer.h>
36
37 using namespace std;
38
39 vtkStandardNewMacro(QVTK_GenericRenderWindowInteractor);
40
41 /*!
42   Constructor
43 */
44 QVTK_GenericRenderWindowInteractor
45 ::QVTK_GenericRenderWindowInteractor()
46 {
47   myTimer = new QTimer( ) ;
48   connect(myTimer, SIGNAL(timeout()), this, SLOT(OnTimeOut())) ;
49 }
50
51 /*!
52   Destructor
53 */
54 QVTK_GenericRenderWindowInteractor
55 ::~QVTK_GenericRenderWindowInteractor()
56 {
57   delete myTimer;
58 }
59
60 /*!
61   The slot connects to QTimer::timeout signal to invoke vtkCommand::TimerEvent
62 */
63 void
64 QVTK_GenericRenderWindowInteractor
65 ::OnTimeOut() 
66 {
67   if( GetEnabled() ) {
68     this->InvokeEvent(vtkCommand::TimerEvent,NULL);
69   }
70 }
71
72 /*!
73   Starts the QTimer instance on defined microseconds
74 */
75 int
76 QVTK_GenericRenderWindowInteractor
77 ::CreateTimer(int vtkNotUsed(timertype)) 
78 {
79   //
80   // Start a one-shot timer for <DELAY> ms. 
81   //
82   static int DELAY = 1;
83   myTimer->start(DELAY,TRUE);
84   return 1;
85 }
86
87 /*!
88   Stops the QTimer instance
89 */
90 int
91 QVTK_GenericRenderWindowInteractor
92 ::DestroyTimer(void) 
93 {
94   //
95   // :TRICKY: Tue May  2 00:17:32 2000 Pagey
96   //
97   // QTimer will automatically expire after 10ms. So 
98   // we do not need to do anything here. In fact, we 
99   // should not even Stop() the QTimer here because doing 
100   // this will skip some of the processing that the TimerFunc()
101   // does and will result in undesirable effects. For 
102   // example, this will result in vtkLODActor to leave
103   // the models in low-res mode after the mouse stops
104   // moving. 
105   //
106   return 1;
107 }
108
109
110 vtkStandardNewMacro(SVTK_GenericRenderWindowInteractor);
111
112 /*!
113   Constructor
114 */
115 SVTK_GenericRenderWindowInteractor
116 ::SVTK_GenericRenderWindowInteractor():
117   myRenderWidget(NULL)
118 {
119 }
120
121 /*!
122   Destructor
123 */
124 SVTK_GenericRenderWindowInteractor
125 ::~SVTK_GenericRenderWindowInteractor()
126 {
127 }
128
129 /*!
130   To get access to SVTK_Selector
131 */
132 SVTK_Selector*
133 SVTK_GenericRenderWindowInteractor
134 ::GetSelector()
135 {
136   return mySelector.GetPointer();
137 }
138
139 /*!
140   To initialize mySelector field
141   \param theSelector - new selector
142 */
143 void
144 SVTK_GenericRenderWindowInteractor
145 ::SetSelector(SVTK_Selector* theSelector)
146 {
147   mySelector = theSelector;
148 }
149
150 /*!
151   To get access to QWidget, where vtkRenderWindow maps to.
152 */
153 QWidget*
154 SVTK_GenericRenderWindowInteractor
155 ::GetRenderWidget()
156 {
157   return myRenderWidget;
158 }
159
160 /*!
161   To initialize myRenderWidget field.
162 */
163 void
164 SVTK_GenericRenderWindowInteractor
165 ::SetRenderWidget(QWidget* theRenderWidget)
166 {
167   myRenderWidget = theRenderWidget;
168 }