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
cfx_androidfontinfo.cpp
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#include "core/fxge/android/cfx_androidfontinfo.h"
8
9#include "core/fxcrt/fx_system.h"
10#include "core/fxge/android/cfpf_skiafont.h"
11#include "core/fxge/android/cfpf_skiafontmgr.h"
12#include "core/fxge/cfx_fontmapper.h"
13#include "core/fxge/fx_font.h"
14
15CFX_AndroidFontInfo::CFX_AndroidFontInfo() = default;
16
17CFX_AndroidFontInfo::~CFX_AndroidFontInfo() = default;
18
19bool CFX_AndroidFontInfo::Init(CFPF_SkiaFontMgr* pFontMgr,
20 const char** user_paths) {
21 if (!pFontMgr) {
22 return false;
23 }
24
25 m_pFontMgr = pFontMgr;
26 m_pFontMgr->LoadFonts(user_paths);
27 return true;
28}
29
30bool CFX_AndroidFontInfo::EnumFontList(CFX_FontMapper* pMapper) {
31 return false;
32}
33
34void* CFX_AndroidFontInfo::MapFont(int weight,
35 bool bItalic,
36 FX_Charset charset,
37 int pitch_family,
38 const ByteString& face) {
39 if (!m_pFontMgr)
40 return nullptr;
41
42 uint32_t dwStyle = 0;
43 if (weight >= 700)
44 dwStyle |= FXFONT_FORCE_BOLD;
45 if (bItalic)
46 dwStyle |= FXFONT_ITALIC;
47 if (FontFamilyIsFixedPitch(pitch_family))
48 dwStyle |= FXFONT_FIXED_PITCH;
49 if (FontFamilyIsScript(pitch_family))
50 dwStyle |= FXFONT_SCRIPT;
51 if (FontFamilyIsRoman(pitch_family))
52 dwStyle |= FXFONT_SERIF;
53 return m_pFontMgr->CreateFont(face.AsStringView(), charset, dwStyle);
54}
55
56void* CFX_AndroidFontInfo::GetFont(const ByteString& face) {
57 return nullptr;
58}
59
60size_t CFX_AndroidFontInfo::GetFontData(void* hFont,
61 uint32_t table,
62 pdfium::span<uint8_t> buffer) {
63 if (!hFont)
64 return 0;
65 return static_cast<CFPF_SkiaFont*>(hFont)->GetFontData(table, buffer);
66}
67
68bool CFX_AndroidFontInfo::GetFaceName(void* hFont, ByteString* name) {
69 if (!hFont)
70 return false;
71
72 *name = static_cast<CFPF_SkiaFont*>(hFont)->GetFamilyName();
73 return true;
74}
75
76bool CFX_AndroidFontInfo::GetFontCharset(void* hFont, FX_Charset* charset) {
77 if (!hFont)
78 return false;
79
80 *charset = static_cast<CFPF_SkiaFont*>(hFont)->GetCharset();
81 return false;
82}
83
84void CFX_AndroidFontInfo::DeleteFont(void* hFont) {}
fxcrt::ByteString ByteString
Definition bytestring.h:180
FX_Charset GetCharset() const
ByteString GetFamilyName()
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 Init(CFPF_SkiaFontMgr *pFontMgr, const char **user_paths)
bool GetFaceName(void *hFont, ByteString *name) override
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
ByteString & operator=(ByteString &&that) noexcept
FX_Charset
Definition fx_codepage.h:71
bool FontFamilyIsFixedPitch(uint32_t family)
Definition fx_font.h:86
#define FXFONT_SERIF
Definition fx_font.h:31
bool FontFamilyIsScript(int32_t family)
Definition fx_font.h:92
#define FXFONT_ITALIC
Definition fx_font.h:35
bool FontFamilyIsRoman(uint32_t family)
Definition fx_font.h:89
#define FXFONT_SCRIPT
Definition fx_font.h:33
#define FXFONT_FORCE_BOLD
Definition fx_font.h:38
#define FXFONT_FIXED_PITCH
Definition fx_font.h:30