View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0001356 | JEDI VCL | 00 JVCL Components | public | 2004-02-22 16:37 | 2004-03-09 02:47 |
| Reporter | anonymous | Assigned To | AHUser | ||
| Priority | normal | Severity | feature | Reproducibility | always |
| Status | closed | Resolution | fixed | ||
| Product Version | |||||
| Target Version | Fixed in Version | ||||
| Summary | 0001356: JvCaptionButton will not show hint on Unicode form (TntForm) | ||||
| Description | When using Tnt Unicode Controls http://home.ccci.org/wolbrink/tnt/delphi_unicode_controls.htm hint is not shown for JvCaptionButton. Regards, Vlad Skarzhevskyy http://mp3bookhelper.sourceforge.net/ | ||||
| Additional Information | This is my solution function TJvCaptionButton.HandleNotify(var Msg: TWMNotify): Boolean; var CurPos: TPoint; LButtonRect, WindowRect: TRect; begin // if we receive a TTN_GETDISPINFO notification // and it is from the tooltip Result := ((Msg.NMHdr.Code = TTN_NEEDTEXT) or (Msg.NMHdr.Code = TTN_NEEDTEXTW)) and (Msg.NMHdr.hWndFrom = FToolTipHandle); if Result and (ShowHint or (ParentShowHint and ParentForm.ShowHint)) then begin // get cursor position GetCursorPos(CurPos); GetWindowRect(ParentFormHandle, WindowRect); LButtonRect := FButtonRect; OffsetRect(LButtonRect, WindowRect.Left, WindowRect.Top); // if the mouse is in the area of the button if PtInRect(LButtonRect, CurPos) then begin if (Msg.NMHdr.Code = TTN_NEEDTEXTA) then begin with PNMTTDispInfo(Msg.NMHdr)^ do begin // then we return the hint lpszText := PChar(FHint); hinst := 0; uFlags := TTF_IDISHWND; hdr.idFrom := ParentFormHandle; end end else begin with PNMTTDispInfoW(Msg.NMHdr)^ do begin // then we return the hint lpszText := PWideChar(WideString(FHint)); hinst := 0; uFlags := TTF_IDISHWND; hdr.idFrom := ParentFormHandle; end end end else //else we hide the tooltip HideToolTip; end; end; | ||||
| Tags | No tags attached. | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2004-02-22 16:37 | anonymous | New Issue | |
| 2004-02-23 02:45 | anonymous | Note Added: 0003002 | |
| 2004-02-23 02:47 | AHUser | Status | new => resolved |
| 2004-02-23 02:47 | AHUser | Resolution | open => fixed |
| 2004-02-23 02:47 | AHUser | Assigned To | => AHUser |
| 2004-02-23 02:47 | AHUser | Note Added: 0003003 | |
| 2004-03-09 02:47 |
|
Status | resolved => closed |