summaryrefslogtreecommitdiff
path: root/src/corelib/gfxbase.pas
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/gfxbase.pas')
-rw-r--r--src/corelib/gfxbase.pas9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/corelib/gfxbase.pas b/src/corelib/gfxbase.pas
index 4a43fb49..78ef4b66 100644
--- a/src/corelib/gfxbase.pas
+++ b/src/corelib/gfxbase.pas
@@ -368,8 +368,10 @@ type
FTopModalForm: TfpgWindowBase;
protected
FIsInitialized: Boolean;
+ function DoGetFontFaceList: TStringList; virtual; abstract;
public
constructor Create(const AParams: string); virtual; abstract;
+ function GetFontFaceList: TStringList;
property IsInitialized: boolean read FIsInitialized;
property TopModalForm: TfpgWindowBase read FTopModalForm write FTopModalForm;
property MainForm: TfpgWindowBase read FMainForm write FMainForm;
@@ -1474,5 +1476,12 @@ begin
result := 2.0;
end;
+{ TfpgApplicationBase }
+
+function TfpgApplicationBase.GetFontFaceList: TStringList;
+begin
+ Result := DoGetFontFaceList;
+end;
+
end.