2 * USER Input processing
4 * Copyright 1993 Bob Amstadt
5 * Copyright 1996 Albrecht Kleine
6 * Copyright 1997 David Faure
7 * Copyright 1998 Morten Welinder
8 * Copyright 1998 Ulrich Weigand
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/port.h"
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
38 #define WIN32_NO_STATUS
47 #include "user_private.h"
48 #include "wine/server.h"
49 #include "wine/debug.h"
50 #include "wine/unicode.h"
52 WINE_DEFAULT_DEBUG_CHANNEL(win
);
53 WINE_DECLARE_DEBUG_CHANNEL(keyboard
);
56 /***********************************************************************
59 static WORD
get_key_state(void)
63 if (GetSystemMetrics( SM_SWAPBUTTON
))
65 if (GetAsyncKeyState(VK_RBUTTON
) & 0x80) ret
|= MK_LBUTTON
;
66 if (GetAsyncKeyState(VK_LBUTTON
) & 0x80) ret
|= MK_RBUTTON
;
70 if (GetAsyncKeyState(VK_LBUTTON
) & 0x80) ret
|= MK_LBUTTON
;
71 if (GetAsyncKeyState(VK_RBUTTON
) & 0x80) ret
|= MK_RBUTTON
;
73 if (GetAsyncKeyState(VK_MBUTTON
) & 0x80) ret
|= MK_MBUTTON
;
74 if (GetAsyncKeyState(VK_SHIFT
) & 0x80) ret
|= MK_SHIFT
;
75 if (GetAsyncKeyState(VK_CONTROL
) & 0x80) ret
|= MK_CONTROL
;
76 if (GetAsyncKeyState(VK_XBUTTON1
) & 0x80) ret
|= MK_XBUTTON1
;
77 if (GetAsyncKeyState(VK_XBUTTON2
) & 0x80) ret
|= MK_XBUTTON2
;
82 /**********************************************************************
85 BOOL
set_capture_window( HWND hwnd
, UINT gui_flags
, HWND
*prev_ret
)
91 if (gui_flags
& GUI_INMENUMODE
) flags
|= CAPTURE_MENU
;
92 if (gui_flags
& GUI_INMOVESIZE
) flags
|= CAPTURE_MOVESIZE
;
94 SERVER_START_REQ( set_capture_window
)
96 req
->handle
= wine_server_user_handle( hwnd
);
98 if ((ret
= !wine_server_call_err( req
)))
100 previous
= wine_server_ptr_handle( reply
->previous
);
101 hwnd
= wine_server_ptr_handle( reply
->full_handle
);
108 USER_Driver
->pSetCapture( hwnd
, gui_flags
);
110 if (previous
&& previous
!= hwnd
)
111 SendMessageW( previous
, WM_CAPTURECHANGED
, 0, (LPARAM
)hwnd
);
113 if (prev_ret
) *prev_ret
= previous
;
119 /***********************************************************************
120 * __wine_send_input (USER32.@)
122 * Internal SendInput function to allow the graphics driver to inject real events.
124 BOOL CDECL
__wine_send_input( HWND hwnd
, const INPUT
*input
)
126 NTSTATUS status
= send_hardware_message( hwnd
, input
, 0 );
127 if (status
) SetLastError( RtlNtStatusToDosError(status
) );
132 /***********************************************************************
133 * update_mouse_coords
135 * Helper for SendInput.
137 static void update_mouse_coords( INPUT
*input
)
139 if (!(input
->u
.mi
.dwFlags
& MOUSEEVENTF_MOVE
)) return;
141 if (input
->u
.mi
.dwFlags
& MOUSEEVENTF_ABSOLUTE
)
143 input
->u
.mi
.dx
= (input
->u
.mi
.dx
* GetSystemMetrics( SM_CXSCREEN
)) >> 16;
144 input
->u
.mi
.dy
= (input
->u
.mi
.dy
* GetSystemMetrics( SM_CYSCREEN
)) >> 16;
150 /* dx and dy can be negative numbers for relative movements */
151 SystemParametersInfoW(SPI_GETMOUSE
, 0, accel
, 0);
153 if (!accel
[2]) return;
155 if (abs(input
->u
.mi
.dx
) > accel
[0])
158 if ((abs(input
->u
.mi
.dx
) > accel
[1]) && (accel
[2] == 2)) input
->u
.mi
.dx
*= 2;
160 if (abs(input
->u
.mi
.dy
) > accel
[0])
163 if ((abs(input
->u
.mi
.dy
) > accel
[1]) && (accel
[2] == 2)) input
->u
.mi
.dy
*= 2;
168 /***********************************************************************
169 * SendInput (USER32.@)
171 UINT WINAPI
SendInput( UINT count
, LPINPUT inputs
, int size
)
176 for (i
= 0; i
< count
; i
++)
178 if (inputs
[i
].type
== INPUT_MOUSE
)
180 /* we need to update the coordinates to what the server expects */
181 INPUT input
= inputs
[i
];
182 update_mouse_coords( &input
);
183 if (!(status
= send_hardware_message( 0, &input
, SEND_HWMSG_INJECTED
)))
185 if ((input
.u
.mi
.dwFlags
& MOUSEEVENTF_MOVE
) &&
186 ((input
.u
.mi
.dwFlags
& MOUSEEVENTF_ABSOLUTE
) || input
.u
.mi
.dx
|| input
.u
.mi
.dy
))
188 /* we have to actually move the cursor */
191 if (!(input
.u
.mi
.dwFlags
& MOUSEEVENTF_ABSOLUTE
) ||
192 pt
.x
!= input
.u
.mi
.dx
|| pt
.y
!= input
.u
.mi
.dy
)
193 USER_Driver
->pSetCursorPos( pt
.x
, pt
.y
);
197 else status
= send_hardware_message( 0, &inputs
[i
], SEND_HWMSG_INJECTED
);
201 SetLastError( RtlNtStatusToDosError(status
) );
210 /***********************************************************************
211 * keybd_event (USER32.@)
213 void WINAPI
keybd_event( BYTE bVk
, BYTE bScan
,
214 DWORD dwFlags
, ULONG_PTR dwExtraInfo
)
218 input
.type
= INPUT_KEYBOARD
;
219 input
.u
.ki
.wVk
= bVk
;
220 input
.u
.ki
.wScan
= bScan
;
221 input
.u
.ki
.dwFlags
= dwFlags
;
223 input
.u
.ki
.dwExtraInfo
= dwExtraInfo
;
224 SendInput( 1, &input
, sizeof(input
) );
228 /***********************************************************************
229 * mouse_event (USER32.@)
231 void WINAPI
mouse_event( DWORD dwFlags
, DWORD dx
, DWORD dy
,
232 DWORD dwData
, ULONG_PTR dwExtraInfo
)
236 input
.type
= INPUT_MOUSE
;
239 input
.u
.mi
.mouseData
= dwData
;
240 input
.u
.mi
.dwFlags
= dwFlags
;
242 input
.u
.mi
.dwExtraInfo
= dwExtraInfo
;
243 SendInput( 1, &input
, sizeof(input
) );
247 /***********************************************************************
248 * GetCursorPos (USER32.@)
250 BOOL WINAPI DECLSPEC_HOTPATCH
GetCursorPos( POINT
*pt
)
255 if (!pt
) return FALSE
;
257 SERVER_START_REQ( set_cursor
)
259 if ((ret
= !wine_server_call( req
)))
261 pt
->x
= reply
->new_x
;
262 pt
->y
= reply
->new_y
;
263 last_change
= reply
->last_change
;
268 /* query new position from graphics driver if we haven't updated recently */
269 if (ret
&& GetTickCount() - last_change
> 100) ret
= USER_Driver
->pGetCursorPos( pt
);
274 /***********************************************************************
275 * GetCursorInfo (USER32.@)
277 BOOL WINAPI
GetCursorInfo( PCURSORINFO pci
)
283 SERVER_START_REQ( get_thread_input
)
286 if ((ret
= !wine_server_call( req
)))
288 pci
->hCursor
= wine_server_ptr_handle( reply
->cursor
);
289 pci
->flags
= (reply
->show_count
>= 0) ? CURSOR_SHOWING
: 0;
293 GetCursorPos(&pci
->ptScreenPos
);
298 /***********************************************************************
299 * SetCursorPos (USER32.@)
301 BOOL WINAPI DECLSPEC_HOTPATCH
SetCursorPos( INT x
, INT y
)
304 INT prev_x
, prev_y
, new_x
, new_y
;
306 SERVER_START_REQ( set_cursor
)
308 req
->flags
= SET_CURSOR_POS
;
311 if ((ret
= !wine_server_call( req
)))
313 prev_x
= reply
->prev_x
;
314 prev_y
= reply
->prev_y
;
315 new_x
= reply
->new_x
;
316 new_y
= reply
->new_y
;
320 if (ret
&& (prev_x
!= new_x
|| prev_y
!= new_y
)) USER_Driver
->pSetCursorPos( new_x
, new_y
);
325 /**********************************************************************
326 * SetCapture (USER32.@)
328 HWND WINAPI DECLSPEC_HOTPATCH
SetCapture( HWND hwnd
)
332 set_capture_window( hwnd
, 0, &previous
);
337 /**********************************************************************
338 * ReleaseCapture (USER32.@)
340 BOOL WINAPI DECLSPEC_HOTPATCH
ReleaseCapture(void)
342 BOOL ret
= set_capture_window( 0, 0, NULL
);
344 /* Somebody may have missed some mouse movements */
345 if (ret
) mouse_event( MOUSEEVENTF_MOVE
, 0, 0, 0, 0 );
351 /**********************************************************************
352 * GetCapture (USER32.@)
354 HWND WINAPI
GetCapture(void)
358 SERVER_START_REQ( get_thread_input
)
360 req
->tid
= GetCurrentThreadId();
361 if (!wine_server_call_err( req
)) ret
= wine_server_ptr_handle( reply
->capture
);
368 /**********************************************************************
369 * GetAsyncKeyState (USER32.@)
371 * Determine if a key is or was pressed. retval has high-order
372 * bit set to 1 if currently pressed, low-order bit set to 1 if key has
375 SHORT WINAPI DECLSPEC_HOTPATCH
GetAsyncKeyState( INT key
)
379 if (key
< 0 || key
>= 256) return 0;
381 if ((ret
= USER_Driver
->pGetAsyncKeyState( key
)) == -1)
384 SERVER_START_REQ( get_key_state
)
388 if (!wine_server_call( req
))
390 if (reply
->state
& 0x40) ret
|= 0x0001;
391 if (reply
->state
& 0x80) ret
|= 0x8000;
400 /***********************************************************************
401 * GetQueueStatus (USER32.@)
403 DWORD WINAPI
GetQueueStatus( UINT flags
)
407 if (flags
& ~(QS_ALLINPUT
| QS_ALLPOSTMESSAGE
| QS_SMRESULT
))
409 SetLastError( ERROR_INVALID_FLAGS
);
413 /* check for pending X events */
414 USER_Driver
->pMsgWaitForMultipleObjectsEx( 0, NULL
, 0, flags
, 0 );
416 SERVER_START_REQ( get_queue_status
)
419 wine_server_call( req
);
420 ret
= MAKELONG( reply
->changed_bits
& flags
, reply
->wake_bits
& flags
);
427 /***********************************************************************
428 * GetInputState (USER32.@)
430 BOOL WINAPI
GetInputState(void)
434 /* check for pending X events */
435 USER_Driver
->pMsgWaitForMultipleObjectsEx( 0, NULL
, 0, QS_INPUT
, 0 );
437 SERVER_START_REQ( get_queue_status
)
440 wine_server_call( req
);
441 ret
= reply
->wake_bits
& (QS_KEY
| QS_MOUSEBUTTON
);
448 /******************************************************************
449 * GetLastInputInfo (USER32.@)
451 BOOL WINAPI
GetLastInputInfo(PLASTINPUTINFO plii
)
457 if (plii
->cbSize
!= sizeof (*plii
) )
459 SetLastError(ERROR_INVALID_PARAMETER
);
463 SERVER_START_REQ( get_last_input_time
)
465 ret
= !wine_server_call_err( req
);
467 plii
->dwTime
= reply
->time
;
474 /******************************************************************
475 * GetRawInputDeviceList (USER32.@)
477 UINT WINAPI
GetRawInputDeviceList(PRAWINPUTDEVICELIST pRawInputDeviceList
, PUINT puiNumDevices
, UINT cbSize
)
479 FIXME("(pRawInputDeviceList=%p, puiNumDevices=%p, cbSize=%d) stub!\n", pRawInputDeviceList
, puiNumDevices
, cbSize
);
481 if(pRawInputDeviceList
)
482 memset(pRawInputDeviceList
, 0, sizeof *pRawInputDeviceList
);
488 /******************************************************************
489 * RegisterRawInputDevices (USER32.@)
491 BOOL WINAPI DECLSPEC_HOTPATCH
RegisterRawInputDevices(PRAWINPUTDEVICE pRawInputDevices
, UINT uiNumDevices
, UINT cbSize
)
493 FIXME("(pRawInputDevices=%p, uiNumDevices=%d, cbSize=%d) stub!\n", pRawInputDevices
, uiNumDevices
, cbSize
);
499 /******************************************************************
500 * GetRawInputData (USER32.@)
502 UINT WINAPI
GetRawInputData(HRAWINPUT hRawInput
, UINT uiCommand
, LPVOID pData
, PUINT pcbSize
, UINT cbSizeHeader
)
504 FIXME("(hRawInput=%p, uiCommand=%d, pData=%p, pcbSize=%p, cbSizeHeader=%d) stub!\n",
505 hRawInput
, uiCommand
, pData
, pcbSize
, cbSizeHeader
);
511 /******************************************************************
512 * GetRawInputBuffer (USER32.@)
514 UINT WINAPI DECLSPEC_HOTPATCH
GetRawInputBuffer(PRAWINPUT pData
, PUINT pcbSize
, UINT cbSizeHeader
)
516 FIXME("(pData=%p, pcbSize=%p, cbSizeHeader=%d) stub!\n", pData
, pcbSize
, cbSizeHeader
);
522 /******************************************************************
523 * GetRawInputDeviceInfoA (USER32.@)
525 UINT WINAPI
GetRawInputDeviceInfoA(HANDLE hDevice
, UINT uiCommand
, LPVOID pData
, PUINT pcbSize
)
527 FIXME("(hDevice=%p, uiCommand=%d, pData=%p, pcbSize=%p) stub!\n", hDevice
, uiCommand
, pData
, pcbSize
);
533 /******************************************************************
534 * GetRawInputDeviceInfoW (USER32.@)
536 UINT WINAPI
GetRawInputDeviceInfoW(HANDLE hDevice
, UINT uiCommand
, LPVOID pData
, PUINT pcbSize
)
538 FIXME("(hDevice=%p, uiCommand=%d, pData=%p, pcbSize=%p) stub!\n", hDevice
, uiCommand
, pData
, pcbSize
);
544 /******************************************************************
545 * GetRegisteredRawInputDevices (USER32.@)
547 UINT WINAPI
GetRegisteredRawInputDevices(PRAWINPUTDEVICE pRawInputDevices
, PUINT puiNumDevices
, UINT cbSize
)
549 FIXME("(pRawInputDevices=%p, puiNumDevices=%p, cbSize=%d) stub!\n", pRawInputDevices
, puiNumDevices
, cbSize
);
555 /******************************************************************
556 * DefRawInputProc (USER32.@)
558 LRESULT WINAPI
DefRawInputProc(PRAWINPUT
*paRawInput
, INT nInput
, UINT cbSizeHeader
)
560 FIXME("(paRawInput=%p, nInput=%d, cbSizeHeader=%d) stub!\n", *paRawInput
, nInput
, cbSizeHeader
);
566 /**********************************************************************
567 * AttachThreadInput (USER32.@)
569 * Attaches the input processing mechanism of one thread to that of
572 BOOL WINAPI
AttachThreadInput( DWORD from
, DWORD to
, BOOL attach
)
576 SERVER_START_REQ( attach_thread_input
)
578 req
->tid_from
= from
;
580 req
->attach
= attach
;
581 ret
= !wine_server_call_err( req
);
588 /**********************************************************************
589 * GetKeyState (USER32.@)
591 * An application calls the GetKeyState function in response to a
592 * keyboard-input message. This function retrieves the state of the key
593 * at the time the input message was generated.
595 SHORT WINAPI DECLSPEC_HOTPATCH
GetKeyState(INT vkey
)
599 SERVER_START_REQ( get_key_state
)
601 req
->tid
= GetCurrentThreadId();
603 if (!wine_server_call( req
)) retval
= (signed char)reply
->state
;
606 TRACE("key (0x%x) -> %x\n", vkey
, retval
);
611 /**********************************************************************
612 * GetKeyboardState (USER32.@)
614 BOOL WINAPI DECLSPEC_HOTPATCH
GetKeyboardState( LPBYTE state
)
618 TRACE("(%p)\n", state
);
620 memset( state
, 0, 256 );
621 SERVER_START_REQ( get_key_state
)
623 req
->tid
= GetCurrentThreadId();
625 wine_server_set_reply( req
, state
, 256 );
626 ret
= !wine_server_call_err( req
);
633 /**********************************************************************
634 * SetKeyboardState (USER32.@)
636 BOOL WINAPI
SetKeyboardState( LPBYTE state
)
640 SERVER_START_REQ( set_key_state
)
642 req
->tid
= GetCurrentThreadId();
643 wine_server_add_data( req
, state
, 256 );
644 ret
= !wine_server_call_err( req
);
651 /**********************************************************************
652 * VkKeyScanA (USER32.@)
654 * VkKeyScan translates an ANSI character to a virtual-key and shift code
655 * for the current keyboard.
656 * high-order byte yields :
660 * 3-5 Shift-key combinations that are not used for characters
663 * I.e. : Shift = 1, Ctrl = 2, Alt = 4.
664 * FIXME : works ok except for dead chars :
665 * VkKeyScan '^'(0x5e, 94) ... got keycode 00 ... returning 00
666 * VkKeyScan '`'(0x60, 96) ... got keycode 00 ... returning 00
668 SHORT WINAPI
VkKeyScanA(CHAR cChar
)
672 if (IsDBCSLeadByte(cChar
)) return -1;
674 MultiByteToWideChar(CP_ACP
, 0, &cChar
, 1, &wChar
, 1);
675 return VkKeyScanW(wChar
);
678 /******************************************************************************
679 * VkKeyScanW (USER32.@)
681 SHORT WINAPI
VkKeyScanW(WCHAR cChar
)
683 return VkKeyScanExW(cChar
, GetKeyboardLayout(0));
686 /**********************************************************************
687 * VkKeyScanExA (USER32.@)
689 WORD WINAPI
VkKeyScanExA(CHAR cChar
, HKL dwhkl
)
693 if (IsDBCSLeadByte(cChar
)) return -1;
695 MultiByteToWideChar(CP_ACP
, 0, &cChar
, 1, &wChar
, 1);
696 return VkKeyScanExW(wChar
, dwhkl
);
699 /******************************************************************************
700 * VkKeyScanExW (USER32.@)
702 WORD WINAPI
VkKeyScanExW(WCHAR cChar
, HKL dwhkl
)
704 return USER_Driver
->pVkKeyScanEx(cChar
, dwhkl
);
707 /**********************************************************************
708 * OemKeyScan (USER32.@)
710 DWORD WINAPI
OemKeyScan(WORD wOemChar
)
715 /******************************************************************************
716 * GetKeyboardType (USER32.@)
718 INT WINAPI
GetKeyboardType(INT nTypeFlag
)
720 TRACE_(keyboard
)("(%d)\n", nTypeFlag
);
723 case 0: /* Keyboard type */
724 return 4; /* AT-101 */
725 case 1: /* Keyboard Subtype */
726 return 0; /* There are no defined subtypes */
727 case 2: /* Number of F-keys */
728 return 12; /* We're doing an 101 for now, so return 12 F-keys */
730 WARN_(keyboard
)("Unknown type\n");
731 return 0; /* The book says 0 here, so 0 */
735 /******************************************************************************
736 * MapVirtualKeyA (USER32.@)
738 UINT WINAPI
MapVirtualKeyA(UINT code
, UINT maptype
)
740 return MapVirtualKeyExA( code
, maptype
, GetKeyboardLayout(0) );
743 /******************************************************************************
744 * MapVirtualKeyW (USER32.@)
746 UINT WINAPI
MapVirtualKeyW(UINT code
, UINT maptype
)
748 return MapVirtualKeyExW(code
, maptype
, GetKeyboardLayout(0));
751 /******************************************************************************
752 * MapVirtualKeyExA (USER32.@)
754 UINT WINAPI
MapVirtualKeyExA(UINT code
, UINT maptype
, HKL hkl
)
758 ret
= MapVirtualKeyExW( code
, maptype
, hkl
);
759 if (maptype
== MAPVK_VK_TO_CHAR
)
764 WideCharToMultiByte( CP_ACP
, 0, &wch
, 1, (LPSTR
)&ch
, 1, NULL
, NULL
);
770 /******************************************************************************
771 * MapVirtualKeyExW (USER32.@)
773 UINT WINAPI
MapVirtualKeyExW(UINT code
, UINT maptype
, HKL hkl
)
775 TRACE_(keyboard
)("(%X, %d, %p)\n", code
, maptype
, hkl
);
777 return USER_Driver
->pMapVirtualKeyEx(code
, maptype
, hkl
);
780 /****************************************************************************
781 * GetKBCodePage (USER32.@)
783 UINT WINAPI
GetKBCodePage(void)
788 /***********************************************************************
789 * GetKeyboardLayout (USER32.@)
791 * - device handle for keyboard layout defaulted to
792 * the language id. This is the way Windows default works.
793 * - the thread identifier is also ignored.
795 HKL WINAPI
GetKeyboardLayout(DWORD thread_id
)
797 return USER_Driver
->pGetKeyboardLayout(thread_id
);
800 /****************************************************************************
801 * GetKeyboardLayoutNameA (USER32.@)
803 BOOL WINAPI
GetKeyboardLayoutNameA(LPSTR pszKLID
)
805 WCHAR buf
[KL_NAMELENGTH
];
807 if (GetKeyboardLayoutNameW(buf
))
808 return WideCharToMultiByte( CP_ACP
, 0, buf
, -1, pszKLID
, KL_NAMELENGTH
, NULL
, NULL
) != 0;
812 /****************************************************************************
813 * GetKeyboardLayoutNameW (USER32.@)
815 BOOL WINAPI
GetKeyboardLayoutNameW(LPWSTR pwszKLID
)
817 return USER_Driver
->pGetKeyboardLayoutName(pwszKLID
);
820 /****************************************************************************
821 * GetKeyNameTextA (USER32.@)
823 INT WINAPI
GetKeyNameTextA(LONG lParam
, LPSTR lpBuffer
, INT nSize
)
828 if (!GetKeyNameTextW(lParam
, buf
, 256))
833 ret
= WideCharToMultiByte(CP_ACP
, 0, buf
, -1, lpBuffer
, nSize
, NULL
, NULL
);
842 /****************************************************************************
843 * GetKeyNameTextW (USER32.@)
845 INT WINAPI
GetKeyNameTextW(LONG lParam
, LPWSTR lpBuffer
, INT nSize
)
847 return USER_Driver
->pGetKeyNameText( lParam
, lpBuffer
, nSize
);
850 /****************************************************************************
851 * ToUnicode (USER32.@)
853 INT WINAPI
ToUnicode(UINT virtKey
, UINT scanCode
, const BYTE
*lpKeyState
,
854 LPWSTR lpwStr
, int size
, UINT flags
)
856 return ToUnicodeEx(virtKey
, scanCode
, lpKeyState
, lpwStr
, size
, flags
, GetKeyboardLayout(0));
859 /****************************************************************************
860 * ToUnicodeEx (USER32.@)
862 INT WINAPI
ToUnicodeEx(UINT virtKey
, UINT scanCode
, const BYTE
*lpKeyState
,
863 LPWSTR lpwStr
, int size
, UINT flags
, HKL hkl
)
865 return USER_Driver
->pToUnicodeEx(virtKey
, scanCode
, lpKeyState
, lpwStr
, size
, flags
, hkl
);
868 /****************************************************************************
871 INT WINAPI
ToAscii( UINT virtKey
, UINT scanCode
, const BYTE
*lpKeyState
,
872 LPWORD lpChar
, UINT flags
)
874 return ToAsciiEx(virtKey
, scanCode
, lpKeyState
, lpChar
, flags
, GetKeyboardLayout(0));
877 /****************************************************************************
878 * ToAsciiEx (USER32.@)
880 INT WINAPI
ToAsciiEx( UINT virtKey
, UINT scanCode
, const BYTE
*lpKeyState
,
881 LPWORD lpChar
, UINT flags
, HKL dwhkl
)
886 ret
= ToUnicodeEx(virtKey
, scanCode
, lpKeyState
, uni_chars
, 2, flags
, dwhkl
);
887 if (ret
< 0) n_ret
= 1; /* FIXME: make ToUnicode return 2 for dead chars */
889 WideCharToMultiByte(CP_ACP
, 0, uni_chars
, n_ret
, (LPSTR
)lpChar
, 2, NULL
, NULL
);
893 /**********************************************************************
894 * ActivateKeyboardLayout (USER32.@)
896 HKL WINAPI
ActivateKeyboardLayout(HKL hLayout
, UINT flags
)
898 TRACE_(keyboard
)("(%p, %d)\n", hLayout
, flags
);
900 return USER_Driver
->pActivateKeyboardLayout(hLayout
, flags
);
903 /**********************************************************************
904 * BlockInput (USER32.@)
906 BOOL WINAPI
BlockInput(BOOL fBlockIt
)
908 FIXME_(keyboard
)("(%d): stub\n", fBlockIt
);
909 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
914 /***********************************************************************
915 * GetKeyboardLayoutList (USER32.@)
917 * Return number of values available if either input parm is
918 * 0, per MS documentation.
920 UINT WINAPI
GetKeyboardLayoutList(INT nBuff
, HKL
*layouts
)
925 ULONG_PTR baselayout
;
927 static const WCHAR szKeyboardReg
[] = {'S','y','s','t','e','m','\\','C','u','r','r','e','n','t','C','o','n','t','r','o','l','S','e','t','\\','C','o','n','t','r','o','l','\\','K','e','y','b','o','a','r','d',' ','L','a','y','o','u','t','s',0};
929 TRACE_(keyboard
)("(%d,%p)\n",nBuff
,layouts
);
931 baselayout
= GetUserDefaultLCID();
932 langid
= PRIMARYLANGID(LANGIDFROMLCID(baselayout
));
933 if (langid
== LANG_CHINESE
|| langid
== LANG_JAPANESE
|| langid
== LANG_KOREAN
)
934 baselayout
|= 0xe001 << 16; /* IME */
936 baselayout
|= baselayout
<< 16;
938 /* Enumerate the Registry */
939 rc
= RegOpenKeyW(HKEY_LOCAL_MACHINE
,szKeyboardReg
,&hKeyKeyboard
);
940 if (rc
== ERROR_SUCCESS
)
945 rc
= RegEnumKeyW(hKeyKeyboard
, count
, szKeyName
, 9);
946 if (rc
== ERROR_SUCCESS
)
948 layout
= (HKL
)strtoulW(szKeyName
,NULL
,16);
949 if (baselayout
!= 0 && layout
== (HKL
)baselayout
)
950 baselayout
= 0; /* found in the registry do not add again */
951 if (nBuff
&& layouts
)
953 if (count
>= nBuff
) break;
954 layouts
[count
] = layout
;
958 } while (rc
== ERROR_SUCCESS
);
959 RegCloseKey(hKeyKeyboard
);
962 /* make sure our base layout is on the list */
965 if (nBuff
&& layouts
)
969 layouts
[count
] = (HKL
)baselayout
;
981 /***********************************************************************
982 * RegisterHotKey (USER32.@)
984 BOOL WINAPI
RegisterHotKey(HWND hwnd
,INT id
,UINT modifiers
,UINT vk
)
989 TRACE_(keyboard
)("(%p,%d,0x%08x,%X)\n",hwnd
,id
,modifiers
,vk
);
991 if ((hwnd
== NULL
|| WIN_IsCurrentThread(hwnd
)) &&
992 !USER_Driver
->pRegisterHotKey(hwnd
, modifiers
, vk
))
995 SERVER_START_REQ( register_hotkey
)
997 req
->window
= wine_server_user_handle( hwnd
);
999 req
->flags
= modifiers
;
1001 if ((ret
= !wine_server_call_err( req
)))
1003 replaced
= reply
->replaced
;
1004 modifiers
= reply
->flags
;
1010 if (ret
&& replaced
)
1011 USER_Driver
->pUnregisterHotKey(hwnd
, modifiers
, vk
);
1016 /***********************************************************************
1017 * UnregisterHotKey (USER32.@)
1019 BOOL WINAPI
UnregisterHotKey(HWND hwnd
,INT id
)
1024 TRACE_(keyboard
)("(%p,%d)\n",hwnd
,id
);
1026 SERVER_START_REQ( unregister_hotkey
)
1028 req
->window
= wine_server_user_handle( hwnd
);
1030 if ((ret
= !wine_server_call_err( req
)))
1032 modifiers
= reply
->flags
;
1039 USER_Driver
->pUnregisterHotKey(hwnd
, modifiers
, vk
);
1044 /***********************************************************************
1045 * LoadKeyboardLayoutW (USER32.@)
1047 HKL WINAPI
LoadKeyboardLayoutW(LPCWSTR pwszKLID
, UINT Flags
)
1049 TRACE_(keyboard
)("(%s, %d)\n", debugstr_w(pwszKLID
), Flags
);
1051 return USER_Driver
->pLoadKeyboardLayout(pwszKLID
, Flags
);
1054 /***********************************************************************
1055 * LoadKeyboardLayoutA (USER32.@)
1057 HKL WINAPI
LoadKeyboardLayoutA(LPCSTR pwszKLID
, UINT Flags
)
1060 UNICODE_STRING pwszKLIDW
;
1062 if (pwszKLID
) RtlCreateUnicodeStringFromAsciiz(&pwszKLIDW
, pwszKLID
);
1063 else pwszKLIDW
.Buffer
= NULL
;
1065 ret
= LoadKeyboardLayoutW(pwszKLIDW
.Buffer
, Flags
);
1066 RtlFreeUnicodeString(&pwszKLIDW
);
1071 /***********************************************************************
1072 * UnloadKeyboardLayout (USER32.@)
1074 BOOL WINAPI
UnloadKeyboardLayout(HKL hkl
)
1076 TRACE_(keyboard
)("(%p)\n", hkl
);
1078 return USER_Driver
->pUnloadKeyboardLayout(hkl
);
1081 typedef struct __TRACKINGLIST
{
1082 TRACKMOUSEEVENT tme
;
1083 POINT pos
; /* center of hover rectangle */
1086 /* FIXME: move tracking stuff into a per thread data */
1087 static _TRACKINGLIST tracking_info
;
1088 static UINT_PTR timer
;
1090 static void check_mouse_leave(HWND hwnd
, int hittest
)
1092 if (tracking_info
.tme
.hwndTrack
!= hwnd
)
1094 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
1095 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSELEAVE
, 0, 0);
1097 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSELEAVE
, 0, 0);
1099 /* remove the TME_LEAVE flag */
1100 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
1104 if (hittest
== HTCLIENT
)
1106 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
1108 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSELEAVE
, 0, 0);
1109 /* remove the TME_LEAVE flag */
1110 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
1115 if (!(tracking_info
.tme
.dwFlags
& TME_NONCLIENT
))
1117 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSELEAVE
, 0, 0);
1118 /* remove the TME_LEAVE flag */
1119 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
1125 static void CALLBACK
TrackMouseEventProc(HWND hwnd
, UINT uMsg
, UINT_PTR idEvent
,
1129 INT hoverwidth
= 0, hoverheight
= 0, hittest
;
1131 TRACE("hwnd %p, msg %04x, id %04lx, time %u\n", hwnd
, uMsg
, idEvent
, dwTime
);
1134 hwnd
= WINPOS_WindowFromPoint(hwnd
, pos
, &hittest
);
1136 TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos
), hwnd
, hittest
);
1138 SystemParametersInfoW(SPI_GETMOUSEHOVERWIDTH
, 0, &hoverwidth
, 0);
1139 SystemParametersInfoW(SPI_GETMOUSEHOVERHEIGHT
, 0, &hoverheight
, 0);
1141 TRACE("tracked pos %s, current pos %s, hover width %d, hover height %d\n",
1142 wine_dbgstr_point(&tracking_info
.pos
), wine_dbgstr_point(&pos
),
1143 hoverwidth
, hoverheight
);
1145 /* see if this tracking event is looking for TME_LEAVE and that the */
1146 /* mouse has left the window */
1147 if (tracking_info
.tme
.dwFlags
& TME_LEAVE
)
1149 check_mouse_leave(hwnd
, hittest
);
1152 if (tracking_info
.tme
.hwndTrack
!= hwnd
)
1154 /* mouse is gone, stop tracking mouse hover */
1155 tracking_info
.tme
.dwFlags
&= ~TME_HOVER
;
1158 /* see if we are tracking hovering for this hwnd */
1159 if (tracking_info
.tme
.dwFlags
& TME_HOVER
)
1161 /* has the cursor moved outside the rectangle centered around pos? */
1162 if ((abs(pos
.x
- tracking_info
.pos
.x
) > (hoverwidth
/ 2)) ||
1163 (abs(pos
.y
- tracking_info
.pos
.y
) > (hoverheight
/ 2)))
1165 /* record this new position as the current position */
1166 tracking_info
.pos
= pos
;
1170 if (hittest
== HTCLIENT
)
1172 ScreenToClient(hwnd
, &pos
);
1173 TRACE("client cursor pos %s\n", wine_dbgstr_point(&pos
));
1175 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSEHOVER
,
1176 get_key_state(), MAKELPARAM( pos
.x
, pos
.y
));
1180 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
1181 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSEHOVER
,
1182 hittest
, MAKELPARAM( pos
.x
, pos
.y
));
1185 /* stop tracking mouse hover */
1186 tracking_info
.tme
.dwFlags
&= ~TME_HOVER
;
1190 /* stop the timer if the tracking list is empty */
1191 if (!(tracking_info
.tme
.dwFlags
& (TME_HOVER
| TME_LEAVE
)))
1193 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
1195 tracking_info
.tme
.hwndTrack
= 0;
1196 tracking_info
.tme
.dwFlags
= 0;
1197 tracking_info
.tme
.dwHoverTime
= 0;
1202 /***********************************************************************
1203 * TrackMouseEvent [USER32]
1205 * Requests notification of mouse events
1207 * During mouse tracking WM_MOUSEHOVER or WM_MOUSELEAVE events are posted
1208 * to the hwnd specified in the ptme structure. After the event message
1209 * is posted to the hwnd, the entry in the queue is removed.
1211 * If the current hwnd isn't ptme->hwndTrack the TME_HOVER flag is completely
1212 * ignored. The TME_LEAVE flag results in a WM_MOUSELEAVE message being posted
1213 * immediately and the TME_LEAVE flag being ignored.
1216 * ptme [I,O] pointer to TRACKMOUSEEVENT information structure.
1225 TrackMouseEvent (TRACKMOUSEEVENT
*ptme
)
1232 TRACE("%x, %x, %p, %u\n", ptme
->cbSize
, ptme
->dwFlags
, ptme
->hwndTrack
, ptme
->dwHoverTime
);
1234 if (ptme
->cbSize
!= sizeof(TRACKMOUSEEVENT
)) {
1235 WARN("wrong TRACKMOUSEEVENT size from app\n");
1236 SetLastError(ERROR_INVALID_PARAMETER
);
1240 /* fill the TRACKMOUSEEVENT struct with the current tracking for the given hwnd */
1241 if (ptme
->dwFlags
& TME_QUERY
)
1243 *ptme
= tracking_info
.tme
;
1244 /* set cbSize in the case it's not initialized yet */
1245 ptme
->cbSize
= sizeof(TRACKMOUSEEVENT
);
1247 return TRUE
; /* return here, TME_QUERY is retrieving information */
1250 if (!IsWindow(ptme
->hwndTrack
))
1252 SetLastError(ERROR_INVALID_WINDOW_HANDLE
);
1256 hover_time
= (ptme
->dwFlags
& TME_HOVER
) ? ptme
->dwHoverTime
: HOVER_DEFAULT
;
1258 /* if HOVER_DEFAULT was specified replace this with the system's current value.
1259 * TME_LEAVE doesn't need to specify hover time so use default */
1260 if (hover_time
== HOVER_DEFAULT
|| hover_time
== 0)
1261 SystemParametersInfoW(SPI_GETMOUSEHOVERTIME
, 0, &hover_time
, 0);
1264 hwnd
= WINPOS_WindowFromPoint(ptme
->hwndTrack
, pos
, &hittest
);
1265 TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos
), hwnd
, hittest
);
1267 if (ptme
->dwFlags
& ~(TME_CANCEL
| TME_HOVER
| TME_LEAVE
| TME_NONCLIENT
))
1268 FIXME("Unknown flag(s) %08x\n", ptme
->dwFlags
& ~(TME_CANCEL
| TME_HOVER
| TME_LEAVE
| TME_NONCLIENT
));
1270 if (ptme
->dwFlags
& TME_CANCEL
)
1272 if (tracking_info
.tme
.hwndTrack
== ptme
->hwndTrack
)
1274 tracking_info
.tme
.dwFlags
&= ~(ptme
->dwFlags
& ~TME_CANCEL
);
1276 /* if we aren't tracking on hover or leave remove this entry */
1277 if (!(tracking_info
.tme
.dwFlags
& (TME_HOVER
| TME_LEAVE
)))
1279 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
1281 tracking_info
.tme
.hwndTrack
= 0;
1282 tracking_info
.tme
.dwFlags
= 0;
1283 tracking_info
.tme
.dwHoverTime
= 0;
1287 /* In our implementation it's possible that another window will receive a
1288 * WM_MOUSEMOVE and call TrackMouseEvent before TrackMouseEventProc is
1289 * called. In such a situation post the WM_MOUSELEAVE now */
1290 if (tracking_info
.tme
.dwFlags
& TME_LEAVE
&& tracking_info
.tme
.hwndTrack
!= NULL
)
1291 check_mouse_leave(hwnd
, hittest
);
1295 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
1297 tracking_info
.tme
.hwndTrack
= 0;
1298 tracking_info
.tme
.dwFlags
= 0;
1299 tracking_info
.tme
.dwHoverTime
= 0;
1302 if (ptme
->hwndTrack
== hwnd
)
1304 /* Adding new mouse event to the tracking list */
1305 tracking_info
.tme
= *ptme
;
1306 tracking_info
.tme
.dwHoverTime
= hover_time
;
1308 /* Initialize HoverInfo variables even if not hover tracking */
1309 tracking_info
.pos
= pos
;
1311 timer
= SetSystemTimer(tracking_info
.tme
.hwndTrack
, (UINT_PTR
)&tracking_info
.tme
, hover_time
, TrackMouseEventProc
);
1318 /***********************************************************************
1319 * GetMouseMovePointsEx [USER32]
1322 * Success: count of point set in the buffer
1325 int WINAPI
GetMouseMovePointsEx(UINT size
, LPMOUSEMOVEPOINT ptin
, LPMOUSEMOVEPOINT ptout
, int count
, DWORD res
) {
1327 if((size
!= sizeof(MOUSEMOVEPOINT
)) || (count
< 0) || (count
> 64)) {
1328 SetLastError(ERROR_INVALID_PARAMETER
);
1332 if(!ptin
|| (!ptout
&& count
)) {
1333 SetLastError(ERROR_NOACCESS
);
1337 FIXME("(%d %p %p %d %d) stub\n", size
, ptin
, ptout
, count
, res
);
1339 SetLastError(ERROR_POINT_NOT_FOUND
);