Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
systemfontinfo_iface.h
Go to the documentation of this file.
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
18constexpr uint32_t kTableNAME = CFX_FontMapper::MakeTag('n', 'a', 'm', 'e');
19constexpr uint32_t kTableTTCF = CFX_FontMapper::MakeTag('t', 't', 'c', 'f');
20
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_
FX_Charset GetCharset() const
ByteString GetFamilyName()
uint32_t GetFontData(uint32_t dwTable, pdfium::span< uint8_t > pBuffer)
void * MapFont(int weight, bool bItalic, FX_Charset charset, int pitch_family, const ByteString &face) override
bool GetFontCharset(void *hFont, FX_Charset *charset) override
~CFX_AndroidFontInfo() override
void DeleteFont(void *hFont) override
bool GetFaceName(void *hFont, ByteString *name) override
bool Init(CFPF_SkiaFontMgr *pFontMgr)
size_t GetFontData(void *hFont, uint32_t table, pdfium::span< uint8_t > buffer) override
void * GetFont(const ByteString &face) override
bool EnumFontList(CFX_FontMapper *pMapper) override
static constexpr uint32_t MakeTag(char c1, char c2, char c3, char c4)
virtual void * GetFont(const ByteString &face)=0
virtual ~SystemFontInfoIface()=default
virtual bool GetFontCharset(void *hFont, FX_Charset *charset)=0
virtual bool GetFaceName(void *hFont, ByteString *name)=0
virtual bool EnumFontList(CFX_FontMapper *pMapper)=0
virtual void DeleteFont(void *hFont)=0
virtual void * MapFont(int weight, bool bItalic, FX_Charset charset, int pitch_family, const ByteString &face)=0
virtual size_t GetFontData(void *hFont, uint32_t table, pdfium::span< uint8_t > buffer)=0
ByteString & operator=(ByteString &&that) noexcept
FX_Charset
Definition fx_codepage.h:70
bool FontFamilyIsFixedPitch(uint32_t family)
Definition fx_font.h:84
#define FXFONT_SERIF
Definition fx_font.h:29
bool FontFamilyIsScript(int32_t family)
Definition fx_font.h:90
#define FXFONT_ITALIC
Definition fx_font.h:33
bool FontFamilyIsRoman(uint32_t family)
Definition fx_font.h:87
#define FXFONT_SCRIPT
Definition fx_font.h:31
#define FXFONT_FORCE_BOLD
Definition fx_font.h:36
#define FXFONT_FIXED_PITCH
Definition fx_font.h:28
constexpr uint32_t kTableTTCF
constexpr uint32_t kTableNAME