wined3d: Remove arb_tex_npot for NV FX series in fixup_extensions.
[wine] / dlls / comctl32 / tooltips.c
1 /*
2  * Tool tip control
3  *
4  * Copyright 1998, 1999 Eric Kohl
5  * Copyright 2004 Robert Shearman
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  *
21  * NOTES
22  *
23  * This code was audited for completeness against the documented features
24  * of Comctl32.dll version 6.0 on Sep. 08, 2004, by Robert Shearman.
25  * 
26  * Unless otherwise noted, we believe this code to be complete, as per
27  * the specification mentioned above.
28  * If you discover missing features or bugs please note them below.
29  * 
30  * TODO:
31  *   - Custom draw support.
32  *   - Animation.
33  *   - Links.
34  *   - Messages:
35  *     o TTM_ADJUSTRECT
36  *     o TTM_GETTITLEA
37  *     o TTM_GETTTILEW
38  *     o TTM_POPUP
39  *   - Styles:
40  *     o TTS_NOANIMATE
41  *     o TTS_NOFADE
42  *     o TTS_CLOSE
43  *
44  * Testing:
45  *   - Run tests using Waite Group Windows95 API Bible Volume 2.
46  *     The second cdrom (chapter 3) contains executables activate.exe,
47  *     curtool.exe, deltool.exe, enumtools.exe, getinfo.exe, getiptxt.exe,
48  *     hittest.exe, needtext.exe, newrect.exe, updtext.exe and winfrpt.exe.
49  *
50  *   Timer logic.
51  *
52  * One important point to remember is that tools don't necessarily get
53  * a WM_MOUSEMOVE once the cursor leaves the tool, an example is when
54  * a tool sets TTF_IDISHWND (i.e. an entire window is a tool) because
55  * here WM_MOUSEMOVEs only get sent when the cursor is inside the
56  * client area.  Therefore the only reliable way to know that the
57  * cursor has left a tool is to keep a timer running and check the
58  * position every time it expires.  This is the role of timer
59  * ID_TIMERLEAVE.
60  *
61  *
62  * On entering a tool (detected in a relayed WM_MOUSEMOVE) we start
63  * ID_TIMERSHOW, if this times out and we're still in the tool we show
64  * the tip.  On showing a tip we start both ID_TIMERPOP and
65  * ID_TIMERLEAVE.  On hiding a tooltip we kill ID_TIMERPOP.
66  * ID_TIMERPOP is restarted on every relayed WM_MOUSEMOVE.  If
67  * ID_TIMERPOP expires the tool is hidden and ID_TIMERPOP is killed.
68  * ID_TIMERLEAVE remains running - this is important as we need to
69  * determine when the cursor leaves the tool.
70  *
71  * When ID_TIMERLEAVE expires or on a relayed WM_MOUSEMOVE if we're
72  * still in the tool do nothing (apart from restart ID_TIMERPOP if
73  * this is a WM_MOUSEMOVE) (ID_TIMERLEAVE remains running).  If we've
74  * left the tool and entered another one then hide the tip and start
75  * ID_TIMERSHOW with time ReshowTime and kill ID_TIMERLEAVE.  If we're
76  * outside all tools hide the tip and kill ID_TIMERLEAVE.  On Relayed
77  * mouse button messages hide the tip but leave ID_TIMERLEAVE running,
78  * this again will let us keep track of when the cursor leaves the
79  * tool.
80  *
81  *
82  * infoPtr->nTool is the tool the mouse was on on the last relayed MM
83  * or timer expiry or -1 if the mouse was not on a tool.
84  *
85  * infoPtr->nCurrentTool is the tool for which the tip is currently
86  * displaying text for or -1 if the tip is not shown.  Actually this
87  * will only ever be infoPtr-nTool or -1, so it could be changed to a
88  * BOOL.
89  *
90  */
91
92
93
94 #include <stdarg.h>
95 #include <string.h>
96
97 #include "windef.h"
98 #include "winbase.h"
99 #include "wine/unicode.h"
100 #include "wingdi.h"
101 #include "winuser.h"
102 #include "winnls.h"
103 #include "commctrl.h"
104 #include "comctl32.h"
105 #include "wine/debug.h"
106
107 WINE_DEFAULT_DEBUG_CHANNEL(tooltips);
108
109 static HICON hTooltipIcons[TTI_ERROR+1];
110
111 typedef struct
112 {
113     UINT      uFlags;
114     HWND      hwnd;
115     BOOL      bNotifyUnicode;
116     UINT_PTR  uId;
117     RECT      rect;
118     HINSTANCE hinst;
119     LPWSTR      lpszText;
120     LPARAM      lParam;
121 } TTTOOL_INFO;
122
123
124 typedef struct
125 {
126     WCHAR      szTipText[INFOTIPSIZE];
127     BOOL     bActive;
128     BOOL     bTrackActive;
129     UINT     uNumTools;
130     COLORREF   clrBk;
131     COLORREF   clrText;
132     HFONT    hFont;
133     HFONT    hTitleFont;
134     INT      xTrackPos;
135     INT      yTrackPos;
136     INT      nMaxTipWidth;
137     INT      nTool; /* tool that mouse was on on last relayed mouse move */
138     INT      nCurrentTool;
139     INT      nTrackTool;
140     INT      nReshowTime;
141     INT      nAutoPopTime;
142     INT      nInitialTime;
143     RECT     rcMargin;
144     BOOL     bToolBelow;
145     LPWSTR   pszTitle;
146     HICON    hTitleIcon;
147
148     TTTOOL_INFO *tools;
149 } TOOLTIPS_INFO;
150
151 #define ID_TIMERSHOW   1    /* show delay timer */
152 #define ID_TIMERPOP    2    /* auto pop timer */
153 #define ID_TIMERLEAVE  3    /* tool leave timer */
154
155
156 #define TOOLTIPS_GetInfoPtr(hWindow) ((TOOLTIPS_INFO *)GetWindowLongPtrW (hWindow, 0))
157
158 /* offsets from window edge to start of text */
159 #define NORMAL_TEXT_MARGIN 2
160 #define BALLOON_TEXT_MARGIN (NORMAL_TEXT_MARGIN+8)
161 /* value used for CreateRoundRectRgn that specifies how much
162  * each corner is curved */
163 #define BALLOON_ROUNDEDNESS 20
164 #define BALLOON_STEMHEIGHT 13
165 #define BALLOON_STEMWIDTH 10
166 #define BALLOON_STEMINDENT 20
167
168 #define BALLOON_ICON_TITLE_SPACING 8 /* horizontal spacing between icon and title */
169 #define BALLOON_TITLE_TEXT_SPACING 8 /* vertical spacing between icon/title and main text */
170 #define ICON_HEIGHT 16
171 #define ICON_WIDTH  16
172
173 static LRESULT CALLBACK
174 TOOLTIPS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uId, DWORD_PTR dwRef);
175
176
177 static inline UINT_PTR
178 TOOLTIPS_GetTitleIconIndex(HICON hIcon)
179 {
180     UINT i;
181     for (i = 0; i <= TTI_ERROR; i++)
182         if (hTooltipIcons[i] == hIcon)
183             return i;
184     return (UINT_PTR)hIcon;
185 }
186
187 static void
188 TOOLTIPS_InitSystemSettings (TOOLTIPS_INFO *infoPtr)
189 {
190     NONCLIENTMETRICSW nclm;
191
192     infoPtr->clrBk   = GetSysColor (COLOR_INFOBK);
193     infoPtr->clrText = GetSysColor (COLOR_INFOTEXT);
194
195     DeleteObject (infoPtr->hFont);
196     nclm.cbSize = sizeof(nclm);
197     SystemParametersInfoW (SPI_GETNONCLIENTMETRICS, sizeof(nclm), &nclm, 0);
198     infoPtr->hFont = CreateFontIndirectW (&nclm.lfStatusFont);
199
200     DeleteObject (infoPtr->hTitleFont);
201     nclm.lfStatusFont.lfWeight = FW_BOLD;
202     infoPtr->hTitleFont = CreateFontIndirectW (&nclm.lfStatusFont);
203 }
204
205 /* Custom draw routines */
206 static void
207 TOOLTIPS_customdraw_fill(NMTTCUSTOMDRAW *lpnmttcd,
208                          const HWND hwnd,
209                          HDC hdc, const RECT *rcBounds, UINT uFlags)
210 {
211     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr(hwnd);
212
213     ZeroMemory(lpnmttcd, sizeof(NMTTCUSTOMDRAW));
214     lpnmttcd->uDrawFlags = uFlags;
215     lpnmttcd->nmcd.hdr.hwndFrom = hwnd;
216     lpnmttcd->nmcd.hdr.code     = NM_CUSTOMDRAW;
217     if (infoPtr->nCurrentTool != -1) {
218         TTTOOL_INFO *toolPtr = &infoPtr->tools[infoPtr->nCurrentTool];
219         lpnmttcd->nmcd.hdr.idFrom = toolPtr->uId;
220     }
221     lpnmttcd->nmcd.hdc = hdc;
222     lpnmttcd->nmcd.rc = *rcBounds;
223     /* FIXME - dwItemSpec, uItemState, lItemlParam */
224 }
225
226 static inline DWORD
227 TOOLTIPS_notify_customdraw (DWORD dwDrawStage, NMTTCUSTOMDRAW *lpnmttcd)
228 {
229     LRESULT result = CDRF_DODEFAULT;
230     lpnmttcd->nmcd.dwDrawStage = dwDrawStage;
231
232     TRACE("Notifying stage %d, flags %x, id %x\n", lpnmttcd->nmcd.dwDrawStage,
233           lpnmttcd->uDrawFlags, lpnmttcd->nmcd.hdr.code);
234
235     result = SendMessageW(GetParent(lpnmttcd->nmcd.hdr.hwndFrom), WM_NOTIFY,
236                           0, (LPARAM)lpnmttcd);
237
238     TRACE("Notify result %x\n", (unsigned int)result);
239
240     return result;
241 }
242
243 static void
244 TOOLTIPS_Refresh (HWND hwnd, HDC hdc)
245 {
246     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr(hwnd);
247     RECT rc;
248     INT oldBkMode;
249     HFONT hOldFont;
250     HBRUSH hBrush;
251     UINT uFlags = DT_EXTERNALLEADING;
252     HRGN hRgn = NULL;
253     DWORD dwStyle = GetWindowLongW(hwnd, GWL_STYLE);
254     NMTTCUSTOMDRAW nmttcd;
255     DWORD cdmode;
256
257     if (infoPtr->nMaxTipWidth > -1)
258         uFlags |= DT_WORDBREAK;
259     if (GetWindowLongW (hwnd, GWL_STYLE) & TTS_NOPREFIX)
260         uFlags |= DT_NOPREFIX;
261     GetClientRect (hwnd, &rc);
262
263     hBrush = CreateSolidBrush(infoPtr->clrBk);
264
265     oldBkMode = SetBkMode (hdc, TRANSPARENT);
266     SetTextColor (hdc, infoPtr->clrText);
267     hOldFont = SelectObject (hdc, infoPtr->hFont);
268
269     /* Custom draw - Call PrePaint once initial properties set up     */
270     /* Note: Contrary to MSDN, CDRF_SKIPDEFAULT still draws a tooltip */
271     TOOLTIPS_customdraw_fill(&nmttcd, hwnd, hdc, &rc, uFlags);
272     cdmode = TOOLTIPS_notify_customdraw(CDDS_PREPAINT, &nmttcd);
273     uFlags = nmttcd.uDrawFlags;
274
275     if (dwStyle & TTS_BALLOON)
276     {
277         /* create a region to store result into */
278         hRgn = CreateRectRgn(0, 0, 0, 0);
279
280         GetWindowRgn(hwnd, hRgn);
281
282         /* fill the background */
283         FillRgn(hdc, hRgn, hBrush);
284         DeleteObject(hBrush);
285         hBrush = NULL;
286     }
287     else
288     {
289         /* fill the background */
290         FillRect(hdc, &rc, hBrush);
291         DeleteObject(hBrush);
292         hBrush = NULL;
293     }
294
295     if ((dwStyle & TTS_BALLOON) || infoPtr->pszTitle)
296     {
297         /* calculate text rectangle */
298         rc.left   += (BALLOON_TEXT_MARGIN + infoPtr->rcMargin.left);
299         rc.top    += (BALLOON_TEXT_MARGIN + infoPtr->rcMargin.top);
300         rc.right  -= (BALLOON_TEXT_MARGIN + infoPtr->rcMargin.right);
301         rc.bottom -= (BALLOON_TEXT_MARGIN + infoPtr->rcMargin.bottom);
302         if(infoPtr->bToolBelow) rc.top += BALLOON_STEMHEIGHT;
303
304         if (infoPtr->pszTitle)
305         {
306             RECT rcTitle = {rc.left, rc.top, rc.right, rc.bottom};
307             int height;
308             BOOL icon_present;
309             HFONT prevFont;
310
311             /* draw icon */
312             icon_present = infoPtr->hTitleIcon && 
313                 DrawIconEx(hdc, rc.left, rc.top, infoPtr->hTitleIcon,
314                            ICON_WIDTH, ICON_HEIGHT, 0, NULL, DI_NORMAL);
315             if (icon_present)
316                 rcTitle.left += ICON_WIDTH + BALLOON_ICON_TITLE_SPACING;
317
318             rcTitle.bottom = rc.top + ICON_HEIGHT;
319
320             /* draw title text */
321             prevFont = SelectObject (hdc, infoPtr->hTitleFont);
322             height = DrawTextW(hdc, infoPtr->pszTitle, -1, &rcTitle, DT_BOTTOM | DT_SINGLELINE | DT_NOPREFIX);
323             SelectObject (hdc, prevFont);
324             rc.top += height + BALLOON_TITLE_TEXT_SPACING;
325         }
326     }
327     else
328     {
329         /* calculate text rectangle */
330         rc.left   += (NORMAL_TEXT_MARGIN + infoPtr->rcMargin.left);
331         rc.top    += (NORMAL_TEXT_MARGIN + infoPtr->rcMargin.top);
332         rc.right  -= (NORMAL_TEXT_MARGIN + infoPtr->rcMargin.right);
333         rc.bottom -= (NORMAL_TEXT_MARGIN + infoPtr->rcMargin.bottom);
334     }
335
336     /* draw text */
337     DrawTextW (hdc, infoPtr->szTipText, -1, &rc, uFlags);
338
339     /* Custom draw - Call PostPaint after drawing */
340     if (cdmode & CDRF_NOTIFYPOSTPAINT) {
341         TOOLTIPS_notify_customdraw(CDDS_POSTPAINT, &nmttcd);
342     }
343
344     /* be polite and reset the things we changed in the dc */
345     SelectObject (hdc, hOldFont);
346     SetBkMode (hdc, oldBkMode);
347
348     if (dwStyle & TTS_BALLOON)
349     {
350         /* frame region because default window proc doesn't do it */
351         INT width = GetSystemMetrics(SM_CXDLGFRAME) - GetSystemMetrics(SM_CXEDGE);
352         INT height = GetSystemMetrics(SM_CYDLGFRAME) - GetSystemMetrics(SM_CYEDGE);
353
354         hBrush = GetSysColorBrush(COLOR_WINDOWFRAME);
355         FrameRgn(hdc, hRgn, hBrush, width, height);
356     }
357
358     if (hRgn)
359         DeleteObject(hRgn);
360 }
361
362 static void TOOLTIPS_GetDispInfoA(HWND hwnd, TOOLTIPS_INFO *infoPtr, TTTOOL_INFO *toolPtr)
363 {
364     NMTTDISPINFOA ttnmdi;
365
366     /* fill NMHDR struct */
367     ZeroMemory (&ttnmdi, sizeof(NMTTDISPINFOA));
368     ttnmdi.hdr.hwndFrom = hwnd;
369     ttnmdi.hdr.idFrom = toolPtr->uId;
370     ttnmdi.hdr.code = TTN_GETDISPINFOA; /* == TTN_NEEDTEXTA */
371     ttnmdi.lpszText = (LPSTR)ttnmdi.szText;
372     ttnmdi.uFlags = toolPtr->uFlags;
373     ttnmdi.lParam = toolPtr->lParam;
374
375     TRACE("hdr.idFrom = %lx\n", ttnmdi.hdr.idFrom);
376     SendMessageW(toolPtr->hwnd, WM_NOTIFY, toolPtr->uId, (LPARAM)&ttnmdi);
377
378     if (IS_INTRESOURCE(ttnmdi.lpszText)) {
379         LoadStringW(ttnmdi.hinst, LOWORD(ttnmdi.lpszText),
380                infoPtr->szTipText, INFOTIPSIZE);
381         if (ttnmdi.uFlags & TTF_DI_SETITEM) {
382             toolPtr->hinst = ttnmdi.hinst;
383             toolPtr->lpszText = (LPWSTR)ttnmdi.lpszText;
384         }
385     }
386     else if (ttnmdi.lpszText == 0) {
387         infoPtr->szTipText[0] = '\0';
388     }
389     else if (ttnmdi.lpszText != LPSTR_TEXTCALLBACKA) {
390         Str_GetPtrAtoW(ttnmdi.lpszText, infoPtr->szTipText, INFOTIPSIZE);
391         if (ttnmdi.uFlags & TTF_DI_SETITEM) {
392             toolPtr->hinst = 0;
393             toolPtr->lpszText = NULL;
394             Str_SetPtrW(&toolPtr->lpszText, infoPtr->szTipText);
395         }
396     }
397     else {
398         ERR("recursive text callback!\n");
399         infoPtr->szTipText[0] = '\0';
400     }
401
402     /* no text available - try calling parent instead as per native */
403     /* FIXME: Unsure if SETITEM should save the value or not        */
404     if (infoPtr->szTipText[0] == 0x00) {
405
406         SendMessageW(GetParent(toolPtr->hwnd), WM_NOTIFY, toolPtr->uId, (LPARAM)&ttnmdi);
407
408         if (IS_INTRESOURCE(ttnmdi.lpszText)) {
409             LoadStringW(ttnmdi.hinst, LOWORD(ttnmdi.lpszText),
410                    infoPtr->szTipText, INFOTIPSIZE);
411         } else if (ttnmdi.lpszText &&
412                    ttnmdi.lpszText != LPSTR_TEXTCALLBACKA) {
413             Str_GetPtrAtoW(ttnmdi.lpszText, infoPtr->szTipText, INFOTIPSIZE);
414         }
415     }
416 }
417
418 static void TOOLTIPS_GetDispInfoW(HWND hwnd, TOOLTIPS_INFO *infoPtr, TTTOOL_INFO *toolPtr)
419 {
420     NMTTDISPINFOW ttnmdi;
421
422     /* fill NMHDR struct */
423     ZeroMemory (&ttnmdi, sizeof(NMTTDISPINFOW));
424     ttnmdi.hdr.hwndFrom = hwnd;
425     ttnmdi.hdr.idFrom = toolPtr->uId;
426     ttnmdi.hdr.code = TTN_GETDISPINFOW; /* == TTN_NEEDTEXTW */
427     ttnmdi.lpszText = (LPWSTR)ttnmdi.szText;
428     ttnmdi.uFlags = toolPtr->uFlags;
429     ttnmdi.lParam = toolPtr->lParam;
430
431     TRACE("hdr.idFrom = %lx\n", ttnmdi.hdr.idFrom);
432     SendMessageW(toolPtr->hwnd, WM_NOTIFY, toolPtr->uId, (LPARAM)&ttnmdi);
433
434     if (IS_INTRESOURCE(ttnmdi.lpszText)) {
435         LoadStringW(ttnmdi.hinst, LOWORD(ttnmdi.lpszText),
436                infoPtr->szTipText, INFOTIPSIZE);
437         if (ttnmdi.uFlags & TTF_DI_SETITEM) {
438             toolPtr->hinst = ttnmdi.hinst;
439             toolPtr->lpszText = ttnmdi.lpszText;
440         }
441     }
442     else if (ttnmdi.lpszText == 0) {
443         infoPtr->szTipText[0] = '\0';
444     }
445     else if (ttnmdi.lpszText != LPSTR_TEXTCALLBACKW) {
446         Str_GetPtrW(ttnmdi.lpszText, infoPtr->szTipText, INFOTIPSIZE);
447         if (ttnmdi.uFlags & TTF_DI_SETITEM) {
448             toolPtr->hinst = 0;
449             toolPtr->lpszText = NULL;
450             Str_SetPtrW(&toolPtr->lpszText, infoPtr->szTipText);
451         }
452     }
453     else {
454         ERR("recursive text callback!\n");
455         infoPtr->szTipText[0] = '\0';
456     }
457
458     /* no text available - try calling parent instead as per native */
459     /* FIXME: Unsure if SETITEM should save the value or not        */
460     if (infoPtr->szTipText[0] == 0x00) {
461
462         SendMessageW(GetParent(toolPtr->hwnd), WM_NOTIFY, toolPtr->uId, (LPARAM)&ttnmdi);
463
464         if (IS_INTRESOURCE(ttnmdi.lpszText)) {
465             LoadStringW(ttnmdi.hinst, LOWORD(ttnmdi.lpszText),
466                    infoPtr->szTipText, INFOTIPSIZE);
467         } else if (ttnmdi.lpszText &&
468                    ttnmdi.lpszText != LPSTR_TEXTCALLBACKW) {
469             Str_GetPtrW(ttnmdi.lpszText, infoPtr->szTipText, INFOTIPSIZE);
470         }
471     }
472
473 }
474
475 static void
476 TOOLTIPS_GetTipText (HWND hwnd, TOOLTIPS_INFO *infoPtr, INT nTool)
477 {
478     TTTOOL_INFO *toolPtr = &infoPtr->tools[nTool];
479
480     if (IS_INTRESOURCE(toolPtr->lpszText) && toolPtr->hinst) {
481         /* load a resource */
482         TRACE("load res string %p %x\n",
483                toolPtr->hinst, LOWORD(toolPtr->lpszText));
484         LoadStringW (toolPtr->hinst, LOWORD(toolPtr->lpszText),
485                        infoPtr->szTipText, INFOTIPSIZE);
486     }
487     else if (toolPtr->lpszText) {
488         if (toolPtr->lpszText == LPSTR_TEXTCALLBACKW) {
489             if (toolPtr->bNotifyUnicode)
490                 TOOLTIPS_GetDispInfoW(hwnd, infoPtr, toolPtr);
491             else
492                 TOOLTIPS_GetDispInfoA(hwnd, infoPtr, toolPtr);
493         }
494         else {
495             /* the item is a usual (unicode) text */
496             lstrcpynW (infoPtr->szTipText, toolPtr->lpszText, INFOTIPSIZE);
497         }
498     }
499     else {
500         /* no text available */
501         infoPtr->szTipText[0] = '\0';
502     }
503
504     TRACE("%s\n", debugstr_w(infoPtr->szTipText));
505 }
506
507
508 static void
509 TOOLTIPS_CalcTipSize (HWND hwnd, const TOOLTIPS_INFO *infoPtr, LPSIZE lpSize)
510 {
511     HDC hdc;
512     HFONT hOldFont;
513     DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
514     UINT uFlags = DT_EXTERNALLEADING | DT_CALCRECT;
515     RECT rc = {0, 0, 0, 0};
516     SIZE title = {0, 0};
517
518     if (infoPtr->nMaxTipWidth > -1) {
519         rc.right = infoPtr->nMaxTipWidth;
520         uFlags |= DT_WORDBREAK;
521     }
522     if (style & TTS_NOPREFIX)
523         uFlags |= DT_NOPREFIX;
524     TRACE("%s\n", debugstr_w(infoPtr->szTipText));
525
526     hdc = GetDC (hwnd);
527     if (infoPtr->pszTitle)
528     {
529         RECT rcTitle = {0, 0, 0, 0};
530         TRACE("title %s\n", debugstr_w(infoPtr->pszTitle));
531         if (infoPtr->hTitleIcon)
532         {
533             title.cx = ICON_WIDTH;
534             title.cy = ICON_HEIGHT;
535         }
536         if (title.cx != 0) title.cx += BALLOON_ICON_TITLE_SPACING;
537         hOldFont = SelectObject (hdc, infoPtr->hTitleFont);
538         DrawTextW(hdc, infoPtr->pszTitle, -1, &rcTitle, DT_SINGLELINE | DT_NOPREFIX | DT_CALCRECT);
539         SelectObject (hdc, hOldFont);
540         title.cy = max(title.cy, rcTitle.bottom - rcTitle.top) + BALLOON_TITLE_TEXT_SPACING;
541         title.cx += (rcTitle.right - rcTitle.left);
542     }
543     hOldFont = SelectObject (hdc, infoPtr->hFont);
544     DrawTextW (hdc, infoPtr->szTipText, -1, &rc, uFlags);
545     SelectObject (hdc, hOldFont);
546     ReleaseDC (hwnd, hdc);
547
548     if ((style & TTS_BALLOON) || infoPtr->pszTitle)
549     {
550         lpSize->cx = max(rc.right - rc.left, title.cx) + 2*BALLOON_TEXT_MARGIN +
551                        infoPtr->rcMargin.left + infoPtr->rcMargin.right;
552         lpSize->cy = title.cy + rc.bottom - rc.top + 2*BALLOON_TEXT_MARGIN +
553                        infoPtr->rcMargin.bottom + infoPtr->rcMargin.top +
554                        BALLOON_STEMHEIGHT;
555     }
556     else
557     {
558         lpSize->cx = rc.right - rc.left + 2*NORMAL_TEXT_MARGIN +
559                        infoPtr->rcMargin.left + infoPtr->rcMargin.right;
560         lpSize->cy = rc.bottom - rc.top + 2*NORMAL_TEXT_MARGIN +
561                        infoPtr->rcMargin.bottom + infoPtr->rcMargin.top;
562     }
563 }
564
565
566 static void
567 TOOLTIPS_Show (HWND hwnd, TOOLTIPS_INFO *infoPtr, BOOL track_activate)
568 {
569     TTTOOL_INFO *toolPtr;
570     HMONITOR monitor;
571     MONITORINFO mon_info;
572     RECT rect;
573     SIZE size;
574     NMHDR  hdr;
575     int ptfx = 0;
576     DWORD style = GetWindowLongW(hwnd, GWL_STYLE);
577     INT nTool;
578
579     if (track_activate)
580     {
581         if (infoPtr->nTrackTool == -1)
582         {
583             TRACE("invalid tracking tool (-1)!\n");
584             return;
585         }
586         nTool = infoPtr->nTrackTool;
587     }
588     else
589     {
590         if (infoPtr->nTool == -1)
591         {
592             TRACE("invalid tool (-1)!\n");
593                 return;
594         }
595         nTool = infoPtr->nTool;
596     }
597
598     TRACE("Show tooltip pre %d! (%p)\n", nTool, hwnd);
599
600     TOOLTIPS_GetTipText (hwnd, infoPtr, nTool);
601
602     if (infoPtr->szTipText[0] == '\0')
603         return;
604
605     toolPtr = &infoPtr->tools[nTool];
606
607     if (!track_activate)
608         infoPtr->nCurrentTool = infoPtr->nTool;
609
610     TRACE("Show tooltip %d!\n", nTool);
611
612     hdr.hwndFrom = hwnd;
613     hdr.idFrom = toolPtr->uId;
614     hdr.code = TTN_SHOW;
615     SendMessageW (toolPtr->hwnd, WM_NOTIFY, toolPtr->uId, (LPARAM)&hdr);
616
617     TRACE("%s\n", debugstr_w(infoPtr->szTipText));
618
619     TOOLTIPS_CalcTipSize (hwnd, infoPtr, &size);
620     TRACE("size %d x %d\n", size.cx, size.cy);
621
622     if (track_activate)
623     {
624         rect.left = infoPtr->xTrackPos;
625         rect.top  = infoPtr->yTrackPos;
626         ptfx = rect.left;
627
628         if (toolPtr->uFlags & TTF_CENTERTIP)
629         {
630             rect.left -= (size.cx / 2);
631             if (!(style & TTS_BALLOON))
632                 rect.top  -= (size.cy / 2);
633         }
634         infoPtr->bToolBelow = TRUE;
635
636         if (!(toolPtr->uFlags & TTF_ABSOLUTE))
637         {
638             if (style & TTS_BALLOON)
639                 rect.left -= BALLOON_STEMINDENT;
640             else
641             {
642                 RECT rcTool;
643
644                 if (toolPtr->uFlags & TTF_IDISHWND)
645                     GetWindowRect ((HWND)toolPtr->uId, &rcTool);
646                 else
647                 {
648                     rcTool = toolPtr->rect;
649                     MapWindowPoints (toolPtr->hwnd, NULL, (LPPOINT)&rcTool, 2);
650                 }
651
652                 /* smart placement */
653                 if ((rect.left + size.cx > rcTool.left) && (rect.left < rcTool.right) &&
654                     (rect.top + size.cy > rcTool.top) && (rect.top < rcTool.bottom))
655                     rect.left = rcTool.right;
656             }
657         }
658     }
659     else
660     {
661         if (toolPtr->uFlags & TTF_CENTERTIP)
662         {
663                 RECT rc;
664
665             if (toolPtr->uFlags & TTF_IDISHWND)
666                 GetWindowRect ((HWND)toolPtr->uId, &rc);
667             else {
668                 rc = toolPtr->rect;
669                 MapWindowPoints (toolPtr->hwnd, NULL, (LPPOINT)&rc, 2);
670             }
671             rect.left = (rc.left + rc.right - size.cx) / 2;
672             if (style & TTS_BALLOON)
673             {
674                 ptfx = rc.left + ((rc.right - rc.left) / 2);
675
676                 /* CENTERTIP ballon tooltips default to below the field
677                  * if they fit on the screen */
678                 if (rc.bottom + size.cy > GetSystemMetrics(SM_CYSCREEN))
679                 {
680                     rect.top = rc.top - size.cy;
681                     infoPtr->bToolBelow = FALSE;
682                 }
683                 else
684                 {
685                     infoPtr->bToolBelow = TRUE;
686                     rect.top = rc.bottom;
687                 }
688                 rect.left = max(0, rect.left - BALLOON_STEMINDENT);
689             }
690             else
691             {
692                 rect.top  = rc.bottom + 2;
693                 infoPtr->bToolBelow = TRUE;
694             }
695         }
696         else
697         {
698             GetCursorPos ((LPPOINT)&rect);
699             if (style & TTS_BALLOON)
700             {
701                 ptfx = rect.left;
702                 if(rect.top - size.cy >= 0)
703                 {
704                     rect.top -= size.cy;
705                     infoPtr->bToolBelow = FALSE;
706                 }
707                 else
708                 {
709                     infoPtr->bToolBelow = TRUE;
710                     rect.top += 20;
711                 }
712                 rect.left = max(0, rect.left - BALLOON_STEMINDENT);
713             }
714             else
715             {
716                     rect.top += 20;
717                     infoPtr->bToolBelow = TRUE;
718             }
719         }
720     }
721
722     TRACE("pos %d - %d\n", rect.left, rect.top);
723
724     rect.right = rect.left + size.cx;
725     rect.bottom = rect.top + size.cy;
726
727     /* check position */
728
729     monitor = MonitorFromRect( &rect, MONITOR_DEFAULTTOPRIMARY );
730     mon_info.cbSize = sizeof(mon_info);
731     GetMonitorInfoW( monitor, &mon_info );
732
733     if( rect.right > mon_info.rcWork.right ) {
734         rect.left -= rect.right - mon_info.rcWork.right + 2;
735         rect.right = mon_info.rcWork.right - 2;
736     }
737     if (rect.left < mon_info.rcWork.left) rect.left = mon_info.rcWork.left;
738
739     if( rect.bottom > mon_info.rcWork.bottom ) {
740         RECT rc;
741
742         if (toolPtr->uFlags & TTF_IDISHWND)
743             GetWindowRect ((HWND)toolPtr->uId, &rc);
744         else {
745             rc = toolPtr->rect;
746             MapWindowPoints (toolPtr->hwnd, NULL, (LPPOINT)&rc, 2);
747         }
748         rect.bottom = rc.top - 2;
749         rect.top = rect.bottom - size.cy;
750     }
751
752     AdjustWindowRectEx (&rect, GetWindowLongW (hwnd, GWL_STYLE),
753                         FALSE, GetWindowLongW (hwnd, GWL_EXSTYLE));
754
755     if (style & TTS_BALLOON)
756     {
757         HRGN hRgn;
758         HRGN hrStem;
759         POINT pts[3];
760
761         ptfx -= rect.left;
762
763         if(infoPtr->bToolBelow)
764         {
765           pts[0].x = ptfx;
766           pts[0].y = 0;
767           pts[1].x = max(BALLOON_STEMINDENT, ptfx - (BALLOON_STEMWIDTH / 2));
768           pts[1].y = BALLOON_STEMHEIGHT;
769           pts[2].x = pts[1].x + BALLOON_STEMWIDTH;
770           pts[2].y = pts[1].y;
771           if(pts[2].x > (rect.right - rect.left) - BALLOON_STEMINDENT)
772           {
773             pts[2].x = (rect.right - rect.left) - BALLOON_STEMINDENT;
774             pts[1].x = pts[2].x - BALLOON_STEMWIDTH;
775           }
776         }
777         else
778         {
779           pts[0].x = max(BALLOON_STEMINDENT, ptfx - (BALLOON_STEMWIDTH / 2));
780           pts[0].y = (rect.bottom - rect.top) - BALLOON_STEMHEIGHT;
781           pts[1].x = pts[0].x + BALLOON_STEMWIDTH;
782           pts[1].y = pts[0].y;
783           pts[2].x = ptfx;
784           pts[2].y = (rect.bottom - rect.top);
785           if(pts[1].x > (rect.right - rect.left) - BALLOON_STEMINDENT)
786           {
787             pts[1].x = (rect.right - rect.left) - BALLOON_STEMINDENT;
788             pts[0].x = pts[1].x - BALLOON_STEMWIDTH;
789           }
790         }
791
792         hrStem = CreatePolygonRgn(pts, sizeof(pts) / sizeof(pts[0]), ALTERNATE);
793         
794         hRgn = CreateRoundRectRgn(0,
795                                   (infoPtr->bToolBelow ? BALLOON_STEMHEIGHT : 0),
796                                   rect.right - rect.left,
797                                   (infoPtr->bToolBelow ? rect.bottom - rect.top : rect.bottom - rect.top - BALLOON_STEMHEIGHT),
798                                   BALLOON_ROUNDEDNESS, BALLOON_ROUNDEDNESS);
799
800         CombineRgn(hRgn, hRgn, hrStem, RGN_OR);
801         DeleteObject(hrStem);
802
803         SetWindowRgn(hwnd, hRgn, FALSE);
804         /* we don't free the region handle as the system deletes it when 
805          * it is no longer needed */
806     }
807
808     SetWindowPos (hwnd, HWND_TOPMOST, rect.left, rect.top,
809                     rect.right - rect.left, rect.bottom - rect.top,
810                     SWP_SHOWWINDOW | SWP_NOACTIVATE);
811
812     /* repaint the tooltip */
813     InvalidateRect(hwnd, NULL, TRUE);
814     UpdateWindow(hwnd);
815
816     if (!track_activate)
817     {
818         SetTimer (hwnd, ID_TIMERPOP, infoPtr->nAutoPopTime, 0);
819         TRACE("timer 2 started!\n");
820         SetTimer (hwnd, ID_TIMERLEAVE, infoPtr->nReshowTime, 0);
821         TRACE("timer 3 started!\n");
822     }
823 }
824
825
826 static void
827 TOOLTIPS_Hide (HWND hwnd, TOOLTIPS_INFO *infoPtr)
828 {
829     TTTOOL_INFO *toolPtr;
830     NMHDR hdr;
831
832     TRACE("Hide tooltip %d! (%p)\n", infoPtr->nCurrentTool, hwnd);
833
834     if (infoPtr->nCurrentTool == -1)
835         return;
836
837     toolPtr = &infoPtr->tools[infoPtr->nCurrentTool];
838     KillTimer (hwnd, ID_TIMERPOP);
839
840     hdr.hwndFrom = hwnd;
841     hdr.idFrom = toolPtr->uId;
842     hdr.code = TTN_POP;
843     SendMessageW (toolPtr->hwnd, WM_NOTIFY, toolPtr->uId, (LPARAM)&hdr);
844
845     infoPtr->nCurrentTool = -1;
846
847     SetWindowPos (hwnd, HWND_TOP, 0, 0, 0, 0,
848                     SWP_NOZORDER | SWP_HIDEWINDOW | SWP_NOACTIVATE);
849 }
850
851
852 static void
853 TOOLTIPS_TrackShow (HWND hwnd, TOOLTIPS_INFO *infoPtr)
854 {
855     TOOLTIPS_Show(hwnd, infoPtr, TRUE);
856 }
857
858
859 static void
860 TOOLTIPS_TrackHide (HWND hwnd, const TOOLTIPS_INFO *infoPtr)
861 {
862     TTTOOL_INFO *toolPtr;
863     NMHDR hdr;
864
865     TRACE("hide tracking tooltip %d\n", infoPtr->nTrackTool);
866
867     if (infoPtr->nTrackTool == -1)
868         return;
869
870     toolPtr = &infoPtr->tools[infoPtr->nTrackTool];
871
872     hdr.hwndFrom = hwnd;
873     hdr.idFrom = toolPtr->uId;
874     hdr.code = TTN_POP;
875     SendMessageW (toolPtr->hwnd, WM_NOTIFY, toolPtr->uId, (LPARAM)&hdr);
876
877     SetWindowPos (hwnd, HWND_TOP, 0, 0, 0, 0,
878                     SWP_NOZORDER | SWP_HIDEWINDOW | SWP_NOACTIVATE);
879 }
880
881
882 static INT
883 TOOLTIPS_GetToolFromInfoA (const TOOLTIPS_INFO *infoPtr, const TTTOOLINFOA *lpToolInfo)
884 {
885     TTTOOL_INFO *toolPtr;
886     UINT nTool;
887
888     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
889         toolPtr = &infoPtr->tools[nTool];
890
891         if (!(toolPtr->uFlags & TTF_IDISHWND) &&
892             (lpToolInfo->hwnd == toolPtr->hwnd) &&
893             (lpToolInfo->uId == toolPtr->uId))
894             return nTool;
895     }
896
897     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
898         toolPtr = &infoPtr->tools[nTool];
899
900         if ((toolPtr->uFlags & TTF_IDISHWND) &&
901             (lpToolInfo->uId == toolPtr->uId))
902             return nTool;
903     }
904
905     return -1;
906 }
907
908
909 static INT
910 TOOLTIPS_GetToolFromInfoW (const TOOLTIPS_INFO *infoPtr, const TTTOOLINFOW *lpToolInfo)
911 {
912     TTTOOL_INFO *toolPtr;
913     UINT nTool;
914
915     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
916         toolPtr = &infoPtr->tools[nTool];
917
918         if (!(toolPtr->uFlags & TTF_IDISHWND) &&
919             (lpToolInfo->hwnd == toolPtr->hwnd) &&
920             (lpToolInfo->uId == toolPtr->uId))
921             return nTool;
922     }
923
924     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
925         toolPtr = &infoPtr->tools[nTool];
926
927         if ((toolPtr->uFlags & TTF_IDISHWND) &&
928             (lpToolInfo->uId == toolPtr->uId))
929             return nTool;
930     }
931
932     return -1;
933 }
934
935
936 static INT
937 TOOLTIPS_GetToolFromPoint (const TOOLTIPS_INFO *infoPtr, HWND hwnd, const POINT *lpPt)
938 {
939     TTTOOL_INFO *toolPtr;
940     UINT nTool;
941
942     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
943         toolPtr = &infoPtr->tools[nTool];
944
945         if (!(toolPtr->uFlags & TTF_IDISHWND)) {
946             if (hwnd != toolPtr->hwnd)
947                 continue;
948             if (!PtInRect (&toolPtr->rect, *lpPt))
949                 continue;
950             return nTool;
951         }
952     }
953
954     for (nTool = 0; nTool < infoPtr->uNumTools; nTool++) {
955         toolPtr = &infoPtr->tools[nTool];
956
957         if (toolPtr->uFlags & TTF_IDISHWND) {
958             if ((HWND)toolPtr->uId == hwnd)
959                 return nTool;
960         }
961     }
962
963     return -1;
964 }
965
966
967 static BOOL
968 TOOLTIPS_IsWindowActive (HWND hwnd)
969 {
970     HWND hwndActive = GetActiveWindow ();
971     if (!hwndActive)
972         return FALSE;
973     if (hwndActive == hwnd)
974         return TRUE;
975     return IsChild (hwndActive, hwnd);
976 }
977
978
979 static INT
980 TOOLTIPS_CheckTool (HWND hwnd, BOOL bShowTest)
981 {
982     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
983     POINT pt;
984     HWND hwndTool;
985     INT nTool;
986
987     GetCursorPos (&pt);
988     hwndTool = (HWND)SendMessageW (hwnd, TTM_WINDOWFROMPOINT, 0, (LPARAM)&pt);
989     if (hwndTool == 0)
990         return -1;
991
992     ScreenToClient (hwndTool, &pt);
993     nTool = TOOLTIPS_GetToolFromPoint (infoPtr, hwndTool, &pt);
994     if (nTool == -1)
995         return -1;
996
997     if (!(GetWindowLongW (hwnd, GWL_STYLE) & TTS_ALWAYSTIP) && bShowTest) {
998         if (!TOOLTIPS_IsWindowActive (GetWindow (hwnd, GW_OWNER)))
999             return -1;
1000     }
1001
1002     TRACE("tool %d\n", nTool);
1003
1004     return nTool;
1005 }
1006
1007
1008 static LRESULT
1009 TOOLTIPS_Activate (HWND hwnd, WPARAM wParam, LPARAM lParam)
1010 {
1011     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1012
1013     infoPtr->bActive = (BOOL)wParam;
1014
1015     if (infoPtr->bActive)
1016         TRACE("activate!\n");
1017
1018     if (!(infoPtr->bActive) && (infoPtr->nCurrentTool != -1))
1019         TOOLTIPS_Hide (hwnd, infoPtr);
1020
1021     return 0;
1022 }
1023
1024
1025 static LRESULT
1026 TOOLTIPS_AddToolA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1027 {
1028     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1029     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1030     TTTOOL_INFO *toolPtr;
1031     INT nResult;
1032
1033     if (lpToolInfo == NULL)
1034         return FALSE;
1035     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1036         return FALSE;
1037
1038     TRACE("add tool (%p) %p %ld%s!\n",
1039            hwnd, lpToolInfo->hwnd, lpToolInfo->uId,
1040            (lpToolInfo->uFlags & TTF_IDISHWND) ? " TTF_IDISHWND" : "");
1041
1042     if (infoPtr->uNumTools == 0) {
1043         infoPtr->tools = Alloc (sizeof(TTTOOL_INFO));
1044         toolPtr = infoPtr->tools;
1045     }
1046     else {
1047         TTTOOL_INFO *oldTools = infoPtr->tools;
1048         infoPtr->tools =
1049             Alloc (sizeof(TTTOOL_INFO) * (infoPtr->uNumTools + 1));
1050         memcpy (infoPtr->tools, oldTools,
1051                 infoPtr->uNumTools * sizeof(TTTOOL_INFO));
1052         Free (oldTools);
1053         toolPtr = &infoPtr->tools[infoPtr->uNumTools];
1054     }
1055
1056     infoPtr->uNumTools++;
1057
1058     /* copy tool data */
1059     toolPtr->uFlags = lpToolInfo->uFlags;
1060     toolPtr->hwnd   = lpToolInfo->hwnd;
1061     toolPtr->uId    = lpToolInfo->uId;
1062     toolPtr->rect   = lpToolInfo->rect;
1063     toolPtr->hinst  = lpToolInfo->hinst;
1064
1065     if (IS_INTRESOURCE(lpToolInfo->lpszText)) {
1066         TRACE("add string id %x!\n", LOWORD(lpToolInfo->lpszText));
1067         toolPtr->lpszText = (LPWSTR)lpToolInfo->lpszText;
1068     }
1069     else if (lpToolInfo->lpszText) {
1070         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKA) {
1071             TRACE("add CALLBACK!\n");
1072             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
1073         }
1074         else {
1075             INT len = MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText, -1,
1076                                           NULL, 0);
1077             TRACE("add text \"%s\"!\n", lpToolInfo->lpszText);
1078             toolPtr->lpszText = Alloc (len * sizeof(WCHAR));
1079             MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText, -1,
1080                                 toolPtr->lpszText, len);
1081         }
1082     }
1083
1084     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOA))
1085         toolPtr->lParam = lpToolInfo->lParam;
1086
1087     /* install subclassing hook */
1088     if (toolPtr->uFlags & TTF_SUBCLASS) {
1089         if (toolPtr->uFlags & TTF_IDISHWND) {
1090             SetWindowSubclass((HWND)toolPtr->uId, TOOLTIPS_SubclassProc, 1,
1091                                (DWORD_PTR)hwnd);
1092         }
1093         else {
1094             SetWindowSubclass(toolPtr->hwnd, TOOLTIPS_SubclassProc, 1,
1095                               (DWORD_PTR)hwnd);
1096         }
1097         TRACE("subclassing installed!\n");
1098     }
1099
1100     nResult = (INT) SendMessageW (toolPtr->hwnd, WM_NOTIFYFORMAT,
1101                                   (WPARAM)hwnd, (LPARAM)NF_QUERY);
1102     if (nResult == NFR_ANSI) {
1103         toolPtr->bNotifyUnicode = FALSE;
1104         TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1105     } else if (nResult == NFR_UNICODE) {
1106         toolPtr->bNotifyUnicode = TRUE;
1107         TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1108     } else {
1109         TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1110     }
1111
1112     return TRUE;
1113 }
1114
1115
1116 static LRESULT
1117 TOOLTIPS_AddToolW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1118 {
1119     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1120     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1121     TTTOOL_INFO *toolPtr;
1122     INT nResult;
1123
1124     if (lpToolInfo == NULL)
1125         return FALSE;
1126     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1127         return FALSE;
1128
1129     TRACE("add tool (%p) %p %ld%s!\n",
1130            hwnd, lpToolInfo->hwnd, lpToolInfo->uId,
1131            (lpToolInfo->uFlags & TTF_IDISHWND) ? " TTF_IDISHWND" : "");
1132
1133     if (infoPtr->uNumTools == 0) {
1134         infoPtr->tools = Alloc (sizeof(TTTOOL_INFO));
1135         toolPtr = infoPtr->tools;
1136     }
1137     else {
1138         TTTOOL_INFO *oldTools = infoPtr->tools;
1139         infoPtr->tools =
1140             Alloc (sizeof(TTTOOL_INFO) * (infoPtr->uNumTools + 1));
1141         memcpy (infoPtr->tools, oldTools,
1142                 infoPtr->uNumTools * sizeof(TTTOOL_INFO));
1143         Free (oldTools);
1144         toolPtr = &infoPtr->tools[infoPtr->uNumTools];
1145     }
1146
1147     infoPtr->uNumTools++;
1148
1149     /* copy tool data */
1150     toolPtr->uFlags = lpToolInfo->uFlags;
1151     toolPtr->hwnd   = lpToolInfo->hwnd;
1152     toolPtr->uId    = lpToolInfo->uId;
1153     toolPtr->rect   = lpToolInfo->rect;
1154     toolPtr->hinst  = lpToolInfo->hinst;
1155
1156     if (IS_INTRESOURCE(lpToolInfo->lpszText)) {
1157         TRACE("add string id %x\n", LOWORD(lpToolInfo->lpszText));
1158         toolPtr->lpszText = lpToolInfo->lpszText;
1159     }
1160     else if (lpToolInfo->lpszText) {
1161         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKW) {
1162             TRACE("add CALLBACK!\n");
1163             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
1164         }
1165         else {
1166             INT len = lstrlenW (lpToolInfo->lpszText);
1167             TRACE("add text %s!\n",
1168                    debugstr_w(lpToolInfo->lpszText));
1169             toolPtr->lpszText = Alloc ((len + 1)*sizeof(WCHAR));
1170             strcpyW (toolPtr->lpszText, lpToolInfo->lpszText);
1171         }
1172     }
1173
1174     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOW))
1175         toolPtr->lParam = lpToolInfo->lParam;
1176
1177     /* install subclassing hook */
1178     if (toolPtr->uFlags & TTF_SUBCLASS) {
1179         if (toolPtr->uFlags & TTF_IDISHWND) {
1180             SetWindowSubclass((HWND)toolPtr->uId, TOOLTIPS_SubclassProc, 1,
1181                               (DWORD_PTR)hwnd);
1182         }
1183         else {
1184             SetWindowSubclass(toolPtr->hwnd, TOOLTIPS_SubclassProc, 1,
1185                               (DWORD_PTR)hwnd);
1186         }
1187         TRACE("subclassing installed!\n");
1188     }
1189
1190     nResult = (INT) SendMessageW (toolPtr->hwnd, WM_NOTIFYFORMAT,
1191                                   (WPARAM)hwnd, (LPARAM)NF_QUERY);
1192     if (nResult == NFR_ANSI) {
1193         toolPtr->bNotifyUnicode = FALSE;
1194         TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1195     } else if (nResult == NFR_UNICODE) {
1196         toolPtr->bNotifyUnicode = TRUE;
1197         TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1198     } else {
1199         TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1200     }
1201
1202     return TRUE;
1203 }
1204
1205
1206 static void
1207 TOOLTIPS_DelToolCommon (HWND hwnd, TOOLTIPS_INFO *infoPtr, INT nTool)
1208 {
1209     TTTOOL_INFO *toolPtr;
1210
1211     TRACE("tool %d\n", nTool);
1212
1213     if (nTool == -1)
1214         return;
1215
1216     /* make sure the tooltip has disappeared before deleting it */
1217     TOOLTIPS_Hide(hwnd, infoPtr);
1218
1219     /* delete text string */
1220     toolPtr = &infoPtr->tools[nTool];
1221     if (toolPtr->lpszText) {
1222         if ( (toolPtr->lpszText != LPSTR_TEXTCALLBACKW) &&
1223              !IS_INTRESOURCE(toolPtr->lpszText) )
1224             Free (toolPtr->lpszText);
1225     }
1226
1227     /* remove subclassing */
1228     if (toolPtr->uFlags & TTF_SUBCLASS) {
1229         if (toolPtr->uFlags & TTF_IDISHWND) {
1230             RemoveWindowSubclass((HWND)toolPtr->uId, TOOLTIPS_SubclassProc, 1);
1231         }
1232         else {
1233             RemoveWindowSubclass(toolPtr->hwnd, TOOLTIPS_SubclassProc, 1);
1234         }
1235     }
1236
1237     /* delete tool from tool list */
1238     if (infoPtr->uNumTools == 1) {
1239         Free (infoPtr->tools);
1240         infoPtr->tools = NULL;
1241     }
1242     else {
1243         TTTOOL_INFO *oldTools = infoPtr->tools;
1244         infoPtr->tools =
1245             Alloc (sizeof(TTTOOL_INFO) * (infoPtr->uNumTools - 1));
1246
1247         if (nTool > 0)
1248             memcpy (&infoPtr->tools[0], &oldTools[0],
1249                     nTool * sizeof(TTTOOL_INFO));
1250
1251         if (nTool < infoPtr->uNumTools - 1)
1252             memcpy (&infoPtr->tools[nTool], &oldTools[nTool + 1],
1253                     (infoPtr->uNumTools - nTool - 1) * sizeof(TTTOOL_INFO));
1254
1255         Free (oldTools);
1256     }
1257
1258     /* update any indices affected by delete */
1259
1260     /* destroying tool that mouse was on on last relayed mouse move */
1261     if (infoPtr->nTool == nTool)
1262         /* -1 means no current tool (0 means first tool) */
1263         infoPtr->nTool = -1;
1264     else if (infoPtr->nTool > nTool)
1265         infoPtr->nTool--;
1266
1267     if (infoPtr->nTrackTool == nTool)
1268         /* -1 means no current tool (0 means first tool) */
1269         infoPtr->nTrackTool = -1;
1270     else if (infoPtr->nTrackTool > nTool)
1271         infoPtr->nTrackTool--;
1272
1273     if (infoPtr->nCurrentTool == nTool)
1274         /* -1 means no current tool (0 means first tool) */
1275         infoPtr->nCurrentTool = -1;
1276     else if (infoPtr->nCurrentTool > nTool)
1277         infoPtr->nCurrentTool--;
1278
1279     infoPtr->uNumTools--;
1280 }
1281
1282 static LRESULT
1283 TOOLTIPS_DelToolA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1284 {
1285     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1286     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1287     INT nTool;
1288
1289     if (lpToolInfo == NULL)
1290         return 0;
1291     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1292         return 0;
1293     if (infoPtr->uNumTools == 0)
1294         return 0;
1295
1296     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
1297
1298     TOOLTIPS_DelToolCommon (hwnd, infoPtr, nTool);
1299
1300     return 0;
1301 }
1302
1303
1304 static LRESULT
1305 TOOLTIPS_DelToolW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1306 {
1307     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1308     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1309     INT nTool;
1310
1311     if (lpToolInfo == NULL)
1312         return 0;
1313     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1314         return 0;
1315     if (infoPtr->uNumTools == 0)
1316         return 0;
1317
1318     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
1319
1320     TOOLTIPS_DelToolCommon (hwnd, infoPtr, nTool);
1321
1322     return 0;
1323 }
1324
1325
1326 static LRESULT
1327 TOOLTIPS_EnumToolsA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1328 {
1329     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1330     UINT uIndex = (UINT)wParam;
1331     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1332     TTTOOL_INFO *toolPtr;
1333
1334     if (lpToolInfo == NULL)
1335         return FALSE;
1336     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1337         return FALSE;
1338     if (uIndex >= infoPtr->uNumTools)
1339         return FALSE;
1340
1341     TRACE("index=%u\n", uIndex);
1342
1343     toolPtr = &infoPtr->tools[uIndex];
1344
1345     /* copy tool data */
1346     lpToolInfo->uFlags   = toolPtr->uFlags;
1347     lpToolInfo->hwnd     = toolPtr->hwnd;
1348     lpToolInfo->uId      = toolPtr->uId;
1349     lpToolInfo->rect     = toolPtr->rect;
1350     lpToolInfo->hinst    = toolPtr->hinst;
1351 /*    lpToolInfo->lpszText = toolPtr->lpszText; */
1352     lpToolInfo->lpszText = NULL;  /* FIXME */
1353
1354     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOA))
1355         lpToolInfo->lParam = toolPtr->lParam;
1356
1357     return TRUE;
1358 }
1359
1360
1361 static LRESULT
1362 TOOLTIPS_EnumToolsW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1363 {
1364     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1365     UINT uIndex = (UINT)wParam;
1366     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1367     TTTOOL_INFO *toolPtr;
1368
1369     if (lpToolInfo == NULL)
1370         return FALSE;
1371     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1372         return FALSE;
1373     if (uIndex >= infoPtr->uNumTools)
1374         return FALSE;
1375
1376     TRACE("index=%u\n", uIndex);
1377
1378     toolPtr = &infoPtr->tools[uIndex];
1379
1380     /* copy tool data */
1381     lpToolInfo->uFlags   = toolPtr->uFlags;
1382     lpToolInfo->hwnd     = toolPtr->hwnd;
1383     lpToolInfo->uId      = toolPtr->uId;
1384     lpToolInfo->rect     = toolPtr->rect;
1385     lpToolInfo->hinst    = toolPtr->hinst;
1386 /*    lpToolInfo->lpszText = toolPtr->lpszText; */
1387     lpToolInfo->lpszText = NULL;  /* FIXME */
1388
1389     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOW))
1390         lpToolInfo->lParam = toolPtr->lParam;
1391
1392     return TRUE;
1393 }
1394
1395 static LRESULT
1396 TOOLTIPS_GetBubbleSize (HWND hwnd, WPARAM wParam, LPARAM lParam)
1397 {
1398     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1399     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1400     INT nTool;
1401     SIZE size;
1402
1403     if (lpToolInfo == NULL)
1404         return FALSE;
1405     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1406         return FALSE;
1407
1408     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
1409     if (nTool == -1) return 0;
1410
1411     TRACE("tool %d\n", nTool);
1412
1413     TOOLTIPS_CalcTipSize (hwnd, infoPtr, &size);
1414     TRACE("size %d x %d\n", size.cx, size.cy);
1415
1416     return MAKELRESULT(size.cx, size.cy);
1417 }
1418
1419 static LRESULT
1420 TOOLTIPS_GetCurrentToolA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1421 {
1422     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1423     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1424     TTTOOL_INFO *toolPtr;
1425
1426     if (lpToolInfo) {
1427         if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1428             return FALSE;
1429
1430         if (infoPtr->nCurrentTool > -1) {
1431             toolPtr = &infoPtr->tools[infoPtr->nCurrentTool];
1432
1433             /* copy tool data */
1434             lpToolInfo->uFlags   = toolPtr->uFlags;
1435             lpToolInfo->rect     = toolPtr->rect;
1436             lpToolInfo->hinst    = toolPtr->hinst;
1437 /*          lpToolInfo->lpszText = toolPtr->lpszText; */
1438             lpToolInfo->lpszText = NULL;  /* FIXME */
1439
1440             if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOA))
1441                 lpToolInfo->lParam = toolPtr->lParam;
1442
1443             return TRUE;
1444         }
1445         else
1446             return FALSE;
1447     }
1448     else
1449         return (infoPtr->nCurrentTool != -1);
1450 }
1451
1452
1453 static LRESULT
1454 TOOLTIPS_GetCurrentToolW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1455 {
1456     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1457     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1458     TTTOOL_INFO *toolPtr;
1459
1460     if (lpToolInfo) {
1461         if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1462             return FALSE;
1463
1464         if (infoPtr->nCurrentTool > -1) {
1465             toolPtr = &infoPtr->tools[infoPtr->nCurrentTool];
1466
1467             /* copy tool data */
1468             lpToolInfo->uFlags   = toolPtr->uFlags;
1469             lpToolInfo->rect     = toolPtr->rect;
1470             lpToolInfo->hinst    = toolPtr->hinst;
1471 /*          lpToolInfo->lpszText = toolPtr->lpszText; */
1472             lpToolInfo->lpszText = NULL;  /* FIXME */
1473
1474             if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOW))
1475                 lpToolInfo->lParam = toolPtr->lParam;
1476
1477             return TRUE;
1478         }
1479         else
1480             return FALSE;
1481     }
1482     else
1483         return (infoPtr->nCurrentTool != -1);
1484 }
1485
1486
1487 static LRESULT
1488 TOOLTIPS_GetDelayTime (HWND hwnd, WPARAM wParam, LPARAM lParam)
1489 {
1490     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1491
1492     switch (wParam) {
1493     case TTDT_RESHOW:
1494         return infoPtr->nReshowTime;
1495
1496     case TTDT_AUTOPOP:
1497         return infoPtr->nAutoPopTime;
1498
1499     case TTDT_INITIAL:
1500     case TTDT_AUTOMATIC: /* Apparently TTDT_AUTOMATIC returns TTDT_INITIAL */
1501         return infoPtr->nInitialTime;
1502
1503     default:
1504         WARN("Invalid wParam %lx\n", wParam);
1505         break;
1506     }
1507
1508     return -1;
1509 }
1510
1511
1512 static LRESULT
1513 TOOLTIPS_GetMargin (HWND hwnd, WPARAM wParam, LPARAM lParam)
1514 {
1515     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1516     LPRECT lpRect = (LPRECT)lParam;
1517
1518     lpRect->left   = infoPtr->rcMargin.left;
1519     lpRect->right  = infoPtr->rcMargin.right;
1520     lpRect->bottom = infoPtr->rcMargin.bottom;
1521     lpRect->top    = infoPtr->rcMargin.top;
1522
1523     return 0;
1524 }
1525
1526
1527 static inline LRESULT
1528 TOOLTIPS_GetMaxTipWidth (HWND hwnd, WPARAM wParam, LPARAM lParam)
1529 {
1530     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1531
1532     return infoPtr->nMaxTipWidth;
1533 }
1534
1535
1536 static LRESULT
1537 TOOLTIPS_GetTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1538 {
1539     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1540     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1541     INT nTool;
1542
1543     if (lpToolInfo == NULL)
1544         return 0;
1545     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1546         return 0;
1547
1548     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
1549     if (nTool == -1) return 0;
1550
1551     /* NB this API is broken, there is no way for the app to determine
1552        what size buffer it requires nor a way to specify how long the
1553        one it supplies is.  We'll assume it's up to INFOTIPSIZE */
1554
1555     WideCharToMultiByte(CP_ACP, 0, infoPtr->tools[nTool].lpszText, -1,
1556                         lpToolInfo->lpszText, INFOTIPSIZE, NULL, NULL);
1557
1558     return 0;
1559 }
1560
1561
1562 static LRESULT
1563 TOOLTIPS_GetTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1564 {
1565     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1566     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1567     INT nTool;
1568
1569     if (lpToolInfo == NULL)
1570         return 0;
1571     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1572         return 0;
1573
1574     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
1575     if (nTool == -1) return 0;
1576
1577     strcpyW (lpToolInfo->lpszText, infoPtr->tools[nTool].lpszText);
1578
1579     return 0;
1580 }
1581
1582
1583 static inline LRESULT
1584 TOOLTIPS_GetTipBkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1585 {
1586     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1587     return infoPtr->clrBk;
1588 }
1589
1590
1591 static inline LRESULT
1592 TOOLTIPS_GetTipTextColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1593 {
1594     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1595     return infoPtr->clrText;
1596 }
1597
1598
1599 static inline LRESULT
1600 TOOLTIPS_GetToolCount (HWND hwnd, WPARAM wParam, LPARAM lParam)
1601 {
1602     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1603     return infoPtr->uNumTools;
1604 }
1605
1606
1607 static LRESULT
1608 TOOLTIPS_GetToolInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1609 {
1610     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1611     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
1612     TTTOOL_INFO *toolPtr;
1613     INT nTool;
1614
1615     if (lpToolInfo == NULL)
1616         return FALSE;
1617     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
1618         return FALSE;
1619     if (infoPtr->uNumTools == 0)
1620         return FALSE;
1621
1622     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
1623     if (nTool == -1)
1624         return FALSE;
1625
1626     TRACE("tool %d\n", nTool);
1627
1628     toolPtr = &infoPtr->tools[nTool];
1629
1630     /* copy tool data */
1631     lpToolInfo->uFlags   = toolPtr->uFlags;
1632     lpToolInfo->rect     = toolPtr->rect;
1633     lpToolInfo->hinst    = toolPtr->hinst;
1634 /*    lpToolInfo->lpszText = toolPtr->lpszText; */
1635     lpToolInfo->lpszText = NULL;  /* FIXME */
1636
1637     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOA))
1638         lpToolInfo->lParam = toolPtr->lParam;
1639
1640     return TRUE;
1641 }
1642
1643
1644 static LRESULT
1645 TOOLTIPS_GetToolInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1646 {
1647     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1648     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
1649     TTTOOL_INFO *toolPtr;
1650     INT nTool;
1651
1652     if (lpToolInfo == NULL)
1653         return FALSE;
1654     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
1655         return FALSE;
1656     if (infoPtr->uNumTools == 0)
1657         return FALSE;
1658
1659     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
1660     if (nTool == -1)
1661         return FALSE;
1662
1663     TRACE("tool %d\n", nTool);
1664
1665     toolPtr = &infoPtr->tools[nTool];
1666
1667     /* copy tool data */
1668     lpToolInfo->uFlags   = toolPtr->uFlags;
1669     lpToolInfo->rect     = toolPtr->rect;
1670     lpToolInfo->hinst    = toolPtr->hinst;
1671 /*    lpToolInfo->lpszText = toolPtr->lpszText; */
1672     lpToolInfo->lpszText = NULL;  /* FIXME */
1673
1674     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOW))
1675         lpToolInfo->lParam = toolPtr->lParam;
1676
1677     return TRUE;
1678 }
1679
1680
1681 static LRESULT
1682 TOOLTIPS_HitTestA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1683 {
1684     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1685     LPTTHITTESTINFOA lptthit = (LPTTHITTESTINFOA)lParam;
1686     TTTOOL_INFO *toolPtr;
1687     INT nTool;
1688
1689     if (lptthit == 0)
1690         return FALSE;
1691
1692     nTool = TOOLTIPS_GetToolFromPoint (infoPtr, lptthit->hwnd, &lptthit->pt);
1693     if (nTool == -1)
1694         return FALSE;
1695
1696     TRACE("tool %d!\n", nTool);
1697
1698     /* copy tool data */
1699     if (lptthit->ti.cbSize >= sizeof(TTTOOLINFOA)) {
1700         toolPtr = &infoPtr->tools[nTool];
1701
1702         lptthit->ti.uFlags   = toolPtr->uFlags;
1703         lptthit->ti.hwnd     = toolPtr->hwnd;
1704         lptthit->ti.uId      = toolPtr->uId;
1705         lptthit->ti.rect     = toolPtr->rect;
1706         lptthit->ti.hinst    = toolPtr->hinst;
1707 /*      lptthit->ti.lpszText = toolPtr->lpszText; */
1708         lptthit->ti.lpszText = NULL;  /* FIXME */
1709         lptthit->ti.lParam   = toolPtr->lParam;
1710     }
1711
1712     return TRUE;
1713 }
1714
1715
1716 static LRESULT
1717 TOOLTIPS_HitTestW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1718 {
1719     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1720     LPTTHITTESTINFOW lptthit = (LPTTHITTESTINFOW)lParam;
1721     TTTOOL_INFO *toolPtr;
1722     INT nTool;
1723
1724     if (lptthit == 0)
1725         return FALSE;
1726
1727     nTool = TOOLTIPS_GetToolFromPoint (infoPtr, lptthit->hwnd, &lptthit->pt);
1728     if (nTool == -1)
1729         return FALSE;
1730
1731     TRACE("tool %d!\n", nTool);
1732
1733     /* copy tool data */
1734     if (lptthit->ti.cbSize >= sizeof(TTTOOLINFOW)) {
1735         toolPtr = &infoPtr->tools[nTool];
1736
1737         lptthit->ti.uFlags   = toolPtr->uFlags;
1738         lptthit->ti.hwnd     = toolPtr->hwnd;
1739         lptthit->ti.uId      = toolPtr->uId;
1740         lptthit->ti.rect     = toolPtr->rect;
1741         lptthit->ti.hinst    = toolPtr->hinst;
1742 /*      lptthit->ti.lpszText = toolPtr->lpszText; */
1743         lptthit->ti.lpszText = NULL;  /* FIXME */
1744         lptthit->ti.lParam   = toolPtr->lParam;
1745     }
1746
1747     return TRUE;
1748 }
1749
1750
1751 static LRESULT
1752 TOOLTIPS_NewToolRectA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1753 {
1754     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1755     LPTTTOOLINFOA lpti = (LPTTTOOLINFOA)lParam;
1756     INT nTool;
1757
1758     if (lpti == NULL)
1759         return 0;
1760     if (lpti->cbSize < TTTOOLINFOA_V1_SIZE)
1761         return FALSE;
1762
1763     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpti);
1764
1765     TRACE("nTool = %d, rect = %s\n", nTool, wine_dbgstr_rect(&lpti->rect));
1766
1767     if (nTool == -1) return 0;
1768
1769     infoPtr->tools[nTool].rect = lpti->rect;
1770
1771     return 0;
1772 }
1773
1774
1775 static LRESULT
1776 TOOLTIPS_NewToolRectW (HWND hwnd, WPARAM wParam, LPARAM lParam)
1777 {
1778     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1779     LPTTTOOLINFOW lpti = (LPTTTOOLINFOW)lParam;
1780     INT nTool;
1781
1782     if (lpti == NULL)
1783         return 0;
1784     if (lpti->cbSize < TTTOOLINFOW_V1_SIZE)
1785         return FALSE;
1786
1787     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpti);
1788
1789     TRACE("nTool = %d, rect = %s\n", nTool, wine_dbgstr_rect(&lpti->rect));
1790
1791     if (nTool == -1) return 0;
1792
1793     infoPtr->tools[nTool].rect = lpti->rect;
1794
1795     return 0;
1796 }
1797
1798
1799 static inline LRESULT
1800 TOOLTIPS_Pop (HWND hwnd, WPARAM wParam, LPARAM lParam)
1801 {
1802     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1803     TOOLTIPS_Hide (hwnd, infoPtr);
1804
1805     return 0;
1806 }
1807
1808
1809 static LRESULT
1810 TOOLTIPS_RelayEvent (HWND hwnd, WPARAM wParam, LPARAM lParam)
1811 {
1812     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1813     LPMSG lpMsg = (LPMSG)lParam;
1814     POINT pt;
1815     INT nOldTool;
1816
1817     if (lParam == 0) {
1818         ERR("lpMsg == NULL!\n");
1819         return 0;
1820     }
1821
1822     switch (lpMsg->message) {
1823         case WM_LBUTTONDOWN:
1824         case WM_LBUTTONUP:
1825         case WM_MBUTTONDOWN:
1826         case WM_MBUTTONUP:
1827         case WM_RBUTTONDOWN:
1828         case WM_RBUTTONUP:
1829             TOOLTIPS_Hide (hwnd, infoPtr);
1830             break;
1831
1832         case WM_MOUSEMOVE:
1833             pt.x = (short)LOWORD(lpMsg->lParam);
1834             pt.y = (short)HIWORD(lpMsg->lParam);
1835             nOldTool = infoPtr->nTool;
1836             infoPtr->nTool = TOOLTIPS_GetToolFromPoint(infoPtr, lpMsg->hwnd,
1837                                                        &pt);
1838             TRACE("tool (%p) %d %d %d\n", hwnd, nOldTool,
1839                   infoPtr->nTool, infoPtr->nCurrentTool);
1840             TRACE("WM_MOUSEMOVE (%p %d %d)\n", hwnd, pt.x, pt.y);
1841
1842             if (infoPtr->nTool != nOldTool) {
1843                 if(infoPtr->nTool == -1) { /* Moved out of all tools */
1844                     TOOLTIPS_Hide(hwnd, infoPtr);
1845                     KillTimer(hwnd, ID_TIMERLEAVE);
1846                 } else if (nOldTool == -1) { /* Moved from outside */
1847                     if(infoPtr->bActive) {
1848                         SetTimer(hwnd, ID_TIMERSHOW, infoPtr->nInitialTime, 0);
1849                         TRACE("timer 1 started!\n");
1850                     }
1851                 } else { /* Moved from one to another */
1852                     TOOLTIPS_Hide (hwnd, infoPtr);
1853                     KillTimer(hwnd, ID_TIMERLEAVE);
1854                     if(infoPtr->bActive) {
1855                         SetTimer (hwnd, ID_TIMERSHOW, infoPtr->nReshowTime, 0);
1856                         TRACE("timer 1 started!\n");
1857                     }
1858                 }
1859             } else if(infoPtr->nCurrentTool != -1) { /* restart autopop */
1860                 KillTimer(hwnd, ID_TIMERPOP);
1861                 SetTimer(hwnd, ID_TIMERPOP, infoPtr->nAutoPopTime, 0);
1862                 TRACE("timer 2 restarted\n");
1863             } else if(infoPtr->nTool != -1 && infoPtr->bActive) {
1864                 /* previous show attempt didn't result in tooltip so try again */
1865                 SetTimer(hwnd, ID_TIMERSHOW, infoPtr->nInitialTime, 0);
1866                 TRACE("timer 1 started!\n");
1867             }
1868             break;
1869     }
1870
1871     return 0;
1872 }
1873
1874
1875 static LRESULT
1876 TOOLTIPS_SetDelayTime (HWND hwnd, WPARAM wParam, LPARAM lParam)
1877 {
1878     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1879     INT nTime = (INT)LOWORD(lParam);
1880
1881     switch (wParam) {
1882     case TTDT_AUTOMATIC:
1883         if (nTime <= 0)
1884             nTime = GetDoubleClickTime();
1885         infoPtr->nReshowTime    = nTime / 5;
1886         infoPtr->nAutoPopTime   = nTime * 10;
1887         infoPtr->nInitialTime   = nTime;
1888         break;
1889
1890     case TTDT_RESHOW:
1891         if(nTime < 0)
1892             nTime = GetDoubleClickTime() / 5;
1893         infoPtr->nReshowTime = nTime;
1894         break;
1895
1896     case TTDT_AUTOPOP:
1897         if(nTime < 0)
1898             nTime = GetDoubleClickTime() * 10;
1899         infoPtr->nAutoPopTime = nTime;
1900         break;
1901
1902     case TTDT_INITIAL:
1903         if(nTime < 0)
1904             nTime = GetDoubleClickTime();
1905         infoPtr->nInitialTime = nTime;
1906             break;
1907
1908     default:
1909         WARN("Invalid wParam %lx\n", wParam);
1910         break;
1911     }
1912
1913     return 0;
1914 }
1915
1916
1917 static LRESULT
1918 TOOLTIPS_SetMargin (HWND hwnd, WPARAM wParam, LPARAM lParam)
1919 {
1920     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1921     LPRECT lpRect = (LPRECT)lParam;
1922
1923     infoPtr->rcMargin.left   = lpRect->left;
1924     infoPtr->rcMargin.right  = lpRect->right;
1925     infoPtr->rcMargin.bottom = lpRect->bottom;
1926     infoPtr->rcMargin.top    = lpRect->top;
1927
1928     return 0;
1929 }
1930
1931
1932 static inline LRESULT
1933 TOOLTIPS_SetMaxTipWidth (HWND hwnd, WPARAM wParam, LPARAM lParam)
1934 {
1935     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1936     INT nTemp = infoPtr->nMaxTipWidth;
1937
1938     infoPtr->nMaxTipWidth = (INT)lParam;
1939
1940     return nTemp;
1941 }
1942
1943
1944 static inline LRESULT
1945 TOOLTIPS_SetTipBkColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1946 {
1947     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1948
1949     infoPtr->clrBk = (COLORREF)wParam;
1950
1951     return 0;
1952 }
1953
1954
1955 static inline LRESULT
1956 TOOLTIPS_SetTipTextColor (HWND hwnd, WPARAM wParam, LPARAM lParam)
1957 {
1958     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1959
1960     infoPtr->clrText = (COLORREF)wParam;
1961
1962     return 0;
1963 }
1964
1965
1966 static LRESULT
1967 TOOLTIPS_SetTitleA (HWND hwnd, WPARAM wParam, LPARAM lParam)
1968 {
1969     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
1970     LPCSTR pszTitle = (LPCSTR)lParam;
1971     UINT_PTR uTitleIcon = wParam;
1972     UINT size;
1973
1974     TRACE("hwnd = %p, title = %s, icon = %p\n", hwnd, debugstr_a(pszTitle),
1975         (void*)uTitleIcon);
1976
1977     Free(infoPtr->pszTitle);
1978
1979     if (pszTitle)
1980     {
1981         size = sizeof(WCHAR)*MultiByteToWideChar(CP_ACP, 0, pszTitle, -1, NULL, 0);
1982         infoPtr->pszTitle = Alloc(size);
1983         if (!infoPtr->pszTitle)
1984             return FALSE;
1985         MultiByteToWideChar(CP_ACP, 0, pszTitle, -1, infoPtr->pszTitle, size/sizeof(WCHAR));
1986     }
1987     else
1988         infoPtr->pszTitle = NULL;
1989
1990     if (uTitleIcon <= TTI_ERROR)
1991         infoPtr->hTitleIcon = hTooltipIcons[uTitleIcon];
1992     else
1993         infoPtr->hTitleIcon = CopyIcon((HICON)wParam);
1994
1995     return TRUE;
1996 }
1997
1998
1999 static LRESULT
2000 TOOLTIPS_SetTitleW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2001 {
2002     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2003     LPCWSTR pszTitle = (LPCWSTR)lParam;
2004     UINT_PTR uTitleIcon = wParam;
2005     UINT size;
2006
2007     TRACE("hwnd = %p, title = %s, icon = %p\n", hwnd, debugstr_w(pszTitle),
2008         (void*)uTitleIcon);
2009
2010     Free(infoPtr->pszTitle);
2011
2012     if (pszTitle)
2013     {
2014         size = (strlenW(pszTitle)+1)*sizeof(WCHAR);
2015         infoPtr->pszTitle = Alloc(size);
2016         if (!infoPtr->pszTitle)
2017             return FALSE;
2018         memcpy(infoPtr->pszTitle, pszTitle, size);
2019     }
2020     else
2021         infoPtr->pszTitle = NULL;
2022
2023     if (uTitleIcon <= TTI_ERROR)
2024         infoPtr->hTitleIcon = hTooltipIcons[uTitleIcon];
2025     else
2026         infoPtr->hTitleIcon = CopyIcon((HICON)wParam);
2027
2028     TRACE("icon = %p\n", infoPtr->hTitleIcon);
2029
2030     return TRUE;
2031 }
2032
2033
2034 static LRESULT
2035 TOOLTIPS_SetToolInfoA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2036 {
2037     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2038     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
2039     TTTOOL_INFO *toolPtr;
2040     INT nTool;
2041
2042     if (lpToolInfo == NULL)
2043         return 0;
2044     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
2045         return 0;
2046
2047     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
2048     if (nTool == -1) return 0;
2049
2050     TRACE("tool %d\n", nTool);
2051
2052     toolPtr = &infoPtr->tools[nTool];
2053
2054     /* copy tool data */
2055     toolPtr->uFlags = lpToolInfo->uFlags;
2056     toolPtr->hwnd   = lpToolInfo->hwnd;
2057     toolPtr->uId    = lpToolInfo->uId;
2058     toolPtr->rect   = lpToolInfo->rect;
2059     toolPtr->hinst  = lpToolInfo->hinst;
2060
2061     if (IS_INTRESOURCE(lpToolInfo->lpszText)) {
2062         TRACE("set string id %x\n", LOWORD(lpToolInfo->lpszText));
2063         toolPtr->lpszText = (LPWSTR)lpToolInfo->lpszText;
2064     }
2065     else if (lpToolInfo->lpszText) {
2066         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKA)
2067             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
2068         else {
2069             if ( (toolPtr->lpszText) &&
2070                  !IS_INTRESOURCE(toolPtr->lpszText) ) {
2071                 if( toolPtr->lpszText != LPSTR_TEXTCALLBACKW)
2072                     Free (toolPtr->lpszText);
2073                 toolPtr->lpszText = NULL;
2074             }
2075             if (lpToolInfo->lpszText) {
2076                 INT len = MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText,
2077                                               -1, NULL, 0);
2078                 toolPtr->lpszText = Alloc (len * sizeof(WCHAR));
2079                 MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText, -1,
2080                                     toolPtr->lpszText, len);
2081             }
2082         }
2083     }
2084
2085     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOA))
2086         toolPtr->lParam = lpToolInfo->lParam;
2087
2088     return 0;
2089 }
2090
2091
2092 static LRESULT
2093 TOOLTIPS_SetToolInfoW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2094 {
2095     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2096     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
2097     TTTOOL_INFO *toolPtr;
2098     INT nTool;
2099
2100     if (lpToolInfo == NULL)
2101         return 0;
2102     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
2103         return 0;
2104
2105     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
2106     if (nTool == -1) return 0;
2107
2108     TRACE("tool %d\n", nTool);
2109
2110     toolPtr = &infoPtr->tools[nTool];
2111
2112     /* copy tool data */
2113     toolPtr->uFlags = lpToolInfo->uFlags;
2114     toolPtr->hwnd   = lpToolInfo->hwnd;
2115     toolPtr->uId    = lpToolInfo->uId;
2116     toolPtr->rect   = lpToolInfo->rect;
2117     toolPtr->hinst  = lpToolInfo->hinst;
2118
2119     if (IS_INTRESOURCE(lpToolInfo->lpszText)) {
2120         TRACE("set string id %x!\n", LOWORD(lpToolInfo->lpszText));
2121         toolPtr->lpszText = lpToolInfo->lpszText;
2122     }
2123     else {
2124         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKW)
2125             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
2126         else {
2127             if ( (toolPtr->lpszText) &&
2128                  !IS_INTRESOURCE(toolPtr->lpszText) ) {
2129                 if( toolPtr->lpszText != LPSTR_TEXTCALLBACKW)
2130                     Free (toolPtr->lpszText);
2131                 toolPtr->lpszText = NULL;
2132             }
2133             if (lpToolInfo->lpszText) {
2134                 INT len = lstrlenW (lpToolInfo->lpszText);
2135                 toolPtr->lpszText = Alloc ((len+1)*sizeof(WCHAR));
2136                 strcpyW (toolPtr->lpszText, lpToolInfo->lpszText);
2137             }
2138         }
2139     }
2140
2141     if (lpToolInfo->cbSize >= sizeof(TTTOOLINFOW))
2142         toolPtr->lParam = lpToolInfo->lParam;
2143
2144     if (infoPtr->nCurrentTool == nTool)
2145     {
2146         TOOLTIPS_GetTipText (hwnd, infoPtr, infoPtr->nCurrentTool);
2147
2148         if (infoPtr->szTipText[0] == 0)
2149             TOOLTIPS_Hide(hwnd, infoPtr);
2150         else
2151             TOOLTIPS_Show (hwnd, infoPtr, FALSE);
2152     }
2153
2154     return 0;
2155 }
2156
2157
2158 static LRESULT
2159 TOOLTIPS_TrackActivate (HWND hwnd, WPARAM wParam, LPARAM lParam)
2160 {
2161     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2162
2163     if ((BOOL)wParam) {
2164         LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
2165
2166         if (lpToolInfo == NULL)
2167             return 0;
2168         if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
2169             return FALSE;
2170
2171         /* activate */
2172         infoPtr->nTrackTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
2173         if (infoPtr->nTrackTool != -1) {
2174             TRACE("activated!\n");
2175             infoPtr->bTrackActive = TRUE;
2176             TOOLTIPS_TrackShow (hwnd, infoPtr);
2177         }
2178     }
2179     else {
2180         /* deactivate */
2181         TOOLTIPS_TrackHide (hwnd, infoPtr);
2182
2183         infoPtr->bTrackActive = FALSE;
2184         infoPtr->nTrackTool = -1;
2185
2186         TRACE("deactivated!\n");
2187     }
2188
2189     return 0;
2190 }
2191
2192
2193 static LRESULT
2194 TOOLTIPS_TrackPosition (HWND hwnd, WPARAM wParam, LPARAM lParam)
2195 {
2196     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2197
2198     infoPtr->xTrackPos = (INT)LOWORD(lParam);
2199     infoPtr->yTrackPos = (INT)HIWORD(lParam);
2200
2201     if (infoPtr->bTrackActive) {
2202         TRACE("[%d %d]\n",
2203                infoPtr->xTrackPos, infoPtr->yTrackPos);
2204
2205         TOOLTIPS_TrackShow (hwnd, infoPtr);
2206     }
2207
2208     return 0;
2209 }
2210
2211
2212 static LRESULT
2213 TOOLTIPS_Update (HWND hwnd, WPARAM wParam, LPARAM lParam)
2214 {
2215     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2216
2217     if (infoPtr->nCurrentTool != -1)
2218         UpdateWindow (hwnd);
2219
2220     return 0;
2221 }
2222
2223
2224 static LRESULT
2225 TOOLTIPS_UpdateTipTextA (HWND hwnd, WPARAM wParam, LPARAM lParam)
2226 {
2227     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2228     LPTTTOOLINFOA lpToolInfo = (LPTTTOOLINFOA)lParam;
2229     TTTOOL_INFO *toolPtr;
2230     INT nTool;
2231
2232     if (lpToolInfo == NULL)
2233         return 0;
2234     if (lpToolInfo->cbSize < TTTOOLINFOA_V1_SIZE)
2235         return FALSE;
2236
2237     nTool = TOOLTIPS_GetToolFromInfoA (infoPtr, lpToolInfo);
2238     if (nTool == -1) return 0;
2239
2240     TRACE("tool %d\n", nTool);
2241
2242     toolPtr = &infoPtr->tools[nTool];
2243
2244     /* copy tool text */
2245     toolPtr->hinst  = lpToolInfo->hinst;
2246
2247     if (IS_INTRESOURCE(lpToolInfo->lpszText)){
2248         toolPtr->lpszText = (LPWSTR)lpToolInfo->lpszText;
2249     }
2250     else if (lpToolInfo->lpszText) {
2251         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKA)
2252             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
2253         else {
2254             if ( (toolPtr->lpszText) &&
2255                  !IS_INTRESOURCE(toolPtr->lpszText) ) {
2256                 if( toolPtr->lpszText != LPSTR_TEXTCALLBACKW)
2257                     Free (toolPtr->lpszText);
2258                 toolPtr->lpszText = NULL;
2259             }
2260             if (lpToolInfo->lpszText) {
2261                 INT len = MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText,
2262                                               -1, NULL, 0);
2263                 toolPtr->lpszText = Alloc (len * sizeof(WCHAR));
2264                 MultiByteToWideChar(CP_ACP, 0, lpToolInfo->lpszText, -1,
2265                                     toolPtr->lpszText, len);
2266             }
2267         }
2268     }
2269
2270     if(infoPtr->nCurrentTool == -1) return 0;
2271     /* force repaint */
2272     if (infoPtr->bActive)
2273         TOOLTIPS_Show (hwnd, infoPtr, FALSE);
2274     else if (infoPtr->bTrackActive)
2275         TOOLTIPS_TrackShow (hwnd, infoPtr);
2276
2277     return 0;
2278 }
2279
2280
2281 static LRESULT
2282 TOOLTIPS_UpdateTipTextW (HWND hwnd, WPARAM wParam, LPARAM lParam)
2283 {
2284     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2285     LPTTTOOLINFOW lpToolInfo = (LPTTTOOLINFOW)lParam;
2286     TTTOOL_INFO *toolPtr;
2287     INT nTool;
2288
2289     if (lpToolInfo == NULL)
2290         return 0;
2291     if (lpToolInfo->cbSize < TTTOOLINFOW_V1_SIZE)
2292         return FALSE;
2293
2294     nTool = TOOLTIPS_GetToolFromInfoW (infoPtr, lpToolInfo);
2295     if (nTool == -1)
2296         return 0;
2297
2298     TRACE("tool %d\n", nTool);
2299
2300     toolPtr = &infoPtr->tools[nTool];
2301
2302     /* copy tool text */
2303     toolPtr->hinst  = lpToolInfo->hinst;
2304
2305     if (IS_INTRESOURCE(lpToolInfo->lpszText)){
2306         toolPtr->lpszText = lpToolInfo->lpszText;
2307     }
2308     else if (lpToolInfo->lpszText) {
2309         if (lpToolInfo->lpszText == LPSTR_TEXTCALLBACKW)
2310             toolPtr->lpszText = LPSTR_TEXTCALLBACKW;
2311         else {
2312             if ( (toolPtr->lpszText)  &&
2313                  !IS_INTRESOURCE(toolPtr->lpszText) ) {
2314                 if( toolPtr->lpszText != LPSTR_TEXTCALLBACKW)
2315                     Free (toolPtr->lpszText);
2316                 toolPtr->lpszText = NULL;
2317             }
2318             if (lpToolInfo->lpszText) {
2319                 INT len = lstrlenW (lpToolInfo->lpszText);
2320                 toolPtr->lpszText = Alloc ((len+1)*sizeof(WCHAR));
2321                 strcpyW (toolPtr->lpszText, lpToolInfo->lpszText);
2322             }
2323         }
2324     }
2325
2326     if(infoPtr->nCurrentTool == -1) return 0;
2327     /* force repaint */
2328     if (infoPtr->bActive)
2329         TOOLTIPS_Show (hwnd, infoPtr, FALSE);
2330     else if (infoPtr->bTrackActive)
2331         TOOLTIPS_Show (hwnd, infoPtr, TRUE);
2332
2333     return 0;
2334 }
2335
2336
2337 static LRESULT
2338 TOOLTIPS_WindowFromPoint (HWND hwnd, WPARAM wParam, LPARAM lParam)
2339 {
2340     return (LRESULT)WindowFromPoint (*((LPPOINT)lParam));
2341 }
2342
2343
2344
2345 static LRESULT
2346 TOOLTIPS_Create (HWND hwnd, const CREATESTRUCTW *lpcs)
2347 {
2348     TOOLTIPS_INFO *infoPtr;
2349
2350     /* allocate memory for info structure */
2351     infoPtr = (TOOLTIPS_INFO *)Alloc (sizeof(TOOLTIPS_INFO));
2352     SetWindowLongPtrW (hwnd, 0, (DWORD_PTR)infoPtr);
2353
2354     /* initialize info structure */
2355     infoPtr->bActive = TRUE;
2356     infoPtr->bTrackActive = FALSE;
2357
2358     infoPtr->nMaxTipWidth = -1;
2359     infoPtr->nTool = -1;
2360     infoPtr->nCurrentTool = -1;
2361     infoPtr->nTrackTool = -1;
2362
2363     /* initialize colours and fonts */
2364     TOOLTIPS_InitSystemSettings(infoPtr);
2365
2366     TOOLTIPS_SetDelayTime(hwnd, TTDT_AUTOMATIC, 0L);
2367
2368     SetWindowPos (hwnd, HWND_TOP, 0, 0, 0, 0, SWP_NOZORDER | SWP_HIDEWINDOW | SWP_NOACTIVATE);
2369
2370     return 0;
2371 }
2372
2373
2374 static LRESULT
2375 TOOLTIPS_Destroy (HWND hwnd, WPARAM wParam, LPARAM lParam)
2376 {
2377     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2378     TTTOOL_INFO *toolPtr;
2379     UINT i;
2380
2381     /* free tools */
2382     if (infoPtr->tools) {
2383         for (i = 0; i < infoPtr->uNumTools; i++) {
2384             toolPtr = &infoPtr->tools[i];
2385             if (toolPtr->lpszText) {
2386                 if ( (toolPtr->lpszText != LPSTR_TEXTCALLBACKW) &&
2387                      !IS_INTRESOURCE(toolPtr->lpszText) )
2388                 {
2389                     Free (toolPtr->lpszText);
2390                     toolPtr->lpszText = NULL;
2391                 }
2392             }
2393
2394             /* remove subclassing */
2395         if (toolPtr->uFlags & TTF_SUBCLASS) {
2396             if (toolPtr->uFlags & TTF_IDISHWND) {
2397                 RemoveWindowSubclass((HWND)toolPtr->uId, TOOLTIPS_SubclassProc, 1);
2398             }
2399             else {
2400                 RemoveWindowSubclass(toolPtr->hwnd, TOOLTIPS_SubclassProc, 1);
2401             }
2402         }
2403     }
2404         Free (infoPtr->tools);
2405     }
2406
2407     /* free title string */
2408     Free (infoPtr->pszTitle);
2409     /* free title icon if not a standard one */
2410     if (TOOLTIPS_GetTitleIconIndex(infoPtr->hTitleIcon) > TTI_ERROR)
2411         DeleteObject(infoPtr->hTitleIcon);
2412
2413     /* delete fonts */
2414     DeleteObject (infoPtr->hFont);
2415     DeleteObject (infoPtr->hTitleFont);
2416
2417     /* free tool tips info data */
2418     Free (infoPtr);
2419     SetWindowLongPtrW(hwnd, 0, 0);
2420     return 0;
2421 }
2422
2423
2424 static LRESULT
2425 TOOLTIPS_GetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
2426 {
2427     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2428
2429     return (LRESULT)infoPtr->hFont;
2430 }
2431
2432
2433 static LRESULT
2434 TOOLTIPS_MouseMessage (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
2435 {
2436     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2437
2438     TOOLTIPS_Hide (hwnd, infoPtr);
2439
2440     return 0;
2441 }
2442
2443
2444 static LRESULT
2445 TOOLTIPS_NCCreate (HWND hwnd, WPARAM wParam, LPARAM lParam)
2446 {
2447     DWORD dwStyle = GetWindowLongW (hwnd, GWL_STYLE);
2448     DWORD dwExStyle = GetWindowLongW (hwnd, GWL_EXSTYLE);
2449
2450     dwStyle &= ~(WS_CHILD | /*WS_MAXIMIZE |*/ WS_BORDER | WS_DLGFRAME);
2451     dwStyle |= (WS_POPUP | WS_BORDER | WS_CLIPSIBLINGS);
2452
2453     /* WS_BORDER only draws a border round the window rect, not the
2454      * window region, therefore it is useless to us in balloon mode */
2455     if (dwStyle & TTS_BALLOON) dwStyle &= ~WS_BORDER;
2456
2457     SetWindowLongW (hwnd, GWL_STYLE, dwStyle);
2458
2459     dwExStyle |= WS_EX_TOOLWINDOW;
2460     SetWindowLongW (hwnd, GWL_EXSTYLE, dwExStyle);
2461
2462     return TRUE;
2463 }
2464
2465
2466 static LRESULT
2467 TOOLTIPS_NCHitTest (HWND hwnd, WPARAM wParam, LPARAM lParam)
2468 {
2469     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2470     INT nTool = (infoPtr->bTrackActive) ? infoPtr->nTrackTool : infoPtr->nTool;
2471
2472     TRACE(" nTool=%d\n", nTool);
2473
2474     if ((nTool > -1) && (nTool < infoPtr->uNumTools)) {
2475         if (infoPtr->tools[nTool].uFlags & TTF_TRANSPARENT) {
2476             TRACE("-- in transparent mode!\n");
2477             return HTTRANSPARENT;
2478         }
2479     }
2480
2481     return DefWindowProcW (hwnd, WM_NCHITTEST, wParam, lParam);
2482 }
2483
2484
2485 static LRESULT
2486 TOOLTIPS_NotifyFormat (HWND hwnd, WPARAM wParam, LPARAM lParam)
2487 {
2488     FIXME ("hwnd=%p wParam=%lx lParam=%lx\n", hwnd, wParam, lParam);
2489
2490     return 0;
2491 }
2492
2493
2494 static LRESULT
2495 TOOLTIPS_Paint (HWND hwnd, WPARAM wParam, LPARAM lParam)
2496 {
2497     HDC hdc;
2498     PAINTSTRUCT ps;
2499
2500     hdc = (wParam == 0) ? BeginPaint (hwnd, &ps) : (HDC)wParam;
2501     TOOLTIPS_Refresh (hwnd, hdc);
2502     if (!wParam)
2503         EndPaint (hwnd, &ps);
2504     return 0;
2505 }
2506
2507
2508 static LRESULT
2509 TOOLTIPS_SetFont (HWND hwnd, WPARAM wParam, LPARAM lParam)
2510 {
2511     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2512     LOGFONTW lf;
2513
2514     if(!GetObjectW((HFONT)wParam, sizeof(lf), &lf))
2515         return 0;
2516
2517     DeleteObject (infoPtr->hFont);
2518     infoPtr->hFont = CreateFontIndirectW(&lf);
2519
2520     DeleteObject (infoPtr->hTitleFont);
2521     lf.lfWeight = FW_BOLD;
2522     infoPtr->hTitleFont = CreateFontIndirectW(&lf);
2523
2524     if ((LOWORD(lParam)) & (infoPtr->nCurrentTool != -1)) {
2525         FIXME("full redraw needed!\n");
2526     }
2527
2528     return 0;
2529 }
2530
2531 /******************************************************************
2532  * TOOLTIPS_GetTextLength
2533  *
2534  * This function is called when the tooltip receive a
2535  * WM_GETTEXTLENGTH message.
2536  * wParam : not used
2537  * lParam : not used
2538  *
2539  * returns the length, in characters, of the tip text
2540  */
2541 static LRESULT
2542 TOOLTIPS_GetTextLength(HWND hwnd, WPARAM wParam, LPARAM lParam)
2543 {
2544     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2545     return strlenW(infoPtr->szTipText);
2546 }
2547
2548 /******************************************************************
2549  * TOOLTIPS_OnWMGetText
2550  *
2551  * This function is called when the tooltip receive a
2552  * WM_GETTEXT message.
2553  * wParam : specifies the maximum number of characters to be copied
2554  * lParam : is the pointer to the buffer that will receive
2555  *          the tip text
2556  *
2557  * returns the number of characters copied
2558  */
2559 static LRESULT
2560 TOOLTIPS_OnWMGetText (HWND hwnd, WPARAM wParam, LPARAM lParam)
2561 {
2562     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2563     LRESULT res;
2564     LPWSTR pszText = (LPWSTR)lParam;
2565
2566     if(!infoPtr->szTipText || !wParam)
2567         return 0;
2568
2569     res = min(strlenW(infoPtr->szTipText)+1, wParam);
2570     memcpy(pszText, infoPtr->szTipText, res*sizeof(WCHAR));
2571     pszText[res-1] = '\0';
2572     return res-1;
2573 }
2574
2575 static LRESULT
2576 TOOLTIPS_Timer (HWND hwnd, WPARAM wParam, LPARAM lParam)
2577 {
2578     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2579     INT nOldTool;
2580
2581     TRACE("timer %ld (%p) expired!\n", wParam, hwnd);
2582
2583     switch (wParam) {
2584     case ID_TIMERSHOW:
2585         KillTimer (hwnd, ID_TIMERSHOW);
2586         nOldTool = infoPtr->nTool;
2587         if ((infoPtr->nTool = TOOLTIPS_CheckTool (hwnd, TRUE)) == nOldTool)
2588             TOOLTIPS_Show (hwnd, infoPtr, FALSE);
2589         break;
2590
2591     case ID_TIMERPOP:
2592         TOOLTIPS_Hide (hwnd, infoPtr);
2593         break;
2594
2595     case ID_TIMERLEAVE:
2596         nOldTool = infoPtr->nTool;
2597         infoPtr->nTool = TOOLTIPS_CheckTool (hwnd, FALSE);
2598         TRACE("tool (%p) %d %d %d\n", hwnd, nOldTool,
2599               infoPtr->nTool, infoPtr->nCurrentTool);
2600         if (infoPtr->nTool != nOldTool) {
2601             if(infoPtr->nTool == -1) { /* Moved out of all tools */
2602                 TOOLTIPS_Hide(hwnd, infoPtr);
2603                 KillTimer(hwnd, ID_TIMERLEAVE);
2604             } else if (nOldTool == -1) { /* Moved from outside */
2605                 ERR("How did this happen?\n");
2606             } else { /* Moved from one to another */
2607                 TOOLTIPS_Hide (hwnd, infoPtr);
2608                 KillTimer(hwnd, ID_TIMERLEAVE);
2609                 if(infoPtr->bActive) {
2610                     SetTimer (hwnd, ID_TIMERSHOW, infoPtr->nReshowTime, 0);
2611                     TRACE("timer 1 started!\n");
2612                 }
2613             }
2614         }
2615         break;
2616
2617     default:
2618         ERR("Unknown timer id %ld\n", wParam);
2619         break;
2620     }
2621     return 0;
2622 }
2623
2624
2625 static LRESULT
2626 TOOLTIPS_WinIniChange (HWND hwnd, WPARAM wParam, LPARAM lParam)
2627 {
2628     TOOLTIPS_INFO *infoPtr = TOOLTIPS_GetInfoPtr (hwnd);
2629
2630     TOOLTIPS_InitSystemSettings (infoPtr);
2631
2632     return 0;
2633 }
2634
2635
2636 static LRESULT CALLBACK
2637 TOOLTIPS_SubclassProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam, UINT_PTR uID, DWORD_PTR dwRef)
2638 {
2639     MSG msg;
2640
2641     switch(uMsg) {
2642     case WM_MOUSEMOVE:
2643     case WM_LBUTTONDOWN:
2644     case WM_LBUTTONUP:
2645     case WM_MBUTTONDOWN:
2646     case WM_MBUTTONUP:
2647     case WM_RBUTTONDOWN:
2648     case WM_RBUTTONUP:
2649         msg.hwnd = hwnd;
2650         msg.message = uMsg;
2651         msg.wParam = wParam;
2652         msg.lParam = lParam;
2653         TOOLTIPS_RelayEvent((HWND)dwRef, 0, (LPARAM)&msg);
2654         break;
2655
2656     default:
2657         break;
2658     }
2659     return DefSubclassProc(hwnd, uMsg, wParam, lParam);
2660 }
2661
2662
2663 static LRESULT CALLBACK
2664 TOOLTIPS_WindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
2665 {
2666     TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd, uMsg, wParam, lParam);
2667     if (!TOOLTIPS_GetInfoPtr(hwnd) && (uMsg != WM_CREATE) && (uMsg != WM_NCCREATE))
2668         return DefWindowProcW (hwnd, uMsg, wParam, lParam);
2669     switch (uMsg)
2670     {
2671         case TTM_ACTIVATE:
2672             return TOOLTIPS_Activate (hwnd, wParam, lParam);
2673
2674         case TTM_ADDTOOLA:
2675             return TOOLTIPS_AddToolA (hwnd, wParam, lParam);
2676
2677         case TTM_ADDTOOLW:
2678             return TOOLTIPS_AddToolW (hwnd, wParam, lParam);
2679
2680         case TTM_DELTOOLA:
2681             return TOOLTIPS_DelToolA (hwnd, wParam, lParam);
2682
2683         case TTM_DELTOOLW:
2684             return TOOLTIPS_DelToolW (hwnd, wParam, lParam);
2685
2686         case TTM_ENUMTOOLSA:
2687             return TOOLTIPS_EnumToolsA (hwnd, wParam, lParam);
2688
2689         case TTM_ENUMTOOLSW:
2690             return TOOLTIPS_EnumToolsW (hwnd, wParam, lParam);
2691
2692         case TTM_GETBUBBLESIZE:
2693             return TOOLTIPS_GetBubbleSize (hwnd, wParam, lParam);
2694
2695         case TTM_GETCURRENTTOOLA:
2696             return TOOLTIPS_GetCurrentToolA (hwnd, wParam, lParam);
2697
2698         case TTM_GETCURRENTTOOLW:
2699             return TOOLTIPS_GetCurrentToolW (hwnd, wParam, lParam);
2700
2701         case TTM_GETDELAYTIME:
2702             return TOOLTIPS_GetDelayTime (hwnd, wParam, lParam);
2703
2704         case TTM_GETMARGIN:
2705             return TOOLTIPS_GetMargin (hwnd, wParam, lParam);
2706
2707         case TTM_GETMAXTIPWIDTH:
2708             return TOOLTIPS_GetMaxTipWidth (hwnd, wParam, lParam);
2709
2710         case TTM_GETTEXTA:
2711             return TOOLTIPS_GetTextA (hwnd, wParam, lParam);
2712
2713         case TTM_GETTEXTW:
2714             return TOOLTIPS_GetTextW (hwnd, wParam, lParam);
2715
2716         case TTM_GETTIPBKCOLOR:
2717             return TOOLTIPS_GetTipBkColor (hwnd, wParam, lParam);
2718
2719         case TTM_GETTIPTEXTCOLOR:
2720             return TOOLTIPS_GetTipTextColor (hwnd, wParam, lParam);
2721
2722         case TTM_GETTOOLCOUNT:
2723             return TOOLTIPS_GetToolCount (hwnd, wParam, lParam);
2724
2725         case TTM_GETTOOLINFOA:
2726             return TOOLTIPS_GetToolInfoA (hwnd, wParam, lParam);
2727
2728         case TTM_GETTOOLINFOW:
2729             return TOOLTIPS_GetToolInfoW (hwnd, wParam, lParam);
2730
2731         case TTM_HITTESTA:
2732             return TOOLTIPS_HitTestA (hwnd, wParam, lParam);
2733
2734         case TTM_HITTESTW:
2735             return TOOLTIPS_HitTestW (hwnd, wParam, lParam);
2736
2737         case TTM_NEWTOOLRECTA:
2738             return TOOLTIPS_NewToolRectA (hwnd, wParam, lParam);
2739
2740         case TTM_NEWTOOLRECTW:
2741             return TOOLTIPS_NewToolRectW (hwnd, wParam, lParam);
2742
2743         case TTM_POP:
2744             return TOOLTIPS_Pop (hwnd, wParam, lParam);
2745
2746         case TTM_RELAYEVENT:
2747             return TOOLTIPS_RelayEvent (hwnd, wParam, lParam);
2748
2749         case TTM_SETDELAYTIME:
2750             return TOOLTIPS_SetDelayTime (hwnd, wParam, lParam);
2751
2752         case TTM_SETMARGIN:
2753             return TOOLTIPS_SetMargin (hwnd, wParam, lParam);
2754
2755         case TTM_SETMAXTIPWIDTH:
2756             return TOOLTIPS_SetMaxTipWidth (hwnd, wParam, lParam);
2757
2758         case TTM_SETTIPBKCOLOR:
2759             return TOOLTIPS_SetTipBkColor (hwnd, wParam, lParam);
2760
2761         case TTM_SETTIPTEXTCOLOR:
2762             return TOOLTIPS_SetTipTextColor (hwnd, wParam, lParam);
2763
2764         case TTM_SETTITLEA:
2765             return TOOLTIPS_SetTitleA (hwnd, wParam, lParam);
2766
2767         case TTM_SETTITLEW:
2768             return TOOLTIPS_SetTitleW (hwnd, wParam, lParam);
2769
2770         case TTM_SETTOOLINFOA:
2771             return TOOLTIPS_SetToolInfoA (hwnd, wParam, lParam);
2772
2773         case TTM_SETTOOLINFOW:
2774             return TOOLTIPS_SetToolInfoW (hwnd, wParam, lParam);
2775
2776         case TTM_TRACKACTIVATE:
2777             return TOOLTIPS_TrackActivate (hwnd, wParam, lParam);
2778
2779         case TTM_TRACKPOSITION:
2780             return TOOLTIPS_TrackPosition (hwnd, wParam, lParam);
2781
2782         case TTM_UPDATE:
2783             return TOOLTIPS_Update (hwnd, wParam, lParam);
2784
2785         case TTM_UPDATETIPTEXTA:
2786             return TOOLTIPS_UpdateTipTextA (hwnd, wParam, lParam);
2787
2788         case TTM_UPDATETIPTEXTW:
2789             return TOOLTIPS_UpdateTipTextW (hwnd, wParam, lParam);
2790
2791         case TTM_WINDOWFROMPOINT:
2792             return TOOLTIPS_WindowFromPoint (hwnd, wParam, lParam);
2793
2794
2795         case WM_CREATE:
2796             return TOOLTIPS_Create (hwnd, (LPCREATESTRUCTW)lParam);
2797
2798         case WM_DESTROY:
2799             return TOOLTIPS_Destroy (hwnd, wParam, lParam);
2800
2801         case WM_ERASEBKGND:
2802             /* we draw the background in WM_PAINT */
2803             return 0;
2804
2805         case WM_GETFONT:
2806             return TOOLTIPS_GetFont (hwnd, wParam, lParam);
2807
2808         case WM_GETTEXT:
2809             return TOOLTIPS_OnWMGetText (hwnd, wParam, lParam);
2810
2811         case WM_GETTEXTLENGTH:
2812             return TOOLTIPS_GetTextLength (hwnd, wParam, lParam);
2813
2814         case WM_LBUTTONDOWN:
2815         case WM_LBUTTONUP:
2816         case WM_MBUTTONDOWN:
2817         case WM_MBUTTONUP:
2818         case WM_RBUTTONDOWN:
2819         case WM_RBUTTONUP:
2820         case WM_MOUSEMOVE:
2821             return TOOLTIPS_MouseMessage (hwnd, uMsg, wParam, lParam);
2822
2823         case WM_NCCREATE:
2824             return TOOLTIPS_NCCreate (hwnd, wParam, lParam);
2825
2826         case WM_NCHITTEST:
2827             return TOOLTIPS_NCHitTest (hwnd, wParam, lParam);
2828
2829         case WM_NOTIFYFORMAT:
2830             return TOOLTIPS_NotifyFormat (hwnd, wParam, lParam);
2831
2832         case WM_PRINTCLIENT:
2833         case WM_PAINT:
2834             return TOOLTIPS_Paint (hwnd, wParam, lParam);
2835
2836         case WM_SETFONT:
2837             return TOOLTIPS_SetFont (hwnd, wParam, lParam);
2838
2839         case WM_TIMER:
2840             return TOOLTIPS_Timer (hwnd, wParam, lParam);
2841
2842         case WM_WININICHANGE:
2843             return TOOLTIPS_WinIniChange (hwnd, wParam, lParam);
2844
2845         default:
2846             if ((uMsg >= WM_USER) && (uMsg < WM_APP) && !COMCTL32_IsReflectedMessage(uMsg))
2847                 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
2848                      uMsg, wParam, lParam);
2849             return DefWindowProcW (hwnd, uMsg, wParam, lParam);
2850     }
2851 }
2852
2853
2854 VOID
2855 TOOLTIPS_Register (void)
2856 {
2857     WNDCLASSW wndClass;
2858
2859     ZeroMemory (&wndClass, sizeof(WNDCLASSW));
2860     wndClass.style         = CS_GLOBALCLASS | CS_DBLCLKS | CS_SAVEBITS;
2861     wndClass.lpfnWndProc   = TOOLTIPS_WindowProc;
2862     wndClass.cbClsExtra    = 0;
2863     wndClass.cbWndExtra    = sizeof(TOOLTIPS_INFO *);
2864     wndClass.hCursor       = LoadCursorW (0, (LPWSTR)IDC_ARROW);
2865     wndClass.hbrBackground = 0;
2866     wndClass.lpszClassName = TOOLTIPS_CLASSW;
2867
2868     RegisterClassW (&wndClass);
2869
2870     hTooltipIcons[TTI_NONE] = NULL;
2871     hTooltipIcons[TTI_INFO] = LoadImageW(COMCTL32_hModule,
2872         (LPCWSTR)MAKEINTRESOURCE(IDI_TT_INFO_SM), IMAGE_ICON, 0, 0, 0);
2873     hTooltipIcons[TTI_WARNING] = LoadImageW(COMCTL32_hModule,
2874         (LPCWSTR)MAKEINTRESOURCE(IDI_TT_WARN_SM), IMAGE_ICON, 0, 0, 0);
2875     hTooltipIcons[TTI_ERROR] = LoadImageW(COMCTL32_hModule,
2876         (LPCWSTR)MAKEINTRESOURCE(IDI_TT_ERROR_SM), IMAGE_ICON, 0, 0, 0);
2877 }
2878
2879
2880 VOID
2881 TOOLTIPS_Unregister (void)
2882 {
2883     int i;
2884     for (i = TTI_INFO; i <= TTI_ERROR; i++)
2885         DestroyIcon(hTooltipIcons[i]);
2886     UnregisterClassW (TOOLTIPS_CLASSW, NULL);
2887 }