blob: 83fa08ec74cbd24a3ca41ff4b9719072f758d2de [file] [log] [blame]
// Copyright 2016 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef CORE_FXGE_CFX_FONTMGR_H_
#define CORE_FXGE_CFX_FONTMGR_H_
#include <map>
#include <memory>
#include "core/fxcrt/fx_memory.h"
#include "core/fxcrt/fx_string.h"
#include "core/fxge/cfx_face.h"
#include "core/fxge/fx_freetype.h"
#include "third_party/base/optional.h"
#include "third_party/base/span.h"
class CFX_FontMapper;
class CFX_SubstFont;
class CTTFontDesc;
class SystemFontInfoIface;
class CFX_FontMgr {
public:
static Optional<pdfium::span<const uint8_t>> GetBuiltinFont(size_t index);
CFX_FontMgr();
~CFX_FontMgr();
RetainPtr<CFX_Face> GetCachedFace(const ByteString& face_name,
int weight,
bool bItalic,
const uint8_t** pFontData);
RetainPtr<CFX_Face> AddCachedFace(
const ByteString& face_name,
int weight,
bool bItalic,
std::unique_ptr<uint8_t, FxFreeDeleter> pData,
uint32_t size,
int face_index);
RetainPtr<CFX_Face> GetCachedTTCFace(int ttc_size,
uint32_t checksum,
uint32_t font_offset);
RetainPtr<CFX_Face> AddCachedTTCFace(
int ttc_size,
uint32_t checksum,
std::unique_ptr<uint8_t, FxFreeDeleter> pData,
uint32_t size,
uint32_t font_offset);
RetainPtr<CFX_Face> NewFixedFace(pdfium::span<const uint8_t> span,
int face_index);
void SetSystemFontInfo(std::unique_ptr<SystemFontInfoIface> pFontInfo);
RetainPtr<CFX_Face> FindSubstFont(const ByteString& face_name,
bool bTrueType,
uint32_t flags,
int weight,
int italic_angle,
int CharsetCP,
CFX_SubstFont* pSubstFont);
// Always present.
CFX_FontMapper* GetBuiltinMapper() const { return m_pBuiltinMapper.get(); }
FXFT_LibraryRec* GetFTLibrary() const { return m_FTLibrary.get(); }
bool FTLibrarySupportsHinting() const { return m_FTLibrarySupportsHinting; }
private:
bool FreeTypeVersionSupportsHinting() const;
bool SetLcdFilterMode() const;
// Must come before |m_pBuiltinMapper| and |m_FaceMap|.
ScopedFXFTLibraryRec const m_FTLibrary;
std::unique_ptr<CFX_FontMapper> m_pBuiltinMapper;
std::map<ByteString, std::unique_ptr<CTTFontDesc>> m_FaceMap;
const bool m_FTLibrarySupportsHinting;
};
#endif // CORE_FXGE_CFX_FONTMGR_H_