git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58658
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxMutexGuiLeaveOrEnter();
#endif // wxUSE_THREADS
wxMutexGuiLeaveOrEnter();
#endif // wxUSE_THREADS
+ if (msg.message == WM_PAINT)
+ {
+ // WM_PAINT messages are the last ones of the queue...
+ break;
+ }
+
+ // choose a wxEventCategory for this Windows message
wxEventCategory cat;
switch (msg.message)
{
wxEventCategory cat;
switch (msg.message)
{
case WM_NCMBUTTONDBLCLK:
case WM_KEYFIRST:
case WM_NCMBUTTONDBLCLK:
case WM_KEYFIRST:
case WM_KEYUP:
case WM_CHAR:
case WM_DEADCHAR:
case WM_KEYUP:
case WM_CHAR:
case WM_DEADCHAR:
case WM_IME_STARTCOMPOSITION:
case WM_IME_ENDCOMPOSITION:
case WM_IME_COMPOSITION:
case WM_IME_STARTCOMPOSITION:
case WM_IME_ENDCOMPOSITION:
case WM_IME_COMPOSITION:
case WM_COMMAND:
case WM_SYSCOMMAND:
case WM_COMMAND:
case WM_SYSCOMMAND:
case WM_UNDO:
case WM_MOUSEFIRST:
case WM_UNDO:
case WM_MOUSEFIRST:
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
case WM_LBUTTONDBLCLK:
case WM_LBUTTONDOWN:
case WM_LBUTTONUP:
case WM_LBUTTONDBLCLK:
case WM_MOUSELAST:
case WM_MOUSEWHEEL:
cat = wxEVT_CATEGORY_USER_INPUT;
case WM_MOUSELAST:
case WM_MOUSEWHEEL:
cat = wxEVT_CATEGORY_USER_INPUT;
case WM_TIMER:
cat = wxEVT_CATEGORY_TIMER;
case WM_TIMER:
cat = wxEVT_CATEGORY_TIMER;
- // there are too many of these types of messages to handle them in this switch
- cat = wxEVT_CATEGORY_UI;
+ if (msg.message < WM_USER)
+ {
+ // 0;WM_USER-1 is the range of message IDs reserved for use by the system.
+
+ // there are too many of these types of messages to handle them in this switch
+ cat = wxEVT_CATEGORY_UI;
+ }
+ else
+ cat = wxEVT_CATEGORY_UNKNOWN;
+ // should we process this event now?
if (cat & eventsToProcess)
{
if (cat & eventsToProcess)
{
- if ( !wxTheApp->Dispatch() )
- break;
- }
+ if ( !wxTheApp->Dispatch() )
+ break;
+ }
else
{
// remove the message and store it
else
{
// remove the message and store it
- PeekMessage(&msg, (HWND)0, 0, 0, PM_REMOVE)
+ ::GetMessage(&msg, NULL, 0, 0);
DWORD id = GetCurrentThreadId();
for (size_t i=0; i<g_arrMSG.GetCount(); i++)
{
DWORD id = GetCurrentThreadId();
for (size_t i=0; i<g_arrMSG.GetCount(); i++)
{
- PostThreadMessage(id, g_arrMSG[i].message, g_arrMSG[i].wParam, g_arrMSG[i].lParam);
+ PostThreadMessage(id, g_arrMSG[i].message,
+ g_arrMSG[i].wParam, g_arrMSG[i].lParam);