1 // Copyright 2016 The PDFium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6 7 #ifndef CORE_FXGE_SYSTEMFONTINFO_IFACE_H_ 8 #define CORE_FXGE_SYSTEMFONTINFO_IFACE_H_ 9 10 #include <stddef.h> 11 #include <stdint.h> 12 13 #include "core/fxcrt/bytestring.h" 14 #include "core/fxcrt/fx_codepage_forward.h" 15 #include "core/fxge/cfx_fontmapper.h" 16 #include "third_party/base/containers/span.h" 17 18 constexpr uint32_t kTableNAME = CFX_FontMapper::MakeTag('n', 'a', 'm', 'e'); 19 constexpr uint32_t kTableTTCF = CFX_FontMapper::MakeTag('t', 't', 'c', 'f'); 20 21 class SystemFontInfoIface { 22 public: 23 virtual ~SystemFontInfoIface() = default; 24 25 virtual bool EnumFontList(CFX_FontMapper* pMapper) = 0; 26 virtual void* MapFont(int weight, 27 bool bItalic, 28 FX_Charset charset, 29 int pitch_family, 30 const ByteString& face) = 0; 31 virtual void* GetFont(const ByteString& face) = 0; 32 virtual size_t GetFontData(void* hFont, 33 uint32_t table, 34 pdfium::span<uint8_t> buffer) = 0; 35 virtual bool GetFaceName(void* hFont, ByteString* name) = 0; 36 virtual bool GetFontCharset(void* hFont, FX_Charset* charset) = 0; 37 virtual void DeleteFont(void* hFont) = 0; 38 }; 39 40 #endif // CORE_FXGE_SYSTEMFONTINFO_IFACE_H_ 41