OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 | 6 |
7 #ifndef CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ |
8 #define CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ | 8 #define CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ |
9 | 9 |
| 10 #include "core/fxcrt/include/cfx_string_pool_template.h" |
10 #include "core/fxcrt/include/fx_string.h" | 11 #include "core/fxcrt/include/fx_string.h" |
11 | 12 |
12 #define PDFFONT_ENCODING_BUILTIN 0 | 13 #define PDFFONT_ENCODING_BUILTIN 0 |
13 #define PDFFONT_ENCODING_WINANSI 1 | 14 #define PDFFONT_ENCODING_WINANSI 1 |
14 #define PDFFONT_ENCODING_MACROMAN 2 | 15 #define PDFFONT_ENCODING_MACROMAN 2 |
15 #define PDFFONT_ENCODING_MACEXPERT 3 | 16 #define PDFFONT_ENCODING_MACEXPERT 3 |
16 #define PDFFONT_ENCODING_STANDARD 4 | 17 #define PDFFONT_ENCODING_STANDARD 4 |
17 #define PDFFONT_ENCODING_ADOBE_SYMBOL 5 | 18 #define PDFFONT_ENCODING_ADOBE_SYMBOL 5 |
18 #define PDFFONT_ENCODING_ZAPFDINGBATS 6 | 19 #define PDFFONT_ENCODING_ZAPFDINGBATS 6 |
19 #define PDFFONT_ENCODING_PDFDOC 7 | 20 #define PDFFONT_ENCODING_PDFDOC 7 |
(...skipping 23 matching lines...) Expand all Loading... |
43 | 44 |
44 FX_WCHAR UnicodeFromCharCode(uint8_t charcode) const { | 45 FX_WCHAR UnicodeFromCharCode(uint8_t charcode) const { |
45 return m_Unicodes[charcode]; | 46 return m_Unicodes[charcode]; |
46 } | 47 } |
47 int CharCodeFromUnicode(FX_WCHAR unicode) const; | 48 int CharCodeFromUnicode(FX_WCHAR unicode) const; |
48 | 49 |
49 void SetUnicode(uint8_t charcode, FX_WCHAR unicode) { | 50 void SetUnicode(uint8_t charcode, FX_WCHAR unicode) { |
50 m_Unicodes[charcode] = unicode; | 51 m_Unicodes[charcode] = unicode; |
51 } | 52 } |
52 | 53 |
53 CPDF_Object* Realize(); | 54 CPDF_Object* Realize(CFX_ByteStringPool* pPool); |
54 | 55 |
55 public: | 56 public: |
56 FX_WCHAR m_Unicodes[256]; | 57 FX_WCHAR m_Unicodes[256]; |
57 }; | 58 }; |
58 | 59 |
59 #endif // CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ | 60 #endif // CORE_FPDFAPI_FPDF_FONT_INCLUDE_CPDF_FONTENCODING_H_ |
OLD | NEW |