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 BOOL
TOOLTIPS_IsCallbackString(LPCWSTR str
, BOOL isW
)
181 return str
== LPSTR_TEXTCALLBACKW
;
183 return (LPCSTR
)str
== LPSTR_TEXTCALLBACKA
;
186 static inline UINT_PTR
187 TOOLTIPS_GetTitleIconIndex(HICON hIcon
)
190 for (i
= 0; i
<= TTI_ERROR
; i
++)
191 if (hTooltipIcons
[i
] == hIcon
)
193 return (UINT_PTR
)hIcon
;
197 TOOLTIPS_InitSystemSettings (TOOLTIPS_INFO
*infoPtr
)
199 NONCLIENTMETRICSW nclm
;
201 infoPtr
->clrBk
= comctl32_color
.clrInfoBk
;
202 infoPtr
->clrText
= comctl32_color
.clrInfoText
;
204 DeleteObject (infoPtr
->hFont
);
205 nclm
.cbSize
= sizeof(nclm
);
206 SystemParametersInfoW (SPI_GETNONCLIENTMETRICS
, sizeof(nclm
), &nclm
, 0);
207 infoPtr
->hFont
= CreateFontIndirectW (&nclm
.lfStatusFont
);
209 DeleteObject (infoPtr
->hTitleFont
);
210 nclm
.lfStatusFont
.lfWeight
= FW_BOLD
;
211 infoPtr
->hTitleFont
= CreateFontIndirectW (&nclm
.lfStatusFont
);
214 /* Custom draw routines */
216 TOOLTIPS_customdraw_fill(const TOOLTIPS_INFO
*infoPtr
, NMTTCUSTOMDRAW
*lpnmttcd
,
217 HDC hdc
, const RECT
*rcBounds
, UINT uFlags
)
219 ZeroMemory(lpnmttcd
, sizeof(NMTTCUSTOMDRAW
));
220 lpnmttcd
->uDrawFlags
= uFlags
;
221 lpnmttcd
->nmcd
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
222 lpnmttcd
->nmcd
.hdr
.code
= NM_CUSTOMDRAW
;
223 if (infoPtr
->nCurrentTool
!= -1) {
224 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
225 lpnmttcd
->nmcd
.hdr
.idFrom
= toolPtr
->uId
;
227 lpnmttcd
->nmcd
.hdc
= hdc
;
228 lpnmttcd
->nmcd
.rc
= *rcBounds
;
229 /* FIXME - dwItemSpec, uItemState, lItemlParam */
233 TOOLTIPS_notify_customdraw (DWORD dwDrawStage
, NMTTCUSTOMDRAW
*lpnmttcd
)
235 LRESULT result
= CDRF_DODEFAULT
;
236 lpnmttcd
->nmcd
.dwDrawStage
= dwDrawStage
;
238 TRACE("Notifying stage %d, flags %x, id %x\n", lpnmttcd
->nmcd
.dwDrawStage
,
239 lpnmttcd
->uDrawFlags
, lpnmttcd
->nmcd
.hdr
.code
);
241 result
= SendMessageW(GetParent(lpnmttcd
->nmcd
.hdr
.hwndFrom
), WM_NOTIFY
,
242 0, (LPARAM
)lpnmttcd
);
244 TRACE("Notify result %x\n", (unsigned int)result
);
250 TOOLTIPS_Refresh (const TOOLTIPS_INFO
*infoPtr
, HDC hdc
)
256 UINT uFlags
= DT_EXTERNALLEADING
;
258 DWORD dwStyle
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
259 NMTTCUSTOMDRAW nmttcd
;
262 if (infoPtr
->nMaxTipWidth
> -1)
263 uFlags
|= DT_WORDBREAK
;
264 if (GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_NOPREFIX
)
265 uFlags
|= DT_NOPREFIX
;
266 GetClientRect (infoPtr
->hwndSelf
, &rc
);
268 hBrush
= CreateSolidBrush(infoPtr
->clrBk
);
270 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
271 SetTextColor (hdc
, infoPtr
->clrText
);
272 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
274 /* Custom draw - Call PrePaint once initial properties set up */
275 /* Note: Contrary to MSDN, CDRF_SKIPDEFAULT still draws a tooltip */
276 TOOLTIPS_customdraw_fill(infoPtr
, &nmttcd
, hdc
, &rc
, uFlags
);
277 cdmode
= TOOLTIPS_notify_customdraw(CDDS_PREPAINT
, &nmttcd
);
278 uFlags
= nmttcd
.uDrawFlags
;
280 if (dwStyle
& TTS_BALLOON
)
282 /* create a region to store result into */
283 hRgn
= CreateRectRgn(0, 0, 0, 0);
285 GetWindowRgn(infoPtr
->hwndSelf
, hRgn
);
287 /* fill the background */
288 FillRgn(hdc
, hRgn
, hBrush
);
289 DeleteObject(hBrush
);
294 /* fill the background */
295 FillRect(hdc
, &rc
, hBrush
);
296 DeleteObject(hBrush
);
300 if ((dwStyle
& TTS_BALLOON
) || infoPtr
->pszTitle
)
302 /* calculate text rectangle */
303 rc
.left
+= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.left
);
304 rc
.top
+= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.top
);
305 rc
.right
-= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.right
);
306 rc
.bottom
-= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.bottom
);
307 if(infoPtr
->bToolBelow
) rc
.top
+= BALLOON_STEMHEIGHT
;
309 if (infoPtr
->pszTitle
)
311 RECT rcTitle
= {rc
.left
, rc
.top
, rc
.right
, rc
.bottom
};
317 icon_present
= infoPtr
->hTitleIcon
&&
318 DrawIconEx(hdc
, rc
.left
, rc
.top
, infoPtr
->hTitleIcon
,
319 ICON_WIDTH
, ICON_HEIGHT
, 0, NULL
, DI_NORMAL
);
321 rcTitle
.left
+= ICON_WIDTH
+ BALLOON_ICON_TITLE_SPACING
;
323 rcTitle
.bottom
= rc
.top
+ ICON_HEIGHT
;
325 /* draw title text */
326 prevFont
= SelectObject (hdc
, infoPtr
->hTitleFont
);
327 height
= DrawTextW(hdc
, infoPtr
->pszTitle
, -1, &rcTitle
, DT_BOTTOM
| DT_SINGLELINE
| DT_NOPREFIX
);
328 SelectObject (hdc
, prevFont
);
329 rc
.top
+= height
+ BALLOON_TITLE_TEXT_SPACING
;
334 /* calculate text rectangle */
335 rc
.left
+= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.left
);
336 rc
.top
+= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.top
);
337 rc
.right
-= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.right
);
338 rc
.bottom
-= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.bottom
);
342 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
344 /* Custom draw - Call PostPaint after drawing */
345 if (cdmode
& CDRF_NOTIFYPOSTPAINT
) {
346 TOOLTIPS_notify_customdraw(CDDS_POSTPAINT
, &nmttcd
);
349 /* be polite and reset the things we changed in the dc */
350 SelectObject (hdc
, hOldFont
);
351 SetBkMode (hdc
, oldBkMode
);
353 if (dwStyle
& TTS_BALLOON
)
355 /* frame region because default window proc doesn't do it */
356 INT width
= GetSystemMetrics(SM_CXDLGFRAME
) - GetSystemMetrics(SM_CXEDGE
);
357 INT height
= GetSystemMetrics(SM_CYDLGFRAME
) - GetSystemMetrics(SM_CYEDGE
);
359 hBrush
= GetSysColorBrush(COLOR_WINDOWFRAME
);
360 FrameRgn(hdc
, hRgn
, hBrush
, width
, height
);
367 static void TOOLTIPS_GetDispInfoA(const TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
, WCHAR
*buffer
)
369 NMTTDISPINFOA ttnmdi
;
371 /* fill NMHDR struct */
372 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOA
));
373 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
374 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
375 ttnmdi
.hdr
.code
= TTN_GETDISPINFOA
; /* == TTN_NEEDTEXTA */
376 ttnmdi
.lpszText
= ttnmdi
.szText
;
377 ttnmdi
.uFlags
= toolPtr
->uFlags
;
378 ttnmdi
.lParam
= toolPtr
->lParam
;
380 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
381 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
383 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
384 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
385 buffer
, INFOTIPSIZE
);
386 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
387 toolPtr
->hinst
= ttnmdi
.hinst
;
388 toolPtr
->lpszText
= (LPWSTR
)ttnmdi
.lpszText
;
391 else if (ttnmdi
.lpszText
== 0) {
394 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKA
) {
395 Str_GetPtrAtoW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
396 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
398 toolPtr
->lpszText
= NULL
;
399 Str_SetPtrW(&toolPtr
->lpszText
, buffer
);
403 ERR("recursive text callback!\n");
407 /* no text available - try calling parent instead as per native */
408 /* FIXME: Unsure if SETITEM should save the value or not */
409 if (buffer
[0] == 0x00) {
411 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
413 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
414 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
415 buffer
, INFOTIPSIZE
);
416 } else if (ttnmdi
.lpszText
&&
417 ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKA
) {
418 Str_GetPtrAtoW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
423 static void TOOLTIPS_GetDispInfoW(const TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
, WCHAR
*buffer
)
425 NMTTDISPINFOW ttnmdi
;
427 /* fill NMHDR struct */
428 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOW
));
429 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
430 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
431 ttnmdi
.hdr
.code
= TTN_GETDISPINFOW
; /* == TTN_NEEDTEXTW */
432 ttnmdi
.lpszText
= ttnmdi
.szText
;
433 ttnmdi
.uFlags
= toolPtr
->uFlags
;
434 ttnmdi
.lParam
= toolPtr
->lParam
;
436 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
437 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
439 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
440 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
441 buffer
, INFOTIPSIZE
);
442 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
443 toolPtr
->hinst
= ttnmdi
.hinst
;
444 toolPtr
->lpszText
= ttnmdi
.lpszText
;
447 else if (ttnmdi
.lpszText
== 0) {
450 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKW
) {
451 Str_GetPtrW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
452 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
454 toolPtr
->lpszText
= NULL
;
455 Str_SetPtrW(&toolPtr
->lpszText
, buffer
);
459 ERR("recursive text callback!\n");
463 /* no text available - try calling parent instead as per native */
464 /* FIXME: Unsure if SETITEM should save the value or not */
465 if (buffer
[0] == 0x00) {
467 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
469 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
470 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
471 buffer
, INFOTIPSIZE
);
472 } else if (ttnmdi
.lpszText
&&
473 ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKW
) {
474 Str_GetPtrW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
481 TOOLTIPS_GetTipText (const TOOLTIPS_INFO
*infoPtr
, INT nTool
, WCHAR
*buffer
)
483 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[nTool
];
485 if (IS_INTRESOURCE(toolPtr
->lpszText
) && toolPtr
->hinst
) {
486 /* load a resource */
487 TRACE("load res string %p %x\n",
488 toolPtr
->hinst
, LOWORD(toolPtr
->lpszText
));
489 LoadStringW (toolPtr
->hinst
, LOWORD(toolPtr
->lpszText
),
490 buffer
, INFOTIPSIZE
);
492 else if (toolPtr
->lpszText
) {
493 if (toolPtr
->lpszText
== LPSTR_TEXTCALLBACKW
) {
494 if (toolPtr
->bNotifyUnicode
)
495 TOOLTIPS_GetDispInfoW(infoPtr
, toolPtr
, buffer
);
497 TOOLTIPS_GetDispInfoA(infoPtr
, toolPtr
, buffer
);
500 /* the item is a usual (unicode) text */
501 lstrcpynW (buffer
, toolPtr
->lpszText
, INFOTIPSIZE
);
505 /* no text available */
509 TRACE("%s\n", debugstr_w(buffer
));
514 TOOLTIPS_CalcTipSize (const TOOLTIPS_INFO
*infoPtr
, LPSIZE lpSize
)
518 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
519 UINT uFlags
= DT_EXTERNALLEADING
| DT_CALCRECT
;
520 RECT rc
= {0, 0, 0, 0};
523 if (infoPtr
->nMaxTipWidth
> -1) {
524 rc
.right
= infoPtr
->nMaxTipWidth
;
525 uFlags
|= DT_WORDBREAK
;
527 if (style
& TTS_NOPREFIX
)
528 uFlags
|= DT_NOPREFIX
;
529 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
531 hdc
= GetDC (infoPtr
->hwndSelf
);
532 if (infoPtr
->pszTitle
)
534 RECT rcTitle
= {0, 0, 0, 0};
535 TRACE("title %s\n", debugstr_w(infoPtr
->pszTitle
));
536 if (infoPtr
->hTitleIcon
)
538 title
.cx
= ICON_WIDTH
;
539 title
.cy
= ICON_HEIGHT
;
541 if (title
.cx
!= 0) title
.cx
+= BALLOON_ICON_TITLE_SPACING
;
542 hOldFont
= SelectObject (hdc
, infoPtr
->hTitleFont
);
543 DrawTextW(hdc
, infoPtr
->pszTitle
, -1, &rcTitle
, DT_SINGLELINE
| DT_NOPREFIX
| DT_CALCRECT
);
544 SelectObject (hdc
, hOldFont
);
545 title
.cy
= max(title
.cy
, rcTitle
.bottom
- rcTitle
.top
) + BALLOON_TITLE_TEXT_SPACING
;
546 title
.cx
+= (rcTitle
.right
- rcTitle
.left
);
548 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
549 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
550 SelectObject (hdc
, hOldFont
);
551 ReleaseDC (infoPtr
->hwndSelf
, hdc
);
553 if ((style
& TTS_BALLOON
) || infoPtr
->pszTitle
)
555 lpSize
->cx
= max(rc
.right
- rc
.left
, title
.cx
) + 2*BALLOON_TEXT_MARGIN
+
556 infoPtr
->rcMargin
.left
+ infoPtr
->rcMargin
.right
;
557 lpSize
->cy
= title
.cy
+ rc
.bottom
- rc
.top
+ 2*BALLOON_TEXT_MARGIN
+
558 infoPtr
->rcMargin
.bottom
+ infoPtr
->rcMargin
.top
+
563 lpSize
->cx
= rc
.right
- rc
.left
+ 2*NORMAL_TEXT_MARGIN
+
564 infoPtr
->rcMargin
.left
+ infoPtr
->rcMargin
.right
;
565 lpSize
->cy
= rc
.bottom
- rc
.top
+ 2*NORMAL_TEXT_MARGIN
+
566 infoPtr
->rcMargin
.bottom
+ infoPtr
->rcMargin
.top
;
572 TOOLTIPS_Show (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
)
574 TTTOOL_INFO
*toolPtr
;
576 MONITORINFO mon_info
;
581 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
586 if (infoPtr
->nTrackTool
== -1)
588 TRACE("invalid tracking tool (-1)!\n");
591 nTool
= infoPtr
->nTrackTool
;
595 if (infoPtr
->nTool
== -1)
597 TRACE("invalid tool (-1)!\n");
600 nTool
= infoPtr
->nTool
;
603 TRACE("Show tooltip pre %d! (%p)\n", nTool
, infoPtr
->hwndSelf
);
605 TOOLTIPS_GetTipText (infoPtr
, nTool
, infoPtr
->szTipText
);
607 if (infoPtr
->szTipText
[0] == '\0')
610 toolPtr
= &infoPtr
->tools
[nTool
];
613 infoPtr
->nCurrentTool
= infoPtr
->nTool
;
615 TRACE("Show tooltip %d!\n", nTool
);
617 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
618 hdr
.idFrom
= toolPtr
->uId
;
620 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
622 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
624 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
625 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
629 rect
.left
= infoPtr
->xTrackPos
;
630 rect
.top
= infoPtr
->yTrackPos
;
633 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
635 rect
.left
-= (size
.cx
/ 2);
636 if (!(style
& TTS_BALLOON
))
637 rect
.top
-= (size
.cy
/ 2);
639 infoPtr
->bToolBelow
= TRUE
;
641 if (!(toolPtr
->uFlags
& TTF_ABSOLUTE
))
643 if (style
& TTS_BALLOON
)
644 rect
.left
-= BALLOON_STEMINDENT
;
649 if (toolPtr
->uFlags
& TTF_IDISHWND
)
650 GetWindowRect ((HWND
)toolPtr
->uId
, &rcTool
);
653 rcTool
= toolPtr
->rect
;
654 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rcTool
, 2);
657 /* smart placement */
658 if ((rect
.left
+ size
.cx
> rcTool
.left
) && (rect
.left
< rcTool
.right
) &&
659 (rect
.top
+ size
.cy
> rcTool
.top
) && (rect
.top
< rcTool
.bottom
))
660 rect
.left
= rcTool
.right
;
666 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
670 if (toolPtr
->uFlags
& TTF_IDISHWND
)
671 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
674 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
676 rect
.left
= (rc
.left
+ rc
.right
- size
.cx
) / 2;
677 if (style
& TTS_BALLOON
)
679 ptfx
= rc
.left
+ ((rc
.right
- rc
.left
) / 2);
681 /* CENTERTIP ballon tooltips default to below the field
682 * if they fit on the screen */
683 if (rc
.bottom
+ size
.cy
> GetSystemMetrics(SM_CYSCREEN
))
685 rect
.top
= rc
.top
- size
.cy
;
686 infoPtr
->bToolBelow
= FALSE
;
690 infoPtr
->bToolBelow
= TRUE
;
691 rect
.top
= rc
.bottom
;
693 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
697 rect
.top
= rc
.bottom
+ 2;
698 infoPtr
->bToolBelow
= TRUE
;
703 GetCursorPos ((LPPOINT
)&rect
);
704 if (style
& TTS_BALLOON
)
707 if(rect
.top
- size
.cy
>= 0)
710 infoPtr
->bToolBelow
= FALSE
;
714 infoPtr
->bToolBelow
= TRUE
;
717 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
722 infoPtr
->bToolBelow
= TRUE
;
727 TRACE("pos %d - %d\n", rect
.left
, rect
.top
);
729 rect
.right
= rect
.left
+ size
.cx
;
730 rect
.bottom
= rect
.top
+ size
.cy
;
734 monitor
= MonitorFromRect( &rect
, MONITOR_DEFAULTTOPRIMARY
);
735 mon_info
.cbSize
= sizeof(mon_info
);
736 GetMonitorInfoW( monitor
, &mon_info
);
738 if( rect
.right
> mon_info
.rcWork
.right
) {
739 rect
.left
-= rect
.right
- mon_info
.rcWork
.right
+ 2;
740 rect
.right
= mon_info
.rcWork
.right
- 2;
742 if (rect
.left
< mon_info
.rcWork
.left
) rect
.left
= mon_info
.rcWork
.left
;
744 if( rect
.bottom
> mon_info
.rcWork
.bottom
) {
747 if (toolPtr
->uFlags
& TTF_IDISHWND
)
748 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
751 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
753 rect
.bottom
= rc
.top
- 2;
754 rect
.top
= rect
.bottom
- size
.cy
;
757 AdjustWindowRectEx (&rect
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
),
758 FALSE
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_EXSTYLE
));
760 if (style
& TTS_BALLOON
)
768 if(infoPtr
->bToolBelow
)
772 pts
[1].x
= max(BALLOON_STEMINDENT
, ptfx
- (BALLOON_STEMWIDTH
/ 2));
773 pts
[1].y
= BALLOON_STEMHEIGHT
;
774 pts
[2].x
= pts
[1].x
+ BALLOON_STEMWIDTH
;
776 if(pts
[2].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
778 pts
[2].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
779 pts
[1].x
= pts
[2].x
- BALLOON_STEMWIDTH
;
784 pts
[0].x
= max(BALLOON_STEMINDENT
, ptfx
- (BALLOON_STEMWIDTH
/ 2));
785 pts
[0].y
= (rect
.bottom
- rect
.top
) - BALLOON_STEMHEIGHT
;
786 pts
[1].x
= pts
[0].x
+ BALLOON_STEMWIDTH
;
789 pts
[2].y
= (rect
.bottom
- rect
.top
);
790 if(pts
[1].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
792 pts
[1].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
793 pts
[0].x
= pts
[1].x
- BALLOON_STEMWIDTH
;
797 hrStem
= CreatePolygonRgn(pts
, sizeof(pts
) / sizeof(pts
[0]), ALTERNATE
);
799 hRgn
= CreateRoundRectRgn(0,
800 (infoPtr
->bToolBelow
? BALLOON_STEMHEIGHT
: 0),
801 rect
.right
- rect
.left
,
802 (infoPtr
->bToolBelow
? rect
.bottom
- rect
.top
: rect
.bottom
- rect
.top
- BALLOON_STEMHEIGHT
),
803 BALLOON_ROUNDEDNESS
, BALLOON_ROUNDEDNESS
);
805 CombineRgn(hRgn
, hRgn
, hrStem
, RGN_OR
);
806 DeleteObject(hrStem
);
808 SetWindowRgn(infoPtr
->hwndSelf
, hRgn
, FALSE
);
809 /* we don't free the region handle as the system deletes it when
810 * it is no longer needed */
813 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOPMOST
, rect
.left
, rect
.top
,
814 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
815 SWP_SHOWWINDOW
| SWP_NOACTIVATE
);
817 /* repaint the tooltip */
818 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
819 UpdateWindow(infoPtr
->hwndSelf
);
823 SetTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
824 TRACE("timer 2 started!\n");
825 SetTimer (infoPtr
->hwndSelf
, ID_TIMERLEAVE
, infoPtr
->nReshowTime
, 0);
826 TRACE("timer 3 started!\n");
832 TOOLTIPS_Hide (TOOLTIPS_INFO
*infoPtr
)
834 TTTOOL_INFO
*toolPtr
;
837 TRACE("Hide tooltip %d! (%p)\n", infoPtr
->nCurrentTool
, infoPtr
->hwndSelf
);
839 if (infoPtr
->nCurrentTool
== -1)
842 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
843 KillTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
);
845 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
846 hdr
.idFrom
= toolPtr
->uId
;
848 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
850 infoPtr
->nCurrentTool
= -1;
852 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
853 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
858 TOOLTIPS_TrackShow (TOOLTIPS_INFO
*infoPtr
)
860 TOOLTIPS_Show(infoPtr
, TRUE
);
865 TOOLTIPS_TrackHide (const TOOLTIPS_INFO
*infoPtr
)
867 TTTOOL_INFO
*toolPtr
;
870 TRACE("hide tracking tooltip %d\n", infoPtr
->nTrackTool
);
872 if (infoPtr
->nTrackTool
== -1)
875 toolPtr
= &infoPtr
->tools
[infoPtr
->nTrackTool
];
877 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
878 hdr
.idFrom
= toolPtr
->uId
;
880 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
882 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
883 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
886 /* Structure layout is the same for TTTOOLINFOW and TTTOOLINFOA,
887 this helper is used in both cases. */
889 TOOLTIPS_GetToolFromInfoT (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*lpToolInfo
)
891 TTTOOL_INFO
*toolPtr
;
894 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
895 toolPtr
= &infoPtr
->tools
[nTool
];
897 if (!(toolPtr
->uFlags
& TTF_IDISHWND
) &&
898 (lpToolInfo
->hwnd
== toolPtr
->hwnd
) &&
899 (lpToolInfo
->uId
== toolPtr
->uId
))
903 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
904 toolPtr
= &infoPtr
->tools
[nTool
];
906 if ((toolPtr
->uFlags
& TTF_IDISHWND
) &&
907 (lpToolInfo
->uId
== toolPtr
->uId
))
916 TOOLTIPS_GetToolFromPoint (const TOOLTIPS_INFO
*infoPtr
, HWND hwnd
, const POINT
*lpPt
)
918 TTTOOL_INFO
*toolPtr
;
921 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
922 toolPtr
= &infoPtr
->tools
[nTool
];
924 if (!(toolPtr
->uFlags
& TTF_IDISHWND
)) {
925 if (hwnd
!= toolPtr
->hwnd
)
927 if (!PtInRect (&toolPtr
->rect
, *lpPt
))
933 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
934 toolPtr
= &infoPtr
->tools
[nTool
];
936 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
937 if ((HWND
)toolPtr
->uId
== hwnd
)
947 TOOLTIPS_IsWindowActive (HWND hwnd
)
949 HWND hwndActive
= GetActiveWindow ();
952 if (hwndActive
== hwnd
)
954 return IsChild (hwndActive
, hwnd
);
959 TOOLTIPS_CheckTool (const TOOLTIPS_INFO
*infoPtr
, BOOL bShowTest
)
966 hwndTool
= (HWND
)SendMessageW (infoPtr
->hwndSelf
, TTM_WINDOWFROMPOINT
, 0, (LPARAM
)&pt
);
970 ScreenToClient (hwndTool
, &pt
);
971 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, hwndTool
, &pt
);
975 if (!(GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_ALWAYSTIP
) && bShowTest
) {
976 if (!TOOLTIPS_IsWindowActive (GetWindow (infoPtr
->hwndSelf
, GW_OWNER
)))
980 TRACE("tool %d\n", nTool
);
987 TOOLTIPS_Activate (TOOLTIPS_INFO
*infoPtr
, BOOL activate
)
989 infoPtr
->bActive
= activate
;
991 if (infoPtr
->bActive
)
992 TRACE("activate!\n");
994 if (!(infoPtr
->bActive
) && (infoPtr
->nCurrentTool
!= -1))
995 TOOLTIPS_Hide (infoPtr
);
1002 TOOLTIPS_AddToolT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1004 TTTOOL_INFO
*toolPtr
;
1007 if (!ti
) return FALSE
;
1009 TRACE("add tool (%p) %p %ld%s!\n",
1010 infoPtr
->hwndSelf
, ti
->hwnd
, ti
->uId
,
1011 (ti
->uFlags
& TTF_IDISHWND
) ? " TTF_IDISHWND" : "");
1013 if (infoPtr
->uNumTools
== 0) {
1014 infoPtr
->tools
= Alloc (sizeof(TTTOOL_INFO
));
1015 toolPtr
= infoPtr
->tools
;
1018 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1020 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
+ 1));
1021 memcpy (infoPtr
->tools
, oldTools
,
1022 infoPtr
->uNumTools
* sizeof(TTTOOL_INFO
));
1024 toolPtr
= &infoPtr
->tools
[infoPtr
->uNumTools
];
1027 infoPtr
->uNumTools
++;
1029 /* copy tool data */
1030 toolPtr
->uFlags
= ti
->uFlags
;
1031 toolPtr
->hwnd
= ti
->hwnd
;
1032 toolPtr
->uId
= ti
->uId
;
1033 toolPtr
->rect
= ti
->rect
;
1034 toolPtr
->hinst
= ti
->hinst
;
1036 if (IS_INTRESOURCE(ti
->lpszText
)) {
1037 TRACE("add string id %x\n", LOWORD(ti
->lpszText
));
1038 toolPtr
->lpszText
= ti
->lpszText
;
1040 else if (ti
->lpszText
) {
1041 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
)) {
1042 TRACE("add CALLBACK!\n");
1043 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1046 INT len
= lstrlenW (ti
->lpszText
);
1047 TRACE("add text %s!\n", debugstr_w(ti
->lpszText
));
1048 toolPtr
->lpszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
1049 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1052 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1, NULL
, 0);
1053 TRACE("add text \"%s\"!\n", (LPSTR
)ti
->lpszText
);
1054 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1055 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1, toolPtr
->lpszText
, len
);
1059 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1060 toolPtr
->lParam
= ti
->lParam
;
1062 /* install subclassing hook */
1063 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1064 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1065 SetWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1,
1066 (DWORD_PTR
)infoPtr
->hwndSelf
);
1069 SetWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1,
1070 (DWORD_PTR
)infoPtr
->hwndSelf
);
1072 TRACE("subclassing installed!\n");
1075 nResult
= SendMessageW (toolPtr
->hwnd
, WM_NOTIFYFORMAT
,
1076 (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
1077 if (nResult
== NFR_ANSI
) {
1078 toolPtr
->bNotifyUnicode
= FALSE
;
1079 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1080 } else if (nResult
== NFR_UNICODE
) {
1081 toolPtr
->bNotifyUnicode
= TRUE
;
1082 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1084 TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1092 TOOLTIPS_DelToolT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1094 TTTOOL_INFO
*toolPtr
;
1098 if (isW
&& ti
->cbSize
> TTTOOLINFOW_V2_SIZE
&&
1099 ti
->cbSize
!= TTTOOLINFOW_V3_SIZE
)
1101 if (infoPtr
->uNumTools
== 0)
1104 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1106 TRACE("tool %d\n", nTool
);
1111 /* make sure the tooltip has disappeared before deleting it */
1112 TOOLTIPS_Hide(infoPtr
);
1114 /* delete text string */
1115 toolPtr
= &infoPtr
->tools
[nTool
];
1116 if (toolPtr
->lpszText
) {
1117 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
1118 !IS_INTRESOURCE(toolPtr
->lpszText
) )
1119 Free (toolPtr
->lpszText
);
1122 /* remove subclassing */
1123 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1124 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1125 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
1128 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
1132 /* delete tool from tool list */
1133 if (infoPtr
->uNumTools
== 1) {
1134 Free (infoPtr
->tools
);
1135 infoPtr
->tools
= NULL
;
1138 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1140 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
- 1));
1143 memcpy (&infoPtr
->tools
[0], &oldTools
[0],
1144 nTool
* sizeof(TTTOOL_INFO
));
1146 if (nTool
< infoPtr
->uNumTools
- 1)
1147 memcpy (&infoPtr
->tools
[nTool
], &oldTools
[nTool
+ 1],
1148 (infoPtr
->uNumTools
- nTool
- 1) * sizeof(TTTOOL_INFO
));
1153 /* update any indices affected by delete */
1155 /* destroying tool that mouse was on on last relayed mouse move */
1156 if (infoPtr
->nTool
== nTool
)
1157 /* -1 means no current tool (0 means first tool) */
1158 infoPtr
->nTool
= -1;
1159 else if (infoPtr
->nTool
> nTool
)
1162 if (infoPtr
->nTrackTool
== nTool
)
1163 /* -1 means no current tool (0 means first tool) */
1164 infoPtr
->nTrackTool
= -1;
1165 else if (infoPtr
->nTrackTool
> nTool
)
1166 infoPtr
->nTrackTool
--;
1168 if (infoPtr
->nCurrentTool
== nTool
)
1169 /* -1 means no current tool (0 means first tool) */
1170 infoPtr
->nCurrentTool
= -1;
1171 else if (infoPtr
->nCurrentTool
> nTool
)
1172 infoPtr
->nCurrentTool
--;
1174 infoPtr
->uNumTools
--;
1180 TOOLTIPS_EnumToolsT (const TOOLTIPS_INFO
*infoPtr
, UINT uIndex
, TTTOOLINFOW
*ti
,
1183 TTTOOL_INFO
*toolPtr
;
1185 if (!ti
) return FALSE
;
1186 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1188 if (uIndex
>= infoPtr
->uNumTools
)
1191 TRACE("index=%u\n", uIndex
);
1193 toolPtr
= &infoPtr
->tools
[uIndex
];
1195 /* copy tool data */
1196 ti
->uFlags
= toolPtr
->uFlags
;
1197 ti
->hwnd
= toolPtr
->hwnd
;
1198 ti
->uId
= toolPtr
->uId
;
1199 ti
->rect
= toolPtr
->rect
;
1200 ti
->hinst
= toolPtr
->hinst
;
1201 /* ti->lpszText = toolPtr->lpszText; */
1202 ti
->lpszText
= NULL
; /* FIXME */
1204 if (ti
->cbSize
>= TTTOOLINFOA_V2_SIZE
)
1205 ti
->lParam
= toolPtr
->lParam
;
1211 TOOLTIPS_GetBubbleSize (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*lpToolInfo
)
1216 if (lpToolInfo
== NULL
)
1218 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1221 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, lpToolInfo
);
1222 if (nTool
== -1) return 0;
1224 TRACE("tool %d\n", nTool
);
1226 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
1227 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
1229 return MAKELRESULT(size
.cx
, size
.cy
);
1233 TOOLTIPS_GetCurrentToolT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1235 TTTOOL_INFO
*toolPtr
;
1238 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1241 if (infoPtr
->nCurrentTool
> -1) {
1242 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
1244 /* copy tool data */
1245 ti
->uFlags
= toolPtr
->uFlags
;
1246 ti
->rect
= toolPtr
->rect
;
1247 ti
->hinst
= toolPtr
->hinst
;
1248 /* ti->lpszText = toolPtr->lpszText; */
1249 ti
->lpszText
= NULL
; /* FIXME */
1251 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1252 ti
->lParam
= toolPtr
->lParam
;
1260 return (infoPtr
->nCurrentTool
!= -1);
1265 TOOLTIPS_GetDelayTime (const TOOLTIPS_INFO
*infoPtr
, DWORD duration
)
1269 return infoPtr
->nReshowTime
;
1272 return infoPtr
->nAutoPopTime
;
1275 case TTDT_AUTOMATIC
: /* Apparently TTDT_AUTOMATIC returns TTDT_INITIAL */
1276 return infoPtr
->nInitialTime
;
1279 WARN("Invalid duration flag %x\n", duration
);
1288 TOOLTIPS_GetMargin (const TOOLTIPS_INFO
*infoPtr
, LPRECT lpRect
)
1290 lpRect
->left
= infoPtr
->rcMargin
.left
;
1291 lpRect
->right
= infoPtr
->rcMargin
.right
;
1292 lpRect
->bottom
= infoPtr
->rcMargin
.bottom
;
1293 lpRect
->top
= infoPtr
->rcMargin
.top
;
1299 static inline LRESULT
1300 TOOLTIPS_GetMaxTipWidth (const TOOLTIPS_INFO
*infoPtr
)
1302 return infoPtr
->nMaxTipWidth
;
1307 TOOLTIPS_GetTextT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1312 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1315 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1316 if (nTool
== -1) return 0;
1318 if (infoPtr
->tools
[nTool
].lpszText
== NULL
)
1322 ti
->lpszText
[0] = '\0';
1323 TOOLTIPS_GetTipText(infoPtr
, nTool
, ti
->lpszText
);
1326 WCHAR buffer
[INFOTIPSIZE
];
1328 /* NB this API is broken, there is no way for the app to determine
1329 what size buffer it requires nor a way to specify how long the
1330 one it supplies is. We'll assume it's up to INFOTIPSIZE */
1333 TOOLTIPS_GetTipText(infoPtr
, nTool
, buffer
);
1334 WideCharToMultiByte(CP_ACP
, 0, buffer
, -1, (LPSTR
)ti
->lpszText
,
1335 INFOTIPSIZE
, NULL
, NULL
);
1342 static inline LRESULT
1343 TOOLTIPS_GetTipBkColor (const TOOLTIPS_INFO
*infoPtr
)
1345 return infoPtr
->clrBk
;
1349 static inline LRESULT
1350 TOOLTIPS_GetTipTextColor (const TOOLTIPS_INFO
*infoPtr
)
1352 return infoPtr
->clrText
;
1356 static inline LRESULT
1357 TOOLTIPS_GetToolCount (const TOOLTIPS_INFO
*infoPtr
)
1359 return infoPtr
->uNumTools
;
1364 TOOLTIPS_GetToolInfoT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1366 TTTOOL_INFO
*toolPtr
;
1369 if (!ti
) return FALSE
;
1370 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1372 if (infoPtr
->uNumTools
== 0)
1375 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1379 TRACE("tool %d\n", nTool
);
1381 toolPtr
= &infoPtr
->tools
[nTool
];
1383 /* copy tool data */
1384 ti
->uFlags
= toolPtr
->uFlags
;
1385 ti
->rect
= toolPtr
->rect
;
1386 ti
->hinst
= toolPtr
->hinst
;
1387 /* lpToolInfo->lpszText = toolPtr->lpszText; */
1388 ti
->lpszText
= NULL
; /* FIXME */
1390 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1391 ti
->lParam
= toolPtr
->lParam
;
1398 TOOLTIPS_HitTestT (const TOOLTIPS_INFO
*infoPtr
, LPTTHITTESTINFOW lptthit
,
1401 TTTOOL_INFO
*toolPtr
;
1407 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, lptthit
->hwnd
, &lptthit
->pt
);
1411 TRACE("tool %d!\n", nTool
);
1413 /* copy tool data */
1414 if (lptthit
->ti
.cbSize
>= TTTOOLINFOW_V1_SIZE
) {
1415 toolPtr
= &infoPtr
->tools
[nTool
];
1417 lptthit
->ti
.uFlags
= toolPtr
->uFlags
;
1418 lptthit
->ti
.hwnd
= toolPtr
->hwnd
;
1419 lptthit
->ti
.uId
= toolPtr
->uId
;
1420 lptthit
->ti
.rect
= toolPtr
->rect
;
1421 lptthit
->ti
.hinst
= toolPtr
->hinst
;
1422 /* lptthit->ti.lpszText = toolPtr->lpszText; */
1423 lptthit
->ti
.lpszText
= NULL
; /* FIXME */
1424 if (lptthit
->ti
.cbSize
>= TTTOOLINFOW_V2_SIZE
)
1425 lptthit
->ti
.lParam
= toolPtr
->lParam
;
1433 TOOLTIPS_NewToolRectT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1438 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1441 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1443 TRACE("nTool = %d, rect = %s\n", nTool
, wine_dbgstr_rect(&ti
->rect
));
1445 if (nTool
== -1) return 0;
1447 infoPtr
->tools
[nTool
].rect
= ti
->rect
;
1453 static inline LRESULT
1454 TOOLTIPS_Pop (TOOLTIPS_INFO
*infoPtr
)
1456 TOOLTIPS_Hide (infoPtr
);
1463 TOOLTIPS_RelayEvent (TOOLTIPS_INFO
*infoPtr
, LPMSG lpMsg
)
1469 ERR("lpMsg == NULL!\n");
1473 switch (lpMsg
->message
) {
1474 case WM_LBUTTONDOWN
:
1476 case WM_MBUTTONDOWN
:
1478 case WM_RBUTTONDOWN
:
1480 TOOLTIPS_Hide (infoPtr
);
1484 pt
.x
= (short)LOWORD(lpMsg
->lParam
);
1485 pt
.y
= (short)HIWORD(lpMsg
->lParam
);
1486 nOldTool
= infoPtr
->nTool
;
1487 infoPtr
->nTool
= TOOLTIPS_GetToolFromPoint(infoPtr
, lpMsg
->hwnd
,
1489 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
1490 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
1491 TRACE("WM_MOUSEMOVE (%p %d %d)\n", infoPtr
->hwndSelf
, pt
.x
, pt
.y
);
1493 if (infoPtr
->nTool
!= nOldTool
) {
1494 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
1495 TOOLTIPS_Hide(infoPtr
);
1496 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1497 } else if (nOldTool
== -1) { /* Moved from outside */
1498 if(infoPtr
->bActive
) {
1499 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1500 TRACE("timer 1 started!\n");
1502 } else { /* Moved from one to another */
1503 TOOLTIPS_Hide (infoPtr
);
1504 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1505 if(infoPtr
->bActive
) {
1506 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
1507 TRACE("timer 1 started!\n");
1510 } else if(infoPtr
->nCurrentTool
!= -1) { /* restart autopop */
1511 KillTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
);
1512 SetTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
1513 TRACE("timer 2 restarted\n");
1514 } else if(infoPtr
->nTool
!= -1 && infoPtr
->bActive
) {
1515 /* previous show attempt didn't result in tooltip so try again */
1516 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1517 TRACE("timer 1 started!\n");
1527 TOOLTIPS_SetDelayTime (TOOLTIPS_INFO
*infoPtr
, DWORD duration
, INT nTime
)
1530 case TTDT_AUTOMATIC
:
1532 nTime
= GetDoubleClickTime();
1533 infoPtr
->nReshowTime
= nTime
/ 5;
1534 infoPtr
->nAutoPopTime
= nTime
* 10;
1535 infoPtr
->nInitialTime
= nTime
;
1540 nTime
= GetDoubleClickTime() / 5;
1541 infoPtr
->nReshowTime
= nTime
;
1546 nTime
= GetDoubleClickTime() * 10;
1547 infoPtr
->nAutoPopTime
= nTime
;
1552 nTime
= GetDoubleClickTime();
1553 infoPtr
->nInitialTime
= nTime
;
1557 WARN("Invalid duration flag %x\n", duration
);
1566 TOOLTIPS_SetMargin (TOOLTIPS_INFO
*infoPtr
, const RECT
*lpRect
)
1568 infoPtr
->rcMargin
.left
= lpRect
->left
;
1569 infoPtr
->rcMargin
.right
= lpRect
->right
;
1570 infoPtr
->rcMargin
.bottom
= lpRect
->bottom
;
1571 infoPtr
->rcMargin
.top
= lpRect
->top
;
1577 static inline LRESULT
1578 TOOLTIPS_SetMaxTipWidth (TOOLTIPS_INFO
*infoPtr
, INT MaxWidth
)
1580 INT nTemp
= infoPtr
->nMaxTipWidth
;
1582 infoPtr
->nMaxTipWidth
= MaxWidth
;
1588 static inline LRESULT
1589 TOOLTIPS_SetTipBkColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrBk
)
1591 infoPtr
->clrBk
= clrBk
;
1597 static inline LRESULT
1598 TOOLTIPS_SetTipTextColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrText
)
1600 infoPtr
->clrText
= clrText
;
1607 TOOLTIPS_SetTitleT (TOOLTIPS_INFO
*infoPtr
, UINT_PTR uTitleIcon
, LPCWSTR pszTitle
,
1612 TRACE("hwnd = %p, title = %s, icon = %p\n", infoPtr
->hwndSelf
, debugstr_w(pszTitle
),
1615 Free(infoPtr
->pszTitle
);
1621 size
= (strlenW(pszTitle
)+1)*sizeof(WCHAR
);
1622 infoPtr
->pszTitle
= Alloc(size
);
1623 if (!infoPtr
->pszTitle
)
1625 memcpy(infoPtr
->pszTitle
, pszTitle
, size
);
1629 size
= sizeof(WCHAR
)*MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pszTitle
, -1, NULL
, 0);
1630 infoPtr
->pszTitle
= Alloc(size
);
1631 if (!infoPtr
->pszTitle
)
1633 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pszTitle
, -1, infoPtr
->pszTitle
, size
/sizeof(WCHAR
));
1637 infoPtr
->pszTitle
= NULL
;
1639 if (uTitleIcon
<= TTI_ERROR
)
1640 infoPtr
->hTitleIcon
= hTooltipIcons
[uTitleIcon
];
1642 infoPtr
->hTitleIcon
= CopyIcon((HICON
)uTitleIcon
);
1644 TRACE("icon = %p\n", infoPtr
->hTitleIcon
);
1651 TOOLTIPS_SetToolInfoT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1653 TTTOOL_INFO
*toolPtr
;
1657 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1660 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1661 if (nTool
== -1) return 0;
1663 TRACE("tool %d\n", nTool
);
1665 toolPtr
= &infoPtr
->tools
[nTool
];
1667 /* copy tool data */
1668 toolPtr
->uFlags
= ti
->uFlags
;
1669 toolPtr
->hwnd
= ti
->hwnd
;
1670 toolPtr
->uId
= ti
->uId
;
1671 toolPtr
->rect
= ti
->rect
;
1672 toolPtr
->hinst
= ti
->hinst
;
1674 if (IS_INTRESOURCE(ti
->lpszText
)) {
1675 TRACE("set string id %x!\n", LOWORD(ti
->lpszText
));
1676 toolPtr
->lpszText
= ti
->lpszText
;
1679 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
))
1680 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1682 if ( (toolPtr
->lpszText
) &&
1683 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
1684 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
1685 Free (toolPtr
->lpszText
);
1686 toolPtr
->lpszText
= NULL
;
1690 INT len
= lstrlenW (ti
->lpszText
);
1691 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
1692 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1695 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
,
1697 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1698 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1,
1699 toolPtr
->lpszText
, len
);
1705 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1706 toolPtr
->lParam
= ti
->lParam
;
1708 if (infoPtr
->nCurrentTool
== nTool
)
1710 TOOLTIPS_GetTipText (infoPtr
, infoPtr
->nCurrentTool
, infoPtr
->szTipText
);
1712 if (infoPtr
->szTipText
[0] == 0)
1713 TOOLTIPS_Hide(infoPtr
);
1715 TOOLTIPS_Show (infoPtr
, FALSE
);
1723 TOOLTIPS_TrackActivate (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
, const TTTOOLINFOA
*ti
)
1725 if (track_activate
) {
1728 if (ti
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1732 infoPtr
->nTrackTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, (const TTTOOLINFOW
*)ti
);
1733 if (infoPtr
->nTrackTool
!= -1) {
1734 TRACE("activated!\n");
1735 infoPtr
->bTrackActive
= TRUE
;
1736 TOOLTIPS_TrackShow (infoPtr
);
1741 TOOLTIPS_TrackHide (infoPtr
);
1743 infoPtr
->bTrackActive
= FALSE
;
1744 infoPtr
->nTrackTool
= -1;
1746 TRACE("deactivated!\n");
1754 TOOLTIPS_TrackPosition (TOOLTIPS_INFO
*infoPtr
, LPARAM coord
)
1756 infoPtr
->xTrackPos
= (INT
)LOWORD(coord
);
1757 infoPtr
->yTrackPos
= (INT
)HIWORD(coord
);
1759 if (infoPtr
->bTrackActive
) {
1761 infoPtr
->xTrackPos
, infoPtr
->yTrackPos
);
1763 TOOLTIPS_TrackShow (infoPtr
);
1771 TOOLTIPS_Update (TOOLTIPS_INFO
*infoPtr
)
1773 if (infoPtr
->nCurrentTool
!= -1)
1774 UpdateWindow (infoPtr
->hwndSelf
);
1781 TOOLTIPS_UpdateTipTextT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1783 TTTOOL_INFO
*toolPtr
;
1787 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1790 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1794 TRACE("tool %d\n", nTool
);
1796 toolPtr
= &infoPtr
->tools
[nTool
];
1798 /* copy tool text */
1799 toolPtr
->hinst
= ti
->hinst
;
1801 if (IS_INTRESOURCE(ti
->lpszText
)){
1802 toolPtr
->lpszText
= ti
->lpszText
;
1804 else if (ti
->lpszText
) {
1805 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
))
1806 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1808 if ( (toolPtr
->lpszText
) &&
1809 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
1810 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
1811 Free (toolPtr
->lpszText
);
1812 toolPtr
->lpszText
= NULL
;
1816 INT len
= lstrlenW (ti
->lpszText
);
1817 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
1818 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1821 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
,
1823 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1824 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1,
1825 toolPtr
->lpszText
, len
);
1831 if(infoPtr
->nCurrentTool
== -1) return 0;
1833 if (infoPtr
->bActive
)
1834 TOOLTIPS_Show (infoPtr
, FALSE
);
1835 else if (infoPtr
->bTrackActive
)
1836 TOOLTIPS_Show (infoPtr
, TRUE
);
1843 TOOLTIPS_WindowFromPoint (HWND hwnd
, WPARAM wParam
, LPARAM lParam
)
1845 return (LRESULT
)WindowFromPoint (*((LPPOINT
)lParam
));
1851 TOOLTIPS_Create (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
1853 TOOLTIPS_INFO
*infoPtr
;
1855 /* allocate memory for info structure */
1856 infoPtr
= Alloc (sizeof(TOOLTIPS_INFO
));
1857 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
1859 /* initialize info structure */
1860 infoPtr
->bActive
= TRUE
;
1861 infoPtr
->bTrackActive
= FALSE
;
1863 infoPtr
->nMaxTipWidth
= -1;
1864 infoPtr
->nTool
= -1;
1865 infoPtr
->nCurrentTool
= -1;
1866 infoPtr
->nTrackTool
= -1;
1867 infoPtr
->hwndSelf
= hwnd
;
1869 /* initialize colours and fonts */
1870 TOOLTIPS_InitSystemSettings(infoPtr
);
1872 TOOLTIPS_SetDelayTime(infoPtr
, TTDT_AUTOMATIC
, 0);
1874 SetWindowPos (hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
1881 TOOLTIPS_Destroy (TOOLTIPS_INFO
*infoPtr
)
1883 TTTOOL_INFO
*toolPtr
;
1887 if (infoPtr
->tools
) {
1888 for (i
= 0; i
< infoPtr
->uNumTools
; i
++) {
1889 toolPtr
= &infoPtr
->tools
[i
];
1890 if (toolPtr
->lpszText
) {
1891 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
1892 !IS_INTRESOURCE(toolPtr
->lpszText
) )
1894 Free (toolPtr
->lpszText
);
1895 toolPtr
->lpszText
= NULL
;
1899 /* remove subclassing */
1900 if (toolPtr
->uFlags
& TTF_SUBCLASS
) {
1901 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
1902 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
1905 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
1909 Free (infoPtr
->tools
);
1912 /* free title string */
1913 Free (infoPtr
->pszTitle
);
1914 /* free title icon if not a standard one */
1915 if (TOOLTIPS_GetTitleIconIndex(infoPtr
->hTitleIcon
) > TTI_ERROR
)
1916 DeleteObject(infoPtr
->hTitleIcon
);
1919 DeleteObject (infoPtr
->hFont
);
1920 DeleteObject (infoPtr
->hTitleFont
);
1922 /* free tool tips info data */
1923 SetWindowLongPtrW(infoPtr
->hwndSelf
, 0, 0);
1930 static inline LRESULT
1931 TOOLTIPS_GetFont (const TOOLTIPS_INFO
*infoPtr
)
1933 return (LRESULT
)infoPtr
->hFont
;
1938 TOOLTIPS_MouseMessage (TOOLTIPS_INFO
*infoPtr
)
1940 TOOLTIPS_Hide (infoPtr
);
1947 TOOLTIPS_NCCreate (HWND hwnd
, const CREATESTRUCTW
*lpcs
)
1949 DWORD dwStyle
= GetWindowLongW (hwnd
, GWL_STYLE
);
1950 DWORD dwExStyle
= GetWindowLongW (hwnd
, GWL_EXSTYLE
);
1952 dwStyle
&= ~(WS_CHILD
| /*WS_MAXIMIZE |*/ WS_BORDER
| WS_DLGFRAME
);
1953 dwStyle
|= (WS_POPUP
| WS_BORDER
| WS_CLIPSIBLINGS
);
1955 /* WS_BORDER only draws a border round the window rect, not the
1956 * window region, therefore it is useless to us in balloon mode */
1957 if (dwStyle
& TTS_BALLOON
) dwStyle
&= ~WS_BORDER
;
1959 SetWindowLongW (hwnd
, GWL_STYLE
, dwStyle
);
1961 dwExStyle
|= WS_EX_TOOLWINDOW
;
1962 SetWindowLongW (hwnd
, GWL_EXSTYLE
, dwExStyle
);
1969 TOOLTIPS_NCHitTest (const TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1971 INT nTool
= (infoPtr
->bTrackActive
) ? infoPtr
->nTrackTool
: infoPtr
->nTool
;
1973 TRACE(" nTool=%d\n", nTool
);
1975 if ((nTool
> -1) && (nTool
< infoPtr
->uNumTools
)) {
1976 if (infoPtr
->tools
[nTool
].uFlags
& TTF_TRANSPARENT
) {
1977 TRACE("-- in transparent mode!\n");
1978 return HTTRANSPARENT
;
1982 return DefWindowProcW (infoPtr
->hwndSelf
, WM_NCHITTEST
, wParam
, lParam
);
1987 TOOLTIPS_NotifyFormat (TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1989 FIXME ("hwnd=%p wParam=%lx lParam=%lx\n", infoPtr
->hwndSelf
, wParam
, lParam
);
1996 TOOLTIPS_Paint (const TOOLTIPS_INFO
*infoPtr
, HDC hDC
)
2001 hdc
= (hDC
== NULL
) ? BeginPaint (infoPtr
->hwndSelf
, &ps
) : hDC
;
2002 TOOLTIPS_Refresh (infoPtr
, hdc
);
2004 EndPaint (infoPtr
->hwndSelf
, &ps
);
2010 TOOLTIPS_SetFont (TOOLTIPS_INFO
*infoPtr
, HFONT hFont
, BOOL redraw
)
2014 if(!GetObjectW(hFont
, sizeof(lf
), &lf
))
2017 DeleteObject (infoPtr
->hFont
);
2018 infoPtr
->hFont
= CreateFontIndirectW(&lf
);
2020 DeleteObject (infoPtr
->hTitleFont
);
2021 lf
.lfWeight
= FW_BOLD
;
2022 infoPtr
->hTitleFont
= CreateFontIndirectW(&lf
);
2024 if (redraw
& (infoPtr
->nCurrentTool
!= -1)) {
2025 FIXME("full redraw needed!\n");
2031 /******************************************************************
2032 * TOOLTIPS_GetTextLength
2034 * This function is called when the tooltip receive a
2035 * WM_GETTEXTLENGTH message.
2037 * returns the length, in characters, of the tip text
2039 static inline LRESULT
2040 TOOLTIPS_GetTextLength(const TOOLTIPS_INFO
*infoPtr
)
2042 return strlenW(infoPtr
->szTipText
);
2045 /******************************************************************
2046 * TOOLTIPS_OnWMGetText
2048 * This function is called when the tooltip receive a
2049 * WM_GETTEXT message.
2050 * wParam : specifies the maximum number of characters to be copied
2051 * lParam : is the pointer to the buffer that will receive
2054 * returns the number of characters copied
2057 TOOLTIPS_OnWMGetText (const TOOLTIPS_INFO
*infoPtr
, WPARAM size
, LPWSTR pszText
)
2061 if(!infoPtr
->szTipText
|| !size
)
2064 res
= min(strlenW(infoPtr
->szTipText
)+1, size
);
2065 memcpy(pszText
, infoPtr
->szTipText
, res
*sizeof(WCHAR
));
2066 pszText
[res
-1] = '\0';
2071 TOOLTIPS_Timer (TOOLTIPS_INFO
*infoPtr
, INT iTimer
)
2075 TRACE("timer %d (%p) expired!\n", iTimer
, infoPtr
->hwndSelf
);
2079 KillTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
);
2080 nOldTool
= infoPtr
->nTool
;
2081 if ((infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, TRUE
)) == nOldTool
)
2082 TOOLTIPS_Show (infoPtr
, FALSE
);
2086 TOOLTIPS_Hide (infoPtr
);
2090 nOldTool
= infoPtr
->nTool
;
2091 infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, FALSE
);
2092 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
2093 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
2094 if (infoPtr
->nTool
!= nOldTool
) {
2095 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
2096 TOOLTIPS_Hide(infoPtr
);
2097 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2098 } else if (nOldTool
== -1) { /* Moved from outside */
2099 ERR("How did this happen?\n");
2100 } else { /* Moved from one to another */
2101 TOOLTIPS_Hide (infoPtr
);
2102 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2103 if(infoPtr
->bActive
) {
2104 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
2105 TRACE("timer 1 started!\n");
2112 ERR("Unknown timer id %d\n", iTimer
);
2120 TOOLTIPS_WinIniChange (TOOLTIPS_INFO
*infoPtr
)
2122 TOOLTIPS_InitSystemSettings (infoPtr
);
2128 static LRESULT CALLBACK
2129 TOOLTIPS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uID
, DWORD_PTR dwRef
)
2131 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr ((HWND
)dwRef
);
2136 case WM_LBUTTONDOWN
:
2138 case WM_MBUTTONDOWN
:
2140 case WM_RBUTTONDOWN
:
2144 msg
.wParam
= wParam
;
2145 msg
.lParam
= lParam
;
2146 TOOLTIPS_RelayEvent(infoPtr
, &msg
);
2152 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
2156 static LRESULT CALLBACK
2157 TOOLTIPS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
2159 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr (hwnd
);
2161 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd
, uMsg
, wParam
, lParam
);
2162 if (!infoPtr
&& (uMsg
!= WM_CREATE
) && (uMsg
!= WM_NCCREATE
))
2163 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2167 return TOOLTIPS_Activate (infoPtr
, (BOOL
)wParam
);
2171 return TOOLTIPS_AddToolT (infoPtr
, (LPTTTOOLINFOW
)lParam
, uMsg
== TTM_ADDTOOLW
);
2175 return TOOLTIPS_DelToolT (infoPtr
, (LPTOOLINFOW
)lParam
,
2176 uMsg
== TTM_DELTOOLW
);
2177 case TTM_ENUMTOOLSA
:
2178 case TTM_ENUMTOOLSW
:
2179 return TOOLTIPS_EnumToolsT (infoPtr
, (UINT
)wParam
, (LPTTTOOLINFOW
)lParam
,
2180 uMsg
== TTM_ENUMTOOLSW
);
2181 case TTM_GETBUBBLESIZE
:
2182 return TOOLTIPS_GetBubbleSize (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2184 case TTM_GETCURRENTTOOLA
:
2185 case TTM_GETCURRENTTOOLW
:
2186 return TOOLTIPS_GetCurrentToolT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2187 uMsg
== TTM_GETCURRENTTOOLW
);
2189 case TTM_GETDELAYTIME
:
2190 return TOOLTIPS_GetDelayTime (infoPtr
, (DWORD
)wParam
);
2193 return TOOLTIPS_GetMargin (infoPtr
, (LPRECT
)lParam
);
2195 case TTM_GETMAXTIPWIDTH
:
2196 return TOOLTIPS_GetMaxTipWidth (infoPtr
);
2200 return TOOLTIPS_GetTextT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2201 uMsg
== TTM_GETTEXTW
);
2203 case TTM_GETTIPBKCOLOR
:
2204 return TOOLTIPS_GetTipBkColor (infoPtr
);
2206 case TTM_GETTIPTEXTCOLOR
:
2207 return TOOLTIPS_GetTipTextColor (infoPtr
);
2209 case TTM_GETTOOLCOUNT
:
2210 return TOOLTIPS_GetToolCount (infoPtr
);
2212 case TTM_GETTOOLINFOA
:
2213 case TTM_GETTOOLINFOW
:
2214 return TOOLTIPS_GetToolInfoT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2215 uMsg
== TTM_GETTOOLINFOW
);
2219 return TOOLTIPS_HitTestT (infoPtr
, (LPTTHITTESTINFOW
)lParam
,
2220 uMsg
== TTM_HITTESTW
);
2221 case TTM_NEWTOOLRECTA
:
2222 case TTM_NEWTOOLRECTW
:
2223 return TOOLTIPS_NewToolRectT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2224 uMsg
== TTM_NEWTOOLRECTW
);
2226 return TOOLTIPS_Pop (infoPtr
);
2228 case TTM_RELAYEVENT
:
2229 return TOOLTIPS_RelayEvent (infoPtr
, (LPMSG
)lParam
);
2231 case TTM_SETDELAYTIME
:
2232 return TOOLTIPS_SetDelayTime (infoPtr
, (DWORD
)wParam
, (INT
)LOWORD(lParam
));
2235 return TOOLTIPS_SetMargin (infoPtr
, (LPRECT
)lParam
);
2237 case TTM_SETMAXTIPWIDTH
:
2238 return TOOLTIPS_SetMaxTipWidth (infoPtr
, (INT
)lParam
);
2240 case TTM_SETTIPBKCOLOR
:
2241 return TOOLTIPS_SetTipBkColor (infoPtr
, (COLORREF
)wParam
);
2243 case TTM_SETTIPTEXTCOLOR
:
2244 return TOOLTIPS_SetTipTextColor (infoPtr
, (COLORREF
)wParam
);
2248 return TOOLTIPS_SetTitleT (infoPtr
, (UINT_PTR
)wParam
, (LPCWSTR
)lParam
,
2249 uMsg
== TTM_SETTITLEW
);
2251 case TTM_SETTOOLINFOA
:
2252 case TTM_SETTOOLINFOW
:
2253 return TOOLTIPS_SetToolInfoT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2254 uMsg
== TTM_SETTOOLINFOW
);
2256 case TTM_TRACKACTIVATE
:
2257 return TOOLTIPS_TrackActivate (infoPtr
, (BOOL
)wParam
, (LPTTTOOLINFOA
)lParam
);
2259 case TTM_TRACKPOSITION
:
2260 return TOOLTIPS_TrackPosition (infoPtr
, lParam
);
2263 return TOOLTIPS_Update (infoPtr
);
2265 case TTM_UPDATETIPTEXTA
:
2266 case TTM_UPDATETIPTEXTW
:
2267 return TOOLTIPS_UpdateTipTextT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2268 uMsg
== TTM_UPDATETIPTEXTW
);
2270 case TTM_WINDOWFROMPOINT
:
2271 return TOOLTIPS_WindowFromPoint (hwnd
, wParam
, lParam
);
2275 return TOOLTIPS_Create (hwnd
, (LPCREATESTRUCTW
)lParam
);
2278 return TOOLTIPS_Destroy (infoPtr
);
2281 /* we draw the background in WM_PAINT */
2285 return TOOLTIPS_GetFont (infoPtr
);
2288 return TOOLTIPS_OnWMGetText (infoPtr
, wParam
, (LPWSTR
)lParam
);
2290 case WM_GETTEXTLENGTH
:
2291 return TOOLTIPS_GetTextLength (infoPtr
);
2293 case WM_LBUTTONDOWN
:
2295 case WM_MBUTTONDOWN
:
2297 case WM_RBUTTONDOWN
:
2300 return TOOLTIPS_MouseMessage (infoPtr
);
2303 return TOOLTIPS_NCCreate (hwnd
, (LPCREATESTRUCTW
)lParam
);
2306 return TOOLTIPS_NCHitTest (infoPtr
, wParam
, lParam
);
2308 case WM_NOTIFYFORMAT
:
2309 return TOOLTIPS_NotifyFormat (infoPtr
, wParam
, lParam
);
2311 case WM_PRINTCLIENT
:
2313 return TOOLTIPS_Paint (infoPtr
, (HDC
)wParam
);
2316 return TOOLTIPS_SetFont (infoPtr
, (HFONT
)wParam
, LOWORD(lParam
));
2318 case WM_SYSCOLORCHANGE
:
2319 COMCTL32_RefreshSysColors();
2323 return TOOLTIPS_Timer (infoPtr
, (INT
)wParam
);
2325 case WM_WININICHANGE
:
2326 return TOOLTIPS_WinIniChange (infoPtr
);
2329 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
2330 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
2331 uMsg
, wParam
, lParam
);
2332 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2338 TOOLTIPS_Register (void)
2342 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2343 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_SAVEBITS
;
2344 wndClass
.lpfnWndProc
= TOOLTIPS_WindowProc
;
2345 wndClass
.cbClsExtra
= 0;
2346 wndClass
.cbWndExtra
= sizeof(TOOLTIPS_INFO
*);
2347 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
2348 wndClass
.hbrBackground
= 0;
2349 wndClass
.lpszClassName
= TOOLTIPS_CLASSW
;
2351 RegisterClassW (&wndClass
);
2353 hTooltipIcons
[TTI_NONE
] = NULL
;
2354 hTooltipIcons
[TTI_INFO
] = LoadImageW(COMCTL32_hModule
,
2355 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_INFO_SM
), IMAGE_ICON
, 0, 0, 0);
2356 hTooltipIcons
[TTI_WARNING
] = LoadImageW(COMCTL32_hModule
,
2357 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_WARN_SM
), IMAGE_ICON
, 0, 0, 0);
2358 hTooltipIcons
[TTI_ERROR
] = LoadImageW(COMCTL32_hModule
,
2359 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_ERROR_SM
), IMAGE_ICON
, 0, 0, 0);
2364 TOOLTIPS_Unregister (void)
2367 for (i
= TTI_INFO
; i
<= TTI_ERROR
; i
++)
2368 DestroyIcon(hTooltipIcons
[i
]);
2369 UnregisterClassW (TOOLTIPS_CLASSW
, NULL
);