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 _FPDF_RESOURCE_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
8 #define _FPDF_RESOURCE_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
9 #ifndef _FPDF_PARSER_ | 9 |
| 10 #include "../fxge/fx_font.h" |
10 #include "fpdf_parser.h" | 11 #include "fpdf_parser.h" |
11 #endif | 12 |
12 #ifndef _FX_FONT_H_ | |
13 #include "../fxge/fx_font.h" | |
14 #endif | |
15 class CPDF_Font; | 13 class CPDF_Font; |
16 class CPDF_Type1Font; | 14 class CPDF_Type1Font; |
17 class CPDF_TrueTypeFont; | 15 class CPDF_TrueTypeFont; |
18 class CPDF_CIDFont; | 16 class CPDF_CIDFont; |
19 class CPDF_Type3Font; | 17 class CPDF_Type3Font; |
20 class CPDF_FontEncoding; | 18 class CPDF_FontEncoding; |
21 class CPDF_CMap; | 19 class CPDF_CMap; |
22 class CPDF_CID2UnicodeMap; | 20 class CPDF_CID2UnicodeMap; |
23 class CPDF_ColorSpace; | 21 class CPDF_ColorSpace; |
24 class CPDF_Color; | 22 class CPDF_Color; |
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
939 | 937 |
940 FX_BOOL m_bIsMask; | 938 FX_BOOL m_bIsMask; |
941 | 939 |
942 FX_BOOL m_bInterpolate; | 940 FX_BOOL m_bInterpolate; |
943 | 941 |
944 CPDF_Document* m_pDocument; | 942 CPDF_Document* m_pDocument; |
945 | 943 |
946 CPDF_Dictionary* m_pOC; | 944 CPDF_Dictionary* m_pOC; |
947 CPDF_Dictionary* InitJPEG(FX_LPBYTE pData, FX_DWORD size); | 945 CPDF_Dictionary* InitJPEG(FX_LPBYTE pData, FX_DWORD size); |
948 }; | 946 }; |
949 #endif | 947 |
| 948 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
OLD | NEW |