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
45 #include "user_private.h"
46 #include "wine/server.h"
47 #include "wine/debug.h"
49 WINE_DEFAULT_DEBUG_CHANNEL(win
);
50 WINE_DECLARE_DEBUG_CHANNEL(keyboard
);
53 /***********************************************************************
56 static WORD
get_key_state(void)
60 if (GetSystemMetrics( SM_SWAPBUTTON
))
62 if (GetAsyncKeyState(VK_RBUTTON
) & 0x80) ret
|= MK_LBUTTON
;
63 if (GetAsyncKeyState(VK_LBUTTON
) & 0x80) ret
|= MK_RBUTTON
;
67 if (GetAsyncKeyState(VK_LBUTTON
) & 0x80) ret
|= MK_LBUTTON
;
68 if (GetAsyncKeyState(VK_RBUTTON
) & 0x80) ret
|= MK_RBUTTON
;
70 if (GetAsyncKeyState(VK_MBUTTON
) & 0x80) ret
|= MK_MBUTTON
;
71 if (GetAsyncKeyState(VK_SHIFT
) & 0x80) ret
|= MK_SHIFT
;
72 if (GetAsyncKeyState(VK_CONTROL
) & 0x80) ret
|= MK_CONTROL
;
73 if (GetAsyncKeyState(VK_XBUTTON1
) & 0x80) ret
|= MK_XBUTTON1
;
74 if (GetAsyncKeyState(VK_XBUTTON2
) & 0x80) ret
|= MK_XBUTTON2
;
79 /***********************************************************************
80 * SendInput (USER32.@)
82 UINT WINAPI
SendInput( UINT count
, LPINPUT inputs
, int size
)
88 for (i
= 0; i
< count
; i
++)
90 switch(inputs
[i
].type
)
93 TRACE("mouse: dx %d, dy %d, data %x, flags %x, time %u, info %lx\n",
94 inputs
[i
].u
.mi
.dx
, inputs
[i
].u
.mi
.dy
, inputs
[i
].u
.mi
.mouseData
,
95 inputs
[i
].u
.mi
.dwFlags
, inputs
[i
].u
.mi
.time
, inputs
[i
].u
.mi
.dwExtraInfo
);
99 TRACE("keyboard: vk %x, scan %x, flags %x, time %u, info %lx\n",
100 inputs
[i
].u
.ki
.wVk
, inputs
[i
].u
.ki
.wScan
, inputs
[i
].u
.ki
.dwFlags
,
101 inputs
[i
].u
.ki
.time
, inputs
[i
].u
.ki
.dwExtraInfo
);
105 TRACE("hardware: msg %d, wParamL %x, wParamH %x\n",
106 inputs
[i
].u
.hi
.uMsg
, inputs
[i
].u
.hi
.wParamL
, inputs
[i
].u
.hi
.wParamH
);
110 FIXME("unknown input type %u\n", inputs
[i
].type
);
116 return USER_Driver
->pSendInput( count
, inputs
, size
);
120 /***********************************************************************
121 * keybd_event (USER32.@)
123 void WINAPI
keybd_event( BYTE bVk
, BYTE bScan
,
124 DWORD dwFlags
, ULONG_PTR dwExtraInfo
)
128 input
.type
= INPUT_KEYBOARD
;
129 input
.u
.ki
.wVk
= bVk
;
130 input
.u
.ki
.wScan
= bScan
;
131 input
.u
.ki
.dwFlags
= dwFlags
;
132 input
.u
.ki
.time
= GetTickCount();
133 input
.u
.ki
.dwExtraInfo
= dwExtraInfo
;
134 SendInput( 1, &input
, sizeof(input
) );
138 /***********************************************************************
139 * mouse_event (USER32.@)
141 void WINAPI
mouse_event( DWORD dwFlags
, DWORD dx
, DWORD dy
,
142 DWORD dwData
, ULONG_PTR dwExtraInfo
)
146 input
.type
= INPUT_MOUSE
;
149 input
.u
.mi
.mouseData
= dwData
;
150 input
.u
.mi
.dwFlags
= dwFlags
;
151 input
.u
.mi
.time
= GetCurrentTime();
152 input
.u
.mi
.dwExtraInfo
= dwExtraInfo
;
153 SendInput( 1, &input
, sizeof(input
) );
157 /***********************************************************************
158 * GetCursorPos (USER32.@)
160 BOOL WINAPI
GetCursorPos( POINT
*pt
)
162 if (!pt
) return FALSE
;
163 return USER_Driver
->pGetCursorPos( pt
);
167 /***********************************************************************
168 * GetCursorInfo (USER32.@)
170 BOOL WINAPI
GetCursorInfo( PCURSORINFO pci
)
173 if (get_user_thread_info()->cursor_count
>= 0) pci
->flags
= CURSOR_SHOWING
;
175 GetCursorPos(&pci
->ptScreenPos
);
180 /***********************************************************************
181 * SetCursorPos (USER32.@)
183 BOOL WINAPI
SetCursorPos( INT x
, INT y
)
185 return USER_Driver
->pSetCursorPos( x
, y
);
189 /**********************************************************************
190 * SetCapture (USER32.@)
192 HWND WINAPI
SetCapture( HWND hwnd
)
196 SERVER_START_REQ( set_capture_window
)
200 if (!wine_server_call_err( req
))
202 previous
= reply
->previous
;
203 hwnd
= reply
->full_handle
;
208 if (previous
&& previous
!= hwnd
)
209 SendMessageW( previous
, WM_CAPTURECHANGED
, 0, (LPARAM
)hwnd
);
214 /**********************************************************************
215 * ReleaseCapture (USER32.@)
217 BOOL WINAPI
ReleaseCapture(void)
222 SERVER_START_REQ( set_capture_window
)
226 if ((ret
= !wine_server_call_err( req
))) previous
= reply
->previous
;
230 if (previous
) SendMessageW( previous
, WM_CAPTURECHANGED
, 0, 0 );
232 /* Somebody may have missed some mouse movements */
233 mouse_event( MOUSEEVENTF_MOVE
, 0, 0, 0, 0 );
239 /**********************************************************************
240 * GetCapture (USER32.@)
242 HWND WINAPI
GetCapture(void)
246 SERVER_START_REQ( get_thread_input
)
248 req
->tid
= GetCurrentThreadId();
249 if (!wine_server_call_err( req
)) ret
= reply
->capture
;
256 /**********************************************************************
257 * GetAsyncKeyState (USER32.@)
259 * Determine if a key is or was pressed. retval has high-order
260 * bit set to 1 if currently pressed, low-order bit set to 1 if key has
263 SHORT WINAPI
GetAsyncKeyState(INT nKey
)
265 return USER_Driver
->pGetAsyncKeyState( nKey
);
269 /***********************************************************************
270 * GetQueueStatus (USER32.@)
272 DWORD WINAPI
GetQueueStatus( UINT flags
)
276 if (flags
& ~(QS_ALLINPUT
| QS_ALLPOSTMESSAGE
| QS_SMRESULT
))
278 SetLastError( ERROR_INVALID_FLAGS
);
282 /* check for pending X events */
283 USER_Driver
->pMsgWaitForMultipleObjectsEx( 0, NULL
, 0, flags
, 0 );
285 SERVER_START_REQ( get_queue_status
)
288 wine_server_call( req
);
289 ret
= MAKELONG( reply
->changed_bits
& flags
, reply
->wake_bits
& flags
);
296 /***********************************************************************
297 * GetInputState (USER32.@)
299 BOOL WINAPI
GetInputState(void)
303 /* check for pending X events */
304 USER_Driver
->pMsgWaitForMultipleObjectsEx( 0, NULL
, 0, QS_INPUT
, 0 );
306 SERVER_START_REQ( get_queue_status
)
309 wine_server_call( req
);
310 ret
= reply
->wake_bits
& (QS_KEY
| QS_MOUSEBUTTON
);
317 /******************************************************************
318 * GetLastInputInfo (USER32.@)
320 BOOL WINAPI
GetLastInputInfo(PLASTINPUTINFO plii
)
326 if (plii
->cbSize
!= sizeof (*plii
) )
328 SetLastError(ERROR_INVALID_PARAMETER
);
332 SERVER_START_REQ( get_last_input_time
)
334 ret
= !wine_server_call_err( req
);
336 plii
->dwTime
= reply
->time
;
343 /**********************************************************************
344 * AttachThreadInput (USER32.@)
346 * Attaches the input processing mechanism of one thread to that of
349 BOOL WINAPI
AttachThreadInput( DWORD from
, DWORD to
, BOOL attach
)
353 SERVER_START_REQ( attach_thread_input
)
355 req
->tid_from
= from
;
357 req
->attach
= attach
;
358 ret
= !wine_server_call_err( req
);
365 /**********************************************************************
366 * GetKeyState (USER32.@)
368 * An application calls the GetKeyState function in response to a
369 * keyboard-input message. This function retrieves the state of the key
370 * at the time the input message was generated.
372 SHORT WINAPI
GetKeyState(INT vkey
)
376 SERVER_START_REQ( get_key_state
)
378 req
->tid
= GetCurrentThreadId();
380 if (!wine_server_call( req
)) retval
= (signed char)reply
->state
;
383 TRACE("key (0x%x) -> %x\n", vkey
, retval
);
388 /**********************************************************************
389 * GetKeyboardState (USER32.@)
391 BOOL WINAPI
GetKeyboardState( LPBYTE state
)
395 TRACE("(%p)\n", state
);
397 memset( state
, 0, 256 );
398 SERVER_START_REQ( get_key_state
)
400 req
->tid
= GetCurrentThreadId();
402 wine_server_set_reply( req
, state
, 256 );
403 ret
= !wine_server_call_err( req
);
410 /**********************************************************************
411 * SetKeyboardState (USER32.@)
413 BOOL WINAPI
SetKeyboardState( LPBYTE state
)
417 TRACE("(%p)\n", state
);
419 SERVER_START_REQ( set_key_state
)
421 req
->tid
= GetCurrentThreadId();
422 wine_server_add_data( req
, state
, 256 );
423 ret
= !wine_server_call_err( req
);
430 /**********************************************************************
431 * VkKeyScanA (USER32.@)
433 * VkKeyScan translates an ANSI character to a virtual-key and shift code
434 * for the current keyboard.
435 * high-order byte yields :
439 * 3-5 Shift-key combinations that are not used for characters
442 * I.e. : Shift = 1, Ctrl = 2, Alt = 4.
443 * FIXME : works ok except for dead chars :
444 * VkKeyScan '^'(0x5e, 94) ... got keycode 00 ... returning 00
445 * VkKeyScan '`'(0x60, 96) ... got keycode 00 ... returning 00
447 SHORT WINAPI
VkKeyScanA(CHAR cChar
)
451 if (IsDBCSLeadByte(cChar
)) return -1;
453 MultiByteToWideChar(CP_ACP
, 0, &cChar
, 1, &wChar
, 1);
454 return VkKeyScanW(wChar
);
457 /******************************************************************************
458 * VkKeyScanW (USER32.@)
460 SHORT WINAPI
VkKeyScanW(WCHAR cChar
)
462 return VkKeyScanExW(cChar
, GetKeyboardLayout(0));
465 /**********************************************************************
466 * VkKeyScanExA (USER32.@)
468 WORD WINAPI
VkKeyScanExA(CHAR cChar
, HKL dwhkl
)
472 if (IsDBCSLeadByte(cChar
)) return -1;
474 MultiByteToWideChar(CP_ACP
, 0, &cChar
, 1, &wChar
, 1);
475 return VkKeyScanExW(wChar
, dwhkl
);
478 /******************************************************************************
479 * VkKeyScanExW (USER32.@)
481 WORD WINAPI
VkKeyScanExW(WCHAR cChar
, HKL dwhkl
)
483 return USER_Driver
->pVkKeyScanEx(cChar
, dwhkl
);
486 /**********************************************************************
487 * OemKeyScan (USER32.@)
489 DWORD WINAPI
OemKeyScan(WORD wOemChar
)
491 TRACE("(%d)\n", wOemChar
);
495 /******************************************************************************
496 * GetKeyboardType (USER32.@)
498 INT WINAPI
GetKeyboardType(INT nTypeFlag
)
500 TRACE_(keyboard
)("(%d)\n", nTypeFlag
);
503 case 0: /* Keyboard type */
504 return 4; /* AT-101 */
505 case 1: /* Keyboard Subtype */
506 return 0; /* There are no defined subtypes */
507 case 2: /* Number of F-keys */
508 return 12; /* We're doing an 101 for now, so return 12 F-keys */
510 WARN_(keyboard
)("Unknown type\n");
511 return 0; /* The book says 0 here, so 0 */
515 /******************************************************************************
516 * MapVirtualKeyA (USER32.@)
518 UINT WINAPI
MapVirtualKeyA(UINT code
, UINT maptype
)
520 return MapVirtualKeyExA( code
, maptype
, GetKeyboardLayout(0) );
523 /******************************************************************************
524 * MapVirtualKeyW (USER32.@)
526 UINT WINAPI
MapVirtualKeyW(UINT code
, UINT maptype
)
528 return MapVirtualKeyExW(code
, maptype
, GetKeyboardLayout(0));
531 /******************************************************************************
532 * MapVirtualKeyExA (USER32.@)
534 UINT WINAPI
MapVirtualKeyExA(UINT code
, UINT maptype
, HKL hkl
)
536 return MapVirtualKeyExW(code
, maptype
, hkl
);
539 /******************************************************************************
540 * MapVirtualKeyExW (USER32.@)
542 UINT WINAPI
MapVirtualKeyExW(UINT code
, UINT maptype
, HKL hkl
)
544 TRACE_(keyboard
)("(%d, %d, %p)\n", code
, maptype
, hkl
);
546 return USER_Driver
->pMapVirtualKeyEx(code
, maptype
, hkl
);
549 /****************************************************************************
550 * GetKBCodePage (USER32.@)
552 UINT WINAPI
GetKBCodePage(void)
557 /***********************************************************************
558 * GetKeyboardLayout (USER32.@)
560 * - device handle for keyboard layout defaulted to
561 * the language id. This is the way Windows default works.
562 * - the thread identifier (dwLayout) is also ignored.
564 HKL WINAPI
GetKeyboardLayout(DWORD dwLayout
)
566 return USER_Driver
->pGetKeyboardLayout(dwLayout
);
569 /****************************************************************************
570 * GetKeyboardLayoutNameA (USER32.@)
572 BOOL WINAPI
GetKeyboardLayoutNameA(LPSTR pszKLID
)
574 WCHAR buf
[KL_NAMELENGTH
];
576 if (GetKeyboardLayoutNameW(buf
))
577 return WideCharToMultiByte( CP_ACP
, 0, buf
, -1, pszKLID
, KL_NAMELENGTH
, NULL
, NULL
) != 0;
581 /****************************************************************************
582 * GetKeyboardLayoutNameW (USER32.@)
584 BOOL WINAPI
GetKeyboardLayoutNameW(LPWSTR pwszKLID
)
586 return USER_Driver
->pGetKeyboardLayoutName(pwszKLID
);
589 /****************************************************************************
590 * GetKeyNameTextA (USER32.@)
592 INT WINAPI
GetKeyNameTextA(LONG lParam
, LPSTR lpBuffer
, INT nSize
)
597 if (!GetKeyNameTextW(lParam
, buf
, 256))
602 ret
= WideCharToMultiByte(CP_ACP
, 0, buf
, -1, lpBuffer
, nSize
, NULL
, NULL
);
611 /****************************************************************************
612 * GetKeyNameTextW (USER32.@)
614 INT WINAPI
GetKeyNameTextW(LONG lParam
, LPWSTR lpBuffer
, INT nSize
)
616 return USER_Driver
->pGetKeyNameText( lParam
, lpBuffer
, nSize
);
619 /****************************************************************************
620 * ToUnicode (USER32.@)
622 INT WINAPI
ToUnicode(UINT virtKey
, UINT scanCode
, LPBYTE lpKeyState
,
623 LPWSTR lpwStr
, int size
, UINT flags
)
625 return ToUnicodeEx(virtKey
, scanCode
, lpKeyState
, lpwStr
, size
, flags
, GetKeyboardLayout(0));
628 /****************************************************************************
629 * ToUnicodeEx (USER32.@)
631 INT WINAPI
ToUnicodeEx(UINT virtKey
, UINT scanCode
, LPBYTE lpKeyState
,
632 LPWSTR lpwStr
, int size
, UINT flags
, HKL hkl
)
634 return USER_Driver
->pToUnicodeEx(virtKey
, scanCode
, lpKeyState
, lpwStr
, size
, flags
, hkl
);
637 /****************************************************************************
640 INT WINAPI
ToAscii( UINT virtKey
, UINT scanCode
, LPBYTE lpKeyState
,
641 LPWORD lpChar
, UINT flags
)
643 return ToAsciiEx(virtKey
, scanCode
, lpKeyState
, lpChar
, flags
, GetKeyboardLayout(0));
646 /****************************************************************************
647 * ToAsciiEx (USER32.@)
649 INT WINAPI
ToAsciiEx( UINT virtKey
, UINT scanCode
, LPBYTE lpKeyState
,
650 LPWORD lpChar
, UINT flags
, HKL dwhkl
)
655 ret
= ToUnicodeEx(virtKey
, scanCode
, lpKeyState
, uni_chars
, 2, flags
, dwhkl
);
656 if (ret
< 0) n_ret
= 1; /* FIXME: make ToUnicode return 2 for dead chars */
658 WideCharToMultiByte(CP_ACP
, 0, uni_chars
, n_ret
, (LPSTR
)lpChar
, 2, NULL
, NULL
);
662 /**********************************************************************
663 * ActivateKeyboardLayout (USER32.@)
665 HKL WINAPI
ActivateKeyboardLayout(HKL hLayout
, UINT flags
)
667 TRACE_(keyboard
)("(%p, %d)\n", hLayout
, flags
);
669 return USER_Driver
->pActivateKeyboardLayout(hLayout
, flags
);
672 /**********************************************************************
673 * BlockInput (USER32.@)
675 BOOL WINAPI
BlockInput(BOOL fBlockIt
)
677 FIXME_(keyboard
)("(%d): stub\n", fBlockIt
);
678 SetLastError(ERROR_CALL_NOT_IMPLEMENTED
);
683 /***********************************************************************
684 * GetKeyboardLayoutList (USER32.@)
686 * Return number of values available if either input parm is
687 * 0, per MS documentation.
689 UINT WINAPI
GetKeyboardLayoutList(INT nBuff
, HKL
*layouts
)
691 TRACE_(keyboard
)("(%d,%p)\n",nBuff
,layouts
);
693 return USER_Driver
->pGetKeyboardLayoutList(nBuff
, layouts
);
697 /***********************************************************************
698 * RegisterHotKey (USER32.@)
700 BOOL WINAPI
RegisterHotKey(HWND hwnd
,INT id
,UINT modifiers
,UINT vk
)
702 FIXME_(keyboard
)("(%p,%d,0x%08x,%d): stub\n",hwnd
,id
,modifiers
,vk
);
706 /***********************************************************************
707 * UnregisterHotKey (USER32.@)
709 BOOL WINAPI
UnregisterHotKey(HWND hwnd
,INT id
)
711 FIXME_(keyboard
)("(%p,%d): stub\n",hwnd
,id
);
715 /***********************************************************************
716 * LoadKeyboardLayoutW (USER32.@)
718 HKL WINAPI
LoadKeyboardLayoutW(LPCWSTR pwszKLID
, UINT Flags
)
720 TRACE_(keyboard
)("(%s, %d)\n", debugstr_w(pwszKLID
), Flags
);
722 return USER_Driver
->pLoadKeyboardLayout(pwszKLID
, Flags
);
725 /***********************************************************************
726 * LoadKeyboardLayoutA (USER32.@)
728 HKL WINAPI
LoadKeyboardLayoutA(LPCSTR pwszKLID
, UINT Flags
)
731 UNICODE_STRING pwszKLIDW
;
733 if (pwszKLID
) RtlCreateUnicodeStringFromAsciiz(&pwszKLIDW
, pwszKLID
);
734 else pwszKLIDW
.Buffer
= NULL
;
736 ret
= LoadKeyboardLayoutW(pwszKLIDW
.Buffer
, Flags
);
737 RtlFreeUnicodeString(&pwszKLIDW
);
742 /***********************************************************************
743 * UnloadKeyboardLayout (USER32.@)
745 BOOL WINAPI
UnloadKeyboardLayout(HKL hkl
)
747 TRACE_(keyboard
)("(%p)\n", hkl
);
749 return USER_Driver
->pUnloadKeyboardLayout(hkl
);
752 typedef struct __TRACKINGLIST
{
754 POINT pos
; /* center of hover rectangle */
757 /* FIXME: move tracking stuff into a per thread data */
758 static _TRACKINGLIST tracking_info
;
759 static UINT_PTR timer
;
761 static void check_mouse_leave(HWND hwnd
, int hittest
)
763 if (tracking_info
.tme
.hwndTrack
!= hwnd
)
765 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
766 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSELEAVE
, 0, 0);
768 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSELEAVE
, 0, 0);
770 /* remove the TME_LEAVE flag */
771 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
775 if (hittest
== HTCLIENT
)
777 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
779 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSELEAVE
, 0, 0);
780 /* remove the TME_LEAVE flag */
781 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
786 if (!(tracking_info
.tme
.dwFlags
& TME_NONCLIENT
))
788 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSELEAVE
, 0, 0);
789 /* remove the TME_LEAVE flag */
790 tracking_info
.tme
.dwFlags
&= ~TME_LEAVE
;
796 static void CALLBACK
TrackMouseEventProc(HWND hwnd
, UINT uMsg
, UINT_PTR idEvent
,
800 INT hoverwidth
= 0, hoverheight
= 0, hittest
;
802 TRACE("hwnd %p, msg %04x, id %04lx, time %u\n", hwnd
, uMsg
, idEvent
, dwTime
);
805 hwnd
= WINPOS_WindowFromPoint(hwnd
, pos
, &hittest
);
807 TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos
), hwnd
, hittest
);
809 SystemParametersInfoW(SPI_GETMOUSEHOVERWIDTH
, 0, &hoverwidth
, 0);
810 SystemParametersInfoW(SPI_GETMOUSEHOVERHEIGHT
, 0, &hoverheight
, 0);
812 TRACE("tracked pos %s, current pos %s, hover width %d, hover height %d\n",
813 wine_dbgstr_point(&tracking_info
.pos
), wine_dbgstr_point(&pos
),
814 hoverwidth
, hoverheight
);
816 /* see if this tracking event is looking for TME_LEAVE and that the */
817 /* mouse has left the window */
818 if (tracking_info
.tme
.dwFlags
& TME_LEAVE
)
820 check_mouse_leave(hwnd
, hittest
);
823 if (tracking_info
.tme
.hwndTrack
!= hwnd
)
825 /* mouse is gone, stop tracking mouse hover */
826 tracking_info
.tme
.dwFlags
&= ~TME_HOVER
;
829 /* see if we are tracking hovering for this hwnd */
830 if (tracking_info
.tme
.dwFlags
& TME_HOVER
)
832 /* has the cursor moved outside the rectangle centered around pos? */
833 if ((abs(pos
.x
- tracking_info
.pos
.x
) > (hoverwidth
/ 2)) ||
834 (abs(pos
.y
- tracking_info
.pos
.y
) > (hoverheight
/ 2)))
836 /* record this new position as the current position */
837 tracking_info
.pos
= pos
;
841 if (hittest
== HTCLIENT
)
843 ScreenToClient(hwnd
, &pos
);
844 TRACE("client cursor pos %s\n", wine_dbgstr_point(&pos
));
846 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_MOUSEHOVER
,
847 get_key_state(), MAKELPARAM( pos
.x
, pos
.y
));
851 if (tracking_info
.tme
.dwFlags
& TME_NONCLIENT
)
852 PostMessageW(tracking_info
.tme
.hwndTrack
, WM_NCMOUSEHOVER
,
853 hittest
, MAKELPARAM( pos
.x
, pos
.y
));
856 /* stop tracking mouse hover */
857 tracking_info
.tme
.dwFlags
&= ~TME_HOVER
;
861 /* stop the timer if the tracking list is empty */
862 if (!(tracking_info
.tme
.dwFlags
& (TME_HOVER
| TME_LEAVE
)))
864 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
866 tracking_info
.tme
.hwndTrack
= 0;
867 tracking_info
.tme
.dwFlags
= 0;
868 tracking_info
.tme
.dwHoverTime
= 0;
873 /***********************************************************************
874 * TrackMouseEvent [USER32]
876 * Requests notification of mouse events
878 * During mouse tracking WM_MOUSEHOVER or WM_MOUSELEAVE events are posted
879 * to the hwnd specified in the ptme structure. After the event message
880 * is posted to the hwnd, the entry in the queue is removed.
882 * If the current hwnd isn't ptme->hwndTrack the TME_HOVER flag is completely
883 * ignored. The TME_LEAVE flag results in a WM_MOUSELEAVE message being posted
884 * immediately and the TME_LEAVE flag being ignored.
887 * ptme [I,O] pointer to TRACKMOUSEEVENT information structure.
896 TrackMouseEvent (TRACKMOUSEEVENT
*ptme
)
903 TRACE("%x, %x, %p, %u\n", ptme
->cbSize
, ptme
->dwFlags
, ptme
->hwndTrack
, ptme
->dwHoverTime
);
905 if (ptme
->cbSize
!= sizeof(TRACKMOUSEEVENT
)) {
906 WARN("wrong TRACKMOUSEEVENT size from app\n");
907 SetLastError(ERROR_INVALID_PARAMETER
);
911 /* fill the TRACKMOUSEEVENT struct with the current tracking for the given hwnd */
912 if (ptme
->dwFlags
& TME_QUERY
)
914 *ptme
= tracking_info
.tme
;
915 /* set cbSize in the case it's not initialized yet */
916 ptme
->cbSize
= sizeof(TRACKMOUSEEVENT
);
918 return TRUE
; /* return here, TME_QUERY is retrieving information */
921 if (!IsWindow(ptme
->hwndTrack
))
923 SetLastError(ERROR_INVALID_WINDOW_HANDLE
);
927 hover_time
= ptme
->dwHoverTime
;
929 /* if HOVER_DEFAULT was specified replace this with the systems current value.
930 * TME_LEAVE doesn't need to specify hover time so use default */
931 if (hover_time
== HOVER_DEFAULT
|| hover_time
== 0 || !(ptme
->dwHoverTime
&TME_HOVER
))
932 SystemParametersInfoW(SPI_GETMOUSEHOVERTIME
, 0, &hover_time
, 0);
935 hwnd
= WINPOS_WindowFromPoint(ptme
->hwndTrack
, pos
, &hittest
);
936 TRACE("point %s hwnd %p hittest %d\n", wine_dbgstr_point(&pos
), hwnd
, hittest
);
938 if (ptme
->dwFlags
& ~(TME_CANCEL
| TME_HOVER
| TME_LEAVE
| TME_NONCLIENT
))
939 FIXME("Unknown flag(s) %08x\n", ptme
->dwFlags
& ~(TME_CANCEL
| TME_HOVER
| TME_LEAVE
| TME_NONCLIENT
));
941 if (ptme
->dwFlags
& TME_CANCEL
)
943 if (tracking_info
.tme
.hwndTrack
== ptme
->hwndTrack
)
945 tracking_info
.tme
.dwFlags
&= ~(ptme
->dwFlags
& ~TME_CANCEL
);
947 /* if we aren't tracking on hover or leave remove this entry */
948 if (!(tracking_info
.tme
.dwFlags
& (TME_HOVER
| TME_LEAVE
)))
950 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
952 tracking_info
.tme
.hwndTrack
= 0;
953 tracking_info
.tme
.dwFlags
= 0;
954 tracking_info
.tme
.dwHoverTime
= 0;
958 /* In our implementation it's possible that another window will receive a
959 * WM_MOUSEMOVE and call TrackMouseEvent before TrackMouseEventProc is
960 * called. In such a situation post the WM_MOUSELEAVE now */
961 if (tracking_info
.tme
.dwFlags
& TME_LEAVE
&& tracking_info
.tme
.hwndTrack
!= NULL
)
962 check_mouse_leave(hwnd
, hittest
);
966 KillSystemTimer(tracking_info
.tme
.hwndTrack
, timer
);
968 tracking_info
.tme
.hwndTrack
= 0;
969 tracking_info
.tme
.dwFlags
= 0;
970 tracking_info
.tme
.dwHoverTime
= 0;
973 if (ptme
->hwndTrack
== hwnd
)
975 /* Adding new mouse event to the tracking list */
976 tracking_info
.tme
= *ptme
;
977 tracking_info
.tme
.dwHoverTime
= hover_time
;
979 /* Initialize HoverInfo variables even if not hover tracking */
980 tracking_info
.pos
= pos
;
982 timer
= SetSystemTimer(tracking_info
.tme
.hwndTrack
, (UINT_PTR
)&tracking_info
.tme
, hover_time
, TrackMouseEventProc
);