I'm trying to create TLabel descendant, which will display hint with the whole caption when the text width exceed label width. I've set the EllipsisPosition property to epEndEllipsis and my caption is automatically shorted by an ellipsis at the end. That's fine.
However I need to be notified, that the text has been shortened to set up the hint. This in my case may happen only when the text is changed (message CM_TEXTCHANGED) and when the component is resized.
And that's my question - how can I be notified, that my TLabel has been resized ? I have the anchors there, so it's resized along with the form, but I would like to wrap it in the separate TLabel descendant.
This code works, but isn't there a better way ? Something like WM_EXITSIZEMOVE, but working for TGraphicControl ?
procedure TEllipsisLabel.WMWindowPosChanged(var Message: TWMWindowPosChanged);
begin
inherited;
if Assigned(Parent) then
if Canvas.TextWidth(Caption) > Width then
begin
ShowHint := True;
Hint := Caption;
end
else
begin
ShowHint := False;
Hint := '';
end;
end;
Thanks a lot :)
SetBounds, which is whereWM_WINDOWPOSCHANGEDis performed. Or if you wish to put the code in an event handler, you can simply publish theOnResizeproperty of your descendant. Don't see any reason why either one would be better than a message handler though... – Sertac Akyuz Mar 10 '11 at 17:11