1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/evtloop.cpp
3 // Purpose: implements wxEventLoop for MSW
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2001 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/window.h"
32 #include "wx/evtloop.h"
34 #include "wx/tooltip.h"
35 #include "wx/except.h"
36 #include "wx/ptr_scpd.h"
38 #include "wx/msw/private.h"
41 #include "wx/thread.h"
43 // define the list of MSG strutures
44 WX_DECLARE_LIST(MSG
, wxMsgList
);
46 #include "wx/listimpl.cpp"
48 WX_DEFINE_LIST(wxMsgList
)
49 #endif // wxUSE_THREADS
51 // ============================================================================
52 // wxEventLoop implementation
53 // ============================================================================
55 wxEventLoop
*wxEventLoopBase::ms_activeLoop
= NULL
;
56 wxWindowMSW
*wxEventLoop::ms_winCritical
= NULL
;
58 // ----------------------------------------------------------------------------
60 // ----------------------------------------------------------------------------
62 wxEventLoop::wxEventLoop()
68 // ----------------------------------------------------------------------------
69 // wxEventLoop message processing
70 // ----------------------------------------------------------------------------
72 void wxEventLoop::ProcessMessage(WXMSG
*msg
)
74 // give us the chance to preprocess the message first
75 if ( !PreProcessMessage(msg
) )
77 // if it wasn't done, dispatch it to the corresponding window
78 ::TranslateMessage(msg
);
79 ::DispatchMessage(msg
);
83 bool wxEventLoop::IsChildOfCriticalWindow(wxWindowMSW
*win
)
87 if ( win
== ms_winCritical
)
90 win
= win
->GetParent();
96 bool wxEventLoop::PreProcessMessage(WXMSG
*msg
)
98 HWND hwnd
= msg
->hwnd
;
99 wxWindow
*wndThis
= wxGetWindowFromHWND((WXHWND
)hwnd
);
102 // this might happen if we're in a modeless dialog, or if a wx control has
103 // children which themselves were not created by wx (i.e. wxActiveX control children)
106 while ( hwnd
&& (::GetWindowLong(hwnd
, GWL_STYLE
) & WS_CHILD
))
108 hwnd
= ::GetParent(hwnd
);
110 // If the control has a wx parent, break and give the parent a chance
111 // to process the window message
112 wndThis
= wxGetWindowFromHWND((WXHWND
)hwnd
);
119 // this may happen if the event occurred in a standard modeless dialog (the
120 // only example of which I know of is the find/replace dialog) - then call
121 // IsDialogMessage() to make TAB navigation in it work
123 // NOTE: IsDialogMessage() just eats all the messages (i.e. returns true for
124 // them) if we call it for the control itself
125 return hwnd
&& ::IsDialogMessage(hwnd
, msg
) != 0;
129 if ( !AllowProcessing(wndThis
) )
131 // not a child of critical window, so we eat the event but take care to
132 // stop an endless stream of WM_PAINTs which would have resulted if we
133 // didn't validate the invalidated part of the window
134 if ( msg
->message
== WM_PAINT
)
135 ::ValidateRect(hwnd
, NULL
);
141 // we must relay WM_MOUSEMOVE events to the tooltip ctrl if we want it to
142 // popup the tooltip bubbles
143 if ( msg
->message
== WM_MOUSEMOVE
)
145 wxToolTip
*tt
= wndThis
->GetToolTip();
148 tt
->RelayEvent((WXMSG
*)msg
);
151 #endif // wxUSE_TOOLTIPS
153 // allow the window to prevent certain messages from being
154 // translated/processed (this is currently used by wxTextCtrl to always
155 // grab Ctrl-C/V/X, even if they are also accelerators in some parent)
156 if ( !wndThis
->MSWShouldPreProcessMessage((WXMSG
*)msg
) )
161 // try translations first: the accelerators override everything
162 for ( wnd
= wndThis
; wnd
; wnd
= wnd
->GetParent() )
164 if ( wnd
->MSWTranslateMessage((WXMSG
*)msg
))
167 // stop at first top level window, i.e. don't try to process the key
168 // strokes originating in a dialog using the accelerators of the parent
169 // frame - this doesn't make much sense
170 if ( wnd
->IsTopLevel() )
174 // now try the other hooks (kbd navigation is handled here)
175 for ( wnd
= wndThis
; wnd
; wnd
= wnd
->GetParent() )
177 if (wnd
!= wndThis
) // Skip the first since wndThis->MSWProcessMessage() was called above
179 if ( wnd
->MSWProcessMessage((WXMSG
*)msg
) )
183 // Stop at first top level window (as per comment above).
184 // If we don't do this, pressing ESC on a modal dialog shown as child of a modal
185 // dialog with wxID_CANCEL will cause the parent dialog to be closed, for example
186 if (wnd
->IsTopLevel())
190 // no special preprocessing for this message, dispatch it normally
194 // ----------------------------------------------------------------------------
195 // wxEventLoop running and exiting
196 // ----------------------------------------------------------------------------
198 int wxEventLoop::Run()
200 // event loops are not recursive, you need to create another loop!
201 wxCHECK_MSG( !IsRunning(), -1, _T("can't reenter a message loop") );
203 // ProcessIdle() and Dispatch() below may throw so the code here should
204 // be exception-safe, hence we must use local objects for all actions we
206 wxEventLoopActivator
activate(this);
208 // we must ensure that OnExit() is called even if an exception is thrown
209 // from inside Dispatch() but we must call it from Exit() in normal
210 // situations because it is supposed to be called synchronously,
211 // wxModalEventLoop depends on this (so we can't just use ON_BLOCK_EXIT or
212 // something similar here)
218 #endif // wxUSE_EXCEPTIONS
220 // this is the event loop itself
224 wxMutexGuiLeaveOrEnter();
225 #endif // wxUSE_THREADS
227 // generate and process idle events for as long as we don't
228 // have anything else to do
229 while ( !Pending() && (wxTheApp
&& wxTheApp
->ProcessIdle()) )
232 // if the "should exit" flag is set, the loop should terminate
233 // but not before processing any remaining messages so while
234 // Pending() returns true, do process them
243 // a message came or no more idle processing to do, sit in
244 // Dispatch() waiting for the next message
253 // exit the outer loop as well
260 if ( !wxTheApp
|| !wxTheApp
->OnExceptionInMainLoop() )
265 //else: continue running the event loop
269 // OnException() throwed, possibly rethrowing the same
270 // exception again: very good, but we still need OnExit() to
277 #endif // wxUSE_EXCEPTIONS
282 void wxEventLoop::Exit(int rc
)
284 wxCHECK_RET( IsRunning(), _T("can't call Exit() if not running") );
291 // all we have to do to exit from the loop is to (maybe) wake it up so that
292 // it can notice that Exit() had been called
294 // in particular, we do *not* use PostQuitMessage() here because we're not
295 // sure that WM_QUIT is going to be processed by the correct event loop: it
296 // is possible that another one is started before this one has a chance to
298 ::PostMessage(NULL
, WM_NULL
, 0, 0);
301 // ----------------------------------------------------------------------------
302 // wxEventLoop message processing dispatching
303 // ----------------------------------------------------------------------------
305 bool wxEventLoop::Pending() const
308 return ::PeekMessage(&msg
, 0, 0, 0, PM_NOREMOVE
) != 0;
311 bool wxEventLoop::Dispatch()
313 wxCHECK_MSG( IsRunning(), false, _T("can't call Dispatch() if not running") );
316 BOOL rc
= ::GetMessage(&msg
, (HWND
) NULL
, 0, 0);
326 // should never happen, but let's test for it nevertheless
327 wxLogLastError(wxT("GetMessage"));
329 // still break from the loop
334 wxASSERT_MSG( wxThread::IsMain(),
335 wxT("only the main thread can process Windows messages") );
337 static bool s_hadGuiLock
= true;
338 static wxMsgList s_aSavedMessages
;
340 // if a secondary thread owning the mutex is doing GUI calls, save all
341 // messages for later processing - we can't process them right now because
342 // it will lead to recursive library calls (and we're not reentrant)
343 if ( !wxGuiOwnedByMainThread() )
345 s_hadGuiLock
= false;
347 // leave out WM_COMMAND messages: too dangerous, sometimes
348 // the message will be processed twice
349 if ( !wxIsWaitingForThread() || msg
.message
!= WM_COMMAND
)
351 MSG
* pMsg
= new MSG(msg
);
352 s_aSavedMessages
.Append(pMsg
);
359 // have we just regained the GUI lock? if so, post all of the saved
362 // FIXME of course, it's not _exactly_ the same as processing the
363 // messages normally - expect some things to break...
368 wxMsgList::compatibility_iterator node
= s_aSavedMessages
.GetFirst();
371 MSG
* pMsg
= node
->GetData();
372 s_aSavedMessages
.Erase(node
);
374 ProcessMessage(pMsg
);
377 node
= s_aSavedMessages
.GetFirst();
381 #endif // wxUSE_THREADS
383 ProcessMessage(&msg
);