http://bugs.winehq.org/show_bug.cgi?id=58235
Bug ID: 58235 Summary: Tooltip: "arrow" of tooltip not displayed correctly Product: Wine Version: 10.7 Hardware: x86-64 OS: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: comctl32 Assignee: wine-bugs@winehq.org Reporter: kyle.kcsoftwares@gmail.com Distribution: ---
Created attachment 78562 --> http://bugs.winehq.org/attachment.cgi?id=78562 Missing Arrow
Using sample application
The "arrow" of tooltip is not rendered correctly
===== hWnd := Control.Handle; hWndTip := CreateWindow(TOOLTIPS_CLASS, nil, WS_POPUP or TTS_NOPREFIX or TTS_BALLOON or TTS_ALWAYSTIP, 0, 0, 0, 0, hWnd, 0, HInstance, nil); if hWndTip <> 0 then begin SetWindowPos(hWndTip, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOACTIVATE or SWP_NOMOVE or SWP_NOSIZE); ti.cbSize := SizeOf(ti); ti.uFlags := TTF_CENTERTIP or TTF_TRANSPARENT or TTF_SUBCLASS; ti.hwnd := hWnd; ti.lpszText := Text; Windows.GetClientRect(hWnd, ti.rect); if (BackCl <> clNone) then SendMessage(hWndTip, TTM_SETTIPBKCOLOR, BackCL, 0); if (TextCL <> clNone) then SendMessage(hWndTip, TTM_SETTIPTEXTCOLOR, TextCL, 0); SendMessage(hWndTip, TTM_ADDTOOL, 1, Integer(@ti)); if Title <> '' then SendMessage(hWndTip, TTM_SETTITLE, Icon mod 4, Integer(Title)); end; =====
http://bugs.winehq.org/show_bug.cgi?id=58235
--- Comment #1 from KRosUser kyle.kcsoftwares@gmail.com --- Created attachment 78563 --> http://bugs.winehq.org/attachment.cgi?id=78563 Correct display in Win11
http://bugs.winehq.org/show_bug.cgi?id=58235
--- Comment #2 from KRosUser kyle.kcsoftwares@gmail.com --- Created attachment 78564 --> http://bugs.winehq.org/attachment.cgi?id=78564 Sample app and source code
http://bugs.winehq.org/show_bug.cgi?id=58235
KRosUser kyle.kcsoftwares@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Distribution|--- |Ubuntu
http://bugs.winehq.org/show_bug.cgi?id=58235
KRosUser kyle.kcsoftwares@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- Summary|Tooltip: "arrow" of tooltip |Tooltips: "arrow" of |not displayed correctly |tooltip not displayed | |correctly