mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 17:18:17 +02:00
published TPanel.Font
git-svn-id: trunk@7871 -
This commit is contained in:
parent
06a1976a71
commit
20f205ab1d
@ -1677,6 +1677,7 @@ type
|
||||
protected
|
||||
procedure WMPaint(var Message: TLMPaint); message LM_PAINT;
|
||||
procedure PaintWindow(DC: HDC); override;
|
||||
procedure FontChanged(Sender: TObject); override;
|
||||
public
|
||||
constructor Create(AOwner: TComponent); override;
|
||||
destructor Destroy; override;
|
||||
|
@ -80,6 +80,12 @@ begin
|
||||
if Assigned(FOnPaint) then FOnPaint(Self);
|
||||
end;
|
||||
|
||||
procedure TCustomControl.FontChanged(Sender: TObject);
|
||||
begin
|
||||
Canvas.Font:=Font;
|
||||
inherited FontChanged(Sender);
|
||||
end;
|
||||
|
||||
{------------------------------------------------------------------------------
|
||||
Method: TCustomControl.LMPaint
|
||||
Params: Msg: The paint message
|
||||
|
@ -110,6 +110,7 @@ begin
|
||||
TS.Layout:= tlCenter;
|
||||
TS.Opaque:= false;
|
||||
TS.Clipping:= false;
|
||||
TS.SystemFont:=Canvas.Font.IsDefault;
|
||||
Canvas.TextRect(ARect,ARect.Left,ARect.Top, Caption, TS);
|
||||
end;
|
||||
end;
|
||||
|
@ -1751,7 +1751,7 @@ begin
|
||||
begin
|
||||
TWSWinControlClass(WidgetSetClass).SetFont(Self, Font);
|
||||
Exclude(FWinControlFlags,wcfFontChanged);
|
||||
//NotifyControls(CM_ ...);
|
||||
Invalidate;
|
||||
end else
|
||||
Include(FWinControlFlags,wcfFontChanged);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user