mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
LCL: hint window: fix default (theme) font after r54293 #2bac2f4e5a
git-svn-id: trunk@54304 -
This commit is contained in:
parent
87641c3ff9
commit
134d8be1e9
@ -895,6 +895,12 @@ type
|
||||
procedure SetColor(Value: TColor); override;
|
||||
function UseBGThemes: Boolean;
|
||||
function UseFGThemes: Boolean;
|
||||
private class var
|
||||
FSysHintFont: TFont;
|
||||
protected
|
||||
class function SysHintFont: TFont;
|
||||
public
|
||||
class destructor Destroy;
|
||||
public
|
||||
constructor Create(AOwner: TComponent); override;
|
||||
destructor Destroy; override;
|
||||
|
@ -20,6 +20,11 @@
|
||||
const
|
||||
HintBorderWidth = 2;
|
||||
|
||||
class destructor THintWindow.Destroy;
|
||||
begin
|
||||
FreeAndNil(FSysHintFont);
|
||||
end;
|
||||
|
||||
constructor THintWindow.Create(AOwner: TComponent);
|
||||
begin
|
||||
// THintWindow has no resource => must be constructed using CreateNew
|
||||
@ -63,6 +68,20 @@ begin
|
||||
inc(FHintRect.Bottom, 4 * HintBorderWidth);
|
||||
end;
|
||||
|
||||
class function THintWindow.SysHintFont: TFont;
|
||||
begin
|
||||
if (FSysHintFont = nil) then
|
||||
begin
|
||||
FSysHintFont := TFont.Create;
|
||||
if not WidgetSet.InitStockFont(FSysHintFont, sfHint) then
|
||||
begin
|
||||
FSysHintFont.FontData := DefFontData;
|
||||
FSysHintFont.Color := clInfoText;
|
||||
end;
|
||||
end;
|
||||
Result := FSysHintFont;
|
||||
end;
|
||||
|
||||
class procedure THintWindow.WSRegisterClass;
|
||||
begin
|
||||
inherited WSRegisterClass;
|
||||
@ -108,7 +127,7 @@ end;
|
||||
|
||||
function THintWindow.UseFGThemes: Boolean;
|
||||
begin
|
||||
Result := (Font.Size = 0) and (Font.Name = '') and (Font.Color = clInfoText);
|
||||
Result := Font.IsEqual(SysHintFont);
|
||||
end;
|
||||
|
||||
procedure THintWindow.SetColor(Value: TColor);
|
||||
|
Loading…
Reference in New Issue
Block a user