OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com | 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 #ifndef CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_ |
| 7 #define CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_ |
6 | 8 |
7 typedef void* FXFT_Library; | 9 typedef void* FXFT_Library; |
8 class CPDF_CMapManager | 10 class CPDF_CMapManager |
9 { | 11 { |
10 public: | 12 public: |
11 CPDF_CMapManager(); | 13 CPDF_CMapManager(); |
12 ~CPDF_CMapManager(); | 14 ~CPDF_CMapManager(); |
13 FX_LPVOID GetPackage(FX_BOOL bPrompt); | 15 FX_LPVOID GetPackage(FX_BOOL bPrompt); |
14 CPDF_CMap* GetPredefinedCMap(const CFX_ByteString&
name, FX_BOOL bPrompt); | 16 CPDF_CMap* GetPredefinedCMap(const CFX_ByteString&
name, FX_BOOL bPrompt); |
15 CPDF_CID2UnicodeMap* GetCID2UnicodeMap(int charset, FX_BOOL bPrompt); | 17 CPDF_CID2UnicodeMap* GetCID2UnicodeMap(int charset, FX_BOOL bPrompt); |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 CFX_CMapDWordToDWord m_Map; | 165 CFX_CMapDWordToDWord m_Map; |
164 CPDF_CID2UnicodeMap* m_pBaseMap; | 166 CPDF_CID2UnicodeMap* m_pBaseMap; |
165 CFX_WideTextBuf m_MultiCharBuf; | 167 CFX_WideTextBuf m_MultiCharBuf; |
166 }; | 168 }; |
167 class CPDF_FontCharMap : public CFX_CharMap | 169 class CPDF_FontCharMap : public CFX_CharMap |
168 { | 170 { |
169 public: | 171 public: |
170 CPDF_FontCharMap(CPDF_Font* pFont); | 172 CPDF_FontCharMap(CPDF_Font* pFont); |
171 CPDF_Font* m_pFont; | 173 CPDF_Font* m_pFont; |
172 }; | 174 }; |
| 175 |
| 176 #endif // CORE_SRC_FPDFAPI_FPDF_FONT_FONT_INT_H_ |
OLD | NEW |