author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Tue, 06 Jul 2010 15:10:48 +0300 | |
changeset 30 | 5dc02b23752f |
parent 18 | 2f34d5167611 |
child 33 | 3e2da88830cd |
permissions | -rw-r--r-- |
0 | 1 |
/**************************************************************************** |
2 |
** |
|
18
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
3 |
** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
0 | 4 |
** All rights reserved. |
5 |
** Contact: Nokia Corporation (qt-info@nokia.com) |
|
6 |
** |
|
7 |
** This file is part of the QtGui module of the Qt Toolkit. |
|
8 |
** |
|
9 |
** $QT_BEGIN_LICENSE:LGPL$ |
|
10 |
** No Commercial Usage |
|
11 |
** This file contains pre-release code and may not be distributed. |
|
12 |
** You may use this file in accordance with the terms and conditions |
|
13 |
** contained in the Technology Preview License Agreement accompanying |
|
14 |
** this package. |
|
15 |
** |
|
16 |
** GNU Lesser General Public License Usage |
|
17 |
** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 |
** General Public License version 2.1 as published by the Free Software |
|
19 |
** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 |
** packaging of this file. Please review the following information to |
|
21 |
** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 |
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 |
** |
|
24 |
** In addition, as a special exception, Nokia gives you certain additional |
|
25 |
** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 |
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 |
** |
|
28 |
** If you have questions regarding the use of this file, please contact |
|
29 |
** Nokia at qt-info@nokia.com. |
|
30 |
** |
|
31 |
** |
|
32 |
** |
|
33 |
** |
|
34 |
** |
|
35 |
** |
|
36 |
** |
|
37 |
** |
|
38 |
** $QT_END_LICENSE$ |
|
39 |
** |
|
40 |
****************************************************************************/ |
|
41 |
||
42 |
/**************************************************************************** |
|
43 |
** |
|
44 |
** Copyright (c) 2007-2008, Apple, Inc. |
|
45 |
** |
|
46 |
** All rights reserved. |
|
47 |
** |
|
48 |
** Redistribution and use in source and binary forms, with or without |
|
49 |
** modification, are permitted provided that the following conditions are met: |
|
50 |
** |
|
51 |
** * Redistributions of source code must retain the above copyright notice, |
|
52 |
** this list of conditions and the following disclaimer. |
|
53 |
** |
|
54 |
** * Redistributions in binary form must reproduce the above copyright notice, |
|
55 |
** this list of conditions and the following disclaimer in the documentation |
|
56 |
** and/or other materials provided with the distribution. |
|
57 |
** |
|
58 |
** * Neither the name of Apple, Inc. nor the names of its contributors |
|
59 |
** may be used to endorse or promote products derived from this software |
|
60 |
** without specific prior written permission. |
|
61 |
** |
|
62 |
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
63 |
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
64 |
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
65 |
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|
66 |
** CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
67 |
** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
68 |
** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
69 |
** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|
70 |
** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|
71 |
** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
72 |
** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
73 |
** |
|
74 |
****************************************************************************/ |
|
75 |
||
76 |
#include "qplatformdefs.h" |
|
77 |
#include "private/qt_mac_p.h" |
|
78 |
#include "qeventdispatcher_mac_p.h" |
|
79 |
#include "qapplication.h" |
|
80 |
#include "qevent.h" |
|
81 |
#include "qdialog.h" |
|
82 |
#include "qhash.h" |
|
83 |
#include "qsocketnotifier.h" |
|
84 |
#include "private/qwidget_p.h" |
|
85 |
#include "private/qthread_p.h" |
|
86 |
#include "private/qapplication_p.h" |
|
87 |
||
88 |
#include <private/qcocoaapplication_mac_p.h> |
|
89 |
#include "private/qt_cocoa_helpers_mac_p.h" |
|
90 |
||
91 |
#ifndef QT_NO_THREAD |
|
92 |
# include "qmutex.h" |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
93 |
#endif |
0 | 94 |
|
95 |
QT_BEGIN_NAMESPACE |
|
96 |
||
97 |
QT_USE_NAMESPACE |
|
98 |
||
99 |
/***************************************************************************** |
|
100 |
Externals |
|
101 |
*****************************************************************************/ |
|
102 |
extern void qt_event_request_timer(MacTimerInfo *); //qapplication_mac.cpp |
|
103 |
extern MacTimerInfo *qt_event_get_timer(EventRef); //qapplication_mac.cpp |
|
104 |
extern void qt_event_request_select(QEventDispatcherMac *); //qapplication_mac.cpp |
|
105 |
extern void qt_event_request_updates(); //qapplication_mac.cpp |
|
106 |
extern OSWindowRef qt_mac_window_for(const QWidget *); //qwidget_mac.cpp |
|
107 |
extern bool qt_is_gui_used; //qapplication.cpp |
|
108 |
extern bool qt_sendSpontaneousEvent(QObject*, QEvent*); // qapplication.cpp |
|
109 |
extern bool qt_mac_is_macsheet(const QWidget *); //qwidget_mac.cpp |
|
110 |
||
111 |
static inline CFRunLoopRef mainRunLoop() |
|
112 |
{ |
|
113 |
#ifndef QT_MAC_USE_COCOA |
|
114 |
return reinterpret_cast<CFRunLoopRef>(const_cast<void *>(GetCFRunLoopFromEventLoop(GetMainEventLoop()))); |
|
115 |
#else |
|
116 |
return CFRunLoopGetMain(); |
|
117 |
#endif |
|
118 |
} |
|
119 |
||
120 |
/***************************************************************************** |
|
121 |
Timers stuff |
|
122 |
*****************************************************************************/ |
|
123 |
||
124 |
/* timer call back */ |
|
125 |
void QEventDispatcherMacPrivate::activateTimer(CFRunLoopTimerRef, void *info) |
|
126 |
{ |
|
127 |
int timerID = |
|
128 |
#ifdef Q_OS_MAC64 |
|
129 |
qint64(info); |
|
130 |
#else |
|
131 |
int(info); |
|
132 |
#endif |
|
133 |
||
134 |
MacTimerInfo *tmr; |
|
135 |
tmr = macTimerHash.value(timerID); |
|
136 |
if (tmr == 0 || tmr->pending == true) |
|
137 |
return; // Can't send another timer event if it's pending. |
|
138 |
||
139 |
||
140 |
if (blockSendPostedEvents) { |
|
141 |
QCoreApplication::postEvent(tmr->obj, new QTimerEvent(tmr->id)); |
|
142 |
} else { |
|
143 |
tmr->pending = true; |
|
144 |
QTimerEvent e(tmr->id); |
|
145 |
qt_sendSpontaneousEvent(tmr->obj, &e); |
|
146 |
// Get the value again in case the timer gets unregistered during the sendEvent. |
|
147 |
tmr = macTimerHash.value(timerID); |
|
148 |
if (tmr != 0) |
|
149 |
tmr->pending = false; |
|
150 |
} |
|
151 |
||
152 |
} |
|
153 |
||
154 |
void QEventDispatcherMac::registerTimer(int timerId, int interval, QObject *obj) |
|
155 |
{ |
|
156 |
#ifndef QT_NO_DEBUG |
|
157 |
if (timerId < 1 || interval < 0 || !obj) { |
|
158 |
qWarning("QEventDispatcherMac::registerTimer: invalid arguments"); |
|
159 |
return; |
|
160 |
} else if (obj->thread() != thread() || thread() != QThread::currentThread()) { |
|
161 |
qWarning("QObject::startTimer: timers cannot be started from another thread"); |
|
162 |
return; |
|
163 |
} |
|
164 |
#endif |
|
165 |
||
166 |
MacTimerInfo *t = new MacTimerInfo(); |
|
167 |
t->id = timerId; |
|
168 |
t->interval = interval; |
|
169 |
t->obj = obj; |
|
170 |
t->runLoopTimer = 0; |
|
171 |
t->pending = false; |
|
172 |
||
173 |
CFAbsoluteTime fireDate = CFAbsoluteTimeGetCurrent(); |
|
174 |
CFTimeInterval cfinterval = qMax(CFTimeInterval(interval) / 1000, 0.0000001); |
|
175 |
fireDate += cfinterval; |
|
176 |
QEventDispatcherMacPrivate::macTimerHash.insert(timerId, t); |
|
177 |
CFRunLoopTimerContext info = { 0, (void *)timerId, 0, 0, 0 }; |
|
178 |
t->runLoopTimer = CFRunLoopTimerCreate(0, fireDate, cfinterval, 0, 0, |
|
179 |
QEventDispatcherMacPrivate::activateTimer, &info); |
|
180 |
if (t->runLoopTimer == 0) { |
|
181 |
qFatal("QEventDispatcherMac::registerTimer: Cannot create timer"); |
|
182 |
} |
|
183 |
CFRunLoopAddTimer(mainRunLoop(), t->runLoopTimer, kCFRunLoopCommonModes); |
|
184 |
} |
|
185 |
||
186 |
bool QEventDispatcherMac::unregisterTimer(int identifier) |
|
187 |
{ |
|
188 |
#ifndef QT_NO_DEBUG |
|
189 |
if (identifier < 1) { |
|
190 |
qWarning("QEventDispatcherMac::unregisterTimer: invalid argument"); |
|
191 |
return false; |
|
192 |
} else if (thread() != QThread::currentThread()) { |
|
193 |
qWarning("QObject::killTimer: timers cannot be stopped from another thread"); |
|
194 |
return false; |
|
195 |
} |
|
196 |
#endif |
|
197 |
if (identifier <= 0) |
|
198 |
return false; // not init'd or invalid timer |
|
199 |
||
200 |
MacTimerInfo *timerInfo = QEventDispatcherMacPrivate::macTimerHash.take(identifier); |
|
201 |
if (timerInfo == 0) |
|
202 |
return false; |
|
203 |
||
204 |
if (!QObjectPrivate::get(timerInfo->obj)->inThreadChangeEvent) |
|
205 |
QAbstractEventDispatcherPrivate::releaseTimerId(identifier); |
|
206 |
CFRunLoopTimerInvalidate(timerInfo->runLoopTimer); |
|
207 |
CFRelease(timerInfo->runLoopTimer); |
|
208 |
delete timerInfo; |
|
209 |
||
210 |
return true; |
|
211 |
} |
|
212 |
||
213 |
bool QEventDispatcherMac::unregisterTimers(QObject *obj) |
|
214 |
{ |
|
215 |
#ifndef QT_NO_DEBUG |
|
216 |
if (!obj) { |
|
217 |
qWarning("QEventDispatcherMac::unregisterTimers: invalid argument"); |
|
218 |
return false; |
|
219 |
} else if (obj->thread() != thread() || thread() != QThread::currentThread()) { |
|
220 |
qWarning("QObject::killTimers: timers cannot be stopped from another thread"); |
|
221 |
return false; |
|
222 |
} |
|
223 |
#endif |
|
224 |
||
225 |
MacTimerHash::iterator it = QEventDispatcherMacPrivate::macTimerHash.begin(); |
|
226 |
while (it != QEventDispatcherMacPrivate::macTimerHash.end()) { |
|
227 |
MacTimerInfo *timerInfo = it.value(); |
|
228 |
if (timerInfo->obj != obj) { |
|
229 |
++it; |
|
230 |
} else { |
|
231 |
if (!QObjectPrivate::get(timerInfo->obj)->inThreadChangeEvent) |
|
232 |
QAbstractEventDispatcherPrivate::releaseTimerId(timerInfo->id); |
|
233 |
CFRunLoopTimerInvalidate(timerInfo->runLoopTimer); |
|
234 |
CFRelease(timerInfo->runLoopTimer); |
|
235 |
delete timerInfo; |
|
236 |
it = QEventDispatcherMacPrivate::macTimerHash.erase(it); |
|
237 |
} |
|
238 |
} |
|
239 |
return true; |
|
240 |
} |
|
241 |
||
242 |
QList<QEventDispatcherMac::TimerInfo> |
|
243 |
QEventDispatcherMac::registeredTimers(QObject *object) const |
|
244 |
{ |
|
245 |
if (!object) { |
|
246 |
qWarning("QEventDispatcherMac:registeredTimers: invalid argument"); |
|
247 |
return QList<TimerInfo>(); |
|
248 |
} |
|
249 |
||
250 |
QList<TimerInfo> list; |
|
251 |
||
252 |
MacTimerHash::const_iterator it = QEventDispatcherMacPrivate::macTimerHash.constBegin(); |
|
253 |
while (it != QEventDispatcherMacPrivate::macTimerHash.constEnd()) { |
|
254 |
MacTimerInfo *t = it.value(); |
|
255 |
if (t->obj == object) |
|
256 |
list << TimerInfo(t->id, t->interval); |
|
257 |
++it; |
|
258 |
} |
|
259 |
return list; |
|
260 |
} |
|
261 |
||
262 |
/************************************************************************** |
|
263 |
Socket Notifiers |
|
264 |
*************************************************************************/ |
|
265 |
void qt_mac_socket_callback(CFSocketRef s, CFSocketCallBackType callbackType, CFDataRef, |
|
266 |
const void *, void *info) { |
|
267 |
QEventDispatcherMacPrivate *const eventDispatcher |
|
268 |
= static_cast<QEventDispatcherMacPrivate *>(info); |
|
269 |
int nativeSocket = CFSocketGetNative(s); |
|
270 |
MacSocketInfo *socketInfo = eventDispatcher->macSockets.value(nativeSocket); |
|
271 |
QEvent notifierEvent(QEvent::SockAct); |
|
272 |
||
273 |
// There is a race condition that happen where we disable the notifier and |
|
274 |
// the kernel still has a notification to pass on. We then get this |
|
275 |
// notification after we've successfully disabled the CFSocket, but our Qt |
|
276 |
// notifier is now gone. The upshot is we have to check the notifier |
|
277 |
// everytime. |
|
278 |
if (callbackType == kCFSocketReadCallBack) { |
|
279 |
if (socketInfo->readNotifier) |
|
280 |
QApplication::sendEvent(socketInfo->readNotifier, ¬ifierEvent); |
|
281 |
} else if (callbackType == kCFSocketWriteCallBack) { |
|
282 |
if (socketInfo->writeNotifier) |
|
283 |
QApplication::sendEvent(socketInfo->writeNotifier, ¬ifierEvent); |
|
284 |
} |
|
285 |
} |
|
286 |
||
287 |
/* |
|
288 |
Adds a loop source for the given socket to the current run loop. |
|
289 |
*/ |
|
290 |
CFRunLoopSourceRef qt_mac_add_socket_to_runloop(const CFSocketRef socket) |
|
291 |
{ |
|
292 |
CFRunLoopSourceRef loopSource = CFSocketCreateRunLoopSource(kCFAllocatorDefault, socket, 0); |
|
293 |
if (!loopSource) |
|
294 |
return 0; |
|
295 |
||
296 |
CFRunLoopAddSource(mainRunLoop(), loopSource, kCFRunLoopCommonModes); |
|
297 |
return loopSource; |
|
298 |
} |
|
299 |
||
300 |
/* |
|
301 |
Removes the loop source for the given socket from the current run loop. |
|
302 |
*/ |
|
303 |
void qt_mac_remove_socket_from_runloop(const CFSocketRef socket, CFRunLoopSourceRef runloop) |
|
304 |
{ |
|
305 |
Q_ASSERT(runloop); |
|
306 |
CFRunLoopRemoveSource(mainRunLoop(), runloop, kCFRunLoopCommonModes); |
|
307 |
CFSocketDisableCallBacks(socket, kCFSocketReadCallBack); |
|
308 |
CFSocketDisableCallBacks(socket, kCFSocketWriteCallBack); |
|
309 |
CFRunLoopSourceInvalidate(runloop); |
|
310 |
} |
|
311 |
||
312 |
/* |
|
313 |
Register a QSocketNotifier with the mac event system by creating a CFSocket with |
|
314 |
with a read/write callback. |
|
315 |
||
316 |
Qt has separate socket notifiers for reading and writing, but on the mac there is |
|
317 |
a limitation of one CFSocket object for each native socket. |
|
318 |
*/ |
|
319 |
void QEventDispatcherMac::registerSocketNotifier(QSocketNotifier *notifier) |
|
320 |
{ |
|
321 |
Q_ASSERT(notifier); |
|
322 |
int nativeSocket = notifier->socket(); |
|
323 |
int type = notifier->type(); |
|
324 |
#ifndef QT_NO_DEBUG |
|
325 |
if (nativeSocket < 0 || nativeSocket > FD_SETSIZE) { |
|
326 |
qWarning("QSocketNotifier: Internal error"); |
|
327 |
return; |
|
328 |
} else if (notifier->thread() != thread() |
|
329 |
|| thread() != QThread::currentThread()) { |
|
330 |
qWarning("QSocketNotifier: socket notifiers cannot be enabled from another thread"); |
|
331 |
return; |
|
332 |
} |
|
333 |
#endif |
|
334 |
||
335 |
Q_D(QEventDispatcherMac); |
|
336 |
||
337 |
if (type == QSocketNotifier::Exception) { |
|
338 |
qWarning("QSocketNotifier::Exception is not supported on Mac OS X"); |
|
339 |
return; |
|
340 |
} |
|
341 |
||
342 |
// Check if we have a CFSocket for the native socket, create one if not. |
|
343 |
MacSocketInfo *socketInfo = d->macSockets.value(nativeSocket); |
|
344 |
if (!socketInfo) { |
|
345 |
socketInfo = new MacSocketInfo(); |
|
346 |
||
347 |
// Create CFSocket, specify that we want both read and write callbacks (the callbacks |
|
348 |
// are enabled/disabled later on). |
|
349 |
const int callbackTypes = kCFSocketReadCallBack | kCFSocketWriteCallBack; |
|
350 |
CFSocketContext context = {0, d, 0, 0, 0}; |
|
351 |
socketInfo->socket = CFSocketCreateWithNative(kCFAllocatorDefault, nativeSocket, callbackTypes, qt_mac_socket_callback, &context); |
|
352 |
if (CFSocketIsValid(socketInfo->socket) == false) { |
|
353 |
qWarning("QEventDispatcherMac::registerSocketNotifier: Failed to create CFSocket"); |
|
354 |
return; |
|
355 |
} |
|
356 |
||
357 |
CFOptionFlags flags = CFSocketGetSocketFlags(socketInfo->socket); |
|
358 |
flags |= kCFSocketAutomaticallyReenableWriteCallBack; //QSocketNotifier stays enabled after a write |
|
359 |
flags &= ~kCFSocketCloseOnInvalidate; //QSocketNotifier doesn't close the socket upon destruction/invalidation |
|
360 |
CFSocketSetSocketFlags(socketInfo->socket, flags); |
|
361 |
||
362 |
// Add CFSocket to runloop. |
|
363 |
if(!(socketInfo->runloop = qt_mac_add_socket_to_runloop(socketInfo->socket))) { |
|
364 |
qWarning("QEventDispatcherMac::registerSocketNotifier: Failed to add CFSocket to runloop"); |
|
365 |
CFSocketInvalidate(socketInfo->socket); |
|
366 |
CFRelease(socketInfo->socket); |
|
367 |
return; |
|
368 |
} |
|
369 |
||
370 |
// Disable both callback types by default. This must be done after |
|
371 |
// we add the CFSocket to the runloop, or else these calls will have |
|
372 |
// no effect. |
|
373 |
CFSocketDisableCallBacks(socketInfo->socket, kCFSocketReadCallBack); |
|
374 |
CFSocketDisableCallBacks(socketInfo->socket, kCFSocketWriteCallBack); |
|
375 |
||
376 |
d->macSockets.insert(nativeSocket, socketInfo); |
|
377 |
} |
|
378 |
||
379 |
// Increment read/write counters and select enable callbacks if necessary. |
|
380 |
if (type == QSocketNotifier::Read) { |
|
381 |
Q_ASSERT(socketInfo->readNotifier == 0); |
|
382 |
socketInfo->readNotifier = notifier; |
|
383 |
CFSocketEnableCallBacks(socketInfo->socket, kCFSocketReadCallBack); |
|
384 |
} else if (type == QSocketNotifier::Write) { |
|
385 |
Q_ASSERT(socketInfo->writeNotifier == 0); |
|
386 |
socketInfo->writeNotifier = notifier; |
|
387 |
CFSocketEnableCallBacks(socketInfo->socket, kCFSocketWriteCallBack); |
|
388 |
} |
|
389 |
} |
|
390 |
||
391 |
/* |
|
392 |
Unregister QSocketNotifer. The CFSocket correspoding to this notifier is |
|
393 |
removed from the runloop of this is the last notifier that users |
|
394 |
that CFSocket. |
|
395 |
*/ |
|
396 |
void QEventDispatcherMac::unregisterSocketNotifier(QSocketNotifier *notifier) |
|
397 |
{ |
|
398 |
Q_ASSERT(notifier); |
|
399 |
int nativeSocket = notifier->socket(); |
|
400 |
int type = notifier->type(); |
|
401 |
#ifndef QT_NO_DEBUG |
|
402 |
if (nativeSocket < 0 || nativeSocket > FD_SETSIZE) { |
|
403 |
qWarning("QSocketNotifier: Internal error"); |
|
404 |
return; |
|
405 |
} else if (notifier->thread() != thread() || thread() != QThread::currentThread()) { |
|
406 |
qWarning("QSocketNotifier: socket notifiers cannot be disabled from another thread"); |
|
407 |
return; |
|
408 |
} |
|
409 |
#endif |
|
410 |
||
411 |
Q_D(QEventDispatcherMac); |
|
412 |
||
413 |
if (type == QSocketNotifier::Exception) { |
|
414 |
qWarning("QSocketNotifier::Exception is not supported on Mac OS X"); |
|
415 |
return; |
|
416 |
} |
|
417 |
MacSocketInfo *socketInfo = d->macSockets.value(nativeSocket); |
|
418 |
if (!socketInfo) { |
|
419 |
qWarning("QEventDispatcherMac::unregisterSocketNotifier: Tried to unregister a not registered notifier"); |
|
420 |
return; |
|
421 |
} |
|
422 |
||
423 |
// Decrement read/write counters and disable callbacks if necessary. |
|
424 |
if (type == QSocketNotifier::Read) { |
|
425 |
Q_ASSERT(notifier == socketInfo->readNotifier); |
|
426 |
socketInfo->readNotifier = 0; |
|
427 |
CFSocketDisableCallBacks(socketInfo->socket, kCFSocketReadCallBack); |
|
428 |
} else if (type == QSocketNotifier::Write) { |
|
429 |
Q_ASSERT(notifier == socketInfo->writeNotifier); |
|
430 |
socketInfo->writeNotifier = 0; |
|
431 |
CFSocketDisableCallBacks(socketInfo->socket, kCFSocketWriteCallBack); |
|
432 |
} |
|
433 |
||
434 |
// Remove CFSocket from runloop if this was the last QSocketNotifier. |
|
435 |
if (socketInfo->readNotifier == 0 && socketInfo->writeNotifier == 0) { |
|
436 |
if (CFSocketIsValid(socketInfo->socket)) |
|
437 |
qt_mac_remove_socket_from_runloop(socketInfo->socket, socketInfo->runloop); |
|
438 |
CFRunLoopSourceInvalidate(socketInfo->runloop); |
|
439 |
CFRelease(socketInfo->runloop); |
|
440 |
CFSocketInvalidate(socketInfo->socket); |
|
441 |
CFRelease(socketInfo->socket); |
|
442 |
delete socketInfo; |
|
443 |
d->macSockets.remove(nativeSocket); |
|
444 |
} |
|
445 |
} |
|
446 |
||
447 |
bool QEventDispatcherMac::hasPendingEvents() |
|
448 |
{ |
|
449 |
extern uint qGlobalPostedEventsCount(); |
|
450 |
return qGlobalPostedEventsCount() || (qt_is_gui_used && GetNumEventsInQueue(GetMainEventQueue())); |
|
451 |
} |
|
452 |
||
453 |
||
454 |
static bool qt_mac_send_event(QEventLoop::ProcessEventsFlags, OSEventRef event, OSWindowRef pt) |
|
455 |
{ |
|
456 |
#ifndef QT_MAC_USE_COCOA |
|
457 |
if(pt && SendEventToWindow(event, pt) != eventNotHandledErr) |
|
458 |
return true; |
|
459 |
return !SendEventToEventTarget(event, GetEventDispatcherTarget()); |
|
460 |
#else // QT_MAC_USE_COCOA |
|
461 |
if (pt) |
|
462 |
[pt sendEvent:event]; |
|
463 |
else |
|
464 |
[NSApp sendEvent:event]; |
|
465 |
return true; |
|
466 |
#endif |
|
467 |
} |
|
468 |
||
469 |
#ifdef QT_MAC_USE_COCOA |
|
470 |
static bool IsMouseOrKeyEvent( NSEvent* event ) |
|
471 |
{ |
|
472 |
bool result = false; |
|
473 |
||
474 |
switch( [event type] ) |
|
475 |
{ |
|
476 |
case NSLeftMouseDown: |
|
477 |
case NSLeftMouseUp: |
|
478 |
case NSRightMouseDown: |
|
479 |
case NSRightMouseUp: |
|
480 |
case NSMouseMoved: // ?? |
|
481 |
case NSLeftMouseDragged: |
|
482 |
case NSRightMouseDragged: |
|
483 |
case NSMouseEntered: |
|
484 |
case NSMouseExited: |
|
485 |
case NSKeyDown: |
|
486 |
case NSKeyUp: |
|
487 |
case NSFlagsChanged: // key modifiers changed? |
|
488 |
case NSCursorUpdate: // ?? |
|
489 |
case NSScrollWheel: |
|
490 |
case NSTabletPoint: |
|
491 |
case NSTabletProximity: |
|
492 |
case NSOtherMouseDown: |
|
493 |
case NSOtherMouseUp: |
|
494 |
case NSOtherMouseDragged: |
|
18
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
495 |
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6 |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
496 |
case NSEventTypeGesture: // touch events |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
497 |
case NSEventTypeMagnify: |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
498 |
case NSEventTypeSwipe: |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
499 |
case NSEventTypeRotate: |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
500 |
case NSEventTypeBeginGesture: |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
501 |
case NSEventTypeEndGesture: |
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
502 |
#endif |
0 | 503 |
result = true; |
504 |
break; |
|
505 |
||
506 |
default: |
|
507 |
break; |
|
508 |
} |
|
509 |
return result; |
|
510 |
} |
|
511 |
#endif |
|
512 |
||
513 |
static inline void qt_mac_waitForMoreEvents() |
|
514 |
{ |
|
515 |
#ifndef QT_MAC_USE_COCOA |
|
516 |
while (CFRunLoopRunInMode(kCFRunLoopDefaultMode, 1.0e20, true) == kCFRunLoopRunTimedOut) ; |
|
517 |
#else |
|
518 |
// If no event exist in the cocoa event que, wait |
|
519 |
// (and free up cpu time) until at least one event occur. |
|
520 |
// This implementation is a bit on the edge, but seems to |
|
521 |
// work fine: |
|
522 |
NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask |
|
523 |
untilDate:[NSDate distantFuture] |
|
524 |
inMode:NSDefaultRunLoopMode |
|
525 |
dequeue:YES]; |
|
526 |
if (event) |
|
527 |
[NSApp postEvent:event atStart:YES]; |
|
528 |
#endif |
|
529 |
} |
|
530 |
||
531 |
#ifdef QT_MAC_USE_COCOA |
|
532 |
static inline void qt_mac_waitForMoreModalSessionEvents() |
|
533 |
{ |
|
534 |
// If no event exist in the cocoa event que, wait |
|
535 |
// (and free up cpu time) until at least one event occur. |
|
536 |
// This implementation is a bit on the edge, but seems to |
|
537 |
// work fine: |
|
538 |
NSEvent* event = [NSApp nextEventMatchingMask:NSAnyEventMask |
|
539 |
untilDate:[NSDate distantFuture] |
|
540 |
inMode:NSModalPanelRunLoopMode |
|
541 |
dequeue:YES]; |
|
542 |
if (event) |
|
543 |
[NSApp postEvent:event atStart:YES]; |
|
544 |
} |
|
545 |
#endif |
|
546 |
||
547 |
bool QEventDispatcherMac::processEvents(QEventLoop::ProcessEventsFlags flags) |
|
548 |
{ |
|
549 |
Q_D(QEventDispatcherMac); |
|
550 |
d->interrupt = false; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
551 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
552 |
#ifdef QT_MAC_USE_COCOA |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
553 |
bool interruptLater = false; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
554 |
QtMacInterruptDispatcherHelp::cancelInterruptLater(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
555 |
#endif |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
556 |
|
0 | 557 |
// In case we end up recursing while we now process events, make sure |
558 |
// that we send remaining posted Qt events before this call returns: |
|
559 |
wakeUp(); |
|
560 |
emit awake(); |
|
561 |
||
562 |
bool retVal = false; |
|
563 |
forever { |
|
564 |
if (d->interrupt) |
|
565 |
break; |
|
566 |
||
567 |
#ifdef QT_MAC_USE_COCOA |
|
568 |
QMacCocoaAutoReleasePool pool; |
|
569 |
NSEvent* event = 0; |
|
570 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
571 |
// First, send all previously excluded input events, if any: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
572 |
if (!(flags & QEventLoop::ExcludeUserInputEvents)) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
573 |
while (!d->queuedUserInputEvents.isEmpty()) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
574 |
event = static_cast<NSEvent *>(d->queuedUserInputEvents.takeFirst()); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
575 |
if (!filterEvent(event)) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
576 |
qt_mac_send_event(flags, event, 0); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
577 |
retVal = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
578 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
579 |
[event release]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
580 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
581 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
582 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
583 |
// If Qt is used as a plugin, or as an extension in a native cocoa |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
584 |
// application, we should not run or stop NSApplication; This will be |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
585 |
// done from the application itself. And if processEvents is called |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
586 |
// manually (rather than from a QEventLoop), we cannot enter a tight |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
587 |
// loop and block this call, but instead we need to return after one flush: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
588 |
const bool canExec_3rdParty = d->nsAppRunCalledByQt || ![NSApp isRunning]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
589 |
const bool canExec_Qt = flags & QEventLoop::DialogExec || flags & QEventLoop::EventLoopExec; |
0 | 590 |
|
591 |
if (canExec_Qt && canExec_3rdParty) { |
|
592 |
// We can use exec-mode, meaning that we can stay in a tight loop until |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
593 |
// interrupted. This is mostly an optimization, but it allow us to use |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
594 |
// [NSApp run], which is the normal code path for cocoa applications. |
0 | 595 |
if (NSModalSession session = d->currentModalSession()) { |
596 |
QBoolBlocker execGuard(d->currentExecIsNSAppRun, false); |
|
18
2f34d5167611
Revision: 201011
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
3
diff
changeset
|
597 |
while ([NSApp runModalSession:session] == NSRunContinuesResponse && !d->interrupt) |
0 | 598 |
qt_mac_waitForMoreModalSessionEvents(); |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
599 |
|
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
600 |
if (!d->interrupt && session == d->currentModalSessionCached) { |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
601 |
// Someone called [NSApp stopModal:] from outside the event |
3
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
602 |
// dispatcher (e.g to stop a native dialog). But that call wrongly stopped |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
603 |
// 'session' as well. As a result, we need to restart all internal sessions: |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
604 |
d->temporarilyStopAllModalSessions(); |
41300fa6a67c
Revision: 201003
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
0
diff
changeset
|
605 |
} |
0 | 606 |
} else { |
607 |
d->nsAppRunCalledByQt = true; |
|
608 |
QBoolBlocker execGuard(d->currentExecIsNSAppRun, true); |
|
609 |
[NSApp run]; |
|
610 |
} |
|
611 |
retVal = true; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
612 |
} else { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
613 |
// We cannot block the thread (and run in a tight loop). |
0 | 614 |
// Instead we will process all current pending events and return. |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
615 |
d->ensureNSAppInitialized(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
616 |
if (NSModalSession session = d->currentModalSession()) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
617 |
if (flags & QEventLoop::WaitForMoreEvents) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
618 |
qt_mac_waitForMoreModalSessionEvents(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
619 |
NSInteger status = [NSApp runModalSession:session]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
620 |
if (status != NSRunContinuesResponse && session == d->currentModalSessionCached) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
621 |
// INVARIANT: Someone called [NSApp stopModal:] from outside the event |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
622 |
// dispatcher (e.g to stop a native dialog). But that call wrongly stopped |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
623 |
// 'session' as well. As a result, we need to restart all internal sessions: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
624 |
d->temporarilyStopAllModalSessions(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
625 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
626 |
retVal = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
627 |
} else do { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
628 |
event = [NSApp nextEventMatchingMask:NSAnyEventMask |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
629 |
untilDate:nil |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
630 |
inMode:NSDefaultRunLoopMode |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
631 |
dequeue: YES]; |
0 | 632 |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
633 |
if (event) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
634 |
if (flags & QEventLoop::ExcludeUserInputEvents) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
635 |
if (IsMouseOrKeyEvent(event)) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
636 |
[event retain]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
637 |
d->queuedUserInputEvents.append(event); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
638 |
continue; |
0 | 639 |
} |
640 |
} |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
641 |
if (!filterEvent(event) && qt_mac_send_event(flags, event, 0)) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
642 |
retVal = true; |
0 | 643 |
} |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
644 |
} while (!d->interrupt && event != nil); |
0 | 645 |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
646 |
// Since the window that holds modality might have changed while processing |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
647 |
// events, we we need to interrupt when we return back the previous process |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
648 |
// event recursion to ensure that we spin the correct modal session. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
649 |
// We do the interruptLater at the end of the function to ensure that we don't |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
650 |
// disturb the 'wait for more events' below (as deleteLater will post an event): |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
651 |
interruptLater = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
652 |
} |
0 | 653 |
#else |
654 |
do { |
|
655 |
EventRef event; |
|
656 |
if (!(flags & QEventLoop::ExcludeUserInputEvents) |
|
657 |
&& !d->queuedUserInputEvents.isEmpty()) { |
|
658 |
// process a pending user input event |
|
659 |
event = static_cast<EventRef>(d->queuedUserInputEvents.takeFirst()); |
|
660 |
} else { |
|
661 |
OSStatus err = ReceiveNextEvent(0,0, kEventDurationNoWait, true, &event); |
|
662 |
if(err != noErr) |
|
663 |
continue; |
|
664 |
// else |
|
665 |
if (flags & QEventLoop::ExcludeUserInputEvents) { |
|
666 |
UInt32 ekind = GetEventKind(event), |
|
667 |
eclass = GetEventClass(event); |
|
668 |
switch(eclass) { |
|
669 |
case kEventClassQt: |
|
670 |
if(ekind != kEventQtRequestContext) |
|
671 |
break; |
|
672 |
// fall through |
|
673 |
case kEventClassMouse: |
|
674 |
case kEventClassKeyboard: |
|
675 |
d->queuedUserInputEvents.append(event); |
|
676 |
continue; |
|
677 |
} |
|
678 |
} |
|
679 |
} |
|
680 |
||
681 |
if (!filterEvent(&event) && qt_mac_send_event(flags, event, 0)) |
|
682 |
retVal = true; |
|
683 |
ReleaseEvent(event); |
|
684 |
} while(!d->interrupt && GetNumEventsInQueue(GetMainEventQueue()) > 0); |
|
685 |
||
686 |
#endif |
|
687 |
||
688 |
bool canWait = (d->threadData->canWait |
|
689 |
&& !retVal |
|
690 |
&& !d->interrupt |
|
691 |
&& (flags & QEventLoop::WaitForMoreEvents)); |
|
692 |
if (canWait) { |
|
693 |
// INVARIANT: We haven't processed any events yet. And we're told |
|
694 |
// to stay inside this function until at least one event is processed. |
|
695 |
qt_mac_waitForMoreEvents(); |
|
696 |
flags &= ~QEventLoop::WaitForMoreEvents; |
|
697 |
} else { |
|
698 |
// Done with event processing for now. |
|
699 |
// Leave the function: |
|
700 |
break; |
|
701 |
} |
|
702 |
} |
|
703 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
704 |
// If we're interrupted, we need to interrupt the _current_ |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
705 |
// recursion as well to check if it is still supposed to be |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
706 |
// executing. This way we wind down the stack until we land |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
707 |
// on a recursion that again calls processEvents (typically |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
708 |
// from QEventLoop), and set interrupt to false: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
709 |
if (d->interrupt) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
710 |
interrupt(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
711 |
|
0 | 712 |
#ifdef QT_MAC_USE_COCOA |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
713 |
if (interruptLater) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
714 |
QtMacInterruptDispatcherHelp::interruptLater(); |
0 | 715 |
#endif |
716 |
||
717 |
return retVal; |
|
718 |
} |
|
719 |
||
720 |
void QEventDispatcherMac::wakeUp() |
|
721 |
{ |
|
722 |
Q_D(QEventDispatcherMac); |
|
723 |
d->serialNumber.ref(); |
|
724 |
CFRunLoopSourceSignal(d->postedEventsSource); |
|
725 |
CFRunLoopWakeUp(mainRunLoop()); |
|
726 |
} |
|
727 |
||
728 |
void QEventDispatcherMac::flush() |
|
729 |
{ |
|
730 |
if(qApp) { |
|
731 |
QWidgetList tlws = QApplication::topLevelWidgets(); |
|
732 |
for(int i = 0; i < tlws.size(); i++) { |
|
733 |
QWidget *tlw = tlws.at(i); |
|
734 |
if(tlw->isVisible()) |
|
735 |
macWindowFlush(qt_mac_window_for(tlw)); |
|
736 |
} |
|
737 |
} |
|
738 |
} |
|
739 |
||
740 |
/***************************************************************************** |
|
741 |
QEventDispatcherMac Implementation |
|
742 |
*****************************************************************************/ |
|
743 |
MacTimerHash QEventDispatcherMacPrivate::macTimerHash; |
|
744 |
bool QEventDispatcherMacPrivate::blockSendPostedEvents = false; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
745 |
bool QEventDispatcherMacPrivate::interrupt = false; |
0 | 746 |
|
747 |
#ifdef QT_MAC_USE_COCOA |
|
748 |
QStack<QCocoaModalSessionInfo> QEventDispatcherMacPrivate::cocoaModalSessionStack; |
|
749 |
bool QEventDispatcherMacPrivate::currentExecIsNSAppRun = false; |
|
750 |
bool QEventDispatcherMacPrivate::nsAppRunCalledByQt = false; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
751 |
bool QEventDispatcherMacPrivate::cleanupModalSessionsNeeded = false; |
0 | 752 |
NSModalSession QEventDispatcherMacPrivate::currentModalSessionCached = 0; |
753 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
754 |
void QEventDispatcherMacPrivate::ensureNSAppInitialized() |
0 | 755 |
{ |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
756 |
// Some elements in Cocoa require NSApplication to be running before |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
757 |
// they get fully initialized, in particular the menu bar. This |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
758 |
// function is intended for cases where a dialog is told to execute before |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
759 |
// QApplication::exec is called, or the application spins the events loop |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
760 |
// manually rather than calling QApplication:exec. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
761 |
// The function makes sure that NSApplication starts running, but stops |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
762 |
// it again as soon as the send posted events callback is called. That way |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
763 |
// we let Cocoa finish the initialization it seems to need. We'll only |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
764 |
// apply this trick at most once for any application, and we avoid doing it |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
765 |
// for the common case where main just starts QApplication::exec. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
766 |
if (nsAppRunCalledByQt || [NSApp isRunning]) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
767 |
return; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
768 |
nsAppRunCalledByQt = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
769 |
QBoolBlocker block1(interrupt, true); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
770 |
QBoolBlocker block2(currentExecIsNSAppRun, true); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
771 |
[NSApp run]; |
0 | 772 |
} |
773 |
||
774 |
void QEventDispatcherMacPrivate::temporarilyStopAllModalSessions() |
|
775 |
{ |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
776 |
// Flush, and Stop, all created modal session, and as |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
777 |
// such, make them pending again. The next call to |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
778 |
// currentModalSession will recreate them again. The |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
779 |
// reason to stop all session like this is that otherwise |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
780 |
// a call [NSApp stop] would not stop NSApp, but rather |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
781 |
// the current modal session. So if we need to stop NSApp |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
782 |
// we need to stop all the modal session first. To avoid changing |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
783 |
// the stacking order of the windows while doing so, we put |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
784 |
// up a block that is used in QCocoaWindow and QCocoaPanel: |
0 | 785 |
int stackSize = cocoaModalSessionStack.size(); |
786 |
for (int i=stackSize-1; i>=0; --i) { |
|
787 |
QCocoaModalSessionInfo &info = cocoaModalSessionStack[i]; |
|
788 |
if (info.session) { |
|
789 |
[NSApp endModalSession:info.session]; |
|
790 |
info.session = 0; |
|
791 |
} |
|
792 |
} |
|
793 |
currentModalSessionCached = 0; |
|
794 |
} |
|
795 |
||
796 |
NSModalSession QEventDispatcherMacPrivate::currentModalSession() |
|
797 |
{ |
|
798 |
// If we have one or more modal windows, this function will create |
|
799 |
// a session for each of those, and return the one for the top. |
|
800 |
if (currentModalSessionCached) |
|
801 |
return currentModalSessionCached; |
|
802 |
||
803 |
if (cocoaModalSessionStack.isEmpty()) |
|
804 |
return 0; |
|
805 |
||
806 |
int sessionCount = cocoaModalSessionStack.size(); |
|
807 |
for (int i=0; i<sessionCount; ++i) { |
|
808 |
QCocoaModalSessionInfo &info = cocoaModalSessionStack[i]; |
|
809 |
if (!info.widget) |
|
810 |
continue; |
|
811 |
if (info.widget->testAttribute(Qt::WA_DontShowOnScreen)) |
|
812 |
continue; |
|
813 |
if (!info.session) { |
|
814 |
QMacCocoaAutoReleasePool pool; |
|
815 |
NSWindow *window = qt_mac_window_for(info.widget); |
|
816 |
if (!window) |
|
817 |
continue; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
818 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
819 |
ensureNSAppInitialized(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
820 |
QBoolBlocker block1(blockSendPostedEvents, true); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
821 |
info.nswindow = window; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
822 |
[(NSWindow*) info.nswindow retain]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
823 |
// When creating a modal session cocoa will rearrange the windows. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
824 |
// In order to avoid windows to be put behind another we need to |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
825 |
// keep the window level. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
826 |
int level = [window level]; |
0 | 827 |
info.session = [NSApp beginModalSessionForWindow:window]; |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
828 |
[window setLevel:level]; |
0 | 829 |
} |
830 |
currentModalSessionCached = info.session; |
|
831 |
} |
|
832 |
return currentModalSessionCached; |
|
833 |
} |
|
834 |
||
835 |
static void setChildrenWorksWhenModal(QWidget *widget, bool worksWhenModal) |
|
836 |
{ |
|
837 |
// For NSPanels (but not NSWindows, sadly), we can set the flag |
|
838 |
// worksWhenModal, so that they are active even when they are not modal. |
|
839 |
QList<QDialog *> dialogs = widget->findChildren<QDialog *>(); |
|
840 |
for (int i=0; i<dialogs.size(); ++i){ |
|
841 |
NSWindow *window = qt_mac_window_for(dialogs[i]); |
|
842 |
if (window && [window isKindOfClass:[NSPanel class]]) { |
|
843 |
[static_cast<NSPanel *>(window) setWorksWhenModal:worksWhenModal]; |
|
844 |
if (worksWhenModal && dialogs[i]->isVisible()){ |
|
845 |
[window orderFront:window]; |
|
846 |
} |
|
847 |
} |
|
848 |
} |
|
849 |
} |
|
850 |
||
851 |
void QEventDispatcherMacPrivate::updateChildrenWorksWhenModal() |
|
852 |
{ |
|
853 |
// Make the dialog children of the widget |
|
854 |
// active. And make the dialog children of |
|
855 |
// the previous modal dialog unactive again: |
|
856 |
int size = cocoaModalSessionStack.size(); |
|
857 |
if (size > 0){ |
|
858 |
if (QWidget *prevModal = cocoaModalSessionStack[size-1].widget) |
|
859 |
setChildrenWorksWhenModal(prevModal, true); |
|
860 |
if (size > 1){ |
|
861 |
if (QWidget *prevModal = cocoaModalSessionStack[size-2].widget) |
|
862 |
setChildrenWorksWhenModal(prevModal, false); |
|
863 |
} |
|
864 |
} |
|
865 |
} |
|
866 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
867 |
void QEventDispatcherMacPrivate::cleanupModalSessions() |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
868 |
{ |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
869 |
// Go through the list of modal sessions, and end those |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
870 |
// that no longer has a widget assosiated; no widget means |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
871 |
// the the session has logically ended. The reason we wait like |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
872 |
// this to actually end the sessions for real (rather than at the |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
873 |
// point they were marked as stopped), is that ending a session |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
874 |
// when no other session runs below it on the stack will make cocoa |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
875 |
// drop some events on the floor. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
876 |
QMacCocoaAutoReleasePool pool; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
877 |
int stackSize = cocoaModalSessionStack.size(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
878 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
879 |
for (int i=stackSize-1; i>=0; --i) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
880 |
QCocoaModalSessionInfo &info = cocoaModalSessionStack[i]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
881 |
if (info.widget) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
882 |
currentModalSessionCached = info.session; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
883 |
break; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
884 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
885 |
cocoaModalSessionStack.remove(i); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
886 |
currentModalSessionCached = 0; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
887 |
if (info.session) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
888 |
[NSApp endModalSession:info.session]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
889 |
[(NSWindow *)info.nswindow release]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
890 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
891 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
892 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
893 |
updateChildrenWorksWhenModal(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
894 |
cleanupModalSessionsNeeded = false; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
895 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
896 |
|
0 | 897 |
void QEventDispatcherMacPrivate::beginModalSession(QWidget *widget) |
898 |
{ |
|
899 |
// Add a new, empty (null), NSModalSession to the stack. |
|
900 |
// It will become active the next time QEventDispatcher::processEvents is called. |
|
901 |
// A QCocoaModalSessionInfo is considered pending to become active if the widget pointer |
|
902 |
// is non-zero, and the session pointer is zero (it will become active upon a call to |
|
903 |
// currentModalSession). A QCocoaModalSessionInfo is considered pending to be stopped if |
|
904 |
// the widget pointer is zero, and the session pointer is non-zero (it will be fully |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
905 |
// stopped in cleanupModalSessions()). |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
906 |
QCocoaModalSessionInfo info = {widget, 0, 0}; |
0 | 907 |
cocoaModalSessionStack.push(info); |
908 |
updateChildrenWorksWhenModal(); |
|
909 |
currentModalSessionCached = 0; |
|
910 |
} |
|
911 |
||
912 |
void QEventDispatcherMacPrivate::endModalSession(QWidget *widget) |
|
913 |
{ |
|
914 |
// Mark all sessions attached to widget as pending to be stopped. We do this |
|
915 |
// by setting the widget pointer to zero, but leave the session pointer. |
|
916 |
// We don't tell cocoa to stop any sessions just yet, because cocoa only understands |
|
917 |
// when we stop the _current_ modal session (which is the session on top of |
|
918 |
// the stack, and might not belong to 'widget'). |
|
919 |
int stackSize = cocoaModalSessionStack.size(); |
|
920 |
for (int i=stackSize-1; i>=0; --i) { |
|
921 |
QCocoaModalSessionInfo &info = cocoaModalSessionStack[i]; |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
922 |
if (info.widget == widget) { |
0 | 923 |
info.widget = 0; |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
924 |
if (i == stackSize-1) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
925 |
// The top sessions ended. Interrupt the event dispatcher |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
926 |
// to start spinning the correct session immidiatly: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
927 |
cleanupModalSessionsNeeded = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
928 |
QEventDispatcherMac::instance()->interrupt(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
929 |
} |
0 | 930 |
} |
931 |
} |
|
932 |
} |
|
933 |
||
934 |
#endif |
|
935 |
||
936 |
QEventDispatcherMacPrivate::QEventDispatcherMacPrivate() |
|
937 |
{ |
|
938 |
} |
|
939 |
||
940 |
QEventDispatcherMac::QEventDispatcherMac(QObject *parent) |
|
941 |
: QAbstractEventDispatcher(*new QEventDispatcherMacPrivate, parent) |
|
942 |
{ |
|
943 |
Q_D(QEventDispatcherMac); |
|
944 |
CFRunLoopSourceContext context; |
|
945 |
bzero(&context, sizeof(CFRunLoopSourceContext)); |
|
946 |
context.info = d; |
|
947 |
context.equal = QEventDispatcherMacPrivate::postedEventSourceEqualCallback; |
|
948 |
context.perform = QEventDispatcherMacPrivate::postedEventsSourcePerformCallback; |
|
949 |
d->postedEventsSource = CFRunLoopSourceCreate(0, 0, &context); |
|
950 |
Q_ASSERT(d->postedEventsSource); |
|
951 |
CFRunLoopAddSource(mainRunLoop(), d->postedEventsSource, kCFRunLoopCommonModes); |
|
952 |
||
953 |
CFRunLoopObserverContext observerContext; |
|
954 |
bzero(&observerContext, sizeof(CFRunLoopObserverContext)); |
|
955 |
observerContext.info = this; |
|
956 |
d->waitingObserver = CFRunLoopObserverCreate(kCFAllocatorDefault, |
|
957 |
kCFRunLoopBeforeWaiting | kCFRunLoopAfterWaiting, |
|
958 |
true, 0, |
|
959 |
QEventDispatcherMacPrivate::waitingObserverCallback, |
|
960 |
&observerContext); |
|
961 |
CFRunLoopAddObserver(mainRunLoop(), d->waitingObserver, kCFRunLoopCommonModes); |
|
962 |
||
963 |
/* The first cycle in the loop adds the source and the events of the source |
|
964 |
are not processed. |
|
965 |
We use an observer to process the posted events for the first |
|
966 |
execution of the loop. */ |
|
967 |
CFRunLoopObserverContext firstTimeObserverContext; |
|
968 |
bzero(&firstTimeObserverContext, sizeof(CFRunLoopObserverContext)); |
|
969 |
firstTimeObserverContext.info = d; |
|
970 |
d->firstTimeObserver = CFRunLoopObserverCreate(kCFAllocatorDefault, |
|
971 |
kCFRunLoopEntry, |
|
972 |
/* repeats = */ false, |
|
973 |
0, |
|
974 |
QEventDispatcherMacPrivate::firstLoopEntry, |
|
975 |
&firstTimeObserverContext); |
|
976 |
CFRunLoopAddObserver(mainRunLoop(), d->firstTimeObserver, kCFRunLoopCommonModes); |
|
977 |
} |
|
978 |
||
979 |
void QEventDispatcherMacPrivate::waitingObserverCallback(CFRunLoopObserverRef, |
|
980 |
CFRunLoopActivity activity, void *info) |
|
981 |
{ |
|
982 |
if (activity == kCFRunLoopBeforeWaiting) |
|
983 |
emit static_cast<QEventDispatcherMac*>(info)->aboutToBlock(); |
|
984 |
else |
|
985 |
emit static_cast<QEventDispatcherMac*>(info)->awake(); |
|
986 |
} |
|
987 |
||
988 |
Boolean QEventDispatcherMacPrivate::postedEventSourceEqualCallback(const void *info1, const void *info2) |
|
989 |
{ |
|
990 |
return info1 == info2; |
|
991 |
} |
|
992 |
||
993 |
inline static void processPostedEvents(QEventDispatcherMacPrivate *const d, const bool blockSendPostedEvents) |
|
994 |
{ |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
995 |
if (blockSendPostedEvents) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
996 |
// We're told to not send posted events (because the event dispatcher |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
997 |
// is currently working on setting up the correct session to run). But |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
998 |
// we still need to make sure that we don't fall asleep until pending events |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
999 |
// are sendt, so we just signal this need, and return: |
0 | 1000 |
CFRunLoopSourceSignal(d->postedEventsSource); |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1001 |
return; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1002 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1003 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1004 |
#ifdef QT_MAC_USE_COCOA |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1005 |
if (d->cleanupModalSessionsNeeded) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1006 |
d->cleanupModalSessions(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1007 |
#endif |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1008 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1009 |
if (d->interrupt) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1010 |
#ifdef QT_MAC_USE_COCOA |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1011 |
if (d->currentExecIsNSAppRun) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1012 |
// The event dispatcher has been interrupted. But since |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1013 |
// [NSApplication run] is running the event loop, we |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1014 |
// delayed stopping it until now (to let cocoa process |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1015 |
// pending cocoa events first). |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1016 |
if (d->currentModalSessionCached) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1017 |
d->temporarilyStopAllModalSessions(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1018 |
[NSApp stop:NSApp]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1019 |
d->cancelWaitForMoreEvents(); |
0 | 1020 |
} |
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1021 |
#endif |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1022 |
return; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1023 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1024 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1025 |
if (!d->threadData->canWait || (d->serialNumber != d->lastSerial)) { |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1026 |
d->lastSerial = d->serialNumber; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1027 |
QApplicationPrivate::sendPostedEvents(0, 0, d->threadData); |
0 | 1028 |
} |
1029 |
} |
|
1030 |
||
1031 |
void QEventDispatcherMacPrivate::firstLoopEntry(CFRunLoopObserverRef ref, |
|
1032 |
CFRunLoopActivity activity, |
|
1033 |
void *info) |
|
1034 |
{ |
|
1035 |
Q_UNUSED(ref); |
|
1036 |
Q_UNUSED(activity); |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1037 |
#ifdef QT_MAC_USE_COCOA |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1038 |
QApplicationPrivate::qt_initAfterNSAppStarted(); |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1039 |
#endif |
0 | 1040 |
processPostedEvents(static_cast<QEventDispatcherMacPrivate *>(info), blockSendPostedEvents); |
1041 |
} |
|
1042 |
||
1043 |
void QEventDispatcherMacPrivate::postedEventsSourcePerformCallback(void *info) |
|
1044 |
{ |
|
1045 |
processPostedEvents(static_cast<QEventDispatcherMacPrivate *>(info), blockSendPostedEvents); |
|
1046 |
} |
|
1047 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1048 |
#ifdef QT_MAC_USE_COCOA |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1049 |
void QEventDispatcherMacPrivate::cancelWaitForMoreEvents() |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1050 |
{ |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1051 |
// In case the event dispatcher is waiting for more |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1052 |
// events somewhere, we post a dummy event to wake it up: |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1053 |
QMacCocoaAutoReleasePool pool; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1054 |
[NSApp postEvent:[NSEvent otherEventWithType:NSApplicationDefined location:NSZeroPoint |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1055 |
modifierFlags:0 timestamp:0. windowNumber:0 context:0 |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1056 |
subtype:QtCocoaEventSubTypeWakeup data1:0 data2:0] atStart:NO]; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1057 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1058 |
#endif |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1059 |
|
0 | 1060 |
void QEventDispatcherMac::interrupt() |
1061 |
{ |
|
1062 |
Q_D(QEventDispatcherMac); |
|
1063 |
d->interrupt = true; |
|
1064 |
wakeUp(); |
|
1065 |
||
1066 |
#ifndef QT_MAC_USE_COCOA |
|
1067 |
CFRunLoopStop(mainRunLoop()); |
|
1068 |
#else |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1069 |
// We do nothing more here than setting d->interrupt = true, and |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1070 |
// poke the event loop if it is sleeping. Actually stopping |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1071 |
// NSApp, or the current modal session, is done inside the send |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1072 |
// posted events callback. We do this to ensure that all current pending |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1073 |
// cocoa events gets delivered before we stop. Otherwise, if we now stop |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1074 |
// the last event loop recursion, cocoa will just drop pending posted |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1075 |
// events on the floor before we get a chance to reestablish a new session. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1076 |
d->cancelWaitForMoreEvents(); |
0 | 1077 |
#endif |
1078 |
} |
|
1079 |
||
1080 |
QEventDispatcherMac::~QEventDispatcherMac() |
|
1081 |
{ |
|
1082 |
Q_D(QEventDispatcherMac); |
|
1083 |
//timer cleanup |
|
1084 |
MacTimerHash::iterator it = QEventDispatcherMacPrivate::macTimerHash.begin(); |
|
1085 |
while (it != QEventDispatcherMacPrivate::macTimerHash.end()) { |
|
1086 |
MacTimerInfo *t = it.value(); |
|
1087 |
if (t->runLoopTimer) { |
|
1088 |
CFRunLoopTimerInvalidate(t->runLoopTimer); |
|
1089 |
CFRelease(t->runLoopTimer); |
|
1090 |
} |
|
1091 |
delete t; |
|
1092 |
++it; |
|
1093 |
} |
|
1094 |
QEventDispatcherMacPrivate::macTimerHash.clear(); |
|
1095 |
||
1096 |
// Remove CFSockets from the runloop. |
|
1097 |
for (MacSocketHash::ConstIterator it = d->macSockets.constBegin(); it != d->macSockets.constEnd(); ++it) { |
|
1098 |
MacSocketInfo *socketInfo = (*it); |
|
1099 |
if (CFSocketIsValid(socketInfo->socket)) { |
|
1100 |
qt_mac_remove_socket_from_runloop(socketInfo->socket, socketInfo->runloop); |
|
1101 |
CFRunLoopSourceInvalidate(socketInfo->runloop); |
|
1102 |
CFRelease(socketInfo->runloop); |
|
1103 |
CFSocketInvalidate(socketInfo->socket); |
|
1104 |
CFRelease(socketInfo->socket); |
|
1105 |
} |
|
1106 |
} |
|
1107 |
CFRunLoopRemoveSource(mainRunLoop(), d->postedEventsSource, kCFRunLoopCommonModes); |
|
1108 |
CFRelease(d->postedEventsSource); |
|
1109 |
||
1110 |
CFRunLoopObserverInvalidate(d->waitingObserver); |
|
1111 |
CFRelease(d->waitingObserver); |
|
1112 |
||
1113 |
CFRunLoopObserverInvalidate(d->firstTimeObserver); |
|
1114 |
CFRelease(d->firstTimeObserver); |
|
1115 |
} |
|
1116 |
||
1117 |
#ifdef QT_MAC_USE_COCOA |
|
1118 |
||
1119 |
QtMacInterruptDispatcherHelp* QtMacInterruptDispatcherHelp::instance = 0; |
|
1120 |
||
1121 |
QtMacInterruptDispatcherHelp::QtMacInterruptDispatcherHelp() : cancelled(false) |
|
1122 |
{ |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1123 |
// The whole point of this class is that we enable a way to interrupt |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1124 |
// the event dispatcher when returning back to a lower recursion level |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1125 |
// than where interruptLater was called. This is needed to detect if |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1126 |
// [NSApp run] should still be running at the recursion level it is at. |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1127 |
// Since the interrupt is canceled if processEvents is called before |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1128 |
// this object gets deleted, we also avoid interrupting unnecessary. |
0 | 1129 |
deleteLater(); |
1130 |
} |
|
1131 |
||
1132 |
QtMacInterruptDispatcherHelp::~QtMacInterruptDispatcherHelp() |
|
1133 |
{ |
|
1134 |
if (cancelled) |
|
1135 |
return; |
|
1136 |
instance = 0; |
|
1137 |
QEventDispatcherMac::instance()->interrupt(); |
|
1138 |
} |
|
1139 |
||
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1140 |
void QtMacInterruptDispatcherHelp::cancelInterruptLater() |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1141 |
{ |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1142 |
if (!instance) |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1143 |
return; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1144 |
instance->cancelled = true; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1145 |
delete instance; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1146 |
instance = 0; |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1147 |
} |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1148 |
|
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1149 |
void QtMacInterruptDispatcherHelp::interruptLater() |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1150 |
{ |
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1151 |
cancelInterruptLater(); |
0 | 1152 |
instance = new QtMacInterruptDispatcherHelp; |
1153 |
} |
|
1154 |
||
1155 |
#endif |
|
1156 |
||
1157 |
QT_END_NAMESPACE |
|
30
5dc02b23752f
Revision: 201025
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
18
diff
changeset
|
1158 |