4 * Copyright 1998, 1999 Eric Kohl
5 * Copyright 2004 Robert Shearman
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.
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.
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
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.
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.
31 * - Custom draw support.
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.
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
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.
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
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.
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
99 #include "wine/unicode.h"
103 #include "commctrl.h"
104 #include "comctl32.h"
105 #include "wine/debug.h"
107 WINE_DEFAULT_DEBUG_CHANNEL(tooltips
);
109 static HICON hTooltipIcons
[TTI_ERROR
+1];
127 WCHAR szTipText
[INFOTIPSIZE
];
138 INT nTool
; /* tool that mouse was on on last relayed mouse move */
152 #define ID_TIMERSHOW 1 /* show delay timer */
153 #define ID_TIMERPOP 2 /* auto pop timer */
154 #define ID_TIMERLEAVE 3 /* tool leave timer */
157 #define TOOLTIPS_GetInfoPtr(hWindow) ((TOOLTIPS_INFO *)GetWindowLongPtrW (hWindow, 0))
159 /* offsets from window edge to start of text */
160 #define NORMAL_TEXT_MARGIN 2
161 #define BALLOON_TEXT_MARGIN (NORMAL_TEXT_MARGIN+8)
162 /* value used for CreateRoundRectRgn that specifies how much
163 * each corner is curved */
164 #define BALLOON_ROUNDEDNESS 20
165 #define BALLOON_STEMHEIGHT 13
166 #define BALLOON_STEMWIDTH 10
167 #define BALLOON_STEMINDENT 20
169 #define BALLOON_ICON_TITLE_SPACING 8 /* horizontal spacing between icon and title */
170 #define BALLOON_TITLE_TEXT_SPACING 8 /* vertical spacing between icon/title and main text */
171 #define ICON_HEIGHT 16
172 #define ICON_WIDTH 16
174 static LRESULT CALLBACK
175 TOOLTIPS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uId
, DWORD_PTR dwRef
);
178 static inline UINT_PTR
179 TOOLTIPS_GetTitleIconIndex(HICON hIcon
)
182 for (i
= 0; i
<= TTI_ERROR
; i
++)
183 if (hTooltipIcons
[i
] == hIcon
)
185 return (UINT_PTR
)hIcon
;
189 TOOLTIPS_InitSystemSettings (TOOLTIPS_INFO
*infoPtr
)
191 NONCLIENTMETRICSW nclm
;
193 infoPtr
->clrBk
= comctl32_color
.clrInfoBk
;
194 infoPtr
->clrText
= comctl32_color
.clrInfoText
;
196 DeleteObject (infoPtr
->hFont
);
197 nclm
.cbSize
= sizeof(nclm
);
198 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS
, sizeof(nclm
), &nclm
, 0);
199 infoPtr
->hFont
= CreateFontIndirectW (&nclm
.lfStatusFont
);
201 DeleteObject (infoPtr
->hTitleFont
);
202 nclm
.lfStatusFont
.lfWeight
= FW_BOLD
;
203 infoPtr
->hTitleFont
= CreateFontIndirectW (&nclm
.lfStatusFont
);
206 /* Custom draw routines */
208 TOOLTIPS_customdraw_fill(NMTTCUSTOMDRAW
*lpnmttcd
,
210 HDC hdc
, const RECT
*rcBounds
, UINT uFlags
)
212 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr(hwnd
);
214 ZeroMemory(lpnmttcd
, sizeof(NMTTCUSTOMDRAW
));
215 lpnmttcd
->uDrawFlags
= uFlags
;
216 lpnmttcd
->nmcd
.hdr
.hwndFrom
= hwnd
;
217 lpnmttcd
->nmcd
.hdr
.code
= NM_CUSTOMDRAW
;
218 if (infoPtr
->nCurrentTool
!= -1) {
219 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
220 lpnmttcd
->nmcd
.hdr
.idFrom
= toolPtr
->uId
;
222 lpnmttcd
->nmcd
.hdc
= hdc
;
223 lpnmttcd
->nmcd
.rc
= *rcBounds
;
224 /* FIXME - dwItemSpec, uItemState, lItemlParam */
228 TOOLTIPS_notify_customdraw (DWORD dwDrawStage
, NMTTCUSTOMDRAW
*lpnmttcd
)
230 LRESULT result
= CDRF_DODEFAULT
;
231 lpnmttcd
->nmcd
.dwDrawStage
= dwDrawStage
;
233 TRACE("Notifying stage %d, flags %x, id %x\n", lpnmttcd
->nmcd
.dwDrawStage
,
234 lpnmttcd
->uDrawFlags
, lpnmttcd
->nmcd
.hdr
.code
);
236 result
= SendMessageW(GetParent(lpnmttcd
->nmcd
.hdr
.hwndFrom
), WM_NOTIFY
,
237 0, (LPARAM
)lpnmttcd
);
239 TRACE("Notify result %x\n", (unsigned int)result
);
245 TOOLTIPS_Refresh (const TOOLTIPS_INFO
*infoPtr
, HDC hdc
)
251 UINT uFlags
= DT_EXTERNALLEADING
;
253 DWORD dwStyle
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
254 NMTTCUSTOMDRAW nmttcd
;
257 if (infoPtr
->nMaxTipWidth
> -1)
258 uFlags
|= DT_WORDBREAK
;
259 if (GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_NOPREFIX
)
260 uFlags
|= DT_NOPREFIX
;
261 GetClientRect (infoPtr
->hwndSelf
, &rc
);
263 hBrush
= CreateSolidBrush(infoPtr
->clrBk
);
265 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
266 SetTextColor (hdc
, infoPtr
->clrText
);
267 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
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
, infoPtr
->hwndSelf
, hdc
, &rc
, uFlags
);
272 cdmode
= TOOLTIPS_notify_customdraw(CDDS_PREPAINT
, &nmttcd
);
273 uFlags
= nmttcd
.uDrawFlags
;
275 if (dwStyle
& TTS_BALLOON
)
277 /* create a region to store result into */
278 hRgn
= CreateRectRgn(0, 0, 0, 0);
280 GetWindowRgn(infoPtr
->hwndSelf
, hRgn
);
282 /* fill the background */
283 FillRgn(hdc
, hRgn
, hBrush
);
284 DeleteObject(hBrush
);
289 /* fill the background */
290 FillRect(hdc
, &rc
, hBrush
);
291 DeleteObject(hBrush
);
295 if ((dwStyle
& TTS_BALLOON
) || infoPtr
->pszTitle
)
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
;
304 if (infoPtr
->pszTitle
)
306 RECT rcTitle
= {rc
.left
, rc
.top
, rc
.right
, rc
.bottom
};
312 icon_present
= infoPtr
->hTitleIcon
&&
313 DrawIconEx(hdc
, rc
.left
, rc
.top
, infoPtr
->hTitleIcon
,
314 ICON_WIDTH
, ICON_HEIGHT
, 0, NULL
, DI_NORMAL
);
316 rcTitle
.left
+= ICON_WIDTH
+ BALLOON_ICON_TITLE_SPACING
;
318 rcTitle
.bottom
= rc
.top
+ ICON_HEIGHT
;
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
;
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
);
337 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
339 /* Custom draw - Call PostPaint after drawing */
340 if (cdmode
& CDRF_NOTIFYPOSTPAINT
) {
341 TOOLTIPS_notify_customdraw(CDDS_POSTPAINT
, &nmttcd
);
344 /* be polite and reset the things we changed in the dc */
345 SelectObject (hdc
, hOldFont
);
346 SetBkMode (hdc
, oldBkMode
);
348 if (dwStyle
& TTS_BALLOON
)
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
);
354 hBrush
= GetSysColorBrush(COLOR_WINDOWFRAME
);
355 FrameRgn(hdc
, hRgn
, hBrush
, width
, height
);
362 static void TOOLTIPS_GetDispInfoA(TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
)
364 NMTTDISPINFOA ttnmdi
;
366 /* fill NMHDR struct */
367 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOA
));
368 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
369 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
370 ttnmdi
.hdr
.code
= TTN_GETDISPINFOA
; /* == TTN_NEEDTEXTA */
371 ttnmdi
.lpszText
= ttnmdi
.szText
;
372 ttnmdi
.uFlags
= toolPtr
->uFlags
;
373 ttnmdi
.lParam
= toolPtr
->lParam
;
375 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
376 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
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
;
386 else if (ttnmdi
.lpszText
== 0) {
387 infoPtr
->szTipText
[0] = '\0';
389 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKA
) {
390 Str_GetPtrAtoW(ttnmdi
.lpszText
, infoPtr
->szTipText
, INFOTIPSIZE
);
391 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
393 toolPtr
->lpszText
= NULL
;
394 Str_SetPtrW(&toolPtr
->lpszText
, infoPtr
->szTipText
);
398 ERR("recursive text callback!\n");
399 infoPtr
->szTipText
[0] = '\0';
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) {
406 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
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
);
418 static void TOOLTIPS_GetDispInfoW(TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
)
420 NMTTDISPINFOW ttnmdi
;
422 /* fill NMHDR struct */
423 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOW
));
424 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
425 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
426 ttnmdi
.hdr
.code
= TTN_GETDISPINFOW
; /* == TTN_NEEDTEXTW */
427 ttnmdi
.lpszText
= ttnmdi
.szText
;
428 ttnmdi
.uFlags
= toolPtr
->uFlags
;
429 ttnmdi
.lParam
= toolPtr
->lParam
;
431 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
432 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
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
;
442 else if (ttnmdi
.lpszText
== 0) {
443 infoPtr
->szTipText
[0] = '\0';
445 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKW
) {
446 Str_GetPtrW(ttnmdi
.lpszText
, infoPtr
->szTipText
, INFOTIPSIZE
);
447 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
449 toolPtr
->lpszText
= NULL
;
450 Str_SetPtrW(&toolPtr
->lpszText
, infoPtr
->szTipText
);
454 ERR("recursive text callback!\n");
455 infoPtr
->szTipText
[0] = '\0';
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) {
462 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
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
);
476 TOOLTIPS_GetTipText (TOOLTIPS_INFO
*infoPtr
, INT nTool
)
478 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[nTool
];
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
);
487 else if (toolPtr
->lpszText
) {
488 if (toolPtr
->lpszText
== LPSTR_TEXTCALLBACKW
) {
489 if (toolPtr
->bNotifyUnicode
)
490 TOOLTIPS_GetDispInfoW(infoPtr
, toolPtr
);
492 TOOLTIPS_GetDispInfoA(infoPtr
, toolPtr
);
495 /* the item is a usual (unicode) text */
496 lstrcpynW (infoPtr
->szTipText
, toolPtr
->lpszText
, INFOTIPSIZE
);
500 /* no text available */
501 infoPtr
->szTipText
[0] = '\0';
504 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
509 TOOLTIPS_CalcTipSize (const TOOLTIPS_INFO
*infoPtr
, LPSIZE lpSize
)
513 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
514 UINT uFlags
= DT_EXTERNALLEADING
| DT_CALCRECT
;
515 RECT rc
= {0, 0, 0, 0};
518 if (infoPtr
->nMaxTipWidth
> -1) {
519 rc
.right
= infoPtr
->nMaxTipWidth
;
520 uFlags
|= DT_WORDBREAK
;
522 if (style
& TTS_NOPREFIX
)
523 uFlags
|= DT_NOPREFIX
;
524 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
526 hdc
= GetDC (infoPtr
->hwndSelf
);
527 if (infoPtr
->pszTitle
)
529 RECT rcTitle
= {0, 0, 0, 0};
530 TRACE("title %s\n", debugstr_w(infoPtr
->pszTitle
));
531 if (infoPtr
->hTitleIcon
)
533 title
.cx
= ICON_WIDTH
;
534 title
.cy
= ICON_HEIGHT
;
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
);
543 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
544 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
545 SelectObject (hdc
, hOldFont
);
546 ReleaseDC (infoPtr
->hwndSelf
, hdc
);
548 if ((style
& TTS_BALLOON
) || infoPtr
->pszTitle
)
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
+
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
;
567 TOOLTIPS_Show (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
)
569 TTTOOL_INFO
*toolPtr
;
571 MONITORINFO mon_info
;
576 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
581 if (infoPtr
->nTrackTool
== -1)
583 TRACE("invalid tracking tool (-1)!\n");
586 nTool
= infoPtr
->nTrackTool
;
590 if (infoPtr
->nTool
== -1)
592 TRACE("invalid tool (-1)!\n");
595 nTool
= infoPtr
->nTool
;
598 TRACE("Show tooltip pre %d! (%p)\n", nTool
, infoPtr
->hwndSelf
);
600 TOOLTIPS_GetTipText (infoPtr
, nTool
);
602 if (infoPtr
->szTipText
[0] == '\0')
605 toolPtr
= &infoPtr
->tools
[nTool
];
608 infoPtr
->nCurrentTool
= infoPtr
->nTool
;
610 TRACE("Show tooltip %d!\n", nTool
);
612 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
613 hdr
.idFrom
= toolPtr
->uId
;
615 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
617 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
619 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
620 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
624 rect
.left
= infoPtr
->xTrackPos
;
625 rect
.top
= infoPtr
->yTrackPos
;
628 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
630 rect
.left
-= (size
.cx
/ 2);
631 if (!(style
& TTS_BALLOON
))
632 rect
.top
-= (size
.cy
/ 2);
634 infoPtr
->bToolBelow
= TRUE
;
636 if (!(toolPtr
->uFlags
& TTF_ABSOLUTE
))
638 if (style
& TTS_BALLOON
)
639 rect
.left
-= BALLOON_STEMINDENT
;
644 if (toolPtr
->uFlags
& TTF_IDISHWND
)
645 GetWindowRect ((HWND
)toolPtr
->uId
, &rcTool
);
648 rcTool
= toolPtr
->rect
;
649 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rcTool
, 2);
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
;
661 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
665 if (toolPtr
->uFlags
& TTF_IDISHWND
)
666 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
669 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
671 rect
.left
= (rc
.left
+ rc
.right
- size
.cx
) / 2;
672 if (style
& TTS_BALLOON
)
674 ptfx
= rc
.left
+ ((rc
.right
- rc
.left
) / 2);
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
))
680 rect
.top
= rc
.top
- size
.cy
;
681 infoPtr
->bToolBelow
= FALSE
;
685 infoPtr
->bToolBelow
= TRUE
;
686 rect
.top
= rc
.bottom
;
688 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
692 rect
.top
= rc
.bottom
+ 2;
693 infoPtr
->bToolBelow
= TRUE
;
698 GetCursorPos ((LPPOINT
)&rect
);
699 if (style
& TTS_BALLOON
)
702 if(rect
.top
- size
.cy
>= 0)
705 infoPtr
->bToolBelow
= FALSE
;
709 infoPtr
->bToolBelow
= TRUE
;
712 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
717 infoPtr
->bToolBelow
= TRUE
;
722 TRACE("pos %d - %d\n", rect
.left
, rect
.top
);
724 rect
.right
= rect
.left
+ size
.cx
;
725 rect
.bottom
= rect
.top
+ size
.cy
;
729 monitor
= MonitorFromRect( &rect
, MONITOR_DEFAULTTOPRIMARY
);
730 mon_info
.cbSize
= sizeof(mon_info
);
731 GetMonitorInfoW( monitor
, &mon_info
);
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;
737 if (rect
.left
< mon_info
.rcWork
.left
) rect
.left
= mon_info
.rcWork
.left
;
739 if( rect
.bottom
> mon_info
.rcWork
.bottom
) {
742 if (toolPtr
->uFlags
& TTF_IDISHWND
)
743 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
746 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
748 rect
.bottom
= rc
.top
- 2;
749 rect
.top
= rect
.bottom
- size
.cy
;
752 AdjustWindowRectEx (&rect
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
),
753 FALSE
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_EXSTYLE
));
755 if (style
& TTS_BALLOON
)
763 if(infoPtr
->bToolBelow
)
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
;
771 if(pts
[2].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
773 pts
[2].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
774 pts
[1].x
= pts
[2].x
- BALLOON_STEMWIDTH
;
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
;
784 pts
[2].y
= (rect
.bottom
- rect
.top
);
785 if(pts
[1].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
787 pts
[1].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
788 pts
[0].x
= pts
[1].x
- BALLOON_STEMWIDTH
;
792 hrStem
= CreatePolygonRgn(pts
, sizeof(pts
) / sizeof(pts
[0]), ALTERNATE
);
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
);
800 CombineRgn(hRgn
, hRgn
, hrStem
, RGN_OR
);
801 DeleteObject(hrStem
);
803 SetWindowRgn(infoPtr
->hwndSelf
, hRgn
, FALSE
);
804 /* we don't free the region handle as the system deletes it when
805 * it is no longer needed */
808 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOPMOST
, rect
.left
, rect
.top
,
809 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
810 SWP_SHOWWINDOW
| SWP_NOACTIVATE
);
812 /* repaint the tooltip */
813 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
814 UpdateWindow(infoPtr
->hwndSelf
);
818 SetTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
819 TRACE("timer 2 started!\n");
820 SetTimer (infoPtr
->hwndSelf
, ID_TIMERLEAVE
, infoPtr
->nReshowTime
, 0);
821 TRACE("timer 3 started!\n");
827 TOOLTIPS_Hide (TOOLTIPS_INFO
*infoPtr
)
829 TTTOOL_INFO
*toolPtr
;
832 TRACE("Hide tooltip %d! (%p)\n", infoPtr
->nCurrentTool
, infoPtr
->hwndSelf
);
834 if (infoPtr
->nCurrentTool
== -1)
837 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
838 KillTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
);
840 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
841 hdr
.idFrom
= toolPtr
->uId
;
843 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
845 infoPtr
->nCurrentTool
= -1;
847 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
848 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
853 TOOLTIPS_TrackShow (TOOLTIPS_INFO
*infoPtr
)
855 TOOLTIPS_Show(infoPtr
, TRUE
);
860 TOOLTIPS_TrackHide (const TOOLTIPS_INFO
*infoPtr
)
862 TTTOOL_INFO
*toolPtr
;
865 TRACE("hide tracking tooltip %d\n", infoPtr
->nTrackTool
);
867 if (infoPtr
->nTrackTool
== -1)
870 toolPtr
= &infoPtr
->tools
[infoPtr
->nTrackTool
];
872 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
873 hdr
.idFrom
= toolPtr
->uId
;
875 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
877 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
878 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
883 TOOLTIPS_GetToolFromInfoA (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOA
*lpToolInfo
)
885 TTTOOL_INFO
*toolPtr
;
888 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
889 toolPtr
= &infoPtr
->tools
[nTool
];
891 if (!(toolPtr
->uFlags
& TTF_IDISHWND
) &&
892 (lpToolInfo
->hwnd
== toolPtr
->hwnd
) &&
893 (lpToolInfo
->uId
== toolPtr
->uId
))
897 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
898 toolPtr
= &infoPtr
->tools
[nTool
];
900 if ((toolPtr
->uFlags
& TTF_IDISHWND
) &&
901 (lpToolInfo
->uId
== toolPtr
->uId
))
910 TOOLTIPS_GetToolFromInfoW (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*lpToolInfo
)
912 TTTOOL_INFO
*toolPtr
;
915 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
916 toolPtr
= &infoPtr
->tools
[nTool
];
918 if (!(toolPtr
->uFlags
& TTF_IDISHWND
) &&
919 (lpToolInfo
->hwnd
== toolPtr
->hwnd
) &&
920 (lpToolInfo
->uId
== toolPtr
->uId
))
924 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
925 toolPtr
= &infoPtr
->tools
[nTool
];
927 if ((toolPtr
->uFlags
& TTF_IDISHWND
) &&
928 (lpToolInfo
->uId
== toolPtr
->uId
))
937 TOOLTIPS_GetToolFromPoint (const TOOLTIPS_INFO
*infoPtr
, HWND hwnd
, const POINT
*lpPt
)
939 TTTOOL_INFO
*toolPtr
;
942 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
943 toolPtr
= &infoPtr
->tools
[nTool
];
945 if (!(toolPtr
->uFlags
& TTF_IDISHWND
)) {
946 if (hwnd
!= toolPtr
->hwnd
)
948 if (!PtInRect (&toolPtr
->rect
, *lpPt
))
954 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
955 toolPtr
= &infoPtr
->tools
[nTool
];
957 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
958 if ((HWND
)toolPtr
->uId
== hwnd
)
968 TOOLTIPS_IsWindowActive (HWND hwnd
)
970 HWND hwndActive
= GetActiveWindow ();
973 if (hwndActive
== hwnd
)
975 return IsChild (hwndActive
, hwnd
);
980 TOOLTIPS_CheckTool (const TOOLTIPS_INFO
*infoPtr
, BOOL bShowTest
)
987 hwndTool
= (HWND
)SendMessageW (infoPtr
->hwndSelf
, TTM_WINDOWFROMPOINT
, 0, (LPARAM
)&pt
);
991 ScreenToClient (hwndTool
, &pt
);
992 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, hwndTool
, &pt
);
996 if (!(GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_ALWAYSTIP
) && bShowTest
) {
997 if (!TOOLTIPS_IsWindowActive (GetWindow (infoPtr
->hwndSelf
, GW_OWNER
)))
1001 TRACE("tool %d\n", nTool
);
1008 TOOLTIPS_Activate (TOOLTIPS_INFO
*infoPtr
, BOOL activate
)
1010 infoPtr
->bActive
= activate
;
1012 if (infoPtr
->bActive
)
1013 TRACE("activate!\n");
1015 if (!(infoPtr
->bActive
) && (infoPtr
->nCurrentTool
!= -1))
1016 TOOLTIPS_Hide (infoPtr
);
1023 TOOLTIPS_AddToolA (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1025 TTTOOL_INFO
*toolPtr
;
1028 if (lpToolInfo
== NULL
)
1030 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1033 TRACE("add tool (%p) %p %ld%s!\n",
1034 infoPtr
->hwndSelf
, lpToolInfo
->hwnd
, lpToolInfo
->uId
,
1035 (lpToolInfo
->uFlags
& TTF_IDISHWND
) ? " TTF_IDISHWND" : "");
1037 if (infoPtr
->uNumTools
== 0) {
1038 infoPtr
->tools
= Alloc (sizeof(TTTOOL_INFO
));
1039 toolPtr
= infoPtr
->tools
;
1042 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1044 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
+ 1));
1045 memcpy (infoPtr
->tools
, oldTools
,
1046 infoPtr
->uNumTools
* sizeof(TTTOOL_INFO
));
1048 toolPtr
= &infoPtr
->tools
[infoPtr
->uNumTools
];
1051 infoPtr
->uNumTools
++;
1053 /* copy tool data */
1054 toolPtr
->uFlags
= lpToolInfo
->uFlags
;
1055 toolPtr
->hwnd
= lpToolInfo
->hwnd
;
1056 toolPtr
->uId
= lpToolInfo
->uId
;
1057 toolPtr
->rect
= lpToolInfo
->rect
;
1058 toolPtr
->hinst
= lpToolInfo
->hinst
;
1060 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)) {
1061 TRACE("add string id %x!\n", LOWORD(lpToolInfo
->lpszText
));
1062 toolPtr
->lpszText
= (LPWSTR
)lpToolInfo
->lpszText
;
1064 else if (lpToolInfo
->lpszText
) {
1065 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKA
) {
1066 TRACE("add CALLBACK!\n");
1067 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1070 INT len
= MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
, -1,
1072 TRACE("add text \"%s\"!\n", lpToolInfo
->lpszText
);
1073 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1074 MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
, -1,
1075 toolPtr
->lpszText
, len
);
1079 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOA
))
1080 toolPtr
->lParam
= lpToolInfo
->lParam
;
1082 /* install subclassing hook */
1083 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1084 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1085 SetWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1,
1086 (DWORD_PTR
)infoPtr
->hwndSelf
);
1089 SetWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1,
1090 (DWORD_PTR
)infoPtr
->hwndSelf
);
1092 TRACE("subclassing installed!\n");
1095 nResult
= (INT
) SendMessageW (toolPtr
->hwnd
, WM_NOTIFYFORMAT
,
1096 (WPARAM
)infoPtr
->hwndSelf
, (LPARAM
)NF_QUERY
);
1097 if (nResult
== NFR_ANSI
) {
1098 toolPtr
->bNotifyUnicode
= FALSE
;
1099 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1100 } else if (nResult
== NFR_UNICODE
) {
1101 toolPtr
->bNotifyUnicode
= TRUE
;
1102 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1104 TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1112 TOOLTIPS_AddToolW (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1114 TTTOOL_INFO
*toolPtr
;
1117 if (lpToolInfo
== NULL
)
1119 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1122 TRACE("add tool (%p) %p %ld%s!\n",
1123 infoPtr
->hwndSelf
, lpToolInfo
->hwnd
, lpToolInfo
->uId
,
1124 (lpToolInfo
->uFlags
& TTF_IDISHWND
) ? " TTF_IDISHWND" : "");
1126 if (infoPtr
->uNumTools
== 0) {
1127 infoPtr
->tools
= Alloc (sizeof(TTTOOL_INFO
));
1128 toolPtr
= infoPtr
->tools
;
1131 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1133 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
+ 1));
1134 memcpy (infoPtr
->tools
, oldTools
,
1135 infoPtr
->uNumTools
* sizeof(TTTOOL_INFO
));
1137 toolPtr
= &infoPtr
->tools
[infoPtr
->uNumTools
];
1140 infoPtr
->uNumTools
++;
1142 /* copy tool data */
1143 toolPtr
->uFlags
= lpToolInfo
->uFlags
;
1144 toolPtr
->hwnd
= lpToolInfo
->hwnd
;
1145 toolPtr
->uId
= lpToolInfo
->uId
;
1146 toolPtr
->rect
= lpToolInfo
->rect
;
1147 toolPtr
->hinst
= lpToolInfo
->hinst
;
1149 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)) {
1150 TRACE("add string id %x\n", LOWORD(lpToolInfo
->lpszText
));
1151 toolPtr
->lpszText
= lpToolInfo
->lpszText
;
1153 else if (lpToolInfo
->lpszText
) {
1154 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKW
) {
1155 TRACE("add CALLBACK!\n");
1156 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1159 INT len
= lstrlenW (lpToolInfo
->lpszText
);
1160 TRACE("add text %s!\n",
1161 debugstr_w(lpToolInfo
->lpszText
));
1162 toolPtr
->lpszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
1163 strcpyW (toolPtr
->lpszText
, lpToolInfo
->lpszText
);
1167 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOW
))
1168 toolPtr
->lParam
= lpToolInfo
->lParam
;
1170 /* install subclassing hook */
1171 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1172 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1173 SetWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1,
1174 (DWORD_PTR
)infoPtr
->hwndSelf
);
1177 SetWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1,
1178 (DWORD_PTR
)infoPtr
->hwndSelf
);
1180 TRACE("subclassing installed!\n");
1183 nResult
= (INT
) SendMessageW (toolPtr
->hwnd
, WM_NOTIFYFORMAT
,
1184 (WPARAM
)infoPtr
->hwndSelf
, (LPARAM
)NF_QUERY
);
1185 if (nResult
== NFR_ANSI
) {
1186 toolPtr
->bNotifyUnicode
= FALSE
;
1187 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1188 } else if (nResult
== NFR_UNICODE
) {
1189 toolPtr
->bNotifyUnicode
= TRUE
;
1190 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1192 TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1200 TOOLTIPS_DelToolCommon (TOOLTIPS_INFO
*infoPtr
, INT nTool
)
1202 TTTOOL_INFO
*toolPtr
;
1204 TRACE("tool %d\n", nTool
);
1209 /* make sure the tooltip has disappeared before deleting it */
1210 TOOLTIPS_Hide(infoPtr
);
1212 /* delete text string */
1213 toolPtr
= &infoPtr
->tools
[nTool
];
1214 if (toolPtr
->lpszText
) {
1215 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
1216 !IS_INTRESOURCE(toolPtr
->lpszText
) )
1217 Free (toolPtr
->lpszText
);
1220 /* remove subclassing */
1221 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1222 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1223 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
1226 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
1230 /* delete tool from tool list */
1231 if (infoPtr
->uNumTools
== 1) {
1232 Free (infoPtr
->tools
);
1233 infoPtr
->tools
= NULL
;
1236 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1238 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
- 1));
1241 memcpy (&infoPtr
->tools
[0], &oldTools
[0],
1242 nTool
* sizeof(TTTOOL_INFO
));
1244 if (nTool
< infoPtr
->uNumTools
- 1)
1245 memcpy (&infoPtr
->tools
[nTool
], &oldTools
[nTool
+ 1],
1246 (infoPtr
->uNumTools
- nTool
- 1) * sizeof(TTTOOL_INFO
));
1251 /* update any indices affected by delete */
1253 /* destroying tool that mouse was on on last relayed mouse move */
1254 if (infoPtr
->nTool
== nTool
)
1255 /* -1 means no current tool (0 means first tool) */
1256 infoPtr
->nTool
= -1;
1257 else if (infoPtr
->nTool
> nTool
)
1260 if (infoPtr
->nTrackTool
== nTool
)
1261 /* -1 means no current tool (0 means first tool) */
1262 infoPtr
->nTrackTool
= -1;
1263 else if (infoPtr
->nTrackTool
> nTool
)
1264 infoPtr
->nTrackTool
--;
1266 if (infoPtr
->nCurrentTool
== nTool
)
1267 /* -1 means no current tool (0 means first tool) */
1268 infoPtr
->nCurrentTool
= -1;
1269 else if (infoPtr
->nCurrentTool
> nTool
)
1270 infoPtr
->nCurrentTool
--;
1272 infoPtr
->uNumTools
--;
1276 TOOLTIPS_DelToolA (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1280 if (lpToolInfo
== NULL
)
1282 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1284 if (infoPtr
->uNumTools
== 0)
1287 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
1289 TOOLTIPS_DelToolCommon (infoPtr
, nTool
);
1296 TOOLTIPS_DelToolW (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1300 if (lpToolInfo
== NULL
)
1302 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1304 if (infoPtr
->uNumTools
== 0)
1307 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
1309 TOOLTIPS_DelToolCommon (infoPtr
, nTool
);
1316 TOOLTIPS_EnumToolsA (const TOOLTIPS_INFO
*infoPtr
, UINT uIndex
, LPTTTOOLINFOA lpToolInfo
)
1318 TTTOOL_INFO
*toolPtr
;
1320 if (lpToolInfo
== NULL
)
1322 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1324 if (uIndex
>= infoPtr
->uNumTools
)
1327 TRACE("index=%u\n", uIndex
);
1329 toolPtr
= &infoPtr
->tools
[uIndex
];
1331 /* copy tool data */
1332 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1333 lpToolInfo
->hwnd
= toolPtr
->hwnd
;
1334 lpToolInfo
->uId
= toolPtr
->uId
;
1335 lpToolInfo
->rect
= toolPtr
->rect
;
1336 lpToolInfo
->hinst
= toolPtr
->hinst
;
1337 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1338 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1340 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOA
))
1341 lpToolInfo
->lParam
= toolPtr
->lParam
;
1348 TOOLTIPS_EnumToolsW (const TOOLTIPS_INFO
*infoPtr
, UINT uIndex
, LPTTTOOLINFOW lpToolInfo
)
1350 TTTOOL_INFO
*toolPtr
;
1352 if (lpToolInfo
== NULL
)
1354 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1356 if (uIndex
>= infoPtr
->uNumTools
)
1359 TRACE("index=%u\n", uIndex
);
1361 toolPtr
= &infoPtr
->tools
[uIndex
];
1363 /* copy tool data */
1364 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1365 lpToolInfo
->hwnd
= toolPtr
->hwnd
;
1366 lpToolInfo
->uId
= toolPtr
->uId
;
1367 lpToolInfo
->rect
= toolPtr
->rect
;
1368 lpToolInfo
->hinst
= toolPtr
->hinst
;
1369 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1370 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1372 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOW
))
1373 lpToolInfo
->lParam
= toolPtr
->lParam
;
1379 TOOLTIPS_GetBubbleSize (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1384 if (lpToolInfo
== NULL
)
1386 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1389 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
1390 if (nTool
== -1) return 0;
1392 TRACE("tool %d\n", nTool
);
1394 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
1395 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
1397 return MAKELRESULT(size
.cx
, size
.cy
);
1401 TOOLTIPS_GetCurrentToolA (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1403 TTTOOL_INFO
*toolPtr
;
1406 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1409 if (infoPtr
->nCurrentTool
> -1) {
1410 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
1412 /* copy tool data */
1413 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1414 lpToolInfo
->rect
= toolPtr
->rect
;
1415 lpToolInfo
->hinst
= toolPtr
->hinst
;
1416 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1417 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1419 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOA
))
1420 lpToolInfo
->lParam
= toolPtr
->lParam
;
1428 return (infoPtr
->nCurrentTool
!= -1);
1433 TOOLTIPS_GetCurrentToolW (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1435 TTTOOL_INFO
*toolPtr
;
1438 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1441 if (infoPtr
->nCurrentTool
> -1) {
1442 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
1444 /* copy tool data */
1445 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1446 lpToolInfo
->rect
= toolPtr
->rect
;
1447 lpToolInfo
->hinst
= toolPtr
->hinst
;
1448 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1449 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1451 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOW
))
1452 lpToolInfo
->lParam
= toolPtr
->lParam
;
1460 return (infoPtr
->nCurrentTool
!= -1);
1465 TOOLTIPS_GetDelayTime (const TOOLTIPS_INFO
*infoPtr
, DWORD duration
)
1469 return infoPtr
->nReshowTime
;
1472 return infoPtr
->nAutoPopTime
;
1475 case TTDT_AUTOMATIC
: /* Apparently TTDT_AUTOMATIC returns TTDT_INITIAL */
1476 return infoPtr
->nInitialTime
;
1479 WARN("Invalid duration flag %x\n", duration
);
1488 TOOLTIPS_GetMargin (const TOOLTIPS_INFO
*infoPtr
, LPRECT lpRect
)
1490 lpRect
->left
= infoPtr
->rcMargin
.left
;
1491 lpRect
->right
= infoPtr
->rcMargin
.right
;
1492 lpRect
->bottom
= infoPtr
->rcMargin
.bottom
;
1493 lpRect
->top
= infoPtr
->rcMargin
.top
;
1499 static inline LRESULT
1500 TOOLTIPS_GetMaxTipWidth (const TOOLTIPS_INFO
*infoPtr
)
1502 return infoPtr
->nMaxTipWidth
;
1507 TOOLTIPS_GetTextA (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1511 if (lpToolInfo
== NULL
)
1513 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1516 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
1517 if (nTool
== -1) return 0;
1519 /* NB this API is broken, there is no way for the app to determine
1520 what size buffer it requires nor a way to specify how long the
1521 one it supplies is. We'll assume it's up to INFOTIPSIZE */
1523 WideCharToMultiByte(CP_ACP
, 0, infoPtr
->tools
[nTool
].lpszText
, -1,
1524 lpToolInfo
->lpszText
, INFOTIPSIZE
, NULL
, NULL
);
1531 TOOLTIPS_GetTextW (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1535 if (lpToolInfo
== NULL
)
1537 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1540 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
1541 if (nTool
== -1) return 0;
1543 if (infoPtr
->tools
[nTool
].lpszText
== NULL
)
1546 strcpyW (lpToolInfo
->lpszText
, infoPtr
->tools
[nTool
].lpszText
);
1552 static inline LRESULT
1553 TOOLTIPS_GetTipBkColor (const TOOLTIPS_INFO
*infoPtr
)
1555 return infoPtr
->clrBk
;
1559 static inline LRESULT
1560 TOOLTIPS_GetTipTextColor (const TOOLTIPS_INFO
*infoPtr
)
1562 return infoPtr
->clrText
;
1566 static inline LRESULT
1567 TOOLTIPS_GetToolCount (const TOOLTIPS_INFO
*infoPtr
)
1569 return infoPtr
->uNumTools
;
1574 TOOLTIPS_GetToolInfoA (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1576 TTTOOL_INFO
*toolPtr
;
1579 if (lpToolInfo
== NULL
)
1581 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1583 if (infoPtr
->uNumTools
== 0)
1586 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
1590 TRACE("tool %d\n", nTool
);
1592 toolPtr
= &infoPtr
->tools
[nTool
];
1594 /* copy tool data */
1595 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1596 lpToolInfo
->rect
= toolPtr
->rect
;
1597 lpToolInfo
->hinst
= toolPtr
->hinst
;
1598 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1599 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1601 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOA
))
1602 lpToolInfo
->lParam
= toolPtr
->lParam
;
1609 TOOLTIPS_GetToolInfoW (const TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
1611 TTTOOL_INFO
*toolPtr
;
1614 if (lpToolInfo
== NULL
)
1616 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1618 if (infoPtr
->uNumTools
== 0)
1621 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
1625 TRACE("tool %d\n", nTool
);
1627 toolPtr
= &infoPtr
->tools
[nTool
];
1629 /* copy tool data */
1630 lpToolInfo
->uFlags
= toolPtr
->uFlags
;
1631 lpToolInfo
->rect
= toolPtr
->rect
;
1632 lpToolInfo
->hinst
= toolPtr
->hinst
;
1633 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1634 lpToolInfo
->lpszText
= NULL
; /* FIXME */
1636 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOW
))
1637 lpToolInfo
->lParam
= toolPtr
->lParam
;
1644 TOOLTIPS_HitTestA (const TOOLTIPS_INFO
*infoPtr
, LPTTHITTESTINFOA lptthit
)
1646 TTTOOL_INFO
*toolPtr
;
1652 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, lptthit
->hwnd
, &lptthit
->pt
);
1656 TRACE("tool %d!\n", nTool
);
1658 /* copy tool data */
1659 if (lptthit
->ti
.cbSize
>= sizeof(TTTOOLINFOA
)) {
1660 toolPtr
= &infoPtr
->tools
[nTool
];
1662 lptthit
->ti
.uFlags
= toolPtr
->uFlags
;
1663 lptthit
->ti
.hwnd
= toolPtr
->hwnd
;
1664 lptthit
->ti
.uId
= toolPtr
->uId
;
1665 lptthit
->ti
.rect
= toolPtr
->rect
;
1666 lptthit
->ti
.hinst
= toolPtr
->hinst
;
1667 /* lptthit->ti.lpszText = toolPtr->lpszText; */
1668 lptthit
->ti
.lpszText
= NULL
; /* FIXME */
1669 lptthit
->ti
.lParam
= toolPtr
->lParam
;
1677 TOOLTIPS_HitTestW (const TOOLTIPS_INFO
*infoPtr
, LPTTHITTESTINFOW lptthit
)
1679 TTTOOL_INFO
*toolPtr
;
1685 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, lptthit
->hwnd
, &lptthit
->pt
);
1689 TRACE("tool %d!\n", nTool
);
1691 /* copy tool data */
1692 if (lptthit
->ti
.cbSize
>= sizeof(TTTOOLINFOW
)) {
1693 toolPtr
= &infoPtr
->tools
[nTool
];
1695 lptthit
->ti
.uFlags
= toolPtr
->uFlags
;
1696 lptthit
->ti
.hwnd
= toolPtr
->hwnd
;
1697 lptthit
->ti
.uId
= toolPtr
->uId
;
1698 lptthit
->ti
.rect
= toolPtr
->rect
;
1699 lptthit
->ti
.hinst
= toolPtr
->hinst
;
1700 /* lptthit->ti.lpszText = toolPtr->lpszText; */
1701 lptthit
->ti
.lpszText
= NULL
; /* FIXME */
1702 lptthit
->ti
.lParam
= toolPtr
->lParam
;
1710 TOOLTIPS_NewToolRectA (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpti
)
1716 if (lpti
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1719 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpti
);
1721 TRACE("nTool = %d, rect = %s\n", nTool
, wine_dbgstr_rect(&lpti
->rect
));
1723 if (nTool
== -1) return 0;
1725 infoPtr
->tools
[nTool
].rect
= lpti
->rect
;
1732 TOOLTIPS_NewToolRectW (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpti
)
1738 if (lpti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1741 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpti
);
1743 TRACE("nTool = %d, rect = %s\n", nTool
, wine_dbgstr_rect(&lpti
->rect
));
1745 if (nTool
== -1) return 0;
1747 infoPtr
->tools
[nTool
].rect
= lpti
->rect
;
1753 static inline LRESULT
1754 TOOLTIPS_Pop (TOOLTIPS_INFO
*infoPtr
)
1756 TOOLTIPS_Hide (infoPtr
);
1763 TOOLTIPS_RelayEvent (TOOLTIPS_INFO
*infoPtr
, LPMSG lpMsg
)
1769 ERR("lpMsg == NULL!\n");
1773 switch (lpMsg
->message
) {
1774 case WM_LBUTTONDOWN
:
1776 case WM_MBUTTONDOWN
:
1778 case WM_RBUTTONDOWN
:
1780 TOOLTIPS_Hide (infoPtr
);
1784 pt
.x
= (short)LOWORD(lpMsg
->lParam
);
1785 pt
.y
= (short)HIWORD(lpMsg
->lParam
);
1786 nOldTool
= infoPtr
->nTool
;
1787 infoPtr
->nTool
= TOOLTIPS_GetToolFromPoint(infoPtr
, lpMsg
->hwnd
,
1789 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
1790 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
1791 TRACE("WM_MOUSEMOVE (%p %d %d)\n", infoPtr
->hwndSelf
, pt
.x
, pt
.y
);
1793 if (infoPtr
->nTool
!= nOldTool
) {
1794 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
1795 TOOLTIPS_Hide(infoPtr
);
1796 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1797 } else if (nOldTool
== -1) { /* Moved from outside */
1798 if(infoPtr
->bActive
) {
1799 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1800 TRACE("timer 1 started!\n");
1802 } else { /* Moved from one to another */
1803 TOOLTIPS_Hide (infoPtr
);
1804 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1805 if(infoPtr
->bActive
) {
1806 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
1807 TRACE("timer 1 started!\n");
1810 } else if(infoPtr
->nCurrentTool
!= -1) { /* restart autopop */
1811 KillTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
);
1812 SetTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
1813 TRACE("timer 2 restarted\n");
1814 } else if(infoPtr
->nTool
!= -1 && infoPtr
->bActive
) {
1815 /* previous show attempt didn't result in tooltip so try again */
1816 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1817 TRACE("timer 1 started!\n");
1827 TOOLTIPS_SetDelayTime (TOOLTIPS_INFO
*infoPtr
, DWORD duration
, INT nTime
)
1830 case TTDT_AUTOMATIC
:
1832 nTime
= GetDoubleClickTime();
1833 infoPtr
->nReshowTime
= nTime
/ 5;
1834 infoPtr
->nAutoPopTime
= nTime
* 10;
1835 infoPtr
->nInitialTime
= nTime
;
1840 nTime
= GetDoubleClickTime() / 5;
1841 infoPtr
->nReshowTime
= nTime
;
1846 nTime
= GetDoubleClickTime() * 10;
1847 infoPtr
->nAutoPopTime
= nTime
;
1852 nTime
= GetDoubleClickTime();
1853 infoPtr
->nInitialTime
= nTime
;
1857 WARN("Invalid duration flag %x\n", duration
);
1866 TOOLTIPS_SetMargin (TOOLTIPS_INFO
*infoPtr
, LPRECT lpRect
)
1868 infoPtr
->rcMargin
.left
= lpRect
->left
;
1869 infoPtr
->rcMargin
.right
= lpRect
->right
;
1870 infoPtr
->rcMargin
.bottom
= lpRect
->bottom
;
1871 infoPtr
->rcMargin
.top
= lpRect
->top
;
1877 static inline LRESULT
1878 TOOLTIPS_SetMaxTipWidth (TOOLTIPS_INFO
*infoPtr
, INT MaxWidth
)
1880 INT nTemp
= infoPtr
->nMaxTipWidth
;
1882 infoPtr
->nMaxTipWidth
= MaxWidth
;
1888 static inline LRESULT
1889 TOOLTIPS_SetTipBkColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrBk
)
1891 infoPtr
->clrBk
= clrBk
;
1897 static inline LRESULT
1898 TOOLTIPS_SetTipTextColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrText
)
1900 infoPtr
->clrText
= clrText
;
1907 TOOLTIPS_SetTitleA (TOOLTIPS_INFO
*infoPtr
, UINT_PTR uTitleIcon
, LPCSTR pszTitle
)
1911 TRACE("hwnd = %p, title = %s, icon = %p\n", infoPtr
->hwndSelf
, debugstr_a(pszTitle
),
1914 Free(infoPtr
->pszTitle
);
1918 size
= sizeof(WCHAR
)*MultiByteToWideChar(CP_ACP
, 0, pszTitle
, -1, NULL
, 0);
1919 infoPtr
->pszTitle
= Alloc(size
);
1920 if (!infoPtr
->pszTitle
)
1922 MultiByteToWideChar(CP_ACP
, 0, pszTitle
, -1, infoPtr
->pszTitle
, size
/sizeof(WCHAR
));
1925 infoPtr
->pszTitle
= NULL
;
1927 if (uTitleIcon
<= TTI_ERROR
)
1928 infoPtr
->hTitleIcon
= hTooltipIcons
[uTitleIcon
];
1930 infoPtr
->hTitleIcon
= CopyIcon((HICON
)uTitleIcon
);
1937 TOOLTIPS_SetTitleW (TOOLTIPS_INFO
*infoPtr
, UINT_PTR uTitleIcon
, LPCWSTR pszTitle
)
1941 TRACE("hwnd = %p, title = %s, icon = %p\n", infoPtr
->hwndSelf
, debugstr_w(pszTitle
),
1944 Free(infoPtr
->pszTitle
);
1948 size
= (strlenW(pszTitle
)+1)*sizeof(WCHAR
);
1949 infoPtr
->pszTitle
= Alloc(size
);
1950 if (!infoPtr
->pszTitle
)
1952 memcpy(infoPtr
->pszTitle
, pszTitle
, size
);
1955 infoPtr
->pszTitle
= NULL
;
1957 if (uTitleIcon
<= TTI_ERROR
)
1958 infoPtr
->hTitleIcon
= hTooltipIcons
[uTitleIcon
];
1960 infoPtr
->hTitleIcon
= CopyIcon((HICON
)uTitleIcon
);
1962 TRACE("icon = %p\n", infoPtr
->hTitleIcon
);
1969 TOOLTIPS_SetToolInfoA (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
1971 TTTOOL_INFO
*toolPtr
;
1974 if (lpToolInfo
== NULL
)
1976 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1979 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
1980 if (nTool
== -1) return 0;
1982 TRACE("tool %d\n", nTool
);
1984 toolPtr
= &infoPtr
->tools
[nTool
];
1986 /* copy tool data */
1987 toolPtr
->uFlags
= lpToolInfo
->uFlags
;
1988 toolPtr
->hwnd
= lpToolInfo
->hwnd
;
1989 toolPtr
->uId
= lpToolInfo
->uId
;
1990 toolPtr
->rect
= lpToolInfo
->rect
;
1991 toolPtr
->hinst
= lpToolInfo
->hinst
;
1993 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)) {
1994 TRACE("set string id %x\n", LOWORD(lpToolInfo
->lpszText
));
1995 toolPtr
->lpszText
= (LPWSTR
)lpToolInfo
->lpszText
;
1997 else if (lpToolInfo
->lpszText
) {
1998 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKA
)
1999 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
2001 if ( (toolPtr
->lpszText
) &&
2002 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
2003 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
2004 Free (toolPtr
->lpszText
);
2005 toolPtr
->lpszText
= NULL
;
2007 if (lpToolInfo
->lpszText
) {
2008 INT len
= MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
,
2010 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
2011 MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
, -1,
2012 toolPtr
->lpszText
, len
);
2017 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOA
))
2018 toolPtr
->lParam
= lpToolInfo
->lParam
;
2025 TOOLTIPS_SetToolInfoW (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
2027 TTTOOL_INFO
*toolPtr
;
2030 if (lpToolInfo
== NULL
)
2032 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
2035 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
2036 if (nTool
== -1) return 0;
2038 TRACE("tool %d\n", nTool
);
2040 toolPtr
= &infoPtr
->tools
[nTool
];
2042 /* copy tool data */
2043 toolPtr
->uFlags
= lpToolInfo
->uFlags
;
2044 toolPtr
->hwnd
= lpToolInfo
->hwnd
;
2045 toolPtr
->uId
= lpToolInfo
->uId
;
2046 toolPtr
->rect
= lpToolInfo
->rect
;
2047 toolPtr
->hinst
= lpToolInfo
->hinst
;
2049 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)) {
2050 TRACE("set string id %x!\n", LOWORD(lpToolInfo
->lpszText
));
2051 toolPtr
->lpszText
= lpToolInfo
->lpszText
;
2054 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKW
)
2055 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
2057 if ( (toolPtr
->lpszText
) &&
2058 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
2059 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
2060 Free (toolPtr
->lpszText
);
2061 toolPtr
->lpszText
= NULL
;
2063 if (lpToolInfo
->lpszText
) {
2064 INT len
= lstrlenW (lpToolInfo
->lpszText
);
2065 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
2066 strcpyW (toolPtr
->lpszText
, lpToolInfo
->lpszText
);
2071 if (lpToolInfo
->cbSize
>= sizeof(TTTOOLINFOW
))
2072 toolPtr
->lParam
= lpToolInfo
->lParam
;
2074 if (infoPtr
->nCurrentTool
== nTool
)
2076 TOOLTIPS_GetTipText (infoPtr
, infoPtr
->nCurrentTool
);
2078 if (infoPtr
->szTipText
[0] == 0)
2079 TOOLTIPS_Hide(infoPtr
);
2081 TOOLTIPS_Show (infoPtr
, FALSE
);
2089 TOOLTIPS_TrackActivate (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
, LPTTTOOLINFOA lpToolInfo
)
2091 if (track_activate
) {
2093 if (lpToolInfo
== NULL
)
2095 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
2099 infoPtr
->nTrackTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
2100 if (infoPtr
->nTrackTool
!= -1) {
2101 TRACE("activated!\n");
2102 infoPtr
->bTrackActive
= TRUE
;
2103 TOOLTIPS_TrackShow (infoPtr
);
2108 TOOLTIPS_TrackHide (infoPtr
);
2110 infoPtr
->bTrackActive
= FALSE
;
2111 infoPtr
->nTrackTool
= -1;
2113 TRACE("deactivated!\n");
2121 TOOLTIPS_TrackPosition (TOOLTIPS_INFO
*infoPtr
, LPARAM coord
)
2123 infoPtr
->xTrackPos
= (INT
)LOWORD(coord
);
2124 infoPtr
->yTrackPos
= (INT
)HIWORD(coord
);
2126 if (infoPtr
->bTrackActive
) {
2128 infoPtr
->xTrackPos
, infoPtr
->yTrackPos
);
2130 TOOLTIPS_TrackShow (infoPtr
);
2138 TOOLTIPS_Update (TOOLTIPS_INFO
*infoPtr
)
2140 if (infoPtr
->nCurrentTool
!= -1)
2141 UpdateWindow (infoPtr
->hwndSelf
);
2148 TOOLTIPS_UpdateTipTextA (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOA lpToolInfo
)
2150 TTTOOL_INFO
*toolPtr
;
2153 if (lpToolInfo
== NULL
)
2155 if (lpToolInfo
->cbSize
< TTTOOLINFOA_V1_SIZE
)
2158 nTool
= TOOLTIPS_GetToolFromInfoA (infoPtr
, lpToolInfo
);
2159 if (nTool
== -1) return 0;
2161 TRACE("tool %d\n", nTool
);
2163 toolPtr
= &infoPtr
->tools
[nTool
];
2165 /* copy tool text */
2166 toolPtr
->hinst
= lpToolInfo
->hinst
;
2168 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)){
2169 toolPtr
->lpszText
= (LPWSTR
)lpToolInfo
->lpszText
;
2171 else if (lpToolInfo
->lpszText
) {
2172 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKA
)
2173 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
2175 if ( (toolPtr
->lpszText
) &&
2176 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
2177 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
2178 Free (toolPtr
->lpszText
);
2179 toolPtr
->lpszText
= NULL
;
2181 if (lpToolInfo
->lpszText
) {
2182 INT len
= MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
,
2184 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
2185 MultiByteToWideChar(CP_ACP
, 0, lpToolInfo
->lpszText
, -1,
2186 toolPtr
->lpszText
, len
);
2191 if(infoPtr
->nCurrentTool
== -1) return 0;
2193 if (infoPtr
->bActive
)
2194 TOOLTIPS_Show (infoPtr
, FALSE
);
2195 else if (infoPtr
->bTrackActive
)
2196 TOOLTIPS_TrackShow (infoPtr
);
2203 TOOLTIPS_UpdateTipTextW (TOOLTIPS_INFO
*infoPtr
, LPTTTOOLINFOW lpToolInfo
)
2205 TTTOOL_INFO
*toolPtr
;
2208 if (lpToolInfo
== NULL
)
2210 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
2213 nTool
= TOOLTIPS_GetToolFromInfoW (infoPtr
, lpToolInfo
);
2217 TRACE("tool %d\n", nTool
);
2219 toolPtr
= &infoPtr
->tools
[nTool
];
2221 /* copy tool text */
2222 toolPtr
->hinst
= lpToolInfo
->hinst
;
2224 if (IS_INTRESOURCE(lpToolInfo
->lpszText
)){
2225 toolPtr
->lpszText
= lpToolInfo
->lpszText
;
2227 else if (lpToolInfo
->lpszText
) {
2228 if (lpToolInfo
->lpszText
== LPSTR_TEXTCALLBACKW
)
2229 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
2231 if ( (toolPtr
->lpszText
) &&
2232 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
2233 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
2234 Free (toolPtr
->lpszText
);
2235 toolPtr
->lpszText
= NULL
;
2237 if (lpToolInfo
->lpszText
) {
2238 INT len
= lstrlenW (lpToolInfo
->lpszText
);
2239 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
2240 strcpyW (toolPtr
->lpszText
, lpToolInfo
->lpszText
);
2245 if(infoPtr
->nCurrentTool
== -1) return 0;
2247 if (infoPtr
->bActive
)
2248 TOOLTIPS_Show (infoPtr
, FALSE
);
2249 else if (infoPtr
->bTrackActive
)
2250 TOOLTIPS_Show (infoPtr
, TRUE
);
2257 TOOLTIPS_WindowFromPoint (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
2259 return (LRESULT
)WindowFromPoint (*((LPPOINT
)lParam
));
2265 TOOLTIPS_Create (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
2267 TOOLTIPS_INFO
*infoPtr
;
2269 /* allocate memory for info structure */
2270 infoPtr
= Alloc (sizeof(TOOLTIPS_INFO
));
2271 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
2273 /* initialize info structure */
2274 infoPtr
->bActive
= TRUE
;
2275 infoPtr
->bTrackActive
= FALSE
;
2277 infoPtr
->nMaxTipWidth
= -1;
2278 infoPtr
->nTool
= -1;
2279 infoPtr
->nCurrentTool
= -1;
2280 infoPtr
->nTrackTool
= -1;
2281 infoPtr
->hwndSelf
= hwnd
;
2283 /* initialize colours and fonts */
2284 TOOLTIPS_InitSystemSettings(infoPtr
);
2286 TOOLTIPS_SetDelayTime(infoPtr
, TTDT_AUTOMATIC
, 0);
2288 SetWindowPos (hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
2295 TOOLTIPS_Destroy (TOOLTIPS_INFO
*infoPtr
)
2297 TTTOOL_INFO
*toolPtr
;
2301 if (infoPtr
->tools
) {
2302 for (i
= 0; i
< infoPtr
->uNumTools
; i
++) {
2303 toolPtr
= &infoPtr
->tools
[i
];
2304 if (toolPtr
->lpszText
) {
2305 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
2306 !IS_INTRESOURCE(toolPtr
->lpszText
) )
2308 Free (toolPtr
->lpszText
);
2309 toolPtr
->lpszText
= NULL
;
2313 /* remove subclassing */
2314 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
2315 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
2316 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
2319 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
2323 Free (infoPtr
->tools
);
2326 /* free title string */
2327 Free (infoPtr
->pszTitle
);
2328 /* free title icon if not a standard one */
2329 if (TOOLTIPS_GetTitleIconIndex(infoPtr
->hTitleIcon
) > TTI_ERROR
)
2330 DeleteObject(infoPtr
->hTitleIcon
);
2333 DeleteObject (infoPtr
->hFont
);
2334 DeleteObject (infoPtr
->hTitleFont
);
2336 /* free tool tips info data */
2337 SetWindowLongPtrW(infoPtr
->hwndSelf
, 0, 0);
2344 static inline LRESULT
2345 TOOLTIPS_GetFont (const TOOLTIPS_INFO
*infoPtr
)
2347 return (LRESULT
)infoPtr
->hFont
;
2352 TOOLTIPS_MouseMessage (TOOLTIPS_INFO
*infoPtr
)
2354 TOOLTIPS_Hide (infoPtr
);
2361 TOOLTIPS_NCCreate (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
2363 DWORD dwStyle
= GetWindowLongW (hwnd
, GWL_STYLE
);
2364 DWORD dwExStyle
= GetWindowLongW (hwnd
, GWL_EXSTYLE
);
2366 dwStyle
&= ~(WS_CHILD
| /*WS_MAXIMIZE |*/ WS_BORDER
| WS_DLGFRAME
);
2367 dwStyle
|= (WS_POPUP
| WS_BORDER
| WS_CLIPSIBLINGS
);
2369 /* WS_BORDER only draws a border round the window rect, not the
2370 * window region, therefore it is useless to us in balloon mode */
2371 if (dwStyle
& TTS_BALLOON
) dwStyle
&= ~WS_BORDER
;
2373 SetWindowLongW (hwnd
, GWL_STYLE
, dwStyle
);
2375 dwExStyle
|= WS_EX_TOOLWINDOW
;
2376 SetWindowLongW (hwnd
, GWL_EXSTYLE
, dwExStyle
);
2383 TOOLTIPS_NCHitTest (const TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
2385 INT nTool
= (infoPtr
->bTrackActive
) ? infoPtr
->nTrackTool
: infoPtr
->nTool
;
2387 TRACE(" nTool=%d\n", nTool
);
2389 if ((nTool
> -1) && (nTool
< infoPtr
->uNumTools
)) {
2390 if (infoPtr
->tools
[nTool
].uFlags
& TTF_TRANSPARENT
) {
2391 TRACE("-- in transparent mode!\n");
2392 return HTTRANSPARENT
;
2396 return DefWindowProcW (infoPtr
->hwndSelf
, WM_NCHITTEST
, wParam
, lParam
);
2401 TOOLTIPS_NotifyFormat (TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
2403 FIXME ("hwnd=%p wParam=%lx lParam=%lx\n", infoPtr
->hwndSelf
, wParam
, lParam
);
2410 TOOLTIPS_Paint (const TOOLTIPS_INFO
*infoPtr
, HDC hDC
)
2415 hdc
= (hDC
== NULL
) ? BeginPaint (infoPtr
->hwndSelf
, &ps
) : hDC
;
2416 TOOLTIPS_Refresh (infoPtr
, hdc
);
2418 EndPaint (infoPtr
->hwndSelf
, &ps
);
2424 TOOLTIPS_SetFont (TOOLTIPS_INFO
*infoPtr
, HFONT hFont
, BOOL redraw
)
2428 if(!GetObjectW(hFont
, sizeof(lf
), &lf
))
2431 DeleteObject (infoPtr
->hFont
);
2432 infoPtr
->hFont
= CreateFontIndirectW(&lf
);
2434 DeleteObject (infoPtr
->hTitleFont
);
2435 lf
.lfWeight
= FW_BOLD
;
2436 infoPtr
->hTitleFont
= CreateFontIndirectW(&lf
);
2438 if (redraw
& (infoPtr
->nCurrentTool
!= -1)) {
2439 FIXME("full redraw needed!\n");
2445 /******************************************************************
2446 * TOOLTIPS_GetTextLength
2448 * This function is called when the tooltip receive a
2449 * WM_GETTEXTLENGTH message.
2451 * returns the length, in characters, of the tip text
2453 static inline LRESULT
2454 TOOLTIPS_GetTextLength(const TOOLTIPS_INFO
*infoPtr
)
2456 return strlenW(infoPtr
->szTipText
);
2459 /******************************************************************
2460 * TOOLTIPS_OnWMGetText
2462 * This function is called when the tooltip receive a
2463 * WM_GETTEXT message.
2464 * wParam : specifies the maximum number of characters to be copied
2465 * lParam : is the pointer to the buffer that will receive
2468 * returns the number of characters copied
2471 TOOLTIPS_OnWMGetText (const TOOLTIPS_INFO
*infoPtr
, WPARAM size
, LPWSTR pszText
)
2475 if(!infoPtr
->szTipText
|| !size
)
2478 res
= min(strlenW(infoPtr
->szTipText
)+1, size
);
2479 memcpy(pszText
, infoPtr
->szTipText
, res
*sizeof(WCHAR
));
2480 pszText
[res
-1] = '\0';
2485 TOOLTIPS_Timer (TOOLTIPS_INFO
*infoPtr
, INT iTimer
)
2489 TRACE("timer %d (%p) expired!\n", iTimer
, infoPtr
->hwndSelf
);
2493 KillTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
);
2494 nOldTool
= infoPtr
->nTool
;
2495 if ((infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, TRUE
)) == nOldTool
)
2496 TOOLTIPS_Show (infoPtr
, FALSE
);
2500 TOOLTIPS_Hide (infoPtr
);
2504 nOldTool
= infoPtr
->nTool
;
2505 infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, FALSE
);
2506 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
2507 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
2508 if (infoPtr
->nTool
!= nOldTool
) {
2509 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
2510 TOOLTIPS_Hide(infoPtr
);
2511 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2512 } else if (nOldTool
== -1) { /* Moved from outside */
2513 ERR("How did this happen?\n");
2514 } else { /* Moved from one to another */
2515 TOOLTIPS_Hide (infoPtr
);
2516 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2517 if(infoPtr
->bActive
) {
2518 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
2519 TRACE("timer 1 started!\n");
2526 ERR("Unknown timer id %d\n", iTimer
);
2534 TOOLTIPS_WinIniChange (TOOLTIPS_INFO
*infoPtr
)
2536 TOOLTIPS_InitSystemSettings (infoPtr
);
2542 static LRESULT CALLBACK
2543 TOOLTIPS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uID
, DWORD_PTR dwRef
)
2545 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr ((HWND
)dwRef
);
2550 case WM_LBUTTONDOWN
:
2552 case WM_MBUTTONDOWN
:
2554 case WM_RBUTTONDOWN
:
2558 msg
.wParam
= wParam
;
2559 msg
.lParam
= lParam
;
2560 TOOLTIPS_RelayEvent(infoPtr
, &msg
);
2566 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
2570 static LRESULT CALLBACK
2571 TOOLTIPS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
2573 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr (hwnd
);
2575 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd
, uMsg
, wParam
, lParam
);
2576 if (!infoPtr
&& (uMsg
!= WM_CREATE
) && (uMsg
!= WM_NCCREATE
))
2577 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2581 return TOOLTIPS_Activate (infoPtr
, (BOOL
)wParam
);
2584 return TOOLTIPS_AddToolA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2587 return TOOLTIPS_AddToolW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2590 return TOOLTIPS_DelToolA (infoPtr
, (LPTOOLINFOA
)lParam
);
2593 return TOOLTIPS_DelToolW (infoPtr
, (LPTOOLINFOW
)lParam
);
2595 case TTM_ENUMTOOLSA
:
2596 return TOOLTIPS_EnumToolsA (infoPtr
, (UINT
)wParam
, (LPTTTOOLINFOA
)lParam
);
2598 case TTM_ENUMTOOLSW
:
2599 return TOOLTIPS_EnumToolsW (infoPtr
, (UINT
)wParam
, (LPTTTOOLINFOW
)lParam
);
2601 case TTM_GETBUBBLESIZE
:
2602 return TOOLTIPS_GetBubbleSize (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2604 case TTM_GETCURRENTTOOLA
:
2605 return TOOLTIPS_GetCurrentToolA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2607 case TTM_GETCURRENTTOOLW
:
2608 return TOOLTIPS_GetCurrentToolW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2610 case TTM_GETDELAYTIME
:
2611 return TOOLTIPS_GetDelayTime (infoPtr
, (DWORD
)wParam
);
2614 return TOOLTIPS_GetMargin (infoPtr
, (LPRECT
)lParam
);
2616 case TTM_GETMAXTIPWIDTH
:
2617 return TOOLTIPS_GetMaxTipWidth (infoPtr
);
2620 return TOOLTIPS_GetTextA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2623 return TOOLTIPS_GetTextW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2625 case TTM_GETTIPBKCOLOR
:
2626 return TOOLTIPS_GetTipBkColor (infoPtr
);
2628 case TTM_GETTIPTEXTCOLOR
:
2629 return TOOLTIPS_GetTipTextColor (infoPtr
);
2631 case TTM_GETTOOLCOUNT
:
2632 return TOOLTIPS_GetToolCount (infoPtr
);
2634 case TTM_GETTOOLINFOA
:
2635 return TOOLTIPS_GetToolInfoA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2637 case TTM_GETTOOLINFOW
:
2638 return TOOLTIPS_GetToolInfoW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2641 return TOOLTIPS_HitTestA (infoPtr
, (LPTTHITTESTINFOA
)lParam
);
2644 return TOOLTIPS_HitTestW (infoPtr
, (LPTTHITTESTINFOW
)lParam
);
2646 case TTM_NEWTOOLRECTA
:
2647 return TOOLTIPS_NewToolRectA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2649 case TTM_NEWTOOLRECTW
:
2650 return TOOLTIPS_NewToolRectW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2653 return TOOLTIPS_Pop (infoPtr
);
2655 case TTM_RELAYEVENT
:
2656 return TOOLTIPS_RelayEvent (infoPtr
, (LPMSG
)lParam
);
2658 case TTM_SETDELAYTIME
:
2659 return TOOLTIPS_SetDelayTime (infoPtr
, (DWORD
)wParam
, (INT
)LOWORD(lParam
));
2662 return TOOLTIPS_SetMargin (infoPtr
, (LPRECT
)lParam
);
2664 case TTM_SETMAXTIPWIDTH
:
2665 return TOOLTIPS_SetMaxTipWidth (infoPtr
, (INT
)lParam
);
2667 case TTM_SETTIPBKCOLOR
:
2668 return TOOLTIPS_SetTipBkColor (infoPtr
, (COLORREF
)wParam
);
2670 case TTM_SETTIPTEXTCOLOR
:
2671 return TOOLTIPS_SetTipTextColor (infoPtr
, (COLORREF
)wParam
);
2674 return TOOLTIPS_SetTitleA (infoPtr
, (UINT_PTR
)wParam
, (LPCSTR
)lParam
);
2677 return TOOLTIPS_SetTitleW (infoPtr
, (UINT_PTR
)wParam
, (LPCWSTR
)lParam
);
2679 case TTM_SETTOOLINFOA
:
2680 return TOOLTIPS_SetToolInfoA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2682 case TTM_SETTOOLINFOW
:
2683 return TOOLTIPS_SetToolInfoW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2685 case TTM_TRACKACTIVATE
:
2686 return TOOLTIPS_TrackActivate (infoPtr
, (BOOL
)wParam
, (LPTTTOOLINFOA
)lParam
);
2688 case TTM_TRACKPOSITION
:
2689 return TOOLTIPS_TrackPosition (infoPtr
, lParam
);
2692 return TOOLTIPS_Update (infoPtr
);
2694 case TTM_UPDATETIPTEXTA
:
2695 return TOOLTIPS_UpdateTipTextA (infoPtr
, (LPTTTOOLINFOA
)lParam
);
2697 case TTM_UPDATETIPTEXTW
:
2698 return TOOLTIPS_UpdateTipTextW (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2700 case TTM_WINDOWFROMPOINT
:
2701 return TOOLTIPS_WindowFromPoint (hwnd
, wParam
, lParam
);
2705 return TOOLTIPS_Create (hwnd
, (LPCREATESTRUCTW
)lParam
);
2708 return TOOLTIPS_Destroy (infoPtr
);
2711 /* we draw the background in WM_PAINT */
2715 return TOOLTIPS_GetFont (infoPtr
);
2718 return TOOLTIPS_OnWMGetText (infoPtr
, wParam
, (LPWSTR
)lParam
);
2720 case WM_GETTEXTLENGTH
:
2721 return TOOLTIPS_GetTextLength (infoPtr
);
2723 case WM_LBUTTONDOWN
:
2725 case WM_MBUTTONDOWN
:
2727 case WM_RBUTTONDOWN
:
2730 return TOOLTIPS_MouseMessage (infoPtr
);
2733 return TOOLTIPS_NCCreate (hwnd
, (LPCREATESTRUCTW
)lParam
);
2736 return TOOLTIPS_NCHitTest (infoPtr
, wParam
, lParam
);
2738 case WM_NOTIFYFORMAT
:
2739 return TOOLTIPS_NotifyFormat (infoPtr
, wParam
, lParam
);
2741 case WM_PRINTCLIENT
:
2743 return TOOLTIPS_Paint (infoPtr
, (HDC
)wParam
);
2746 return TOOLTIPS_SetFont (infoPtr
, (HFONT
)wParam
, LOWORD(lParam
));
2748 case WM_SYSCOLORCHANGE
:
2749 COMCTL32_RefreshSysColors();
2753 return TOOLTIPS_Timer (infoPtr
, (INT
)wParam
);
2755 case WM_WININICHANGE
:
2756 return TOOLTIPS_WinIniChange (infoPtr
);
2759 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
2760 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
2761 uMsg
, wParam
, lParam
);
2762 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2768 TOOLTIPS_Register (void)
2772 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2773 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_SAVEBITS
;
2774 wndClass
.lpfnWndProc
= TOOLTIPS_WindowProc
;
2775 wndClass
.cbClsExtra
= 0;
2776 wndClass
.cbWndExtra
= sizeof(TOOLTIPS_INFO
*);
2777 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
2778 wndClass
.hbrBackground
= 0;
2779 wndClass
.lpszClassName
= TOOLTIPS_CLASSW
;
2781 RegisterClassW (&wndClass
);
2783 hTooltipIcons
[TTI_NONE
] = NULL
;
2784 hTooltipIcons
[TTI_INFO
] = LoadImageW(COMCTL32_hModule
,
2785 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_INFO_SM
), IMAGE_ICON
, 0, 0, 0);
2786 hTooltipIcons
[TTI_WARNING
] = LoadImageW(COMCTL32_hModule
,
2787 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_WARN_SM
), IMAGE_ICON
, 0, 0, 0);
2788 hTooltipIcons
[TTI_ERROR
] = LoadImageW(COMCTL32_hModule
,
2789 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_ERROR_SM
), IMAGE_ICON
, 0, 0, 0);
2794 TOOLTIPS_Unregister (void)
2797 for (i
= TTI_INFO
; i
<= TTI_ERROR
; i
++)
2798 DestroyIcon(hTooltipIcons
[i
]);
2799 UnregisterClassW (TOOLTIPS_CLASSW
, NULL
);