]>
Commit | Line | Data |
---|---|---|
489468fe | 1 | /////////////////////////////////////////////////////////////////////////////// |
524c47aa | 2 | // Name: src/osx/carbon/evtloop.cpp |
489468fe SC |
3 | // Purpose: implementation of wxEventLoop for wxMac |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 2006-01-12 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2006 Vadim Zeitlin <vadim@wxwindows.org> | |
9 | // Licence: wxWindows licence | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | // for compilers that support precompilation, includes "wx.h". | |
21 | #include "wx/wxprec.h" | |
22 | ||
23 | #ifdef __BORLANDC__ | |
24 | #pragma hdrstop | |
25 | #endif | |
26 | ||
27 | #include "wx/evtloop.h" | |
28 | ||
29 | #ifndef WX_PRECOMP | |
30 | #include "wx/app.h" | |
bcf79477 | 31 | #include "wx/log.h" |
489468fe SC |
32 | #endif // WX_PRECOMP |
33 | ||
2439f1d9 SC |
34 | #if wxUSE_GUI |
35 | #include "wx/nonownedwnd.h" | |
36 | #endif | |
37 | ||
524c47aa SC |
38 | #include "wx/osx/private.h" |
39 | ||
489468fe SC |
40 | // ============================================================================ |
41 | // wxEventLoop implementation | |
42 | // ============================================================================ | |
43 | ||
524c47aa | 44 | wxGUIEventLoop::wxGUIEventLoop() |
489468fe | 45 | { |
489468fe SC |
46 | } |
47 | ||
0056673c | 48 | static void DispatchAndReleaseEvent(EventRef theEvent) |
9af42efd VZ |
49 | { |
50 | if ( wxTheApp ) | |
51 | wxTheApp->MacSetCurrentEvent( theEvent, NULL ); | |
52 | ||
53 | OSStatus status = SendEventToEventTarget(theEvent, GetEventDispatcherTarget()); | |
54 | if (status == eventNotHandledErr && wxTheApp) | |
55 | wxTheApp->MacHandleUnhandledEvent(theEvent); | |
56 | ||
57 | ReleaseEvent( theEvent ); | |
58 | } | |
59 | ||
0056673c | 60 | int wxGUIEventLoop::DoDispatchTimeout(unsigned long timeout) |
9af42efd | 61 | { |
80eee837 | 62 | wxMacAutoreleasePool autoreleasepool; |
ce00f59b | 63 | |
9af42efd VZ |
64 | EventRef event; |
65 | OSStatus status = ReceiveNextEvent(0, NULL, timeout/1000, true, &event); | |
66 | switch ( status ) | |
67 | { | |
68 | default: | |
69 | wxFAIL_MSG( "unexpected ReceiveNextEvent() error" ); | |
70 | // fall through | |
71 | ||
72 | case eventLoopTimedOutErr: | |
73 | return -1; | |
74 | ||
75 | case eventLoopQuitErr: | |
0056673c SC |
76 | // according to QA1061 this may also occur |
77 | // when a WakeUp Process is executed | |
9af42efd VZ |
78 | return 0; |
79 | ||
80 | case noErr: | |
81 | DispatchAndReleaseEvent(event); | |
82 | return 1; | |
83 | } | |
84 | } | |
80eee837 | 85 | |
3e88d487 SC |
86 | void wxGUIEventLoop::WakeUp() |
87 | { | |
88 | OSStatus err = noErr; | |
89 | wxMacCarbonEvent wakeupEvent; | |
90 | wakeupEvent.Create( 'WXMC', 'WXMC', GetCurrentEventTime(), | |
91 | kEventAttributeNone ); | |
92 | err = PostEventToQueue(GetMainEventQueue(), wakeupEvent, | |
93 | kEventPriorityHigh ); | |
94 | } | |
95 | ||
80eee837 SC |
96 | void wxGUIEventLoop::DoRun() |
97 | { | |
98 | wxMacAutoreleasePool autoreleasepool; | |
99 | RunApplicationEventLoop(); | |
100 | } | |
101 | ||
102 | void wxGUIEventLoop::DoStop() | |
103 | { | |
104 | QuitApplicationEventLoop(); | |
105 | } | |
106 | ||
7934e447 SC |
107 | CFRunLoopRef wxGUIEventLoop::CFGetCurrentRunLoop() const |
108 | { | |
109 | return wxCFEventLoop::CFGetCurrentRunLoop(); | |
110 | } | |
111 | ||
cfb0ef70 SC |
112 | // TODO move into a evtloop_osx.cpp |
113 | ||
114 | wxModalEventLoop::wxModalEventLoop(wxWindow *modalWindow) | |
2439f1d9 | 115 | { |
b79aa500 | 116 | m_modalWindow = wxDynamicCast(modalWindow, wxNonOwnedWindow); |
2439f1d9 | 117 | wxASSERT_MSG( m_modalWindow != NULL, "must pass in a toplevel window for modal event loop" ); |
cfb0ef70 | 118 | m_modalNativeWindow = m_modalWindow->GetWXWindow(); |
2439f1d9 SC |
119 | } |
120 | ||
cfb0ef70 SC |
121 | wxModalEventLoop::wxModalEventLoop(WXWindow modalNativeWindow) |
122 | { | |
123 | m_modalWindow = NULL; | |
124 | wxASSERT_MSG( modalNativeWindow != NULL, "must pass in a toplevel window for modal event loop" ); | |
125 | m_modalNativeWindow = modalNativeWindow; | |
126 | } | |
127 | ||
128 | // END move into a evtloop_osx.cpp | |
129 | ||
80eee837 SC |
130 | void wxModalEventLoop::DoRun() |
131 | { | |
7934e447 | 132 | wxWindowDisabler disabler(m_modalWindow); |
80eee837 | 133 | wxMacAutoreleasePool autoreleasepool; |
cfb0ef70 SC |
134 | |
135 | bool resetGroupParent = false; | |
80eee837 SC |
136 | |
137 | WindowGroupRef windowGroup = NULL; | |
138 | WindowGroupRef formerParentGroup = NULL; | |
ce00f59b | 139 | |
80eee837 | 140 | // make sure modal dialogs are in the right layer so that they are not covered |
cfb0ef70 | 141 | if ( m_modalWindow != NULL ) |
80eee837 | 142 | { |
cfb0ef70 | 143 | if ( m_modalWindow->GetParent() == NULL ) |
80eee837 | 144 | { |
cfb0ef70 SC |
145 | windowGroup = GetWindowGroup(m_modalNativeWindow) ; |
146 | if ( windowGroup != GetWindowGroupOfClass( kMovableModalWindowClass ) ) | |
147 | { | |
148 | formerParentGroup = GetWindowGroupParent( windowGroup ); | |
149 | SetWindowGroupParent( windowGroup, GetWindowGroupOfClass( kMovableModalWindowClass ) ); | |
150 | resetGroupParent = true; | |
151 | } | |
80eee837 SC |
152 | } |
153 | } | |
154 | ||
155 | m_modalWindow->SetFocus(); | |
ce00f59b | 156 | |
cfb0ef70 | 157 | RunAppModalLoopForWindow(m_modalNativeWindow); |
80eee837 SC |
158 | |
159 | if ( resetGroupParent ) | |
160 | { | |
161 | SetWindowGroupParent( windowGroup , formerParentGroup ); | |
162 | } | |
163 | ||
164 | } | |
165 | ||
166 | void wxModalEventLoop::DoStop() | |
167 | { | |
168 | wxMacAutoreleasePool autoreleasepool; | |
cfb0ef70 | 169 | QuitAppModalLoopForWindow(m_modalNativeWindow); |
80eee837 SC |
170 | } |
171 | ||
172 |