2 * Message queues related functions
4 * Copyright 1993, 1994 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <sys/types.h>
32 #include "wine/server.h"
46 #include "wine/debug.h"
48 WINE_DEFAULT_DEBUG_CHANNEL(msg
);
49 WINE_DECLARE_DEBUG_CHANNEL(key
);
51 #define WM_NCMOUSEFIRST WM_NCMOUSEMOVE
52 #define WM_NCMOUSELAST WM_NCMBUTTONDBLCLK
54 static BYTE QueueKeyStateTable
[256];
57 /***********************************************************************
60 inline static BOOL
is_keyboard_message( UINT message
)
62 return (message
>= WM_KEYFIRST
&& message
<= WM_KEYLAST
);
66 /***********************************************************************
69 inline static BOOL
is_mouse_message( UINT message
)
71 return ((message
>= WM_NCMOUSEFIRST
&& message
<= WM_NCMOUSELAST
) ||
72 (message
>= WM_MOUSEFIRST
&& message
<= WM_MOUSELAST
));
76 /***********************************************************************
77 * check_message_filter
79 inline static BOOL
check_message_filter( const MSG
*msg
, HWND hwnd
, UINT first
, UINT last
)
83 if (msg
->hwnd
!= hwnd
&& !IsChild( hwnd
, msg
->hwnd
)) return FALSE
;
87 return (msg
->message
>= first
&& msg
->message
<= last
);
93 /***********************************************************************
94 * process_sent_messages
96 * Process all pending sent messages.
98 inline static void process_sent_messages(void)
101 MSG_peek_message( &msg
, 0, 0, 0, GET_MSG_REMOVE
| GET_MSG_SENT_ONLY
);
105 /***********************************************************************
106 * queue_hardware_message
108 * store a hardware message in the thread queue
110 static void queue_hardware_message( MSG
*msg
, ULONG_PTR extra_info
, enum message_type type
)
112 SERVER_START_REQ( send_message
)
115 req
->id
= (void *)GetWindowThreadProcessId( msg
->hwnd
, NULL
);
116 req
->win
= msg
->hwnd
;
117 req
->msg
= msg
->message
;
118 req
->wparam
= msg
->wParam
;
119 req
->lparam
= msg
->lParam
;
122 req
->time
= msg
->time
;
123 req
->info
= extra_info
;
125 wine_server_call( req
);
131 /***********************************************************************
132 * update_queue_key_state
134 static void update_queue_key_state( UINT msg
, WPARAM wp
)
169 BYTE
*p
= &QueueKeyStateTable
[wp
];
170 if (!(*p
& 0x80)) *p
^= 0x01;
173 else QueueKeyStateTable
[wp
] &= ~0x80;
177 /***********************************************************************
178 * MSG_SendParentNotify
180 * Send a WM_PARENTNOTIFY to all ancestors of the given window, unless
181 * the window has the WS_EX_NOPARENTNOTIFY style.
183 static void MSG_SendParentNotify( HWND hwnd
, WORD event
, WORD idChild
, POINT pt
)
185 /* pt has to be in the client coordinates of the parent window */
186 MapWindowPoints( 0, hwnd
, &pt
, 1 );
191 if (!(GetWindowLongA( hwnd
, GWL_STYLE
) & WS_CHILD
)) break;
192 if (GetWindowLongA( hwnd
, GWL_EXSTYLE
) & WS_EX_NOPARENTNOTIFY
) break;
193 if (!(parent
= GetParent(hwnd
))) break;
194 MapWindowPoints( hwnd
, parent
, &pt
, 1 );
196 SendMessageA( hwnd
, WM_PARENTNOTIFY
,
197 MAKEWPARAM( event
, idChild
), MAKELPARAM( pt
.x
, pt
.y
) );
202 /***********************************************************************
203 * MSG_JournalPlayBackMsg
205 * Get an EVENTMSG struct via call JOURNALPLAYBACK hook function
207 void MSG_JournalPlayBackMsg(void)
214 if (!HOOK_IsHooked( WH_JOURNALPLAYBACK
)) return;
216 wtime
=HOOK_CallHooksA( WH_JOURNALPLAYBACK
, HC_GETNEXT
, 0, (LPARAM
)&tmpMsg
);
217 /* TRACE(msg,"Playback wait time =%ld\n",wtime); */
221 msg
.message
= tmpMsg
.message
;
222 msg
.hwnd
= tmpMsg
.hwnd
;
223 msg
.time
= tmpMsg
.time
;
224 if ((tmpMsg
.message
>= WM_KEYFIRST
) && (tmpMsg
.message
<= WM_KEYLAST
))
226 msg
.wParam
= tmpMsg
.paramL
& 0xFF;
227 msg
.lParam
= MAKELONG(tmpMsg
.paramH
&0x7ffff,tmpMsg
.paramL
>>8);
228 if (tmpMsg
.message
== WM_KEYDOWN
|| tmpMsg
.message
== WM_SYSKEYDOWN
)
230 for (keyDown
=i
=0; i
<256 && !keyDown
; i
++)
231 if (InputKeyStateTable
[i
] & 0x80)
234 msg
.lParam
|= 0x40000000;
235 InputKeyStateTable
[msg
.wParam
] |= 0x80;
236 AsyncKeyStateTable
[msg
.wParam
] |= 0x80;
238 else /* WM_KEYUP, WM_SYSKEYUP */
240 msg
.lParam
|= 0xC0000000;
241 InputKeyStateTable
[msg
.wParam
] &= ~0x80;
243 if (InputKeyStateTable
[VK_MENU
] & 0x80)
244 msg
.lParam
|= 0x20000000;
245 if (tmpMsg
.paramH
& 0x8000) /*special_key bit*/
246 msg
.lParam
|= 0x01000000;
248 msg
.pt
.x
= msg
.pt
.y
= 0;
249 queue_hardware_message( &msg
, 0, MSG_HARDWARE_RAW
);
251 else if ((tmpMsg
.message
>= WM_MOUSEFIRST
) && (tmpMsg
.message
<= WM_MOUSELAST
))
253 switch (tmpMsg
.message
)
256 InputKeyStateTable
[VK_LBUTTON
] |= 0x80;
257 AsyncKeyStateTable
[VK_LBUTTON
] |= 0x80;
260 InputKeyStateTable
[VK_LBUTTON
] &= ~0x80;
263 InputKeyStateTable
[VK_MBUTTON
] |= 0x80;
264 AsyncKeyStateTable
[VK_MBUTTON
] |= 0x80;
267 InputKeyStateTable
[VK_MBUTTON
] &= ~0x80;
270 InputKeyStateTable
[VK_RBUTTON
] |= 0x80;
271 AsyncKeyStateTable
[VK_RBUTTON
] |= 0x80;
274 InputKeyStateTable
[VK_RBUTTON
] &= ~0x80;
277 SetCursorPos(tmpMsg
.paramL
,tmpMsg
.paramH
);
278 msg
.lParam
=MAKELONG(tmpMsg
.paramL
,tmpMsg
.paramH
);
280 if (InputKeyStateTable
[VK_LBUTTON
] & 0x80) msg
.wParam
|= MK_LBUTTON
;
281 if (InputKeyStateTable
[VK_MBUTTON
] & 0x80) msg
.wParam
|= MK_MBUTTON
;
282 if (InputKeyStateTable
[VK_RBUTTON
] & 0x80) msg
.wParam
|= MK_RBUTTON
;
284 msg
.pt
.x
= tmpMsg
.paramL
;
285 msg
.pt
.y
= tmpMsg
.paramH
;
286 queue_hardware_message( &msg
, 0, MSG_HARDWARE_RAW
);
288 HOOK_CallHooksA( WH_JOURNALPLAYBACK
, HC_SKIP
, 0, (LPARAM
)&tmpMsg
);
292 if( tmpMsg
.message
== WM_QUEUESYNC
)
293 if (HOOK_IsHooked( WH_CBT
))
294 HOOK_CallHooksA( WH_CBT
, HCBT_QS
, 0, 0L);
299 /***********************************************************************
300 * process_raw_keyboard_message
302 * returns TRUE if the contents of 'msg' should be passed to the application
304 static BOOL
process_raw_keyboard_message( MSG
*msg
, ULONG_PTR extra_info
)
306 if (!(msg
->hwnd
= GetFocus()))
308 /* Send the message to the active window instead, */
309 /* translating messages to their WM_SYS equivalent */
310 msg
->hwnd
= GetActiveWindow();
311 if (msg
->message
< WM_SYSKEYDOWN
) msg
->message
+= WM_SYSKEYDOWN
- WM_KEYDOWN
;
314 if (HOOK_IsHooked( WH_JOURNALRECORD
))
318 event
.message
= msg
->message
;
319 event
.hwnd
= msg
->hwnd
;
320 event
.time
= msg
->time
;
321 event
.paramL
= (msg
->wParam
& 0xFF) | (HIWORD(msg
->lParam
) << 8);
322 event
.paramH
= msg
->lParam
& 0x7FFF;
323 if (HIWORD(msg
->lParam
) & 0x0100) event
.paramH
|= 0x8000; /* special_key - bit */
324 HOOK_CallHooksA( WH_JOURNALRECORD
, HC_ACTION
, 0, (LPARAM
)&event
);
327 /* if we are going to throw away the message, update the queue state now */
328 if (!msg
->hwnd
) update_queue_key_state( msg
->message
, msg
->wParam
);
330 return (msg
->hwnd
!= 0);
334 /***********************************************************************
335 * process_cooked_keyboard_message
337 * returns TRUE if the contents of 'msg' should be passed to the application
339 static BOOL
process_cooked_keyboard_message( MSG
*msg
, BOOL remove
)
343 update_queue_key_state( msg
->message
, msg
->wParam
);
345 /* Handle F1 key by sending out WM_HELP message */
346 if ((msg
->message
== WM_KEYUP
) &&
347 (msg
->wParam
== VK_F1
) &&
348 (msg
->hwnd
!= GetDesktopWindow()) &&
349 !MENU_IsMenuActive())
352 hi
.cbSize
= sizeof(HELPINFO
);
353 hi
.iContextType
= HELPINFO_WINDOW
;
354 hi
.iCtrlId
= GetWindowLongA( msg
->hwnd
, GWL_ID
);
355 hi
.hItemHandle
= msg
->hwnd
;
356 hi
.dwContextId
= GetWindowContextHelpId( msg
->hwnd
);
357 hi
.MousePos
= msg
->pt
;
358 SendMessageA(msg
->hwnd
, WM_HELP
, 0, (LPARAM
)&hi
);
362 if (HOOK_CallHooksA( WH_KEYBOARD
, remove
? HC_ACTION
: HC_NOREMOVE
,
363 LOWORD(msg
->wParam
), msg
->lParam
))
365 /* skip this message */
366 HOOK_CallHooksA( WH_CBT
, HCBT_KEYSKIPPED
, LOWORD(msg
->wParam
), msg
->lParam
);
373 /***********************************************************************
374 * process_raw_mouse_message
376 * returns TRUE if the contents of 'msg' should be passed to the application
378 static BOOL
process_raw_mouse_message( MSG
*msg
, ULONG_PTR extra_info
)
385 /* find the window to dispatch this mouse message to */
388 if (!(msg
->hwnd
= PERQDATA_GetCaptureWnd( &ht
)))
390 /* If no capture HWND, find window which contains the mouse position.
391 * Also find the position of the cursor hot spot (hittest) */
392 HWND hWndScope
= (HWND
)extra_info
;
394 if (!IsWindow(hWndScope
)) hWndScope
= 0;
395 if (!(msg
->hwnd
= WINPOS_WindowFromPoint( hWndScope
, msg
->pt
, &hittest
)))
396 msg
->hwnd
= GetDesktopWindow();
400 if (HOOK_IsHooked( WH_JOURNALRECORD
))
403 event
.message
= msg
->message
;
404 event
.time
= msg
->time
;
405 event
.hwnd
= msg
->hwnd
;
406 event
.paramL
= msg
->pt
.x
;
407 event
.paramH
= msg
->pt
.y
;
408 HOOK_CallHooksA( WH_JOURNALRECORD
, HC_ACTION
, 0, (LPARAM
)&event
);
411 /* translate double clicks */
413 if ((msg
->message
== WM_LBUTTONDOWN
) ||
414 (msg
->message
== WM_RBUTTONDOWN
) ||
415 (msg
->message
== WM_MBUTTONDOWN
))
418 /* translate double clicks -
419 * note that ...MOUSEMOVEs can slip in between
420 * ...BUTTONDOWN and ...BUTTONDBLCLK messages */
422 if (GetClassLongA( msg
->hwnd
, GCL_STYLE
) & CS_DBLCLKS
|| ht
!= HTCLIENT
)
424 if ((msg
->message
== clk_msg
.message
) &&
425 (msg
->hwnd
== clk_msg
.hwnd
) &&
426 (msg
->time
- clk_msg
.time
< GetDoubleClickTime()) &&
427 (abs(msg
->pt
.x
- clk_msg
.pt
.x
) < GetSystemMetrics(SM_CXDOUBLECLK
)/2) &&
428 (abs(msg
->pt
.y
- clk_msg
.pt
.y
) < GetSystemMetrics(SM_CYDOUBLECLK
)/2))
430 msg
->message
+= (WM_LBUTTONDBLCLK
- WM_LBUTTONDOWN
);
435 /* update static double click conditions */
436 if (update
) clk_msg
= *msg
;
440 /* Note: windows has no concept of a non-client wheel message */
441 if (hittest
!= HTCLIENT
&& msg
->message
!= WM_MOUSEWHEEL
)
443 msg
->message
+= WM_NCMOUSEMOVE
- WM_MOUSEMOVE
;
444 msg
->wParam
= hittest
;
446 else ScreenToClient( msg
->hwnd
, &pt
);
447 msg
->lParam
= MAKELONG( pt
.x
, pt
.y
);
452 /***********************************************************************
453 * process_cooked_mouse_message
455 * returns TRUE if the contents of 'msg' should be passed to the application
457 static BOOL
process_cooked_mouse_message( MSG
*msg
, ULONG_PTR extra_info
, BOOL remove
)
459 INT hittest
= HTCLIENT
;
460 UINT raw_message
= msg
->message
;
463 if (msg
->message
>= WM_NCMOUSEFIRST
&& msg
->message
<= WM_NCMOUSELAST
)
465 raw_message
+= WM_MOUSEFIRST
- WM_NCMOUSEFIRST
;
466 hittest
= msg
->wParam
;
468 if (raw_message
== WM_LBUTTONDBLCLK
||
469 raw_message
== WM_RBUTTONDBLCLK
||
470 raw_message
== WM_MBUTTONDBLCLK
)
472 raw_message
+= WM_LBUTTONDOWN
- WM_LBUTTONDBLCLK
;
475 if (remove
) update_queue_key_state( raw_message
, 0 );
477 if (HOOK_IsHooked( WH_MOUSE
))
479 MOUSEHOOKSTRUCT hook
;
481 hook
.hwnd
= msg
->hwnd
;
482 hook
.wHitTestCode
= hittest
;
483 hook
.dwExtraInfo
= extra_info
;
484 if (HOOK_CallHooksA( WH_MOUSE
, remove
? HC_ACTION
: HC_NOREMOVE
,
485 msg
->message
, (LPARAM
)&hook
))
488 hook
.hwnd
= msg
->hwnd
;
489 hook
.wHitTestCode
= hittest
;
490 hook
.dwExtraInfo
= extra_info
;
491 HOOK_CallHooksA( WH_CBT
, HCBT_CLICKSKIPPED
, msg
->message
, (LPARAM
)&hook
);
496 if ((hittest
== HTERROR
) || (hittest
== HTNOWHERE
))
498 SendMessageA( msg
->hwnd
, WM_SETCURSOR
, msg
->hwnd
, MAKELONG( hittest
, raw_message
));
502 if (!remove
|| GetCapture()) return TRUE
;
506 if ((raw_message
== WM_LBUTTONDOWN
) ||
507 (raw_message
== WM_RBUTTONDOWN
) ||
508 (raw_message
== WM_MBUTTONDOWN
))
510 HWND hwndTop
= GetAncestor( msg
->hwnd
, GA_ROOT
);
512 /* Send the WM_PARENTNOTIFY,
513 * note that even for double/nonclient clicks
514 * notification message is still WM_L/M/RBUTTONDOWN.
516 MSG_SendParentNotify( msg
->hwnd
, raw_message
, 0, msg
->pt
);
518 /* Activate the window if needed */
520 if (msg
->hwnd
!= GetActiveWindow() && hwndTop
!= GetDesktopWindow())
522 LONG ret
= SendMessageA( msg
->hwnd
, WM_MOUSEACTIVATE
, hwndTop
,
523 MAKELONG( hittest
, raw_message
) );
527 case MA_NOACTIVATEANDEAT
:
532 case MA_ACTIVATEANDEAT
:
537 if (hwndTop
!= GetForegroundWindow() )
539 if (!WINPOS_SetActiveWindow( hwndTop
, TRUE
, TRUE
))
544 WARN( "unknown WM_MOUSEACTIVATE code %ld\n", ret
);
550 /* send the WM_SETCURSOR message */
552 /* Windows sends the normal mouse message as the message parameter
553 in the WM_SETCURSOR message even if it's non-client mouse message */
554 SendMessageA( msg
->hwnd
, WM_SETCURSOR
, msg
->hwnd
, MAKELONG( hittest
, raw_message
));
560 /***********************************************************************
561 * process_hardware_message
563 * returns TRUE if the contents of 'msg' should be passed to the application
565 BOOL
MSG_process_raw_hardware_message( MSG
*msg
, ULONG_PTR extra_info
, HWND hwnd_filter
,
566 UINT first
, UINT last
, BOOL remove
)
568 if (is_keyboard_message( msg
->message
))
570 if (!process_raw_keyboard_message( msg
, extra_info
)) return FALSE
;
572 else if (is_mouse_message( msg
->message
))
574 if (!process_raw_mouse_message( msg
, extra_info
)) return FALSE
;
578 ERR( "unknown message type %x\n", msg
->message
);
582 /* check destination thread and filters */
583 if (!check_message_filter( msg
, hwnd_filter
, first
, last
) ||
584 !WIN_IsCurrentThread( msg
->hwnd
))
586 /* queue it for later, or for another thread */
587 queue_hardware_message( msg
, extra_info
, MSG_HARDWARE_COOKED
);
591 /* save the message in the cooked queue if we didn't want to remove it */
592 if (!remove
) queue_hardware_message( msg
, extra_info
, MSG_HARDWARE_COOKED
);
597 /***********************************************************************
598 * MSG_process_cooked_hardware_message
600 * returns TRUE if the contents of 'msg' should be passed to the application
602 BOOL
MSG_process_cooked_hardware_message( MSG
*msg
, ULONG_PTR extra_info
, BOOL remove
)
604 if (is_keyboard_message( msg
->message
))
605 return process_cooked_keyboard_message( msg
, remove
);
607 if (is_mouse_message( msg
->message
))
608 return process_cooked_mouse_message( msg
, extra_info
, remove
);
610 ERR( "unknown message type %x\n", msg
->message
);
615 /**********************************************************************
616 * GetKeyState (USER.106)
618 INT16 WINAPI
GetKeyState16(INT16 vkey
)
620 return GetKeyState(vkey
);
624 /**********************************************************************
625 * GetKeyState (USER32.@)
627 * An application calls the GetKeyState function in response to a
628 * keyboard-input message. This function retrieves the state of the key
629 * at the time the input message was generated. (SDK 3.1 Vol 2. p 390)
631 SHORT WINAPI
GetKeyState(INT vkey
)
635 if (vkey
>= 'a' && vkey
<= 'z') vkey
+= 'A' - 'a';
636 retval
= ((WORD
)(QueueKeyStateTable
[vkey
] & 0x80) << 8 ) | (QueueKeyStateTable
[vkey
] & 0x01);
637 /* TRACE(key, "(0x%x) -> %x\n", vkey, retval); */
642 /**********************************************************************
643 * GetKeyboardState (USER.222)
644 * GetKeyboardState (USER32.@)
646 * An application calls the GetKeyboardState function in response to a
647 * keyboard-input message. This function retrieves the state of the keyboard
648 * at the time the input message was generated. (SDK 3.1 Vol 2. p 387)
650 BOOL WINAPI
GetKeyboardState(LPBYTE lpKeyState
)
652 TRACE_(key
)("(%p)\n", lpKeyState
);
653 if (lpKeyState
) memcpy(lpKeyState
, QueueKeyStateTable
, 256);
658 /**********************************************************************
659 * SetKeyboardState (USER.223)
660 * SetKeyboardState (USER32.@)
662 BOOL WINAPI
SetKeyboardState(LPBYTE lpKeyState
)
664 TRACE_(key
)("(%p)\n", lpKeyState
);
665 if (lpKeyState
) memcpy(QueueKeyStateTable
, lpKeyState
, 256);
670 /***********************************************************************
671 * WaitMessage (USER.112) Suspend thread pending messages
672 * WaitMessage (USER32.@) Suspend thread pending messages
674 * WaitMessage() suspends a thread until events appear in the thread's
677 BOOL WINAPI
WaitMessage(void)
679 return (MsgWaitForMultipleObjectsEx( 0, NULL
, INFINITE
, QS_ALLINPUT
, 0 ) != WAIT_FAILED
);
683 /***********************************************************************
684 * MsgWaitForMultipleObjectsEx (USER32.@)
686 DWORD WINAPI
MsgWaitForMultipleObjectsEx( DWORD count
, CONST HANDLE
*pHandles
,
687 DWORD timeout
, DWORD mask
, DWORD flags
)
689 HANDLE handles
[MAXIMUM_WAIT_OBJECTS
];
691 MESSAGEQUEUE
*msgQueue
;
693 if (count
> MAXIMUM_WAIT_OBJECTS
-1)
695 SetLastError( ERROR_INVALID_PARAMETER
);
699 if (!(msgQueue
= QUEUE_Current())) return WAIT_FAILED
;
701 /* set the queue mask */
702 SERVER_START_REQ( set_queue_mask
)
704 req
->wake_mask
= (flags
& MWMO_INPUTAVAILABLE
) ? mask
: 0;
705 req
->changed_mask
= mask
;
707 wine_server_call( req
);
711 /* Add the thread event to the handle list */
712 for (i
= 0; i
< count
; i
++) handles
[i
] = pHandles
[i
];
713 handles
[count
] = msgQueue
->server_queue
;
716 if (USER_Driver
.pMsgWaitForMultipleObjectsEx
)
718 ret
= USER_Driver
.pMsgWaitForMultipleObjectsEx( count
+1, handles
, timeout
, mask
, flags
);
719 if (ret
== count
+1) ret
= count
; /* pretend the msg queue is ready */
722 ret
= WaitForMultipleObjectsEx( count
+1, handles
, flags
& MWMO_WAITALL
,
723 timeout
, flags
& MWMO_ALERTABLE
);
728 /***********************************************************************
729 * MsgWaitForMultipleObjects (USER32.@)
731 DWORD WINAPI
MsgWaitForMultipleObjects( DWORD count
, CONST HANDLE
*handles
,
732 BOOL wait_all
, DWORD timeout
, DWORD mask
)
734 return MsgWaitForMultipleObjectsEx( count
, handles
, timeout
, mask
,
735 wait_all
? MWMO_WAITALL
: 0 );
739 /***********************************************************************
740 * WaitForInputIdle (USER32.@)
742 DWORD WINAPI
WaitForInputIdle( HANDLE hProcess
, DWORD dwTimeOut
)
744 DWORD start_time
, elapsed
, ret
;
745 HANDLE idle_event
= -1;
747 SERVER_START_REQ( wait_input_idle
)
749 req
->handle
= hProcess
;
750 req
->timeout
= dwTimeOut
;
751 if (!(ret
= wine_server_call_err( req
))) idle_event
= reply
->event
;
754 if (ret
) return WAIT_FAILED
; /* error */
755 if (!idle_event
) return 0; /* no event to wait on */
757 start_time
= GetTickCount();
760 TRACE("waiting for %x\n", idle_event
);
763 ret
= MsgWaitForMultipleObjects ( 1, &idle_event
, FALSE
, dwTimeOut
- elapsed
, QS_SENDMESSAGE
);
766 case WAIT_OBJECT_0
+1:
767 process_sent_messages();
771 TRACE("timeout or error\n");
777 if (dwTimeOut
!= INFINITE
)
779 elapsed
= GetTickCount() - start_time
;
780 if (elapsed
> dwTimeOut
)
790 /***********************************************************************
791 * UserYield (USER.332)
792 * UserYield16 (USER32.@)
794 void WINAPI
UserYield16(void)
798 /* Handle sent messages */
799 process_sent_messages();
802 ReleaseThunkLock(&count
);
805 RestoreThunkLock(count
);
806 /* Handle sent messages again */
807 process_sent_messages();
819 static const struct accent_char accent_chars
[] =
821 /* A good idea should be to read /usr/X11/lib/X11/locale/iso8859-x/Compose */
822 {'`', 'A', '\300'}, {'`', 'a', '\340'},
823 {'\'', 'A', '\301'}, {'\'', 'a', '\341'},
824 {'^', 'A', '\302'}, {'^', 'a', '\342'},
825 {'~', 'A', '\303'}, {'~', 'a', '\343'},
826 {'"', 'A', '\304'}, {'"', 'a', '\344'},
827 {'O', 'A', '\305'}, {'o', 'a', '\345'},
828 {'0', 'A', '\305'}, {'0', 'a', '\345'},
829 {'A', 'A', '\305'}, {'a', 'a', '\345'},
830 {'A', 'E', '\306'}, {'a', 'e', '\346'},
831 {',', 'C', '\307'}, {',', 'c', '\347'},
832 {'`', 'E', '\310'}, {'`', 'e', '\350'},
833 {'\'', 'E', '\311'}, {'\'', 'e', '\351'},
834 {'^', 'E', '\312'}, {'^', 'e', '\352'},
835 {'"', 'E', '\313'}, {'"', 'e', '\353'},
836 {'`', 'I', '\314'}, {'`', 'i', '\354'},
837 {'\'', 'I', '\315'}, {'\'', 'i', '\355'},
838 {'^', 'I', '\316'}, {'^', 'i', '\356'},
839 {'"', 'I', '\317'}, {'"', 'i', '\357'},
840 {'-', 'D', '\320'}, {'-', 'd', '\360'},
841 {'~', 'N', '\321'}, {'~', 'n', '\361'},
842 {'`', 'O', '\322'}, {'`', 'o', '\362'},
843 {'\'', 'O', '\323'}, {'\'', 'o', '\363'},
844 {'^', 'O', '\324'}, {'^', 'o', '\364'},
845 {'~', 'O', '\325'}, {'~', 'o', '\365'},
846 {'"', 'O', '\326'}, {'"', 'o', '\366'},
847 {'/', 'O', '\330'}, {'/', 'o', '\370'},
848 {'`', 'U', '\331'}, {'`', 'u', '\371'},
849 {'\'', 'U', '\332'}, {'\'', 'u', '\372'},
850 {'^', 'U', '\333'}, {'^', 'u', '\373'},
851 {'"', 'U', '\334'}, {'"', 'u', '\374'},
852 {'\'', 'Y', '\335'}, {'\'', 'y', '\375'},
853 {'T', 'H', '\336'}, {'t', 'h', '\376'},
854 {'s', 's', '\337'}, {'"', 'y', '\377'},
855 {'s', 'z', '\337'}, {'i', 'j', '\377'},
856 /* iso-8859-2 uses this */
857 {'<', 'L', '\245'}, {'<', 'l', '\265'}, /* caron */
858 {'<', 'S', '\251'}, {'<', 's', '\271'},
859 {'<', 'T', '\253'}, {'<', 't', '\273'},
860 {'<', 'Z', '\256'}, {'<', 'z', '\276'},
861 {'<', 'C', '\310'}, {'<', 'c', '\350'},
862 {'<', 'E', '\314'}, {'<', 'e', '\354'},
863 {'<', 'D', '\317'}, {'<', 'd', '\357'},
864 {'<', 'N', '\322'}, {'<', 'n', '\362'},
865 {'<', 'R', '\330'}, {'<', 'r', '\370'},
866 {';', 'A', '\241'}, {';', 'a', '\261'}, /* ogonek */
867 {';', 'E', '\312'}, {';', 'e', '\332'},
868 {'\'', 'Z', '\254'}, {'\'', 'z', '\274'}, /* acute */
869 {'\'', 'R', '\300'}, {'\'', 'r', '\340'},
870 {'\'', 'L', '\305'}, {'\'', 'l', '\345'},
871 {'\'', 'C', '\306'}, {'\'', 'c', '\346'},
872 {'\'', 'N', '\321'}, {'\'', 'n', '\361'},
873 /* collision whith S, from iso-8859-9 !!! */
874 {',', 'S', '\252'}, {',', 's', '\272'}, /* cedilla */
875 {',', 'T', '\336'}, {',', 't', '\376'},
876 {'.', 'Z', '\257'}, {'.', 'z', '\277'}, /* dot above */
877 {'/', 'L', '\243'}, {'/', 'l', '\263'}, /* slash */
878 {'/', 'D', '\320'}, {'/', 'd', '\360'},
879 {'(', 'A', '\303'}, {'(', 'a', '\343'}, /* breve */
880 {'\275', 'O', '\325'}, {'\275', 'o', '\365'}, /* double acute */
881 {'\275', 'U', '\334'}, {'\275', 'u', '\374'},
882 {'0', 'U', '\332'}, {'0', 'u', '\372'}, /* ring above */
883 /* iso-8859-3 uses this */
884 {'/', 'H', '\241'}, {'/', 'h', '\261'}, /* slash */
885 {'>', 'H', '\246'}, {'>', 'h', '\266'}, /* circumflex */
886 {'>', 'J', '\254'}, {'>', 'j', '\274'},
887 {'>', 'C', '\306'}, {'>', 'c', '\346'},
888 {'>', 'G', '\330'}, {'>', 'g', '\370'},
889 {'>', 'S', '\336'}, {'>', 's', '\376'},
890 /* collision whith G( from iso-8859-9 !!! */
891 {'(', 'G', '\253'}, {'(', 'g', '\273'}, /* breve */
892 {'(', 'U', '\335'}, {'(', 'u', '\375'},
893 /* collision whith I. from iso-8859-3 !!! */
894 {'.', 'I', '\251'}, {'.', 'i', '\271'}, /* dot above */
895 {'.', 'C', '\305'}, {'.', 'c', '\345'},
896 {'.', 'G', '\325'}, {'.', 'g', '\365'},
897 /* iso-8859-4 uses this */
898 {',', 'R', '\243'}, {',', 'r', '\263'}, /* cedilla */
899 {',', 'L', '\246'}, {',', 'l', '\266'},
900 {',', 'G', '\253'}, {',', 'g', '\273'},
901 {',', 'N', '\321'}, {',', 'n', '\361'},
902 {',', 'K', '\323'}, {',', 'k', '\363'},
903 {'~', 'I', '\245'}, {'~', 'i', '\265'}, /* tilde */
904 {'-', 'E', '\252'}, {'-', 'e', '\272'}, /* macron */
905 {'-', 'A', '\300'}, {'-', 'a', '\340'},
906 {'-', 'I', '\317'}, {'-', 'i', '\357'},
907 {'-', 'O', '\322'}, {'-', 'o', '\362'},
908 {'-', 'U', '\336'}, {'-', 'u', '\376'},
909 {'/', 'T', '\254'}, {'/', 't', '\274'}, /* slash */
910 {'.', 'E', '\314'}, {'.', 'e', '\344'}, /* dot above */
911 {';', 'I', '\307'}, {';', 'i', '\347'}, /* ogonek */
912 {';', 'U', '\331'}, {';', 'u', '\371'},
913 /* iso-8859-9 uses this */
914 /* iso-8859-9 has really bad choosen G( S, and I. as they collide
915 * whith the same letters on other iso-8859-x (that is they are on
916 * different places :-( ), if you use turkish uncomment these and
917 * comment out the lines in iso-8859-2 and iso-8859-3 sections
918 * FIXME: should be dynamic according to chosen language
919 * if/when Wine has turkish support.
921 /* collision whith G( from iso-8859-3 !!! */
922 /* {'(', 'G', '\320'}, {'(', 'g', '\360'}, */ /* breve */
923 /* collision whith S, from iso-8859-2 !!! */
924 /* {',', 'S', '\336'}, {',', 's', '\376'}, */ /* cedilla */
925 /* collision whith I. from iso-8859-3 !!! */
926 /* {'.', 'I', '\335'}, {'.', 'i', '\375'}, */ /* dot above */
930 /***********************************************************************
931 * TranslateMessage (USER32.@)
933 * Implementation of TranslateMessage.
935 * TranslateMessage translates virtual-key messages into character-messages,
937 * WM_KEYDOWN/WM_KEYUP combinations produce a WM_CHAR or WM_DEADCHAR message.
938 * ditto replacing WM_* with WM_SYS*
939 * This produces WM_CHAR messages only for keys mapped to ASCII characters
940 * by the keyboard driver.
942 BOOL WINAPI
TranslateMessage( const MSG
*msg
)
944 static int dead_char
;
948 if (msg
->message
>= WM_KEYFIRST
&& msg
->message
<= WM_KEYLAST
)
949 TRACE_(key
)("(%s, %04X, %08lX)\n",
950 SPY_GetMsgName(msg
->message
, msg
->hwnd
), msg
->wParam
, msg
->lParam
);
952 if ((msg
->message
!= WM_KEYDOWN
) && (msg
->message
!= WM_SYSKEYDOWN
)) return FALSE
;
954 TRACE_(key
)("Translating key %s (%04x), scancode %02x\n",
955 SPY_GetVKeyName(msg
->wParam
), msg
->wParam
, LOBYTE(HIWORD(msg
->lParam
)));
957 /* FIXME : should handle ToUnicode yielding 2 */
958 switch (ToUnicode(msg
->wParam
, HIWORD(msg
->lParam
), QueueKeyStateTable
, wp
, 2, 0))
961 message
= (msg
->message
== WM_KEYDOWN
) ? WM_CHAR
: WM_SYSCHAR
;
962 /* Should dead chars handling go in ToAscii ? */
967 if (wp
[0] == ' ') wp
[0] = dead_char
;
968 if (dead_char
== 0xa2) dead_char
= '(';
969 else if (dead_char
== 0xa8) dead_char
= '"';
970 else if (dead_char
== 0xb2) dead_char
= ';';
971 else if (dead_char
== 0xb4) dead_char
= '\'';
972 else if (dead_char
== 0xb7) dead_char
= '<';
973 else if (dead_char
== 0xb8) dead_char
= ',';
974 else if (dead_char
== 0xff) dead_char
= '.';
975 for (i
= 0; i
< sizeof(accent_chars
)/sizeof(accent_chars
[0]); i
++)
976 if ((accent_chars
[i
].ac_accent
== dead_char
) &&
977 (accent_chars
[i
].ac_char
== wp
[0]))
979 wp
[0] = accent_chars
[i
].ac_result
;
984 TRACE_(key
)("1 -> PostMessage(%s)\n", SPY_GetMsgName(message
, msg
->hwnd
));
985 PostMessageW( msg
->hwnd
, message
, wp
[0], msg
->lParam
);
989 message
= (msg
->message
== WM_KEYDOWN
) ? WM_DEADCHAR
: WM_SYSDEADCHAR
;
991 TRACE_(key
)("-1 -> PostMessage(%s)\n", SPY_GetMsgName(message
, msg
->hwnd
));
992 PostMessageW( msg
->hwnd
, message
, wp
[0], msg
->lParam
);
999 /***********************************************************************
1000 * DispatchMessageA (USER32.@)
1002 LONG WINAPI
DispatchMessageA( const MSG
* msg
)
1009 /* Process timer messages */
1010 if ((msg
->message
== WM_TIMER
) || (msg
->message
== WM_SYSTIMER
))
1014 /* HOOK_CallHooks32A( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
1016 /* before calling window proc, verify whether timer is still valid;
1017 there's a slim chance that the application kills the timer
1018 between GetMessage and DispatchMessage API calls */
1019 if (!TIMER_IsTimerValid(msg
->hwnd
, (UINT
) msg
->wParam
, (HWINDOWPROC
) msg
->lParam
))
1020 return 0; /* invalid winproc */
1022 return CallWindowProcA( (WNDPROC
)msg
->lParam
, msg
->hwnd
,
1023 msg
->message
, msg
->wParam
, GetTickCount() );
1027 if (!(wndPtr
= WIN_GetPtr( msg
->hwnd
)))
1029 if (msg
->hwnd
) SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1032 if (wndPtr
== WND_OTHER_PROCESS
)
1034 if (IsWindow( msg
->hwnd
))
1035 ERR( "cannot dispatch msg to other process window %x\n", msg
->hwnd
);
1036 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1039 if (!(winproc
= wndPtr
->winproc
))
1041 WIN_ReleasePtr( wndPtr
);
1044 painting
= (msg
->message
== WM_PAINT
);
1045 if (painting
) wndPtr
->flags
|= WIN_NEEDS_BEGINPAINT
;
1046 WIN_ReleasePtr( wndPtr
);
1047 /* hook_CallHooks32A( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
1049 SPY_EnterMessage( SPY_DISPATCHMESSAGE
, msg
->hwnd
, msg
->message
,
1050 msg
->wParam
, msg
->lParam
);
1051 retval
= CallWindowProcA( winproc
, msg
->hwnd
, msg
->message
,
1052 msg
->wParam
, msg
->lParam
);
1053 SPY_ExitMessage( SPY_RESULT_OK
, msg
->hwnd
, msg
->message
, retval
,
1054 msg
->wParam
, msg
->lParam
);
1056 if (painting
&& (wndPtr
= WIN_GetPtr( msg
->hwnd
)) && (wndPtr
!= WND_OTHER_PROCESS
))
1058 BOOL validate
= ((wndPtr
->flags
& WIN_NEEDS_BEGINPAINT
) && wndPtr
->hrgnUpdate
);
1059 wndPtr
->flags
&= ~WIN_NEEDS_BEGINPAINT
;
1060 WIN_ReleasePtr( wndPtr
);
1063 ERR( "BeginPaint not called on WM_PAINT for hwnd %04x!\n", msg
->hwnd
);
1064 /* Validate the update region to avoid infinite WM_PAINT loop */
1065 RedrawWindow( msg
->hwnd
, NULL
, 0,
1066 RDW_NOFRAME
| RDW_VALIDATE
| RDW_NOCHILDREN
| RDW_NOINTERNALPAINT
);
1073 /***********************************************************************
1074 * DispatchMessageW (USER32.@) Process Message
1076 * Process the message specified in the structure *_msg_.
1078 * If the lpMsg parameter points to a WM_TIMER message and the
1079 * parameter of the WM_TIMER message is not NULL, the lParam parameter
1080 * points to the function that is called instead of the window
1083 * The message must be valid.
1087 * DispatchMessage() returns the result of the window procedure invoked.
1094 LONG WINAPI
DispatchMessageW( const MSG
* msg
)
1101 /* Process timer messages */
1102 if ((msg
->message
== WM_TIMER
) || (msg
->message
== WM_SYSTIMER
))
1106 /* HOOK_CallHooks32W( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
1108 /* before calling window proc, verify whether timer is still valid;
1109 there's a slim chance that the application kills the timer
1110 between GetMessage and DispatchMessage API calls */
1111 if (!TIMER_IsTimerValid(msg
->hwnd
, (UINT
) msg
->wParam
, (HWINDOWPROC
) msg
->lParam
))
1112 return 0; /* invalid winproc */
1114 return CallWindowProcW( (WNDPROC
)msg
->lParam
, msg
->hwnd
,
1115 msg
->message
, msg
->wParam
, GetTickCount() );
1119 if (!(wndPtr
= WIN_GetPtr( msg
->hwnd
)))
1121 if (msg
->hwnd
) SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1124 if (wndPtr
== WND_OTHER_PROCESS
)
1126 if (IsWindow( msg
->hwnd
))
1127 ERR( "cannot dispatch msg to other process window %x\n", msg
->hwnd
);
1128 SetLastError( ERROR_INVALID_WINDOW_HANDLE
);
1131 if (!(winproc
= wndPtr
->winproc
))
1133 WIN_ReleasePtr( wndPtr
);
1136 painting
= (msg
->message
== WM_PAINT
);
1137 if (painting
) wndPtr
->flags
|= WIN_NEEDS_BEGINPAINT
;
1138 WIN_ReleasePtr( wndPtr
);
1139 /* HOOK_CallHooks32W( WH_CALLWNDPROC, HC_ACTION, 0, FIXME ); */
1141 SPY_EnterMessage( SPY_DISPATCHMESSAGE
, msg
->hwnd
, msg
->message
,
1142 msg
->wParam
, msg
->lParam
);
1143 retval
= CallWindowProcW( winproc
, msg
->hwnd
, msg
->message
,
1144 msg
->wParam
, msg
->lParam
);
1145 SPY_ExitMessage( SPY_RESULT_OK
, msg
->hwnd
, msg
->message
, retval
,
1146 msg
->wParam
, msg
->lParam
);
1148 if (painting
&& (wndPtr
= WIN_GetPtr( msg
->hwnd
)) && (wndPtr
!= WND_OTHER_PROCESS
))
1150 BOOL validate
= ((wndPtr
->flags
& WIN_NEEDS_BEGINPAINT
) && wndPtr
->hrgnUpdate
);
1151 wndPtr
->flags
&= ~WIN_NEEDS_BEGINPAINT
;
1152 WIN_ReleasePtr( wndPtr
);
1155 ERR( "BeginPaint not called on WM_PAINT for hwnd %04x!\n", msg
->hwnd
);
1156 /* Validate the update region to avoid infinite WM_PAINT loop */
1157 RedrawWindow( msg
->hwnd
, NULL
, 0,
1158 RDW_NOFRAME
| RDW_VALIDATE
| RDW_NOCHILDREN
| RDW_NOINTERNALPAINT
);
1165 /***********************************************************************
1166 * RegisterWindowMessage (USER.118)
1167 * RegisterWindowMessageA (USER32.@)
1169 WORD WINAPI
RegisterWindowMessageA( LPCSTR str
)
1171 TRACE("%s\n", str
);
1172 return GlobalAddAtomA( str
);
1176 /***********************************************************************
1177 * RegisterWindowMessageW (USER32.@)
1179 WORD WINAPI
RegisterWindowMessageW( LPCWSTR str
)
1181 TRACE("%p\n", str
);
1182 return GlobalAddAtomW( str
);
1186 /***********************************************************************
1187 * BroadcastSystemMessage (USER32.@)
1189 LONG WINAPI
BroadcastSystemMessage(
1190 DWORD dwFlags
,LPDWORD recipients
,UINT uMessage
,WPARAM wParam
,
1193 FIXME("(%08lx,%08lx,%08x,%08x,%08lx): stub!\n",
1194 dwFlags
,*recipients
,uMessage
,wParam
,lParam