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
94 #include <wine/exception.h>
96 WINE_DEFAULT_DEBUG_CHANNEL(tooltips
);
98 static HICON hTooltipIcons
[TTI_ERROR
+1];
117 WCHAR szTipText
[INFOTIPSIZE
];
128 INT nTool
; /* tool that mouse was on on last relayed mouse move */
142 #define ID_TIMERSHOW 1 /* show delay timer */
143 #define ID_TIMERPOP 2 /* auto pop timer */
144 #define ID_TIMERLEAVE 3 /* tool leave timer */
147 #define TOOLTIPS_GetInfoPtr(hWindow) ((TOOLTIPS_INFO *)GetWindowLongPtrW (hWindow, 0))
149 /* offsets from window edge to start of text */
150 #define NORMAL_TEXT_MARGIN 2
151 #define BALLOON_TEXT_MARGIN (NORMAL_TEXT_MARGIN+8)
152 /* value used for CreateRoundRectRgn that specifies how much
153 * each corner is curved */
154 #define BALLOON_ROUNDEDNESS 20
155 #define BALLOON_STEMHEIGHT 13
156 #define BALLOON_STEMWIDTH 10
157 #define BALLOON_STEMINDENT 20
159 #define BALLOON_ICON_TITLE_SPACING 8 /* horizontal spacing between icon and title */
160 #define BALLOON_TITLE_TEXT_SPACING 8 /* vertical spacing between icon/title and main text */
161 #define ICON_HEIGHT 16
162 #define ICON_WIDTH 16
164 #define MAX_TEXT_SIZE_A 80 /* maximum retrieving text size by ANSI message */
166 static LRESULT CALLBACK
167 TOOLTIPS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uId
, DWORD_PTR dwRef
);
170 static inline BOOL
TOOLTIPS_IsCallbackString(LPCWSTR str
, BOOL isW
)
173 return str
== LPSTR_TEXTCALLBACKW
;
175 return (LPCSTR
)str
== LPSTR_TEXTCALLBACKA
;
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(const TOOLTIPS_INFO
*infoPtr
, NMTTCUSTOMDRAW
*lpnmttcd
,
209 HDC hdc
, const RECT
*rcBounds
, UINT uFlags
)
211 ZeroMemory(lpnmttcd
, sizeof(NMTTCUSTOMDRAW
));
212 lpnmttcd
->uDrawFlags
= uFlags
;
213 lpnmttcd
->nmcd
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
214 lpnmttcd
->nmcd
.hdr
.code
= NM_CUSTOMDRAW
;
215 if (infoPtr
->nCurrentTool
!= -1) {
216 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
217 lpnmttcd
->nmcd
.hdr
.idFrom
= toolPtr
->uId
;
219 lpnmttcd
->nmcd
.hdc
= hdc
;
220 lpnmttcd
->nmcd
.rc
= *rcBounds
;
221 /* FIXME - dwItemSpec, uItemState, lItemlParam */
225 TOOLTIPS_notify_customdraw (DWORD dwDrawStage
, NMTTCUSTOMDRAW
*lpnmttcd
)
228 lpnmttcd
->nmcd
.dwDrawStage
= dwDrawStage
;
230 TRACE("Notifying stage %d, flags %x, id %x\n", lpnmttcd
->nmcd
.dwDrawStage
,
231 lpnmttcd
->uDrawFlags
, lpnmttcd
->nmcd
.hdr
.code
);
233 result
= SendMessageW(GetParent(lpnmttcd
->nmcd
.hdr
.hwndFrom
), WM_NOTIFY
,
234 0, (LPARAM
)lpnmttcd
);
236 TRACE("Notify result %x\n", (unsigned int)result
);
242 TOOLTIPS_Refresh (const TOOLTIPS_INFO
*infoPtr
, HDC hdc
)
248 UINT uFlags
= DT_EXTERNALLEADING
;
250 DWORD dwStyle
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
251 NMTTCUSTOMDRAW nmttcd
;
254 if (infoPtr
->nMaxTipWidth
> -1)
255 uFlags
|= DT_WORDBREAK
;
256 if (GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_NOPREFIX
)
257 uFlags
|= DT_NOPREFIX
;
258 GetClientRect (infoPtr
->hwndSelf
, &rc
);
260 hBrush
= CreateSolidBrush(infoPtr
->clrBk
);
262 oldBkMode
= SetBkMode (hdc
, TRANSPARENT
);
263 SetTextColor (hdc
, infoPtr
->clrText
);
264 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
266 /* Custom draw - Call PrePaint once initial properties set up */
267 /* Note: Contrary to MSDN, CDRF_SKIPDEFAULT still draws a tooltip */
268 TOOLTIPS_customdraw_fill(infoPtr
, &nmttcd
, hdc
, &rc
, uFlags
);
269 cdmode
= TOOLTIPS_notify_customdraw(CDDS_PREPAINT
, &nmttcd
);
270 uFlags
= nmttcd
.uDrawFlags
;
272 if (dwStyle
& TTS_BALLOON
)
274 /* create a region to store result into */
275 hRgn
= CreateRectRgn(0, 0, 0, 0);
277 GetWindowRgn(infoPtr
->hwndSelf
, hRgn
);
279 /* fill the background */
280 FillRgn(hdc
, hRgn
, hBrush
);
281 DeleteObject(hBrush
);
286 /* fill the background */
287 FillRect(hdc
, &rc
, hBrush
);
288 DeleteObject(hBrush
);
292 if ((dwStyle
& TTS_BALLOON
) || infoPtr
->pszTitle
)
294 /* calculate text rectangle */
295 rc
.left
+= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.left
);
296 rc
.top
+= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.top
);
297 rc
.right
-= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.right
);
298 rc
.bottom
-= (BALLOON_TEXT_MARGIN
+ infoPtr
->rcMargin
.bottom
);
299 if(infoPtr
->bToolBelow
) rc
.top
+= BALLOON_STEMHEIGHT
;
301 if (infoPtr
->pszTitle
)
303 RECT rcTitle
= {rc
.left
, rc
.top
, rc
.right
, rc
.bottom
};
309 icon_present
= infoPtr
->hTitleIcon
&&
310 DrawIconEx(hdc
, rc
.left
, rc
.top
, infoPtr
->hTitleIcon
,
311 ICON_WIDTH
, ICON_HEIGHT
, 0, NULL
, DI_NORMAL
);
313 rcTitle
.left
+= ICON_WIDTH
+ BALLOON_ICON_TITLE_SPACING
;
315 rcTitle
.bottom
= rc
.top
+ ICON_HEIGHT
;
317 /* draw title text */
318 prevFont
= SelectObject (hdc
, infoPtr
->hTitleFont
);
319 height
= DrawTextW(hdc
, infoPtr
->pszTitle
, -1, &rcTitle
, DT_BOTTOM
| DT_SINGLELINE
| DT_NOPREFIX
);
320 SelectObject (hdc
, prevFont
);
321 rc
.top
+= height
+ BALLOON_TITLE_TEXT_SPACING
;
326 /* calculate text rectangle */
327 rc
.left
+= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.left
);
328 rc
.top
+= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.top
);
329 rc
.right
-= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.right
);
330 rc
.bottom
-= (NORMAL_TEXT_MARGIN
+ infoPtr
->rcMargin
.bottom
);
334 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
336 /* Custom draw - Call PostPaint after drawing */
337 if (cdmode
& CDRF_NOTIFYPOSTPAINT
) {
338 TOOLTIPS_notify_customdraw(CDDS_POSTPAINT
, &nmttcd
);
341 /* be polite and reset the things we changed in the dc */
342 SelectObject (hdc
, hOldFont
);
343 SetBkMode (hdc
, oldBkMode
);
345 if (dwStyle
& TTS_BALLOON
)
347 /* frame region because default window proc doesn't do it */
348 INT width
= GetSystemMetrics(SM_CXDLGFRAME
) - GetSystemMetrics(SM_CXEDGE
);
349 INT height
= GetSystemMetrics(SM_CYDLGFRAME
) - GetSystemMetrics(SM_CYEDGE
);
351 hBrush
= GetSysColorBrush(COLOR_WINDOWFRAME
);
352 FrameRgn(hdc
, hRgn
, hBrush
, width
, height
);
359 static void TOOLTIPS_GetDispInfoA(const TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
, WCHAR
*buffer
)
361 NMTTDISPINFOA ttnmdi
;
363 /* fill NMHDR struct */
364 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOA
));
365 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
366 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
367 ttnmdi
.hdr
.code
= TTN_GETDISPINFOA
; /* == TTN_NEEDTEXTA */
368 ttnmdi
.lpszText
= ttnmdi
.szText
;
369 ttnmdi
.uFlags
= toolPtr
->uFlags
;
370 ttnmdi
.lParam
= toolPtr
->lParam
;
372 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
373 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
375 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
376 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
377 buffer
, INFOTIPSIZE
);
378 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
379 toolPtr
->hinst
= ttnmdi
.hinst
;
380 toolPtr
->lpszText
= (LPWSTR
)ttnmdi
.lpszText
;
383 else if (ttnmdi
.lpszText
== 0) {
386 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKA
) {
387 Str_GetPtrAtoW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
388 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
390 toolPtr
->lpszText
= NULL
;
391 Str_SetPtrW(&toolPtr
->lpszText
, buffer
);
395 ERR("recursive text callback!\n");
399 /* no text available - try calling parent instead as per native */
400 /* FIXME: Unsure if SETITEM should save the value or not */
401 if (buffer
[0] == 0x00) {
403 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
405 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
406 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
407 buffer
, INFOTIPSIZE
);
408 } else if (ttnmdi
.lpszText
&&
409 ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKA
) {
410 Str_GetPtrAtoW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
415 static void TOOLTIPS_GetDispInfoW(const TOOLTIPS_INFO
*infoPtr
, TTTOOL_INFO
*toolPtr
, WCHAR
*buffer
)
417 NMTTDISPINFOW ttnmdi
;
419 /* fill NMHDR struct */
420 ZeroMemory (&ttnmdi
, sizeof(NMTTDISPINFOW
));
421 ttnmdi
.hdr
.hwndFrom
= infoPtr
->hwndSelf
;
422 ttnmdi
.hdr
.idFrom
= toolPtr
->uId
;
423 ttnmdi
.hdr
.code
= TTN_GETDISPINFOW
; /* == TTN_NEEDTEXTW */
424 ttnmdi
.lpszText
= ttnmdi
.szText
;
425 ttnmdi
.uFlags
= toolPtr
->uFlags
;
426 ttnmdi
.lParam
= toolPtr
->lParam
;
428 TRACE("hdr.idFrom = %lx\n", ttnmdi
.hdr
.idFrom
);
429 SendMessageW(toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
431 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
432 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
433 buffer
, INFOTIPSIZE
);
434 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
435 toolPtr
->hinst
= ttnmdi
.hinst
;
436 toolPtr
->lpszText
= ttnmdi
.lpszText
;
439 else if (ttnmdi
.lpszText
== 0) {
442 else if (ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKW
) {
443 Str_GetPtrW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
444 if (ttnmdi
.uFlags
& TTF_DI_SETITEM
) {
446 toolPtr
->lpszText
= NULL
;
447 Str_SetPtrW(&toolPtr
->lpszText
, buffer
);
451 ERR("recursive text callback!\n");
455 /* no text available - try calling parent instead as per native */
456 /* FIXME: Unsure if SETITEM should save the value or not */
457 if (buffer
[0] == 0x00) {
459 SendMessageW(GetParent(toolPtr
->hwnd
), WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&ttnmdi
);
461 if (IS_INTRESOURCE(ttnmdi
.lpszText
)) {
462 LoadStringW(ttnmdi
.hinst
, LOWORD(ttnmdi
.lpszText
),
463 buffer
, INFOTIPSIZE
);
464 } else if (ttnmdi
.lpszText
&&
465 ttnmdi
.lpszText
!= LPSTR_TEXTCALLBACKW
) {
466 Str_GetPtrW(ttnmdi
.lpszText
, buffer
, INFOTIPSIZE
);
473 TOOLTIPS_GetTipText (const TOOLTIPS_INFO
*infoPtr
, INT nTool
, WCHAR
*buffer
)
475 TTTOOL_INFO
*toolPtr
= &infoPtr
->tools
[nTool
];
477 if (IS_INTRESOURCE(toolPtr
->lpszText
)) {
478 /* load a resource */
479 TRACE("load res string %p %x\n",
480 toolPtr
->hinst
, LOWORD(toolPtr
->lpszText
));
481 if (!LoadStringW (toolPtr
->hinst
, LOWORD(toolPtr
->lpszText
), buffer
, INFOTIPSIZE
))
484 else if (toolPtr
->lpszText
) {
485 if (toolPtr
->lpszText
== LPSTR_TEXTCALLBACKW
) {
486 if (toolPtr
->bNotifyUnicode
)
487 TOOLTIPS_GetDispInfoW(infoPtr
, toolPtr
, buffer
);
489 TOOLTIPS_GetDispInfoA(infoPtr
, toolPtr
, buffer
);
492 /* the item is a usual (unicode) text */
493 lstrcpynW (buffer
, toolPtr
->lpszText
, INFOTIPSIZE
);
497 /* no text available */
501 TRACE("%s\n", debugstr_w(buffer
));
506 TOOLTIPS_CalcTipSize (const TOOLTIPS_INFO
*infoPtr
, LPSIZE lpSize
)
510 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
511 UINT uFlags
= DT_EXTERNALLEADING
| DT_CALCRECT
;
512 RECT rc
= {0, 0, 0, 0};
515 if (infoPtr
->nMaxTipWidth
> -1) {
516 rc
.right
= infoPtr
->nMaxTipWidth
;
517 uFlags
|= DT_WORDBREAK
;
519 if (style
& TTS_NOPREFIX
)
520 uFlags
|= DT_NOPREFIX
;
521 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
523 hdc
= GetDC (infoPtr
->hwndSelf
);
524 if (infoPtr
->pszTitle
)
526 RECT rcTitle
= {0, 0, 0, 0};
527 TRACE("title %s\n", debugstr_w(infoPtr
->pszTitle
));
528 if (infoPtr
->hTitleIcon
)
530 title
.cx
= ICON_WIDTH
;
531 title
.cy
= ICON_HEIGHT
;
533 if (title
.cx
!= 0) title
.cx
+= BALLOON_ICON_TITLE_SPACING
;
534 hOldFont
= SelectObject (hdc
, infoPtr
->hTitleFont
);
535 DrawTextW(hdc
, infoPtr
->pszTitle
, -1, &rcTitle
, DT_SINGLELINE
| DT_NOPREFIX
| DT_CALCRECT
);
536 SelectObject (hdc
, hOldFont
);
537 title
.cy
= max(title
.cy
, rcTitle
.bottom
- rcTitle
.top
) + BALLOON_TITLE_TEXT_SPACING
;
538 title
.cx
+= (rcTitle
.right
- rcTitle
.left
);
540 hOldFont
= SelectObject (hdc
, infoPtr
->hFont
);
541 DrawTextW (hdc
, infoPtr
->szTipText
, -1, &rc
, uFlags
);
542 SelectObject (hdc
, hOldFont
);
543 ReleaseDC (infoPtr
->hwndSelf
, hdc
);
545 if ((style
& TTS_BALLOON
) || infoPtr
->pszTitle
)
547 lpSize
->cx
= max(rc
.right
- rc
.left
, title
.cx
) + 2*BALLOON_TEXT_MARGIN
+
548 infoPtr
->rcMargin
.left
+ infoPtr
->rcMargin
.right
;
549 lpSize
->cy
= title
.cy
+ rc
.bottom
- rc
.top
+ 2*BALLOON_TEXT_MARGIN
+
550 infoPtr
->rcMargin
.bottom
+ infoPtr
->rcMargin
.top
+
555 lpSize
->cx
= rc
.right
- rc
.left
+ 2*NORMAL_TEXT_MARGIN
+
556 infoPtr
->rcMargin
.left
+ infoPtr
->rcMargin
.right
;
557 lpSize
->cy
= rc
.bottom
- rc
.top
+ 2*NORMAL_TEXT_MARGIN
+
558 infoPtr
->rcMargin
.bottom
+ infoPtr
->rcMargin
.top
;
564 TOOLTIPS_Show (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
)
566 TTTOOL_INFO
*toolPtr
;
568 MONITORINFO mon_info
;
573 DWORD style
= GetWindowLongW(infoPtr
->hwndSelf
, GWL_STYLE
);
578 if (infoPtr
->nTrackTool
== -1)
580 TRACE("invalid tracking tool (-1)!\n");
583 nTool
= infoPtr
->nTrackTool
;
587 if (infoPtr
->nTool
== -1)
589 TRACE("invalid tool (-1)!\n");
592 nTool
= infoPtr
->nTool
;
595 TRACE("Show tooltip pre %d! (%p)\n", nTool
, infoPtr
->hwndSelf
);
597 TOOLTIPS_GetTipText (infoPtr
, nTool
, infoPtr
->szTipText
);
599 if (infoPtr
->szTipText
[0] == '\0')
602 toolPtr
= &infoPtr
->tools
[nTool
];
605 infoPtr
->nCurrentTool
= infoPtr
->nTool
;
607 TRACE("Show tooltip %d!\n", nTool
);
609 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
610 hdr
.idFrom
= toolPtr
->uId
;
612 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
614 TRACE("%s\n", debugstr_w(infoPtr
->szTipText
));
616 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
617 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
619 if (track_activate
&& (toolPtr
->uFlags
& TTF_TRACK
))
621 rect
.left
= infoPtr
->xTrackPos
;
622 rect
.top
= infoPtr
->yTrackPos
;
625 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
627 rect
.left
-= (size
.cx
/ 2);
628 if (!(style
& TTS_BALLOON
))
629 rect
.top
-= (size
.cy
/ 2);
631 if (!(infoPtr
->bToolBelow
= (infoPtr
->yTrackPos
+ size
.cy
<= GetSystemMetrics(SM_CYSCREEN
))))
634 if (!(toolPtr
->uFlags
& TTF_ABSOLUTE
))
636 if (style
& TTS_BALLOON
)
637 rect
.left
-= BALLOON_STEMINDENT
;
642 if (toolPtr
->uFlags
& TTF_IDISHWND
)
643 GetWindowRect ((HWND
)toolPtr
->uId
, &rcTool
);
646 rcTool
= toolPtr
->rect
;
647 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rcTool
, 2);
650 /* smart placement */
651 if ((rect
.left
+ size
.cx
> rcTool
.left
) && (rect
.left
< rcTool
.right
) &&
652 (rect
.top
+ size
.cy
> rcTool
.top
) && (rect
.top
< rcTool
.bottom
))
653 rect
.left
= rcTool
.right
;
659 if (toolPtr
->uFlags
& TTF_CENTERTIP
)
663 if (toolPtr
->uFlags
& TTF_IDISHWND
)
664 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
667 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
669 rect
.left
= (rc
.left
+ rc
.right
- size
.cx
) / 2;
670 if (style
& TTS_BALLOON
)
672 ptfx
= rc
.left
+ ((rc
.right
- rc
.left
) / 2);
674 /* CENTERTIP ballon tooltips default to below the field
675 * if they fit on the screen */
676 if (rc
.bottom
+ size
.cy
> GetSystemMetrics(SM_CYSCREEN
))
678 rect
.top
= rc
.top
- size
.cy
;
679 infoPtr
->bToolBelow
= FALSE
;
683 infoPtr
->bToolBelow
= TRUE
;
684 rect
.top
= rc
.bottom
;
686 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
690 rect
.top
= rc
.bottom
+ 2;
691 infoPtr
->bToolBelow
= TRUE
;
696 GetCursorPos ((LPPOINT
)&rect
);
697 if (style
& TTS_BALLOON
)
700 if(rect
.top
- size
.cy
>= 0)
703 infoPtr
->bToolBelow
= FALSE
;
707 infoPtr
->bToolBelow
= TRUE
;
710 rect
.left
= max(0, rect
.left
- BALLOON_STEMINDENT
);
715 infoPtr
->bToolBelow
= TRUE
;
720 TRACE("pos %d - %d\n", rect
.left
, rect
.top
);
722 rect
.right
= rect
.left
+ size
.cx
;
723 rect
.bottom
= rect
.top
+ size
.cy
;
727 monitor
= MonitorFromRect( &rect
, MONITOR_DEFAULTTOPRIMARY
);
728 mon_info
.cbSize
= sizeof(mon_info
);
729 GetMonitorInfoW( monitor
, &mon_info
);
731 if( rect
.right
> mon_info
.rcWork
.right
) {
732 rect
.left
-= rect
.right
- mon_info
.rcWork
.right
+ 2;
733 rect
.right
= mon_info
.rcWork
.right
- 2;
735 if (rect
.left
< mon_info
.rcWork
.left
) rect
.left
= mon_info
.rcWork
.left
;
737 if( rect
.bottom
> mon_info
.rcWork
.bottom
) {
740 if (toolPtr
->uFlags
& TTF_IDISHWND
)
741 GetWindowRect ((HWND
)toolPtr
->uId
, &rc
);
744 MapWindowPoints (toolPtr
->hwnd
, NULL
, (LPPOINT
)&rc
, 2);
746 rect
.bottom
= rc
.top
- 2;
747 rect
.top
= rect
.bottom
- size
.cy
;
750 AdjustWindowRectEx (&rect
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
),
751 FALSE
, GetWindowLongW (infoPtr
->hwndSelf
, GWL_EXSTYLE
));
753 if (style
& TTS_BALLOON
)
761 if(infoPtr
->bToolBelow
)
765 pts
[1].x
= max(BALLOON_STEMINDENT
, ptfx
- (BALLOON_STEMWIDTH
/ 2));
766 pts
[1].y
= BALLOON_STEMHEIGHT
;
767 pts
[2].x
= pts
[1].x
+ BALLOON_STEMWIDTH
;
769 if(pts
[2].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
771 pts
[2].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
772 pts
[1].x
= pts
[2].x
- BALLOON_STEMWIDTH
;
777 pts
[0].x
= max(BALLOON_STEMINDENT
, ptfx
- (BALLOON_STEMWIDTH
/ 2));
778 pts
[0].y
= (rect
.bottom
- rect
.top
) - BALLOON_STEMHEIGHT
;
779 pts
[1].x
= pts
[0].x
+ BALLOON_STEMWIDTH
;
782 pts
[2].y
= (rect
.bottom
- rect
.top
);
783 if(pts
[1].x
> (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
)
785 pts
[1].x
= (rect
.right
- rect
.left
) - BALLOON_STEMINDENT
;
786 pts
[0].x
= pts
[1].x
- BALLOON_STEMWIDTH
;
790 hrStem
= CreatePolygonRgn(pts
, sizeof(pts
) / sizeof(pts
[0]), ALTERNATE
);
792 hRgn
= CreateRoundRectRgn(0,
793 (infoPtr
->bToolBelow
? BALLOON_STEMHEIGHT
: 0),
794 rect
.right
- rect
.left
,
795 (infoPtr
->bToolBelow
? rect
.bottom
- rect
.top
: rect
.bottom
- rect
.top
- BALLOON_STEMHEIGHT
),
796 BALLOON_ROUNDEDNESS
, BALLOON_ROUNDEDNESS
);
798 CombineRgn(hRgn
, hRgn
, hrStem
, RGN_OR
);
799 DeleteObject(hrStem
);
801 SetWindowRgn(infoPtr
->hwndSelf
, hRgn
, FALSE
);
802 /* we don't free the region handle as the system deletes it when
803 * it is no longer needed */
806 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOPMOST
, rect
.left
, rect
.top
,
807 rect
.right
- rect
.left
, rect
.bottom
- rect
.top
,
808 SWP_SHOWWINDOW
| SWP_NOACTIVATE
);
810 /* repaint the tooltip */
811 InvalidateRect(infoPtr
->hwndSelf
, NULL
, TRUE
);
812 UpdateWindow(infoPtr
->hwndSelf
);
816 SetTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
817 TRACE("timer 2 started!\n");
818 SetTimer (infoPtr
->hwndSelf
, ID_TIMERLEAVE
, infoPtr
->nReshowTime
, 0);
819 TRACE("timer 3 started!\n");
825 TOOLTIPS_Hide (TOOLTIPS_INFO
*infoPtr
)
827 TTTOOL_INFO
*toolPtr
;
830 TRACE("Hide tooltip %d! (%p)\n", infoPtr
->nCurrentTool
, infoPtr
->hwndSelf
);
832 if (infoPtr
->nCurrentTool
== -1)
835 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
836 KillTimer (infoPtr
->hwndSelf
, ID_TIMERPOP
);
838 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
839 hdr
.idFrom
= toolPtr
->uId
;
841 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
843 infoPtr
->nCurrentTool
= -1;
845 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
846 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
851 TOOLTIPS_TrackShow (TOOLTIPS_INFO
*infoPtr
)
853 TOOLTIPS_Show(infoPtr
, TRUE
);
858 TOOLTIPS_TrackHide (const TOOLTIPS_INFO
*infoPtr
)
860 TTTOOL_INFO
*toolPtr
;
863 TRACE("hide tracking tooltip %d\n", infoPtr
->nTrackTool
);
865 if (infoPtr
->nTrackTool
== -1)
868 toolPtr
= &infoPtr
->tools
[infoPtr
->nTrackTool
];
870 hdr
.hwndFrom
= infoPtr
->hwndSelf
;
871 hdr
.idFrom
= toolPtr
->uId
;
873 SendMessageW (toolPtr
->hwnd
, WM_NOTIFY
, toolPtr
->uId
, (LPARAM
)&hdr
);
875 SetWindowPos (infoPtr
->hwndSelf
, HWND_TOP
, 0, 0, 0, 0,
876 SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
879 /* Structure layout is the same for TTTOOLINFOW and TTTOOLINFOA,
880 this helper is used in both cases. */
882 TOOLTIPS_GetToolFromInfoT (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*lpToolInfo
)
884 TTTOOL_INFO
*toolPtr
;
887 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
888 toolPtr
= &infoPtr
->tools
[nTool
];
890 if (!(toolPtr
->uFlags
& TTF_IDISHWND
) &&
891 (lpToolInfo
->hwnd
== toolPtr
->hwnd
) &&
892 (lpToolInfo
->uId
== toolPtr
->uId
))
896 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
897 toolPtr
= &infoPtr
->tools
[nTool
];
899 if ((toolPtr
->uFlags
& TTF_IDISHWND
) &&
900 (lpToolInfo
->uId
== toolPtr
->uId
))
909 TOOLTIPS_GetToolFromPoint (const TOOLTIPS_INFO
*infoPtr
, HWND hwnd
, const POINT
*lpPt
)
911 TTTOOL_INFO
*toolPtr
;
914 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
915 toolPtr
= &infoPtr
->tools
[nTool
];
917 if (!(toolPtr
->uFlags
& TTF_IDISHWND
)) {
918 if (hwnd
!= toolPtr
->hwnd
)
920 if (!PtInRect (&toolPtr
->rect
, *lpPt
))
926 for (nTool
= 0; nTool
< infoPtr
->uNumTools
; nTool
++) {
927 toolPtr
= &infoPtr
->tools
[nTool
];
929 if (toolPtr
->uFlags
& TTF_IDISHWND
) {
930 if ((HWND
)toolPtr
->uId
== hwnd
)
939 TOOLTIPS_CopyInfoT (const TTTOOL_INFO
*toolPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
942 if (toolPtr
->lpszText
== NULL
||
943 IS_INTRESOURCE(toolPtr
->lpszText
) ||
944 toolPtr
->lpszText
== LPSTR_TEXTCALLBACKW
)
945 ti
->lpszText
= toolPtr
->lpszText
;
947 strcpyW (ti
->lpszText
, toolPtr
->lpszText
);
949 /* ANSI version, the buffer is maximum 80 bytes without null. */
950 WideCharToMultiByte(CP_ACP
, 0, toolPtr
->lpszText
, -1,
951 (LPSTR
)ti
->lpszText
, MAX_TEXT_SIZE_A
, NULL
, NULL
);
956 TOOLTIPS_IsWindowActive (HWND hwnd
)
958 HWND hwndActive
= GetActiveWindow ();
961 if (hwndActive
== hwnd
)
963 return IsChild (hwndActive
, hwnd
);
968 TOOLTIPS_CheckTool (const TOOLTIPS_INFO
*infoPtr
, BOOL bShowTest
)
975 hwndTool
= (HWND
)SendMessageW (infoPtr
->hwndSelf
, TTM_WINDOWFROMPOINT
, 0, (LPARAM
)&pt
);
979 ScreenToClient (hwndTool
, &pt
);
980 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, hwndTool
, &pt
);
984 if (!(GetWindowLongW (infoPtr
->hwndSelf
, GWL_STYLE
) & TTS_ALWAYSTIP
) && bShowTest
)
986 TTTOOL_INFO
*ti
= &infoPtr
->tools
[nTool
];
987 HWND hwnd
= (ti
->uFlags
& TTF_IDISHWND
) ? (HWND
)ti
->uId
: ti
->hwnd
;
989 if (!TOOLTIPS_IsWindowActive(hwnd
))
991 TRACE("not active: hwnd %p, parent %p, active %p\n",
992 hwnd
, GetParent(hwnd
), GetActiveWindow());
997 TRACE("tool %d\n", nTool
);
1004 TOOLTIPS_Activate (TOOLTIPS_INFO
*infoPtr
, BOOL activate
)
1006 infoPtr
->bActive
= activate
;
1008 if (infoPtr
->bActive
)
1009 TRACE("activate!\n");
1011 if (!(infoPtr
->bActive
) && (infoPtr
->nCurrentTool
!= -1))
1012 TOOLTIPS_Hide (infoPtr
);
1019 TOOLTIPS_AddToolT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1021 TTTOOL_INFO
*toolPtr
;
1024 if (!ti
) return FALSE
;
1026 TRACE("add tool (%p) %p %ld%s!\n",
1027 infoPtr
->hwndSelf
, ti
->hwnd
, ti
->uId
,
1028 (ti
->uFlags
& TTF_IDISHWND
) ? " TTF_IDISHWND" : "");
1030 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
&& !ti
->lpszText
&& isW
)
1033 if (infoPtr
->uNumTools
== 0) {
1034 infoPtr
->tools
= Alloc (sizeof(TTTOOL_INFO
));
1035 toolPtr
= infoPtr
->tools
;
1038 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1040 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
+ 1));
1041 memcpy (infoPtr
->tools
, oldTools
,
1042 infoPtr
->uNumTools
* sizeof(TTTOOL_INFO
));
1044 toolPtr
= &infoPtr
->tools
[infoPtr
->uNumTools
];
1047 infoPtr
->uNumTools
++;
1049 /* copy tool data */
1050 toolPtr
->uFlags
= ti
->uFlags
;
1051 toolPtr
->uInternalFlags
= (ti
->uFlags
& (TTF_SUBCLASS
| TTF_IDISHWND
));
1052 toolPtr
->hwnd
= ti
->hwnd
;
1053 toolPtr
->uId
= ti
->uId
;
1054 toolPtr
->rect
= ti
->rect
;
1055 toolPtr
->hinst
= ti
->hinst
;
1057 if (ti
->cbSize
>= TTTOOLINFOW_V1_SIZE
) {
1058 if (IS_INTRESOURCE(ti
->lpszText
)) {
1059 TRACE("add string id %x\n", LOWORD(ti
->lpszText
));
1060 toolPtr
->lpszText
= ti
->lpszText
;
1062 else if (ti
->lpszText
) {
1063 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
)) {
1064 TRACE("add CALLBACK!\n");
1065 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1070 INT len
= lstrlenW (ti
->lpszText
);
1071 TRACE("add text %s!\n", debugstr_w(ti
->lpszText
));
1072 toolPtr
->lpszText
= Alloc ((len
+ 1)*sizeof(WCHAR
));
1073 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1077 WARN("Invalid lpszText.\n");
1083 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1, NULL
, 0);
1084 TRACE("add text \"%s\"!\n", (LPSTR
)ti
->lpszText
);
1085 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1086 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1, toolPtr
->lpszText
, len
);
1091 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1092 toolPtr
->lParam
= ti
->lParam
;
1094 /* install subclassing hook */
1095 if (toolPtr
->uInternalFlags
& TTF_SUBCLASS
) {
1096 if (toolPtr
->uInternalFlags
& TTF_IDISHWND
) {
1097 SetWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1,
1098 (DWORD_PTR
)infoPtr
->hwndSelf
);
1101 SetWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1,
1102 (DWORD_PTR
)infoPtr
->hwndSelf
);
1104 TRACE("subclassing installed!\n");
1107 nResult
= SendMessageW (toolPtr
->hwnd
, WM_NOTIFYFORMAT
,
1108 (WPARAM
)infoPtr
->hwndSelf
, NF_QUERY
);
1109 if (nResult
== NFR_ANSI
) {
1110 toolPtr
->bNotifyUnicode
= FALSE
;
1111 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
1112 } else if (nResult
== NFR_UNICODE
) {
1113 toolPtr
->bNotifyUnicode
= TRUE
;
1114 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
1116 TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
1124 TOOLTIPS_DelToolT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1126 TTTOOL_INFO
*toolPtr
;
1130 if (isW
&& ti
->cbSize
> TTTOOLINFOW_V2_SIZE
&&
1131 ti
->cbSize
!= TTTOOLINFOW_V3_SIZE
)
1133 if (infoPtr
->uNumTools
== 0)
1136 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1138 TRACE("tool %d\n", nTool
);
1143 /* make sure the tooltip has disappeared before deleting it */
1144 TOOLTIPS_Hide(infoPtr
);
1146 /* delete text string */
1147 toolPtr
= &infoPtr
->tools
[nTool
];
1148 if (toolPtr
->lpszText
) {
1149 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
1150 !IS_INTRESOURCE(toolPtr
->lpszText
) )
1151 Free (toolPtr
->lpszText
);
1154 /* remove subclassing */
1155 if (toolPtr
->uInternalFlags
& TTF_SUBCLASS
) {
1156 if (toolPtr
->uInternalFlags
& TTF_IDISHWND
) {
1157 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
1160 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
1164 /* delete tool from tool list */
1165 if (infoPtr
->uNumTools
== 1) {
1166 Free (infoPtr
->tools
);
1167 infoPtr
->tools
= NULL
;
1170 TTTOOL_INFO
*oldTools
= infoPtr
->tools
;
1172 Alloc (sizeof(TTTOOL_INFO
) * (infoPtr
->uNumTools
- 1));
1175 memcpy (&infoPtr
->tools
[0], &oldTools
[0],
1176 nTool
* sizeof(TTTOOL_INFO
));
1178 if (nTool
< infoPtr
->uNumTools
- 1)
1179 memcpy (&infoPtr
->tools
[nTool
], &oldTools
[nTool
+ 1],
1180 (infoPtr
->uNumTools
- nTool
- 1) * sizeof(TTTOOL_INFO
));
1185 /* update any indices affected by delete */
1187 /* destroying tool that mouse was on on last relayed mouse move */
1188 if (infoPtr
->nTool
== nTool
)
1189 /* -1 means no current tool (0 means first tool) */
1190 infoPtr
->nTool
= -1;
1191 else if (infoPtr
->nTool
> nTool
)
1194 if (infoPtr
->nTrackTool
== nTool
)
1195 /* -1 means no current tool (0 means first tool) */
1196 infoPtr
->nTrackTool
= -1;
1197 else if (infoPtr
->nTrackTool
> nTool
)
1198 infoPtr
->nTrackTool
--;
1200 if (infoPtr
->nCurrentTool
== nTool
)
1201 /* -1 means no current tool (0 means first tool) */
1202 infoPtr
->nCurrentTool
= -1;
1203 else if (infoPtr
->nCurrentTool
> nTool
)
1204 infoPtr
->nCurrentTool
--;
1206 infoPtr
->uNumTools
--;
1212 TOOLTIPS_EnumToolsT (const TOOLTIPS_INFO
*infoPtr
, UINT uIndex
, TTTOOLINFOW
*ti
,
1215 TTTOOL_INFO
*toolPtr
;
1217 if (!ti
) return FALSE
;
1218 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1220 if (uIndex
>= infoPtr
->uNumTools
)
1223 TRACE("index=%u\n", uIndex
);
1225 toolPtr
= &infoPtr
->tools
[uIndex
];
1227 /* copy tool data */
1228 ti
->uFlags
= toolPtr
->uFlags
;
1229 ti
->hwnd
= toolPtr
->hwnd
;
1230 ti
->uId
= toolPtr
->uId
;
1231 ti
->rect
= toolPtr
->rect
;
1232 ti
->hinst
= toolPtr
->hinst
;
1233 TOOLTIPS_CopyInfoT (toolPtr
, ti
, isW
);
1235 if (ti
->cbSize
>= TTTOOLINFOA_V2_SIZE
)
1236 ti
->lParam
= toolPtr
->lParam
;
1242 TOOLTIPS_GetBubbleSize (const TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*lpToolInfo
)
1247 if (lpToolInfo
== NULL
)
1249 if (lpToolInfo
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1252 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, lpToolInfo
);
1253 if (nTool
== -1) return 0;
1255 TRACE("tool %d\n", nTool
);
1257 TOOLTIPS_CalcTipSize (infoPtr
, &size
);
1258 TRACE("size %d x %d\n", size
.cx
, size
.cy
);
1260 return MAKELRESULT(size
.cx
, size
.cy
);
1264 TOOLTIPS_GetCurrentToolT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1266 TTTOOL_INFO
*toolPtr
;
1269 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1272 if (infoPtr
->nCurrentTool
> -1) {
1273 toolPtr
= &infoPtr
->tools
[infoPtr
->nCurrentTool
];
1275 /* copy tool data */
1276 ti
->uFlags
= toolPtr
->uFlags
;
1277 ti
->rect
= toolPtr
->rect
;
1278 ti
->hinst
= toolPtr
->hinst
;
1279 TOOLTIPS_CopyInfoT (toolPtr
, ti
, isW
);
1281 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1282 ti
->lParam
= toolPtr
->lParam
;
1290 return (infoPtr
->nCurrentTool
!= -1);
1295 TOOLTIPS_GetDelayTime (const TOOLTIPS_INFO
*infoPtr
, DWORD duration
)
1299 return infoPtr
->nReshowTime
;
1302 return infoPtr
->nAutoPopTime
;
1305 case TTDT_AUTOMATIC
: /* Apparently TTDT_AUTOMATIC returns TTDT_INITIAL */
1306 return infoPtr
->nInitialTime
;
1309 WARN("Invalid duration flag %x\n", duration
);
1318 TOOLTIPS_GetMargin (const TOOLTIPS_INFO
*infoPtr
, LPRECT lpRect
)
1320 lpRect
->left
= infoPtr
->rcMargin
.left
;
1321 lpRect
->right
= infoPtr
->rcMargin
.right
;
1322 lpRect
->bottom
= infoPtr
->rcMargin
.bottom
;
1323 lpRect
->top
= infoPtr
->rcMargin
.top
;
1329 static inline LRESULT
1330 TOOLTIPS_GetMaxTipWidth (const TOOLTIPS_INFO
*infoPtr
)
1332 return infoPtr
->nMaxTipWidth
;
1337 TOOLTIPS_GetTextT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1342 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1345 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1346 if (nTool
== -1) return 0;
1348 if (infoPtr
->tools
[nTool
].lpszText
== NULL
)
1352 ti
->lpszText
[0] = '\0';
1353 TOOLTIPS_GetTipText(infoPtr
, nTool
, ti
->lpszText
);
1356 WCHAR buffer
[INFOTIPSIZE
];
1358 /* NB this API is broken, there is no way for the app to determine
1359 what size buffer it requires nor a way to specify how long the
1360 one it supplies is. According to the test result, it's up to
1361 80 bytes by the ANSI version. */
1364 TOOLTIPS_GetTipText(infoPtr
, nTool
, buffer
);
1365 WideCharToMultiByte(CP_ACP
, 0, buffer
, -1, (LPSTR
)ti
->lpszText
,
1366 MAX_TEXT_SIZE_A
, NULL
, NULL
);
1373 static inline LRESULT
1374 TOOLTIPS_GetTipBkColor (const TOOLTIPS_INFO
*infoPtr
)
1376 return infoPtr
->clrBk
;
1380 static inline LRESULT
1381 TOOLTIPS_GetTipTextColor (const TOOLTIPS_INFO
*infoPtr
)
1383 return infoPtr
->clrText
;
1387 static inline LRESULT
1388 TOOLTIPS_GetToolCount (const TOOLTIPS_INFO
*infoPtr
)
1390 return infoPtr
->uNumTools
;
1395 TOOLTIPS_GetToolInfoT (const TOOLTIPS_INFO
*infoPtr
, TTTOOLINFOW
*ti
, BOOL isW
)
1397 TTTOOL_INFO
*toolPtr
;
1400 if (!ti
) return FALSE
;
1401 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1403 if (infoPtr
->uNumTools
== 0)
1406 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1410 TRACE("tool %d\n", nTool
);
1412 toolPtr
= &infoPtr
->tools
[nTool
];
1414 /* copy tool data */
1415 ti
->uFlags
= toolPtr
->uFlags
;
1416 ti
->rect
= toolPtr
->rect
;
1417 ti
->hinst
= toolPtr
->hinst
;
1418 TOOLTIPS_CopyInfoT (toolPtr
, ti
, isW
);
1420 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1421 ti
->lParam
= toolPtr
->lParam
;
1428 TOOLTIPS_HitTestT (const TOOLTIPS_INFO
*infoPtr
, LPTTHITTESTINFOW lptthit
,
1431 TTTOOL_INFO
*toolPtr
;
1437 nTool
= TOOLTIPS_GetToolFromPoint (infoPtr
, lptthit
->hwnd
, &lptthit
->pt
);
1441 TRACE("tool %d!\n", nTool
);
1443 /* copy tool data */
1444 if (lptthit
->ti
.cbSize
>= TTTOOLINFOW_V1_SIZE
) {
1445 toolPtr
= &infoPtr
->tools
[nTool
];
1447 lptthit
->ti
.uFlags
= toolPtr
->uFlags
;
1448 lptthit
->ti
.hwnd
= toolPtr
->hwnd
;
1449 lptthit
->ti
.uId
= toolPtr
->uId
;
1450 lptthit
->ti
.rect
= toolPtr
->rect
;
1451 lptthit
->ti
.hinst
= toolPtr
->hinst
;
1452 TOOLTIPS_CopyInfoT (toolPtr
, &lptthit
->ti
, isW
);
1453 if (lptthit
->ti
.cbSize
>= TTTOOLINFOW_V2_SIZE
)
1454 lptthit
->ti
.lParam
= toolPtr
->lParam
;
1462 TOOLTIPS_NewToolRectT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
)
1467 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1470 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1472 TRACE("nTool = %d, rect = %s\n", nTool
, wine_dbgstr_rect(&ti
->rect
));
1474 if (nTool
== -1) return 0;
1476 infoPtr
->tools
[nTool
].rect
= ti
->rect
;
1482 static inline LRESULT
1483 TOOLTIPS_Pop (TOOLTIPS_INFO
*infoPtr
)
1485 TOOLTIPS_Hide (infoPtr
);
1492 TOOLTIPS_RelayEvent (TOOLTIPS_INFO
*infoPtr
, LPMSG lpMsg
)
1498 ERR("lpMsg == NULL!\n");
1502 switch (lpMsg
->message
) {
1503 case WM_LBUTTONDOWN
:
1505 case WM_MBUTTONDOWN
:
1507 case WM_RBUTTONDOWN
:
1509 TOOLTIPS_Hide (infoPtr
);
1513 pt
.x
= (short)LOWORD(lpMsg
->lParam
);
1514 pt
.y
= (short)HIWORD(lpMsg
->lParam
);
1515 nOldTool
= infoPtr
->nTool
;
1516 infoPtr
->nTool
= TOOLTIPS_GetToolFromPoint(infoPtr
, lpMsg
->hwnd
,
1518 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
1519 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
1520 TRACE("WM_MOUSEMOVE (%p %d %d)\n", infoPtr
->hwndSelf
, pt
.x
, pt
.y
);
1522 if (infoPtr
->nTool
!= nOldTool
) {
1523 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
1524 TOOLTIPS_Hide(infoPtr
);
1525 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1526 } else if (nOldTool
== -1) { /* Moved from outside */
1527 if(infoPtr
->bActive
) {
1528 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1529 TRACE("timer 1 started!\n");
1531 } else { /* Moved from one to another */
1532 TOOLTIPS_Hide (infoPtr
);
1533 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
1534 if(infoPtr
->bActive
) {
1535 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
1536 TRACE("timer 1 started!\n");
1539 } else if(infoPtr
->nCurrentTool
!= -1) { /* restart autopop */
1540 KillTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
);
1541 SetTimer(infoPtr
->hwndSelf
, ID_TIMERPOP
, infoPtr
->nAutoPopTime
, 0);
1542 TRACE("timer 2 restarted\n");
1543 } else if(infoPtr
->nTool
!= -1 && infoPtr
->bActive
) {
1544 /* previous show attempt didn't result in tooltip so try again */
1545 SetTimer(infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nInitialTime
, 0);
1546 TRACE("timer 1 started!\n");
1556 TOOLTIPS_SetDelayTime (TOOLTIPS_INFO
*infoPtr
, DWORD duration
, INT nTime
)
1559 case TTDT_AUTOMATIC
:
1561 nTime
= GetDoubleClickTime();
1562 infoPtr
->nReshowTime
= nTime
/ 5;
1563 infoPtr
->nAutoPopTime
= nTime
* 10;
1564 infoPtr
->nInitialTime
= nTime
;
1569 nTime
= GetDoubleClickTime() / 5;
1570 infoPtr
->nReshowTime
= nTime
;
1575 nTime
= GetDoubleClickTime() * 10;
1576 infoPtr
->nAutoPopTime
= nTime
;
1581 nTime
= GetDoubleClickTime();
1582 infoPtr
->nInitialTime
= nTime
;
1586 WARN("Invalid duration flag %x\n", duration
);
1595 TOOLTIPS_SetMargin (TOOLTIPS_INFO
*infoPtr
, const RECT
*lpRect
)
1597 infoPtr
->rcMargin
.left
= lpRect
->left
;
1598 infoPtr
->rcMargin
.right
= lpRect
->right
;
1599 infoPtr
->rcMargin
.bottom
= lpRect
->bottom
;
1600 infoPtr
->rcMargin
.top
= lpRect
->top
;
1606 static inline LRESULT
1607 TOOLTIPS_SetMaxTipWidth (TOOLTIPS_INFO
*infoPtr
, INT MaxWidth
)
1609 INT nTemp
= infoPtr
->nMaxTipWidth
;
1611 infoPtr
->nMaxTipWidth
= MaxWidth
;
1617 static inline LRESULT
1618 TOOLTIPS_SetTipBkColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrBk
)
1620 infoPtr
->clrBk
= clrBk
;
1626 static inline LRESULT
1627 TOOLTIPS_SetTipTextColor (TOOLTIPS_INFO
*infoPtr
, COLORREF clrText
)
1629 infoPtr
->clrText
= clrText
;
1636 TOOLTIPS_SetTitleT (TOOLTIPS_INFO
*infoPtr
, UINT_PTR uTitleIcon
, LPCWSTR pszTitle
,
1641 TRACE("hwnd = %p, title = %s, icon = %p\n", infoPtr
->hwndSelf
, debugstr_w(pszTitle
),
1644 Free(infoPtr
->pszTitle
);
1650 size
= (strlenW(pszTitle
)+1)*sizeof(WCHAR
);
1651 infoPtr
->pszTitle
= Alloc(size
);
1652 if (!infoPtr
->pszTitle
)
1654 memcpy(infoPtr
->pszTitle
, pszTitle
, size
);
1658 size
= sizeof(WCHAR
)*MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pszTitle
, -1, NULL
, 0);
1659 infoPtr
->pszTitle
= Alloc(size
);
1660 if (!infoPtr
->pszTitle
)
1662 MultiByteToWideChar(CP_ACP
, 0, (LPCSTR
)pszTitle
, -1, infoPtr
->pszTitle
, size
/sizeof(WCHAR
));
1666 infoPtr
->pszTitle
= NULL
;
1668 if (uTitleIcon
<= TTI_ERROR
)
1669 infoPtr
->hTitleIcon
= hTooltipIcons
[uTitleIcon
];
1671 infoPtr
->hTitleIcon
= CopyIcon((HICON
)uTitleIcon
);
1673 TRACE("icon = %p\n", infoPtr
->hTitleIcon
);
1680 TOOLTIPS_SetToolInfoT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1682 TTTOOL_INFO
*toolPtr
;
1686 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1689 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1690 if (nTool
== -1) return 0;
1692 TRACE("tool %d\n", nTool
);
1694 toolPtr
= &infoPtr
->tools
[nTool
];
1696 /* copy tool data */
1697 toolPtr
->uFlags
= ti
->uFlags
;
1698 toolPtr
->hwnd
= ti
->hwnd
;
1699 toolPtr
->uId
= ti
->uId
;
1700 toolPtr
->rect
= ti
->rect
;
1701 toolPtr
->hinst
= ti
->hinst
;
1703 if (IS_INTRESOURCE(ti
->lpszText
)) {
1704 TRACE("set string id %x!\n", LOWORD(ti
->lpszText
));
1705 toolPtr
->lpszText
= ti
->lpszText
;
1708 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
))
1709 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1711 if ( (toolPtr
->lpszText
) &&
1712 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
1713 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
1714 Free (toolPtr
->lpszText
);
1715 toolPtr
->lpszText
= NULL
;
1719 INT len
= lstrlenW (ti
->lpszText
);
1720 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
1721 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1724 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
,
1726 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1727 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1,
1728 toolPtr
->lpszText
, len
);
1734 if (ti
->cbSize
>= TTTOOLINFOW_V2_SIZE
)
1735 toolPtr
->lParam
= ti
->lParam
;
1737 if (infoPtr
->nCurrentTool
== nTool
)
1739 TOOLTIPS_GetTipText (infoPtr
, infoPtr
->nCurrentTool
, infoPtr
->szTipText
);
1741 if (infoPtr
->szTipText
[0] == 0)
1742 TOOLTIPS_Hide(infoPtr
);
1744 TOOLTIPS_Show (infoPtr
, FALSE
);
1752 TOOLTIPS_TrackActivate (TOOLTIPS_INFO
*infoPtr
, BOOL track_activate
, const TTTOOLINFOA
*ti
)
1754 if (track_activate
) {
1757 if (ti
->cbSize
< TTTOOLINFOA_V1_SIZE
)
1761 infoPtr
->nTrackTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, (const TTTOOLINFOW
*)ti
);
1762 if (infoPtr
->nTrackTool
!= -1) {
1763 TRACE("activated!\n");
1764 infoPtr
->bTrackActive
= TRUE
;
1765 TOOLTIPS_TrackShow (infoPtr
);
1770 TOOLTIPS_TrackHide (infoPtr
);
1772 infoPtr
->bTrackActive
= FALSE
;
1773 infoPtr
->nTrackTool
= -1;
1775 TRACE("deactivated!\n");
1783 TOOLTIPS_TrackPosition (TOOLTIPS_INFO
*infoPtr
, LPARAM coord
)
1785 infoPtr
->xTrackPos
= (INT
)LOWORD(coord
);
1786 infoPtr
->yTrackPos
= (INT
)HIWORD(coord
);
1788 if (infoPtr
->bTrackActive
) {
1790 infoPtr
->xTrackPos
, infoPtr
->yTrackPos
);
1792 TOOLTIPS_TrackShow (infoPtr
);
1800 TOOLTIPS_Update (TOOLTIPS_INFO
*infoPtr
)
1802 if (infoPtr
->nCurrentTool
!= -1)
1803 UpdateWindow (infoPtr
->hwndSelf
);
1810 TOOLTIPS_UpdateTipTextT (TOOLTIPS_INFO
*infoPtr
, const TTTOOLINFOW
*ti
, BOOL isW
)
1812 TTTOOL_INFO
*toolPtr
;
1816 if (ti
->cbSize
< TTTOOLINFOW_V1_SIZE
)
1819 nTool
= TOOLTIPS_GetToolFromInfoT (infoPtr
, ti
);
1823 TRACE("tool %d\n", nTool
);
1825 toolPtr
= &infoPtr
->tools
[nTool
];
1827 /* copy tool text */
1828 toolPtr
->hinst
= ti
->hinst
;
1830 if (IS_INTRESOURCE(ti
->lpszText
)){
1831 toolPtr
->lpszText
= ti
->lpszText
;
1833 else if (ti
->lpszText
) {
1834 if (TOOLTIPS_IsCallbackString(ti
->lpszText
, isW
))
1835 toolPtr
->lpszText
= LPSTR_TEXTCALLBACKW
;
1837 if ( (toolPtr
->lpszText
) &&
1838 !IS_INTRESOURCE(toolPtr
->lpszText
) ) {
1839 if( toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
)
1840 Free (toolPtr
->lpszText
);
1841 toolPtr
->lpszText
= NULL
;
1845 INT len
= lstrlenW (ti
->lpszText
);
1846 toolPtr
->lpszText
= Alloc ((len
+1)*sizeof(WCHAR
));
1847 strcpyW (toolPtr
->lpszText
, ti
->lpszText
);
1850 INT len
= MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
,
1852 toolPtr
->lpszText
= Alloc (len
* sizeof(WCHAR
));
1853 MultiByteToWideChar(CP_ACP
, 0, (LPSTR
)ti
->lpszText
, -1,
1854 toolPtr
->lpszText
, len
);
1860 if(infoPtr
->nCurrentTool
== -1) return 0;
1862 if (infoPtr
->bActive
)
1863 TOOLTIPS_Show (infoPtr
, FALSE
);
1864 else if (infoPtr
->bTrackActive
)
1865 TOOLTIPS_Show (infoPtr
, TRUE
);
1872 TOOLTIPS_Create (HWND hwnd
)
1874 TOOLTIPS_INFO
*infoPtr
;
1876 /* allocate memory for info structure */
1877 infoPtr
= Alloc (sizeof(TOOLTIPS_INFO
));
1878 SetWindowLongPtrW (hwnd
, 0, (DWORD_PTR
)infoPtr
);
1880 /* initialize info structure */
1881 infoPtr
->bActive
= TRUE
;
1882 infoPtr
->bTrackActive
= FALSE
;
1884 infoPtr
->nMaxTipWidth
= -1;
1885 infoPtr
->nTool
= -1;
1886 infoPtr
->nCurrentTool
= -1;
1887 infoPtr
->nTrackTool
= -1;
1888 infoPtr
->hwndSelf
= hwnd
;
1890 /* initialize colours and fonts */
1891 TOOLTIPS_InitSystemSettings(infoPtr
);
1893 TOOLTIPS_SetDelayTime(infoPtr
, TTDT_AUTOMATIC
, 0);
1895 SetWindowPos (hwnd
, HWND_TOP
, 0, 0, 0, 0, SWP_NOZORDER
| SWP_HIDEWINDOW
| SWP_NOACTIVATE
);
1902 TOOLTIPS_Destroy (TOOLTIPS_INFO
*infoPtr
)
1904 TTTOOL_INFO
*toolPtr
;
1908 if (infoPtr
->tools
) {
1909 for (i
= 0; i
< infoPtr
->uNumTools
; i
++) {
1910 toolPtr
= &infoPtr
->tools
[i
];
1911 if (toolPtr
->lpszText
) {
1912 if ( (toolPtr
->lpszText
!= LPSTR_TEXTCALLBACKW
) &&
1913 !IS_INTRESOURCE(toolPtr
->lpszText
) )
1915 Free (toolPtr
->lpszText
);
1916 toolPtr
->lpszText
= NULL
;
1920 /* remove subclassing */
1921 if (toolPtr
->uInternalFlags
& TTF_SUBCLASS
) {
1922 if (toolPtr
->uInternalFlags
& TTF_IDISHWND
) {
1923 RemoveWindowSubclass((HWND
)toolPtr
->uId
, TOOLTIPS_SubclassProc
, 1);
1926 RemoveWindowSubclass(toolPtr
->hwnd
, TOOLTIPS_SubclassProc
, 1);
1930 Free (infoPtr
->tools
);
1933 /* free title string */
1934 Free (infoPtr
->pszTitle
);
1935 /* free title icon if not a standard one */
1936 if (TOOLTIPS_GetTitleIconIndex(infoPtr
->hTitleIcon
) > TTI_ERROR
)
1937 DeleteObject(infoPtr
->hTitleIcon
);
1940 DeleteObject (infoPtr
->hFont
);
1941 DeleteObject (infoPtr
->hTitleFont
);
1943 /* free tool tips info data */
1944 SetWindowLongPtrW(infoPtr
->hwndSelf
, 0, 0);
1951 static inline LRESULT
1952 TOOLTIPS_GetFont (const TOOLTIPS_INFO
*infoPtr
)
1954 return (LRESULT
)infoPtr
->hFont
;
1959 TOOLTIPS_MouseMessage (TOOLTIPS_INFO
*infoPtr
)
1961 TOOLTIPS_Hide (infoPtr
);
1968 TOOLTIPS_NCCreate (HWND hwnd
)
1970 DWORD dwStyle
= GetWindowLongW (hwnd
, GWL_STYLE
);
1971 DWORD dwExStyle
= GetWindowLongW (hwnd
, GWL_EXSTYLE
);
1973 dwStyle
&= ~(WS_CHILD
| /*WS_MAXIMIZE |*/ WS_BORDER
| WS_DLGFRAME
);
1974 dwStyle
|= (WS_POPUP
| WS_BORDER
| WS_CLIPSIBLINGS
);
1976 /* WS_BORDER only draws a border round the window rect, not the
1977 * window region, therefore it is useless to us in balloon mode */
1978 if (dwStyle
& TTS_BALLOON
) dwStyle
&= ~WS_BORDER
;
1980 SetWindowLongW (hwnd
, GWL_STYLE
, dwStyle
);
1982 dwExStyle
|= WS_EX_TOOLWINDOW
;
1983 SetWindowLongW (hwnd
, GWL_EXSTYLE
, dwExStyle
);
1990 TOOLTIPS_NCHitTest (const TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
1992 INT nTool
= (infoPtr
->bTrackActive
) ? infoPtr
->nTrackTool
: infoPtr
->nTool
;
1994 TRACE(" nTool=%d\n", nTool
);
1996 if ((nTool
> -1) && (nTool
< infoPtr
->uNumTools
)) {
1997 if (infoPtr
->tools
[nTool
].uFlags
& TTF_TRANSPARENT
) {
1998 TRACE("-- in transparent mode!\n");
1999 return HTTRANSPARENT
;
2003 return DefWindowProcW (infoPtr
->hwndSelf
, WM_NCHITTEST
, wParam
, lParam
);
2008 TOOLTIPS_NotifyFormat (TOOLTIPS_INFO
*infoPtr
, WPARAM wParam
, LPARAM lParam
)
2011 TTTOOL_INFO
*toolPtr
= infoPtr
->tools
;
2014 TRACE("infoPtr=%p wParam=%lx lParam=%p\n", infoPtr
, wParam
, (PVOID
)lParam
);
2016 if (lParam
== NF_QUERY
) {
2017 if (toolPtr
->bNotifyUnicode
) {
2023 else if (lParam
== NF_REQUERY
) {
2024 nResult
= SendMessageW (toolPtr
->hwnd
, WM_NOTIFYFORMAT
,
2025 (WPARAM
)infoPtr
->hwndSelf
, (LPARAM
)NF_QUERY
);
2026 if (nResult
== NFR_ANSI
) {
2027 toolPtr
->bNotifyUnicode
= FALSE
;
2028 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_ANSI\n");
2029 } else if (nResult
== NFR_UNICODE
) {
2030 toolPtr
->bNotifyUnicode
= TRUE
;
2031 TRACE(" -- WM_NOTIFYFORMAT returns: NFR_UNICODE\n");
2033 TRACE (" -- WM_NOTIFYFORMAT returns: error!\n");
2038 FIXME ("hwnd=%p wParam=%lx lParam=%lx\n", infoPtr
->hwndSelf
, wParam
, lParam
);
2046 TOOLTIPS_Paint (const TOOLTIPS_INFO
*infoPtr
, HDC hDC
)
2051 hdc
= (hDC
== NULL
) ? BeginPaint (infoPtr
->hwndSelf
, &ps
) : hDC
;
2052 TOOLTIPS_Refresh (infoPtr
, hdc
);
2054 EndPaint (infoPtr
->hwndSelf
, &ps
);
2060 TOOLTIPS_SetFont (TOOLTIPS_INFO
*infoPtr
, HFONT hFont
, BOOL redraw
)
2064 if(!GetObjectW(hFont
, sizeof(lf
), &lf
))
2067 DeleteObject (infoPtr
->hFont
);
2068 infoPtr
->hFont
= CreateFontIndirectW(&lf
);
2070 DeleteObject (infoPtr
->hTitleFont
);
2071 lf
.lfWeight
= FW_BOLD
;
2072 infoPtr
->hTitleFont
= CreateFontIndirectW(&lf
);
2074 if (redraw
&& infoPtr
->nCurrentTool
!= -1) {
2075 FIXME("full redraw needed!\n");
2081 /******************************************************************
2082 * TOOLTIPS_GetTextLength
2084 * This function is called when the tooltip receive a
2085 * WM_GETTEXTLENGTH message.
2087 * returns the length, in characters, of the tip text
2089 static inline LRESULT
2090 TOOLTIPS_GetTextLength(const TOOLTIPS_INFO
*infoPtr
)
2092 return strlenW(infoPtr
->szTipText
);
2095 /******************************************************************
2096 * TOOLTIPS_OnWMGetText
2098 * This function is called when the tooltip receive a
2099 * WM_GETTEXT message.
2100 * wParam : specifies the maximum number of characters to be copied
2101 * lParam : is the pointer to the buffer that will receive
2104 * returns the number of characters copied
2107 TOOLTIPS_OnWMGetText (const TOOLTIPS_INFO
*infoPtr
, WPARAM size
, LPWSTR pszText
)
2114 res
= min(strlenW(infoPtr
->szTipText
)+1, size
);
2115 memcpy(pszText
, infoPtr
->szTipText
, res
*sizeof(WCHAR
));
2116 pszText
[res
-1] = '\0';
2121 TOOLTIPS_Timer (TOOLTIPS_INFO
*infoPtr
, INT iTimer
)
2125 TRACE("timer %d (%p) expired!\n", iTimer
, infoPtr
->hwndSelf
);
2129 KillTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
);
2130 nOldTool
= infoPtr
->nTool
;
2131 if ((infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, TRUE
)) == nOldTool
)
2132 TOOLTIPS_Show (infoPtr
, FALSE
);
2136 TOOLTIPS_Hide (infoPtr
);
2140 nOldTool
= infoPtr
->nTool
;
2141 infoPtr
->nTool
= TOOLTIPS_CheckTool (infoPtr
, FALSE
);
2142 TRACE("tool (%p) %d %d %d\n", infoPtr
->hwndSelf
, nOldTool
,
2143 infoPtr
->nTool
, infoPtr
->nCurrentTool
);
2144 if (infoPtr
->nTool
!= nOldTool
) {
2145 if(infoPtr
->nTool
== -1) { /* Moved out of all tools */
2146 TOOLTIPS_Hide(infoPtr
);
2147 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2148 } else if (nOldTool
== -1) { /* Moved from outside */
2149 ERR("How did this happen?\n");
2150 } else { /* Moved from one to another */
2151 TOOLTIPS_Hide (infoPtr
);
2152 KillTimer(infoPtr
->hwndSelf
, ID_TIMERLEAVE
);
2153 if(infoPtr
->bActive
) {
2154 SetTimer (infoPtr
->hwndSelf
, ID_TIMERSHOW
, infoPtr
->nReshowTime
, 0);
2155 TRACE("timer 1 started!\n");
2162 ERR("Unknown timer id %d\n", iTimer
);
2170 TOOLTIPS_WinIniChange (TOOLTIPS_INFO
*infoPtr
)
2172 TOOLTIPS_InitSystemSettings (infoPtr
);
2178 static LRESULT CALLBACK
2179 TOOLTIPS_SubclassProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
, UINT_PTR uID
, DWORD_PTR dwRef
)
2181 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr ((HWND
)dwRef
);
2186 case WM_LBUTTONDOWN
:
2188 case WM_MBUTTONDOWN
:
2190 case WM_RBUTTONDOWN
:
2194 msg
.wParam
= wParam
;
2195 msg
.lParam
= lParam
;
2196 TOOLTIPS_RelayEvent(infoPtr
, &msg
);
2202 return DefSubclassProc(hwnd
, uMsg
, wParam
, lParam
);
2206 static LRESULT CALLBACK
2207 TOOLTIPS_WindowProc (HWND hwnd
, UINT uMsg
, WPARAM wParam
, LPARAM lParam
)
2209 TOOLTIPS_INFO
*infoPtr
= TOOLTIPS_GetInfoPtr (hwnd
);
2211 TRACE("hwnd=%p msg=%x wparam=%lx lParam=%lx\n", hwnd
, uMsg
, wParam
, lParam
);
2212 if (!infoPtr
&& (uMsg
!= WM_CREATE
) && (uMsg
!= WM_NCCREATE
))
2213 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2217 return TOOLTIPS_Activate (infoPtr
, (BOOL
)wParam
);
2221 return TOOLTIPS_AddToolT (infoPtr
, (LPTTTOOLINFOW
)lParam
, uMsg
== TTM_ADDTOOLW
);
2225 return TOOLTIPS_DelToolT (infoPtr
, (LPTOOLINFOW
)lParam
,
2226 uMsg
== TTM_DELTOOLW
);
2227 case TTM_ENUMTOOLSA
:
2228 case TTM_ENUMTOOLSW
:
2229 return TOOLTIPS_EnumToolsT (infoPtr
, (UINT
)wParam
, (LPTTTOOLINFOW
)lParam
,
2230 uMsg
== TTM_ENUMTOOLSW
);
2231 case TTM_GETBUBBLESIZE
:
2232 return TOOLTIPS_GetBubbleSize (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2234 case TTM_GETCURRENTTOOLA
:
2235 case TTM_GETCURRENTTOOLW
:
2236 return TOOLTIPS_GetCurrentToolT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2237 uMsg
== TTM_GETCURRENTTOOLW
);
2239 case TTM_GETDELAYTIME
:
2240 return TOOLTIPS_GetDelayTime (infoPtr
, (DWORD
)wParam
);
2243 return TOOLTIPS_GetMargin (infoPtr
, (LPRECT
)lParam
);
2245 case TTM_GETMAXTIPWIDTH
:
2246 return TOOLTIPS_GetMaxTipWidth (infoPtr
);
2250 return TOOLTIPS_GetTextT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2251 uMsg
== TTM_GETTEXTW
);
2253 case TTM_GETTIPBKCOLOR
:
2254 return TOOLTIPS_GetTipBkColor (infoPtr
);
2256 case TTM_GETTIPTEXTCOLOR
:
2257 return TOOLTIPS_GetTipTextColor (infoPtr
);
2259 case TTM_GETTOOLCOUNT
:
2260 return TOOLTIPS_GetToolCount (infoPtr
);
2262 case TTM_GETTOOLINFOA
:
2263 case TTM_GETTOOLINFOW
:
2264 return TOOLTIPS_GetToolInfoT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2265 uMsg
== TTM_GETTOOLINFOW
);
2269 return TOOLTIPS_HitTestT (infoPtr
, (LPTTHITTESTINFOW
)lParam
,
2270 uMsg
== TTM_HITTESTW
);
2271 case TTM_NEWTOOLRECTA
:
2272 case TTM_NEWTOOLRECTW
:
2273 return TOOLTIPS_NewToolRectT (infoPtr
, (LPTTTOOLINFOW
)lParam
);
2276 return TOOLTIPS_Pop (infoPtr
);
2278 case TTM_RELAYEVENT
:
2279 return TOOLTIPS_RelayEvent (infoPtr
, (LPMSG
)lParam
);
2281 case TTM_SETDELAYTIME
:
2282 return TOOLTIPS_SetDelayTime (infoPtr
, (DWORD
)wParam
, (INT
)LOWORD(lParam
));
2285 return TOOLTIPS_SetMargin (infoPtr
, (LPRECT
)lParam
);
2287 case TTM_SETMAXTIPWIDTH
:
2288 return TOOLTIPS_SetMaxTipWidth (infoPtr
, (INT
)lParam
);
2290 case TTM_SETTIPBKCOLOR
:
2291 return TOOLTIPS_SetTipBkColor (infoPtr
, (COLORREF
)wParam
);
2293 case TTM_SETTIPTEXTCOLOR
:
2294 return TOOLTIPS_SetTipTextColor (infoPtr
, (COLORREF
)wParam
);
2298 return TOOLTIPS_SetTitleT (infoPtr
, (UINT_PTR
)wParam
, (LPCWSTR
)lParam
,
2299 uMsg
== TTM_SETTITLEW
);
2301 case TTM_SETTOOLINFOA
:
2302 case TTM_SETTOOLINFOW
:
2303 return TOOLTIPS_SetToolInfoT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2304 uMsg
== TTM_SETTOOLINFOW
);
2306 case TTM_TRACKACTIVATE
:
2307 return TOOLTIPS_TrackActivate (infoPtr
, (BOOL
)wParam
, (LPTTTOOLINFOA
)lParam
);
2309 case TTM_TRACKPOSITION
:
2310 return TOOLTIPS_TrackPosition (infoPtr
, lParam
);
2313 return TOOLTIPS_Update (infoPtr
);
2315 case TTM_UPDATETIPTEXTA
:
2316 case TTM_UPDATETIPTEXTW
:
2317 return TOOLTIPS_UpdateTipTextT (infoPtr
, (LPTTTOOLINFOW
)lParam
,
2318 uMsg
== TTM_UPDATETIPTEXTW
);
2320 case TTM_WINDOWFROMPOINT
:
2321 return (LRESULT
)WindowFromPoint (*((LPPOINT
)lParam
));
2324 return TOOLTIPS_Create (hwnd
);
2327 return TOOLTIPS_Destroy (infoPtr
);
2330 /* we draw the background in WM_PAINT */
2334 return TOOLTIPS_GetFont (infoPtr
);
2337 return TOOLTIPS_OnWMGetText (infoPtr
, wParam
, (LPWSTR
)lParam
);
2339 case WM_GETTEXTLENGTH
:
2340 return TOOLTIPS_GetTextLength (infoPtr
);
2342 case WM_LBUTTONDOWN
:
2344 case WM_MBUTTONDOWN
:
2346 case WM_RBUTTONDOWN
:
2349 return TOOLTIPS_MouseMessage (infoPtr
);
2352 return TOOLTIPS_NCCreate (hwnd
);
2355 return TOOLTIPS_NCHitTest (infoPtr
, wParam
, lParam
);
2357 case WM_NOTIFYFORMAT
:
2358 return TOOLTIPS_NotifyFormat (infoPtr
, wParam
, lParam
);
2360 case WM_PRINTCLIENT
:
2362 return TOOLTIPS_Paint (infoPtr
, (HDC
)wParam
);
2365 return TOOLTIPS_SetFont (infoPtr
, (HFONT
)wParam
, LOWORD(lParam
));
2367 case WM_SYSCOLORCHANGE
:
2368 COMCTL32_RefreshSysColors();
2372 return TOOLTIPS_Timer (infoPtr
, (INT
)wParam
);
2374 case WM_WININICHANGE
:
2375 return TOOLTIPS_WinIniChange (infoPtr
);
2378 if ((uMsg
>= WM_USER
) && (uMsg
< WM_APP
) && !COMCTL32_IsReflectedMessage(uMsg
))
2379 ERR("unknown msg %04x wp=%08lx lp=%08lx\n",
2380 uMsg
, wParam
, lParam
);
2381 return DefWindowProcW (hwnd
, uMsg
, wParam
, lParam
);
2387 TOOLTIPS_Register (void)
2391 ZeroMemory (&wndClass
, sizeof(WNDCLASSW
));
2392 wndClass
.style
= CS_GLOBALCLASS
| CS_DBLCLKS
| CS_SAVEBITS
;
2393 wndClass
.lpfnWndProc
= TOOLTIPS_WindowProc
;
2394 wndClass
.cbClsExtra
= 0;
2395 wndClass
.cbWndExtra
= sizeof(TOOLTIPS_INFO
*);
2396 wndClass
.hCursor
= LoadCursorW (0, (LPWSTR
)IDC_ARROW
);
2397 wndClass
.hbrBackground
= 0;
2398 wndClass
.lpszClassName
= TOOLTIPS_CLASSW
;
2400 RegisterClassW (&wndClass
);
2402 hTooltipIcons
[TTI_NONE
] = NULL
;
2403 hTooltipIcons
[TTI_INFO
] = LoadImageW(COMCTL32_hModule
,
2404 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_INFO_SM
), IMAGE_ICON
, 0, 0, 0);
2405 hTooltipIcons
[TTI_WARNING
] = LoadImageW(COMCTL32_hModule
,
2406 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_WARN_SM
), IMAGE_ICON
, 0, 0, 0);
2407 hTooltipIcons
[TTI_ERROR
] = LoadImageW(COMCTL32_hModule
,
2408 (LPCWSTR
)MAKEINTRESOURCE(IDI_TT_ERROR_SM
), IMAGE_ICON
, 0, 0, 0);
2413 TOOLTIPS_Unregister (void)
2416 for (i
= TTI_INFO
; i
<= TTI_ERROR
; i
++)
2417 DestroyIcon(hTooltipIcons
[i
]);
2418 UnregisterClassW (TOOLTIPS_CLASSW
, NULL
);