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 | 6 |
7 #ifndef _RAO_FONTMAP_H_ | 7 #ifndef _RAO_FONTMAP_H_ |
8 #define _RAO_FONTMAP_H_ | 8 #define _RAO_FONTMAP_H_ |
9 | 9 |
10 #if _MSC_VER > 1000 | 10 #include "../pdfwindow/PWL_FontMap.h" |
11 #pragma once | |
12 #endif // _MSC_VER > 1000 | |
13 | 11 |
| 12 class CPDF_Dictionary; |
14 class CPDFSDK_Annot; | 13 class CPDFSDK_Annot; |
15 | 14 |
16 class CBA_FontMap : public CPWL_FontMap | 15 class CBA_FontMap : public CPWL_FontMap |
17 { | 16 { |
18 public: | 17 public: |
19 CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler); | 18 CBA_FontMap(CPDFSDK_Annot* pAnnot, IFX_SystemHandler* pSystemHandler); |
20 CBA_FontMap(CPDF_Document* pDocument, CPDF_Dictionary* pAnnotDict, IFX_S
ystemHandler* pSystemHandler); | 19 CBA_FontMap(CPDF_Document* pDocument, CPDF_Dictionary* pAnnotDict, IFX_S
ystemHandler* pSystemHandler); |
21 | 20 |
22 virtual ~CBA_FontMap(); | 21 virtual ~CBA_FontMap(); |
23 | 22 |
(...skipping 18 matching lines...) Expand all Loading... |
42 private: | 41 private: |
43 CPDF_Document* m_pDocument; | 42 CPDF_Document* m_pDocument; |
44 CPDF_Dictionary* m_pAnnotDict; | 43 CPDF_Dictionary* m_pAnnotDict; |
45 CPDF_Font* m_pDefaultFont; | 44 CPDF_Font* m_pDefaultFont; |
46 CFX_ByteString m_sDefaultFontName; | 45 CFX_ByteString m_sDefaultFontName; |
47 | 46 |
48 CFX_ByteString m_sAPType; | 47 CFX_ByteString m_sAPType; |
49 }; | 48 }; |
50 | 49 |
51 #endif // _RAO_FONTMAP_H_ | 50 #endif // _RAO_FONTMAP_H_ |
OLD | NEW |