FastReport_2022_VCL/LibD28x64/frxHTMLFonts.pas
2024-01-01 16:13:08 +01:00

325 lines
8.8 KiB
ObjectPascal

{
Version 11.7
Copyright (c) 1995-2008 by L. David Baldwin
Copyright (c) 2008-2016 by HtmlViewer Team
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Note that the source modules HTMLGIF1.PAS and DITHERUNIT.PAS
are covered by separate copyright notices located in those modules.
}
{$I frxHTMLCons.inc}
unit frxHTMLFonts;
interface
uses
{$ifdef UseVCLStyles}
System.Types,
System.UITypes,
Vcl.Themes,
{$endif}
{$ifdef LCL}
LclIntf, LclType,
{$else}
{$ifdef MSWindows}
Windows,
{$endif}
{$endif}
SysUtils,
Graphics, Classes, Forms, Contnrs, Variants,
//
frxHTMLGlobals,
frxHTMLStyleTypes;
type
TfrxHtFontInfo = record
iName: ThtString;
iSize: Double;
iStyle: TFontStyles;
iColor: TColor;
ibgColor: TColor;
iCharSet: TFontCharSet;
iCharExtra: Variant;
iWeight: Integer;
end;
TFontInfoObj = class
public
Info: TfrxHtFontInfo;
procedure Assign(Source: TFontInfoObj);
end;
TfrxHtFont = class(TFont)
public
bgColor: TColor;
tmHeight: Integer;
tmDescent: Integer;
tmExternalLeading: Integer;
tmAveCharWidth: Integer;
tmMaxCharWidth: Integer;
tmCharset: Integer;
CharExtra: Integer;
EmSize: Integer;
ExSize: Integer;
constructor Create; {$ifdef LCL} override; {$endif}
procedure Assign(const Info: TfrxHtFontInfo); reintroduce; overload;
procedure Assign(Source: TPersistent); overload; override;
procedure AssignToCanvas(Canvas: TCanvas);
end;
TfrxHtFontCache = class
private
FFontsByName: ThtStringList;
procedure Add(Font: TfrxHtFont);
function Find(const FontInfo: TfrxHtFontInfo): TfrxHtFont;
public
constructor Create;
destructor Destroy; override;
function GetFontLike(var Font: TfrxHtFontInfo): TfrxHtFont;
end;
function frxAllMyFonts: TfrxHtFontCache;
implementation
var
VFontCache: TfrxHtFontCache;
//-- BG ---------------------------------------------------------- 02.05.2011 --
function frxAllMyFonts: TfrxHtFontCache;
// do not inline as it would required to move local var to interface section. {$ifndef UseInline} inline; {$endif}
begin
if VFontCache = nil then
VFontCache := TfrxHtFontCache.Create;
Result := VFontCache;
end;
{ TFontInfoArray }
procedure TFontInfoObj.Assign(Source: TFontInfoObj);
begin
Info := Source.Info;
end;
{----------------TMyFont.Assign}
procedure TfrxHtFont.Assign(Source: TPersistent);
begin
if Source is TfrxHtFont then
begin
bgColor := TfrxHtFont(Source).bgColor;
tmHeight := TfrxHtFont(Source).tmHeight;
tmDescent := TfrxHtFont(Source).tmDescent;
tmExternalLeading := TfrxHtFont(Source).tmExternalLeading;
tmAveCharWidth := TfrxHtFont(Source).tmAveCharWidth;
tmMaxCharWidth := TfrxHtFont(Source).tmMaxCharWidth;
tmCharset := TfrxHtFont(Source).tmCharset;
CharExtra := TfrxHtFont(Source).CharExtra;
EmSize := TfrxHtFont(Source).EmSize;
ExSize := TfrxHtFont(Source).ExSize;
end;
inherited Assign(Source);
end;
//-- BG ---------------------------------------------------------- 12.03.2011 --
procedure TfrxHtFont.Assign(const Info: TfrxHtFontInfo);
begin
Name := htStringToString(Info.iName);
Height := -Round(Info.iSize * Screen.PixelsPerInch / 72);
Style := Info.iStyle;
bgColor := Info.ibgColor;
Color := Info.iColor;
CharSet := Info.iCharSet;
end;
procedure TfrxHtFont.AssignToCanvas(Canvas: TCanvas);
begin
Canvas.Font := Self;
{$ifdef Windows}
SetTextCharacterExtra(Canvas.Handle, CharExtra);
{$endif}
end;
constructor TfrxHtFont.Create;
begin
inherited;
Charset := DEFAULT_CHARSET;
end;
{ TMyFontCache }
//-- BG ---------------------------------------------------------- 30.01.2011 --
procedure TfrxHtFontCache.Add(Font: TfrxHtFont);
var
I: Integer;
FontName: ThtString;
begin
FontName := htLowerCase(htString(Font.Name));
I := -1;
if not FFontsByName.Find(FontName, I) then
begin
I := FFontsByName.Add(FontName);
FFontsByName.Objects[I] := TObjectList.Create(True);
end;
TObjectList(FFontsByName.Objects[I]).Add(Font);
end;
//-- BG ---------------------------------------------------------- 30.01.2011 --
constructor TfrxHtFontCache.Create;
begin
inherited;
FFontsByName := ThtStringList.Create;
FFontsByName.Sorted := True;
end;
//-- BG ---------------------------------------------------------- 30.01.2011 --
destructor TfrxHtFontCache.Destroy;
var
I: Integer;
begin
for I := 0 to FFontsByName.Count - 1 do
FFontsByName.Objects[I].Free;
FFontsByName.Free;
inherited;
end;
//-- BG ---------------------------------------------------------- 30.01.2011 --
function TfrxHtFontCache.Find(const FontInfo: TfrxHtFontInfo): TfrxHtFont;
var
iHeight: Integer;
function SameFonts(F1: TfrxHtFont): Boolean;
begin
if F1.Height = iHeight then
if F1.Style = FontInfo.iStyle then
if F1.Charset = FontInfo.iCharset then
begin
Result := True;
exit;
end;
Result := False;
end;
var
I: Integer;
Fonts: TObjectList;
begin
I := -1;
if FFontsByName.Find(htLowerCase(FontInfo.iName), I) then
begin
iHeight := -Round(FontInfo.iSize * Screen.PixelsPerInch / 72.0);
Fonts := TObjectList(FFontsByName.Objects[I]);
for I := 0 to Fonts.Count - 1 do
begin
Result := TfrxHtFont(Fonts[I]);
if SameFonts(Result) then
exit;
end;
end;
Result := nil;
end;
//-- BG ---------------------------------------------------------- 30.01.2011 --
function TfrxHtFontCache.GetFontLike(var Font: TfrxHtFontInfo): TfrxHtFont;
var
SameFont: TfrxHtFont;
Save: HFONT;
SaveCharSet: TFontCharSet;
tm: TTextmetric;
DC: HDC;
V: Variant;
GotTextMetrics: Boolean;
begin
SameFont := Find(Font);
if SameFont = nil then
begin
SameFont := TfrxHtFont.Create;
SameFont.Name := htStringToString(Font.iName);
SameFont.Height := -Round(Font.iSize * Screen.PixelsPerInch / 72);
SameFont.Style := Font.iStyle;
SameFont.Charset := Font.iCharSet;
Add(SameFont);
GotTextMetrics := False;
if SameFont.Height <> 0 then
begin
DC := GetDC(0);
Save := SelectObject(DC, SameFont.Handle);
try
// If this is a Symbol charset, then keep it that way.
// To check the font's real charset, use Default_Charset
SaveCharSet := SameFont.CharSet;
SameFont.CharSet := DEFAULT_CHARSET;
GotTextMetrics := GetTextMetrics(DC, tm);
if GotTextMetrics then
begin
if tm.tmCharset = Symbol_Charset then
SameFont.Charset := Symbol_CharSet
else
SameFont.Charset := SaveCharSet;
{now get the info on the finalized font}
if SameFont.Charset <> Default_Charset then {else already have the textmetrics}
GetTextMetrics(DC, tm);
end
else
SameFont.Charset := SaveCharSet;
finally
SelectObject(DC, Save);
ReleaseDC(0, DC);
end;
end;
if GotTextMetrics then
begin
{calculate EmSize with current font rather than inherited}
SameFont.EmSize := tm.tmHeight - tm.tmInternalLeading;
SameFont.ExSize := SameFont.EmSize div 2; {apparently correlates with what browsers are doing}
SameFont.tmHeight := tm.tmHeight;
SameFont.tmDescent := tm.tmDescent;
SameFont.tmExternalLeading := tm.tmExternalLeading;
SameFont.tmMaxCharWidth := tm.tmMaxCharWidth;
SameFont.tmAveCharWidth := tm.tmAveCharWidth;
SameFont.tmCharset := tm.tmCharset;
end;
end;
Result := TfrxHtFont.Create;
Result.Assign(SameFont);
Result.bgColor := Font.ibgColor;
Result.Color := Font.iColor;
V := Font.iCharExtra;
if VarType(V) in VarInt then
Result.CharExtra := V
else if VarIsStr(V) then
if V <> 'normal' then
begin
Result.CharExtra := Round(StrToLength(V, False, Result.EmSize, Result.EmSize, 0));
Font.iCharExtra := Result.CharExtra;
end;
end;
initialization
finalization
FreeAndNil(VFontCache);
end.