OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 PDFium Authors. All rights reserved. | |
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_FPDFDOC_CPVT_FONTMAP_H_ | |
8 #define CORE_FPDFDOC_CPVT_FONTMAP_H_ | |
9 | |
10 #include <stdint.h> | |
11 | |
12 #include "core/fpdfdoc/ipvt_fontmap.h" | |
13 #include "core/fxcrt/include/fx_string.h" | |
14 | |
15 class CPDF_Document; | |
16 class CPDF_Dictionary; | |
17 class CPDF_Font; | |
18 | |
19 class CPVT_FontMap : public IPVT_FontMap { | |
20 public: | |
21 CPVT_FontMap(CPDF_Document* pDoc, | |
22 CPDF_Dictionary* pResDict, | |
23 CPDF_Font* pDefFont, | |
24 const CFX_ByteString& sDefFontAlias); | |
25 ~CPVT_FontMap() override; | |
26 | |
27 // IPVT_FontMap: | |
28 CPDF_Font* GetPDFFont(int32_t nFontIndex) override; | |
29 CFX_ByteString GetPDFFontAlias(int32_t nFontIndex) override; | |
30 | |
31 static void GetAnnotSysPDFFont(CPDF_Document* pDoc, | |
32 const CPDF_Dictionary* pResDict, | |
33 CPDF_Font*& pSysFont, | |
34 CFX_ByteString& sSysFontAlias); | |
35 | |
36 private: | |
37 CPDF_Document* m_pDocument; | |
38 const CPDF_Dictionary* m_pResDict; | |
Tom Sepez
2016/03/30 20:11:52
Actually, I mean CPDF_Dictionary* const m_pResDict
dsinclair
2016/03/31 13:43:12
Done.
| |
39 CPDF_Font* m_pDefFont; | |
40 const CFX_ByteString m_sDefFontAlias; | |
41 CPDF_Font* m_pSysFont; | |
42 CFX_ByteString m_sSysFontAlias; | |
43 }; | |
44 | |
45 #endif // CORE_FPDFDOC_CPVT_FONTMAP_H_ | |
OLD | NEW |