1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <sal/config.h>
24 #include <unx/glyphcache.hxx>
25 #include <font/PhysicalFontFace.hxx>
26 #include <font/LogicalFontInstance.hxx>
28 #include <glyphid.hxx>
30 // FreetypeFontFile has the responsibility that a font file is only mapped once.
31 // (#86621#) the old directly ft-managed solution caused it to be mapped
32 // in up to nTTC*nSizes*nOrientation*nSynthetic times
33 class FreetypeFontFile final
39 const unsigned char* GetBuffer() const { return mpFileMap
; }
40 int GetFileSize() const { return mnFileSize
; }
41 const OString
& GetFileName() const { return maNativeFileName
; }
42 int GetLangBoost() const { return mnLangBoost
; }
45 friend class FreetypeManager
;
46 explicit FreetypeFontFile( OString aNativeFileName
);
48 const OString maNativeFileName
;
49 unsigned char* mpFileMap
;
55 // FreetypeFontInfo corresponds to an unscaled font face
56 class FreetypeFontInfo final
61 FT_FaceRec_
* GetFaceFT();
64 FreetypeFontFile
* GetFontFile() const { return mpFontFile
; }
65 const OString
& GetFontFileName() const { return mpFontFile
->GetFileName(); }
66 int GetFontFaceIndex() const { return mnFaceNum
; }
67 int GetFontFaceVariation() const { return mnFaceVariation
; }
68 sal_IntPtr
GetFontId() const { return mnFontId
; }
69 const FontAttributes
& GetFontAttributes() const { return maDevFontAttributes
; }
71 void AnnounceFont( vcl::font::PhysicalFontCollection
* );
74 friend class FreetypeManager
;
75 explicit FreetypeFontInfo(FontAttributes
, FreetypeFontFile
* const pFontFile
,
76 int nFaceNum
, int nFaceVariation
, sal_IntPtr nFontId
);
78 FT_FaceRec_
* maFaceFT
;
79 FreetypeFontFile
* const mpFontFile
;
81 const int mnFaceVariation
;
84 FontAttributes maDevFontAttributes
;
88 class FreetypeFontFace final
: public vcl::font::PhysicalFontFace
91 FreetypeFontInfo
* mpFreetypeFontInfo
;
94 FreetypeFontFace( FreetypeFontInfo
*, const FontAttributes
& );
96 virtual rtl::Reference
<LogicalFontInstance
> CreateFontInstance(const vcl::font::FontSelectPattern
&) const override
;
97 virtual sal_IntPtr
GetFontId() const override
{ return mpFreetypeFontInfo
->GetFontId(); }
99 virtual hb_face_t
* GetHbFace() const override
;
100 virtual hb_blob_t
* GetHbTable(hb_tag_t nTag
) const override
;
102 const std::vector
<hb_variation_t
>& GetVariations(const LogicalFontInstance
&) const override
;
105 class SAL_DLLPUBLIC_RTTI FreetypeFontInstance final
: public LogicalFontInstance
107 friend rtl::Reference
<LogicalFontInstance
> FreetypeFontFace::CreateFontInstance(const vcl::font::FontSelectPattern
&) const;
109 std::unique_ptr
<FreetypeFont
> mxFreetypeFont
;
111 explicit FreetypeFontInstance(const vcl::font::PhysicalFontFace
& rPFF
, const vcl::font::FontSelectPattern
& rFSP
);
114 virtual ~FreetypeFontInstance() override
;
116 FreetypeFont
& GetFreetypeFont() const { return *mxFreetypeFont
; }
118 virtual bool GetGlyphOutline(sal_GlyphId
, basegfx::B2DPolyPolygon
&, bool) const override
;
121 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */