Don't pass CreateThread() with a NULL pointer to TID as Win9x does not
[wine] / dlls / user / input.c
1 /*
2  * USER Input processing
3  *
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
9  *
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.
14  *
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.
19  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23  */
24
25 #include "config.h"
26 #include "wine/port.h"
27
28 #include <stdlib.h>
29 #include <string.h>
30 #include <stdarg.h>
31 #include <stdio.h>
32 #include <ctype.h>
33 #include <assert.h>
34
35 #define NONAMELESSUNION
36 #define NONAMELESSSTRUCT
37 #include "windef.h"
38 #include "winbase.h"
39 #include "wingdi.h"
40 #include "winuser.h"
41 #include "winnls.h"
42 #include "wine/server.h"
43 #include "user_private.h"
44 #include "winternl.h"
45 #include "wine/debug.h"
46 #include "winerror.h"
47
48 WINE_DEFAULT_DEBUG_CHANNEL(key);
49 WINE_DECLARE_DEBUG_CHANNEL(keyboard);
50
51
52 /***********************************************************************
53  *           get_key_state
54  */
55 static WORD get_key_state(void)
56 {
57     WORD ret = 0;
58
59     if (GetSystemMetrics( SM_SWAPBUTTON ))
60     {
61         if (GetAsyncKeyState(VK_RBUTTON) & 0x80) ret |= MK_LBUTTON;
62         if (GetAsyncKeyState(VK_LBUTTON) & 0x80) ret |= MK_RBUTTON;
63     }
64     else
65     {
66         if (GetAsyncKeyState(VK_LBUTTON) & 0x80) ret |= MK_LBUTTON;
67         if (GetAsyncKeyState(VK_RBUTTON) & 0x80) ret |= MK_RBUTTON;
68     }
69     if (GetAsyncKeyState(VK_MBUTTON) & 0x80)  ret |= MK_MBUTTON;
70     if (GetAsyncKeyState(VK_SHIFT) & 0x80)    ret |= MK_SHIFT;
71     if (GetAsyncKeyState(VK_CONTROL) & 0x80)  ret |= MK_CONTROL;
72     if (GetAsyncKeyState(VK_XBUTTON1) & 0x80) ret |= MK_XBUTTON1;
73     if (GetAsyncKeyState(VK_XBUTTON2) & 0x80) ret |= MK_XBUTTON2;
74     return ret;
75 }
76
77
78 /***********************************************************************
79  *              SendInput  (USER32.@)
80  */
81 UINT WINAPI SendInput( UINT count, LPINPUT inputs, int size )
82 {
83     return USER_Driver->pSendInput( count, inputs, size );
84 }
85
86
87 /***********************************************************************
88  *              keybd_event (USER32.@)
89  */
90 void WINAPI keybd_event( BYTE bVk, BYTE bScan,
91                          DWORD dwFlags, ULONG_PTR dwExtraInfo )
92 {
93     INPUT input;
94
95     input.type = INPUT_KEYBOARD;
96     input.u.ki.wVk = bVk;
97     input.u.ki.wScan = bScan;
98     input.u.ki.dwFlags = dwFlags;
99     input.u.ki.time = GetTickCount();
100     input.u.ki.dwExtraInfo = dwExtraInfo;
101     SendInput( 1, &input, sizeof(input) );
102 }
103
104
105 /***********************************************************************
106  *              mouse_event (USER32.@)
107  */
108 void WINAPI mouse_event( DWORD dwFlags, DWORD dx, DWORD dy,
109                          DWORD dwData, ULONG_PTR dwExtraInfo )
110 {
111     INPUT input;
112
113     input.type = INPUT_MOUSE;
114     input.u.mi.dx = dx;
115     input.u.mi.dy = dy;
116     input.u.mi.mouseData = dwData;
117     input.u.mi.dwFlags = dwFlags;
118     input.u.mi.time = GetCurrentTime();
119     input.u.mi.dwExtraInfo = dwExtraInfo;
120     SendInput( 1, &input, sizeof(input) );
121 }
122
123
124 /***********************************************************************
125  *              GetCursorPos (USER32.@)
126  */
127 BOOL WINAPI GetCursorPos( POINT *pt )
128 {
129     if (!pt) return FALSE;
130     return USER_Driver->pGetCursorPos( pt );
131 }
132
133
134 /***********************************************************************
135  *              GetCursorInfo (USER32.@)
136  */
137 BOOL WINAPI GetCursorInfo( PCURSORINFO pci )
138 {
139     if (!pci) return 0;
140     if (get_user_thread_info()->cursor_count >= 0) pci->flags = CURSOR_SHOWING;
141     else pci->flags = 0;
142     GetCursorPos(&pci->ptScreenPos);
143     return 1;
144 }
145
146
147 /***********************************************************************
148  *              SetCursorPos (USER32.@)
149  */
150 BOOL WINAPI SetCursorPos( INT x, INT y )
151 {
152     return USER_Driver->pSetCursorPos( x, y );
153 }
154
155
156 /**********************************************************************
157  *              SetCapture (USER32.@)
158  */
159 HWND WINAPI SetCapture( HWND hwnd )
160 {
161     HWND previous = 0;
162
163     SERVER_START_REQ( set_capture_window )
164     {
165         req->handle = hwnd;
166         req->flags  = 0;
167         if (!wine_server_call_err( req ))
168         {
169             previous = reply->previous;
170             hwnd = reply->full_handle;
171         }
172     }
173     SERVER_END_REQ;
174
175     if (previous && previous != hwnd)
176         SendMessageW( previous, WM_CAPTURECHANGED, 0, (LPARAM)hwnd );
177     return previous;
178 }
179
180
181 /**********************************************************************
182  *              ReleaseCapture (USER32.@)
183  */
184 BOOL WINAPI ReleaseCapture(void)
185 {
186     BOOL ret;
187     HWND previous = 0;
188
189     SERVER_START_REQ( set_capture_window )
190     {
191         req->handle = 0;
192         req->flags  = 0;
193         if ((ret = !wine_server_call_err( req ))) previous = reply->previous;
194     }
195     SERVER_END_REQ;
196
197     if (previous) SendMessageW( previous, WM_CAPTURECHANGED, 0, 0 );
198     return ret;
199 }
200
201
202 /**********************************************************************
203  *              GetCapture (USER32.@)
204  */
205 HWND WINAPI GetCapture(void)
206 {
207     HWND ret = 0;
208
209     SERVER_START_REQ( get_thread_input )
210     {
211         req->tid = GetCurrentThreadId();
212         if (!wine_server_call_err( req )) ret = reply->capture;
213     }
214     SERVER_END_REQ;
215     return ret;
216 }
217
218
219 /**********************************************************************
220  *              GetAsyncKeyState (USER32.@)
221  *
222  *      Determine if a key is or was pressed.  retval has high-order
223  * bit set to 1 if currently pressed, low-order bit set to 1 if key has
224  * been pressed.
225  */
226 SHORT WINAPI GetAsyncKeyState(INT nKey)
227 {
228     return USER_Driver->pGetAsyncKeyState( nKey );
229 }
230
231
232 /***********************************************************************
233  *              GetQueueStatus (USER32.@)
234  */
235 DWORD WINAPI GetQueueStatus( UINT flags )
236 {
237     DWORD ret = 0;
238
239     if (flags & ~0xff)
240         FIXME("QS_xxxx flags (%04x) are not handled\n", flags & ~0xff);
241
242     /* check for pending X events */
243     USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_ALLINPUT, 0 );
244
245     SERVER_START_REQ( get_queue_status )
246     {
247         req->clear = 1;
248         wine_server_call( req );
249         ret = MAKELONG( reply->changed_bits & flags, reply->wake_bits & flags );
250     }
251     SERVER_END_REQ;
252     return ret;
253 }
254
255
256 /***********************************************************************
257  *              GetInputState   (USER32.@)
258  */
259 BOOL WINAPI GetInputState(void)
260 {
261     DWORD ret = 0;
262
263     /* check for pending X events */
264     USER_Driver->pMsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_INPUT, 0 );
265
266     SERVER_START_REQ( get_queue_status )
267     {
268         req->clear = 0;
269         wine_server_call( req );
270         ret = reply->wake_bits & (QS_KEY | QS_MOUSEBUTTON);
271     }
272     SERVER_END_REQ;
273     return ret;
274 }
275
276
277 /******************************************************************
278  *              GetLastInputInfo (USER32.@)
279  */
280 BOOL WINAPI GetLastInputInfo(PLASTINPUTINFO plii)
281 {
282     BOOL ret;
283
284     TRACE("%p\n", plii);
285
286     if (plii->cbSize != sizeof (*plii) )
287     {
288         SetLastError(ERROR_INVALID_PARAMETER);
289         return FALSE;
290     }
291
292     SERVER_START_REQ( get_last_input_time )
293     {
294         ret = !wine_server_call_err( req );
295         if (ret)
296             plii->dwTime = reply->time;
297     }
298     SERVER_END_REQ;
299     return ret;
300 }
301
302
303 /**********************************************************************
304  *              AttachThreadInput (USER32.@)
305  *
306  * Attaches the input processing mechanism of one thread to that of
307  * another thread.
308  */
309 BOOL WINAPI AttachThreadInput( DWORD from, DWORD to, BOOL attach )
310 {
311     BOOL ret;
312
313     SERVER_START_REQ( attach_thread_input )
314     {
315         req->tid_from = from;
316         req->tid_to   = to;
317         req->attach   = attach;
318         ret = !wine_server_call_err( req );
319     }
320     SERVER_END_REQ;
321     return ret;
322 }
323
324
325 /**********************************************************************
326  *              GetKeyState (USER32.@)
327  *
328  * An application calls the GetKeyState function in response to a
329  * keyboard-input message.  This function retrieves the state of the key
330  * at the time the input message was generated.
331  */
332 SHORT WINAPI GetKeyState(INT vkey)
333 {
334     SHORT retval = 0;
335
336     SERVER_START_REQ( get_key_state )
337     {
338         req->tid = GetCurrentThreadId();
339         req->key = vkey;
340         if (!wine_server_call( req )) retval = (signed char)reply->state;
341     }
342     SERVER_END_REQ;
343     TRACE("key (0x%x) -> %x\n", vkey, retval);
344     return retval;
345 }
346
347
348 /**********************************************************************
349  *              GetKeyboardState (USER32.@)
350  */
351 BOOL WINAPI GetKeyboardState( LPBYTE state )
352 {
353     BOOL ret;
354
355     TRACE("(%p)\n", state);
356
357     memset( state, 0, 256 );
358     SERVER_START_REQ( get_key_state )
359     {
360         req->tid = GetCurrentThreadId();
361         req->key = -1;
362         wine_server_set_reply( req, state, 256 );
363         ret = !wine_server_call_err( req );
364     }
365     SERVER_END_REQ;
366     return ret;
367 }
368
369
370 /**********************************************************************
371  *              SetKeyboardState (USER32.@)
372  */
373 BOOL WINAPI SetKeyboardState( LPBYTE state )
374 {
375     BOOL ret;
376
377     TRACE("(%p)\n", state);
378
379     SERVER_START_REQ( set_key_state )
380     {
381         req->tid = GetCurrentThreadId();
382         wine_server_add_data( req, state, 256 );
383         ret = !wine_server_call_err( req );
384     }
385     SERVER_END_REQ;
386     return ret;
387 }
388
389
390 /**********************************************************************
391  *              VkKeyScanA (USER32.@)
392  *
393  * VkKeyScan translates an ANSI character to a virtual-key and shift code
394  * for the current keyboard.
395  * high-order byte yields :
396  *      0       Unshifted
397  *      1       Shift
398  *      2       Ctrl
399  *      3-5     Shift-key combinations that are not used for characters
400  *      6       Ctrl-Alt
401  *      7       Ctrl-Alt-Shift
402  *      I.e. :  Shift = 1, Ctrl = 2, Alt = 4.
403  * FIXME : works ok except for dead chars :
404  * VkKeyScan '^'(0x5e, 94) ... got keycode 00 ... returning 00
405  * VkKeyScan '`'(0x60, 96) ... got keycode 00 ... returning 00
406  */
407 SHORT WINAPI VkKeyScanA(CHAR cChar)
408 {
409     WCHAR wChar;
410
411     if (IsDBCSLeadByte(cChar)) return -1;
412
413     MultiByteToWideChar(CP_ACP, 0, &cChar, 1, &wChar, 1);
414     return VkKeyScanW(wChar);
415 }
416
417 /******************************************************************************
418  *              VkKeyScanW (USER32.@)
419  */
420 SHORT WINAPI VkKeyScanW(WCHAR cChar)
421 {
422     return VkKeyScanExW(cChar, GetKeyboardLayout(0));
423 }
424
425 /**********************************************************************
426  *              VkKeyScanExA (USER32.@)
427  */
428 WORD WINAPI VkKeyScanExA(CHAR cChar, HKL dwhkl)
429 {
430     WCHAR wChar;
431
432     if (IsDBCSLeadByte(cChar)) return -1;
433
434     MultiByteToWideChar(CP_ACP, 0, &cChar, 1, &wChar, 1);
435     return VkKeyScanExW(wChar, dwhkl);
436 }
437
438 /******************************************************************************
439  *              VkKeyScanExW (USER32.@)
440  */
441 WORD WINAPI VkKeyScanExW(WCHAR cChar, HKL dwhkl)
442 {
443     return USER_Driver->pVkKeyScanEx(cChar, dwhkl);
444 }
445
446 /**********************************************************************
447  *              OemKeyScan (USER32.@)
448  */
449 DWORD WINAPI OemKeyScan(WORD wOemChar)
450 {
451     TRACE("(%d)\n", wOemChar);
452     return wOemChar;
453 }
454
455 /******************************************************************************
456  *              GetKeyboardType (USER32.@)
457  */
458 INT WINAPI GetKeyboardType(INT nTypeFlag)
459 {
460     TRACE_(keyboard)("(%d)\n", nTypeFlag);
461     switch(nTypeFlag)
462     {
463     case 0:      /* Keyboard type */
464         return 4;    /* AT-101 */
465     case 1:      /* Keyboard Subtype */
466         return 0;    /* There are no defined subtypes */
467     case 2:      /* Number of F-keys */
468         return 12;   /* We're doing an 101 for now, so return 12 F-keys */
469     default:
470         WARN_(keyboard)("Unknown type\n");
471         return 0;    /* The book says 0 here, so 0 */
472     }
473 }
474
475 /******************************************************************************
476  *              MapVirtualKeyA (USER32.@)
477  */
478 UINT WINAPI MapVirtualKeyA(UINT code, UINT maptype)
479 {
480     return MapVirtualKeyExA( code, maptype, GetKeyboardLayout(0) );
481 }
482
483 /******************************************************************************
484  *              MapVirtualKeyW (USER32.@)
485  */
486 UINT WINAPI MapVirtualKeyW(UINT code, UINT maptype)
487 {
488     return MapVirtualKeyExW(code, maptype, GetKeyboardLayout(0));
489 }
490
491 /******************************************************************************
492  *              MapVirtualKeyExA (USER32.@)
493  */
494 UINT WINAPI MapVirtualKeyExA(UINT code, UINT maptype, HKL hkl)
495 {
496     return MapVirtualKeyExW(code, maptype, hkl);
497 }
498
499 /******************************************************************************
500  *              MapVirtualKeyExW (USER32.@)
501  */
502 UINT WINAPI MapVirtualKeyExW(UINT code, UINT maptype, HKL hkl)
503 {
504     TRACE_(keyboard)("(%d, %d, %p)\n", code, maptype, hkl);
505
506     return USER_Driver->pMapVirtualKeyEx(code, maptype, hkl);
507 }
508
509 /****************************************************************************
510  *              GetKBCodePage (USER32.@)
511  */
512 UINT WINAPI GetKBCodePage(void)
513 {
514     return GetOEMCP();
515 }
516
517 /***********************************************************************
518  *              GetKeyboardLayout (USER32.@)
519  *
520  *        - device handle for keyboard layout defaulted to
521  *          the language id. This is the way Windows default works.
522  *        - the thread identifier (dwLayout) is also ignored.
523  */
524 HKL WINAPI GetKeyboardLayout(DWORD dwLayout)
525 {
526     return USER_Driver->pGetKeyboardLayout(dwLayout);
527 }
528
529 /****************************************************************************
530  *              GetKeyboardLayoutNameA (USER32.@)
531  */
532 BOOL WINAPI GetKeyboardLayoutNameA(LPSTR pszKLID)
533 {
534     WCHAR buf[KL_NAMELENGTH];
535
536     if (GetKeyboardLayoutNameW(buf))
537         return WideCharToMultiByte( CP_ACP, 0, buf, -1, pszKLID, KL_NAMELENGTH, NULL, NULL ) != 0;
538     return FALSE;
539 }
540
541 /****************************************************************************
542  *              GetKeyboardLayoutNameW (USER32.@)
543  */
544 BOOL WINAPI GetKeyboardLayoutNameW(LPWSTR pwszKLID)
545 {
546     return USER_Driver->pGetKeyboardLayoutName(pwszKLID);
547 }
548
549 /****************************************************************************
550  *              GetKeyNameTextA (USER32.@)
551  */
552 INT WINAPI GetKeyNameTextA(LONG lParam, LPSTR lpBuffer, INT nSize)
553 {
554     WCHAR buf[256];
555     INT ret;
556
557     if (!GetKeyNameTextW(lParam, buf, 256))
558         return 0;
559     ret = WideCharToMultiByte(CP_ACP, 0, buf, -1, lpBuffer, nSize, NULL, NULL);
560     if (!ret && nSize)
561     {
562         ret = nSize - 1;
563         lpBuffer[ret] = 0;
564     }
565     return ret;
566 }
567
568 /****************************************************************************
569  *              GetKeyNameTextW (USER32.@)
570  */
571 INT WINAPI GetKeyNameTextW(LONG lParam, LPWSTR lpBuffer, INT nSize)
572 {
573     return USER_Driver->pGetKeyNameText( lParam, lpBuffer, nSize );
574 }
575
576 /****************************************************************************
577  *              ToUnicode (USER32.@)
578  */
579 INT WINAPI ToUnicode(UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
580                      LPWSTR lpwStr, int size, UINT flags)
581 {
582     return ToUnicodeEx(virtKey, scanCode, lpKeyState, lpwStr, size, flags, GetKeyboardLayout(0));
583 }
584
585 /****************************************************************************
586  *              ToUnicodeEx (USER32.@)
587  */
588 INT WINAPI ToUnicodeEx(UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
589                        LPWSTR lpwStr, int size, UINT flags, HKL hkl)
590 {
591     return USER_Driver->pToUnicodeEx(virtKey, scanCode, lpKeyState, lpwStr, size, flags, hkl);
592 }
593
594 /****************************************************************************
595  *              ToAscii (USER32.@)
596  */
597 INT WINAPI ToAscii( UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
598                     LPWORD lpChar, UINT flags )
599 {
600     return ToAsciiEx(virtKey, scanCode, lpKeyState, lpChar, flags, GetKeyboardLayout(0));
601 }
602
603 /****************************************************************************
604  *              ToAsciiEx (USER32.@)
605  */
606 INT WINAPI ToAsciiEx( UINT virtKey, UINT scanCode, LPBYTE lpKeyState,
607                       LPWORD lpChar, UINT flags, HKL dwhkl )
608 {
609     WCHAR uni_chars[2];
610     INT ret, n_ret;
611
612     ret = ToUnicodeEx(virtKey, scanCode, lpKeyState, uni_chars, 2, flags, dwhkl);
613     if (ret < 0) n_ret = 1; /* FIXME: make ToUnicode return 2 for dead chars */
614     else n_ret = ret;
615     WideCharToMultiByte(CP_ACP, 0, uni_chars, n_ret, (LPSTR)lpChar, 2, NULL, NULL);
616     return ret;
617 }
618
619 /**********************************************************************
620  *              ActivateKeyboardLayout (USER32.@)
621  */
622 HKL WINAPI ActivateKeyboardLayout(HKL hLayout, UINT flags)
623 {
624     TRACE_(keyboard)("(%p, %d)\n", hLayout, flags);
625
626     return USER_Driver->pActivateKeyboardLayout(hLayout, flags);
627 }
628
629
630 /***********************************************************************
631  *              GetKeyboardLayoutList (USER32.@)
632  *
633  * Return number of values available if either input parm is
634  *  0, per MS documentation.
635  */
636 UINT WINAPI GetKeyboardLayoutList(INT nBuff, HKL *layouts)
637 {
638     TRACE_(keyboard)("(%d,%p)\n",nBuff,layouts);
639
640     return USER_Driver->pGetKeyboardLayoutList(nBuff, layouts);
641 }
642
643
644 /***********************************************************************
645  *              RegisterHotKey (USER32.@)
646  */
647 BOOL WINAPI RegisterHotKey(HWND hwnd,INT id,UINT modifiers,UINT vk)
648 {
649     FIXME_(keyboard)("(%p,%d,0x%08x,%d): stub\n",hwnd,id,modifiers,vk);
650     return TRUE;
651 }
652
653 /***********************************************************************
654  *              UnregisterHotKey (USER32.@)
655  */
656 BOOL WINAPI UnregisterHotKey(HWND hwnd,INT id)
657 {
658     FIXME_(keyboard)("(%p,%d): stub\n",hwnd,id);
659     return TRUE;
660 }
661
662 /***********************************************************************
663  *              LoadKeyboardLayoutW (USER32.@)
664  */
665 HKL WINAPI LoadKeyboardLayoutW(LPCWSTR pwszKLID, UINT Flags)
666 {
667     TRACE_(keyboard)("(%s, %d)\n", debugstr_w(pwszKLID), Flags);
668
669     return USER_Driver->pLoadKeyboardLayout(pwszKLID, Flags);
670 }
671
672 /***********************************************************************
673  *              LoadKeyboardLayoutA (USER32.@)
674  */
675 HKL WINAPI LoadKeyboardLayoutA(LPCSTR pwszKLID, UINT Flags)
676 {
677     HKL ret;
678     UNICODE_STRING pwszKLIDW;
679
680     if (pwszKLID) RtlCreateUnicodeStringFromAsciiz(&pwszKLIDW, pwszKLID);
681     else pwszKLIDW.Buffer = NULL;
682
683     ret = LoadKeyboardLayoutW(pwszKLIDW.Buffer, Flags);
684     RtlFreeUnicodeString(&pwszKLIDW);
685     return ret;
686 }
687
688
689 /***********************************************************************
690  *              UnloadKeyboardLayout (USER32.@)
691  */
692 BOOL WINAPI UnloadKeyboardLayout(HKL hkl)
693 {
694     TRACE_(keyboard)("(%p)\n", hkl);
695
696     return USER_Driver->pUnloadKeyboardLayout(hkl);
697 }
698
699 typedef struct __TRACKINGLIST {
700     TRACKMOUSEEVENT tme;
701     POINT pos; /* center of hover rectangle */
702     INT iHoverTime; /* elapsed time the cursor has been inside of the hover rect */
703 } _TRACKINGLIST;
704
705 static _TRACKINGLIST TrackingList[10];
706 static int iTrackMax = 0;
707 static UINT_PTR timer;
708 static const INT iTimerInterval = 50; /* msec for timer interval */
709
710 static void CALLBACK TrackMouseEventProc(HWND hwndUnused, UINT uMsg, UINT_PTR idEvent,
711     DWORD dwTime)
712 {
713     int i = 0;
714     POINT pos;
715     POINT posClient;
716     HWND hwnd;
717     INT nonclient;
718     INT hoverwidth = 0, hoverheight = 0;
719     RECT client;
720
721     GetCursorPos(&pos);
722     hwnd = WindowFromPoint(pos);
723
724     SystemParametersInfoA(SPI_GETMOUSEHOVERWIDTH, 0, &hoverwidth, 0);
725     SystemParametersInfoA(SPI_GETMOUSEHOVERHEIGHT, 0, &hoverheight, 0);
726
727     /* loop through tracking events we are processing */
728     while (i < iTrackMax) {
729         if (TrackingList[i].tme.dwFlags & TME_NONCLIENT) {
730             nonclient = 1;
731         }
732         else {
733             nonclient = 0;
734         }
735
736         /* see if this tracking event is looking for TME_LEAVE and that the */
737         /* mouse has left the window */
738         if (TrackingList[i].tme.dwFlags & TME_LEAVE) {
739             if (TrackingList[i].tme.hwndTrack != hwnd) {
740                 if (nonclient) {
741                     PostMessageA(TrackingList[i].tme.hwndTrack, WM_NCMOUSELEAVE, 0, 0);
742                 }
743                 else {
744                     PostMessageA(TrackingList[i].tme.hwndTrack, WM_MOUSELEAVE, 0, 0);
745                 }
746
747                 /* remove the TME_LEAVE flag */
748                 TrackingList[i].tme.dwFlags ^= TME_LEAVE;
749             }
750             else {
751                 GetClientRect(hwnd, &client);
752                 MapWindowPoints(hwnd, NULL, (LPPOINT)&client, 2);
753                 if(PtInRect(&client, pos)) {
754                     if (nonclient) {
755                         PostMessageA(TrackingList[i].tme.hwndTrack, WM_NCMOUSELEAVE, 0, 0);
756                         /* remove the TME_LEAVE flag */
757                         TrackingList[i].tme.dwFlags ^= TME_LEAVE;
758                     }
759                 }
760                 else {
761                     if (!nonclient) {
762                         PostMessageA(TrackingList[i].tme.hwndTrack, WM_MOUSELEAVE, 0, 0);
763                         /* remove the TME_LEAVE flag */
764                         TrackingList[i].tme.dwFlags ^= TME_LEAVE;
765                     }
766                 }
767             }
768         }
769
770         /* see if we are tracking hovering for this hwnd */
771         if(TrackingList[i].tme.dwFlags & TME_HOVER) {
772             /* add the timer interval to the hovering time */
773             TrackingList[i].iHoverTime+=iTimerInterval;
774
775             /* has the cursor moved outside the rectangle centered around pos? */
776             if((abs(pos.x - TrackingList[i].pos.x) > (hoverwidth / 2.0))
777               || (abs(pos.y - TrackingList[i].pos.y) > (hoverheight / 2.0)))
778             {
779                 /* record this new position as the current position and reset */
780                 /* the iHoverTime variable to 0 */
781                 TrackingList[i].pos = pos;
782                 TrackingList[i].iHoverTime = 0;
783             }
784
785             /* has the mouse hovered long enough? */
786             if(TrackingList[i].iHoverTime <= TrackingList[i].tme.dwHoverTime)
787             {
788                 posClient.x = pos.x;
789                 posClient.y = pos.y;
790                 ScreenToClient(hwnd, &posClient);
791                 if (nonclient) {
792                     PostMessageW(TrackingList[i].tme.hwndTrack, WM_NCMOUSEHOVER,
793                                 get_key_state(), MAKELPARAM( posClient.x, posClient.y ));
794                 }
795                 else {
796                     PostMessageW(TrackingList[i].tme.hwndTrack, WM_MOUSEHOVER,
797                                 get_key_state(), MAKELPARAM( posClient.x, posClient.y ));
798                 }
799
800                 /* stop tracking mouse hover */
801                 TrackingList[i].tme.dwFlags ^= TME_HOVER;
802             }
803         }
804
805         /* see if we are still tracking TME_HOVER or TME_LEAVE for this entry */
806         if((TrackingList[i].tme.dwFlags & TME_HOVER) ||
807            (TrackingList[i].tme.dwFlags & TME_LEAVE)) {
808             i++;
809         } else { /* remove this entry from the tracking list */
810             TrackingList[i] = TrackingList[--iTrackMax];
811         }
812     }
813
814     /* stop the timer if the tracking list is empty */
815     if(iTrackMax == 0) {
816         KillTimer(0, timer);
817         timer = 0;
818     }
819 }
820
821
822 /***********************************************************************
823  * TrackMouseEvent [USER32]
824  *
825  * Requests notification of mouse events
826  *
827  * During mouse tracking WM_MOUSEHOVER or WM_MOUSELEAVE events are posted
828  * to the hwnd specified in the ptme structure.  After the event message
829  * is posted to the hwnd, the entry in the queue is removed.
830  *
831  * If the current hwnd isn't ptme->hwndTrack the TME_HOVER flag is completely
832  * ignored. The TME_LEAVE flag results in a WM_MOUSELEAVE message being posted
833  * immediately and the TME_LEAVE flag being ignored.
834  *
835  * PARAMS
836  *     ptme [I,O] pointer to TRACKMOUSEEVENT information structure.
837  *
838  * RETURNS
839  *     Success: non-zero
840  *     Failure: zero
841  *
842  */
843
844 BOOL WINAPI
845 TrackMouseEvent (TRACKMOUSEEVENT *ptme)
846 {
847     DWORD flags = 0;
848     int i = 0;
849     BOOL cancel = 0, hover = 0, leave = 0, query = 0, nonclient = 0, inclient = 0;
850     HWND hwnd;
851     POINT pos;
852     RECT client;
853
854
855     pos.x = 0;
856     pos.y = 0;
857     SetRectEmpty(&client);
858
859     TRACE("%lx, %lx, %p, %lx\n", ptme->cbSize, ptme->dwFlags, ptme->hwndTrack, ptme->dwHoverTime);
860
861     if (ptme->cbSize != sizeof(TRACKMOUSEEVENT)) {
862         WARN("wrong TRACKMOUSEEVENT size from app\n");
863         SetLastError(ERROR_INVALID_PARAMETER); /* FIXME not sure if this is correct */
864         return FALSE;
865     }
866
867     flags = ptme->dwFlags;
868
869     /* if HOVER_DEFAULT was specified replace this with the systems current value */
870     if(ptme->dwHoverTime == HOVER_DEFAULT)
871         SystemParametersInfoA(SPI_GETMOUSEHOVERTIME, 0, &(ptme->dwHoverTime), 0);
872
873     GetCursorPos(&pos);
874     hwnd = WindowFromPoint(pos);
875
876     if ( flags & TME_CANCEL ) {
877         flags &= ~ TME_CANCEL;
878         cancel = 1;
879     }
880
881     if ( flags & TME_HOVER  ) {
882         flags &= ~ TME_HOVER;
883         hover = 1;
884     }
885
886     if ( flags & TME_LEAVE ) {
887         flags &= ~ TME_LEAVE;
888         leave = 1;
889     }
890
891     if ( flags & TME_NONCLIENT ) {
892         flags &= ~ TME_NONCLIENT;
893         nonclient = 1;
894     }
895
896     /* fill the TRACKMOUSEEVENT struct with the current tracking for the given hwnd */
897     if ( flags & TME_QUERY ) {
898         flags &= ~ TME_QUERY;
899         query = 1;
900         i = 0;
901
902         /* Find the tracking list entry with the matching hwnd */
903         while((i < iTrackMax) && (TrackingList[i].tme.hwndTrack != ptme->hwndTrack)) {
904             i++;
905         }
906
907         /* hwnd found, fill in the ptme struct */
908         if(i < iTrackMax)
909             *ptme = TrackingList[i].tme;
910         else
911             ptme->dwFlags = 0;
912
913         return TRUE; /* return here, TME_QUERY is retrieving information */
914     }
915
916     if ( flags )
917         FIXME("Unknown flag(s) %08lx\n", flags );
918
919     if(cancel) {
920         /* find a matching hwnd if one exists */
921         i = 0;
922
923         while((i < iTrackMax) && (TrackingList[i].tme.hwndTrack != ptme->hwndTrack)) {
924           i++;
925         }
926
927         if(i < iTrackMax) {
928             TrackingList[i].tme.dwFlags &= ~(ptme->dwFlags & ~TME_CANCEL);
929
930             /* if we aren't tracking on hover or leave remove this entry */
931             if(!((TrackingList[i].tme.dwFlags & TME_HOVER) ||
932                  (TrackingList[i].tme.dwFlags & TME_LEAVE)))
933             {
934                 TrackingList[i] = TrackingList[--iTrackMax];
935
936                 if(iTrackMax == 0) {
937                     KillTimer(0, timer);
938                     timer = 0;
939                 }
940             }
941         }
942     } else {
943         /* see if hwndTrack isn't the current window */
944         if(ptme->hwndTrack != hwnd) {
945             if(leave) {
946                 if(nonclient) {
947                     PostMessageA(ptme->hwndTrack, WM_NCMOUSELEAVE, 0, 0);
948                 }
949                 else {
950                     PostMessageA(ptme->hwndTrack, WM_MOUSELEAVE, 0, 0);
951                 }
952             }
953         } else {
954             GetClientRect(ptme->hwndTrack, &client);
955             MapWindowPoints(ptme->hwndTrack, NULL, (LPPOINT)&client, 2);
956             if(PtInRect(&client, pos)) {
957                 inclient = 1;
958             }
959             if(nonclient && inclient) {
960                 PostMessageA(ptme->hwndTrack, WM_NCMOUSELEAVE, 0, 0);
961                 return TRUE;
962             }
963             else if(!nonclient && !inclient) {
964                 PostMessageA(ptme->hwndTrack, WM_MOUSELEAVE, 0, 0);
965                 return TRUE;
966             }
967
968             /* See if this hwnd is already being tracked and update the tracking flags */
969             for(i = 0; i < iTrackMax; i++) {
970                 if(TrackingList[i].tme.hwndTrack == ptme->hwndTrack) {
971                     TrackingList[i].tme.dwFlags = 0;
972
973                     if(hover) {
974                         TrackingList[i].tme.dwFlags |= TME_HOVER;
975                         TrackingList[i].tme.dwHoverTime = ptme->dwHoverTime;
976                     }
977
978                     if(leave)
979                         TrackingList[i].tme.dwFlags |= TME_LEAVE;
980
981                     if(nonclient)
982                         TrackingList[i].tme.dwFlags |= TME_NONCLIENT;
983
984                     /* reset iHoverTime as per winapi specs */
985                     TrackingList[i].iHoverTime = 0;
986
987                     return TRUE;
988                 }
989             }
990
991             /* if the tracking list is full return FALSE */
992             if (iTrackMax == sizeof (TrackingList) / sizeof(*TrackingList)) {
993                 return FALSE;
994             }
995
996             /* Adding new mouse event to the tracking list */
997             TrackingList[iTrackMax].tme = *ptme;
998
999             /* Initialize HoverInfo variables even if not hover tracking */
1000             TrackingList[iTrackMax].iHoverTime = 0;
1001             TrackingList[iTrackMax].pos = pos;
1002
1003             iTrackMax++;
1004
1005             if (!timer) {
1006                 timer = SetTimer(0, 0, iTimerInterval, TrackMouseEventProc);
1007             }
1008         }
1009     }
1010
1011     return TRUE;
1012 }