| 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 CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ | 7 #ifndef CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
| 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ | 8 #define CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 | 11 |
| 12 #include "core/include/fpdfapi/fpdf_parser.h" | 12 #include "core/include/fpdfapi/fpdf_parser.h" |
| 13 #include "core/include/fxcrt/fx_system.h" | 13 #include "core/include/fxcrt/fx_system.h" |
| 14 #include "core/include/fxge/fx_font.h" | 14 #include "core/include/fxge/fx_font.h" |
| 15 | 15 |
| 16 class CFX_CTTGSUBTable; | 16 class CFX_CTTGSUBTable; |
| 17 class CFX_DIBitmap; | 17 class CFX_DIBitmap; |
| 18 class CFX_Font; | 18 class CFX_Font; |
| 19 class CFX_SubstFont; | 19 class CFX_SubstFont; |
| 20 class CPDF_CID2UnicodeMap; | 20 class CPDF_CID2UnicodeMap; |
| 21 class CPDF_CIDFont; | 21 class CPDF_CIDFont; |
| 22 class CPDF_CMap; | 22 class CPDF_CMap; |
| 23 class CPDF_Color; | 23 class CPDF_Color; |
| 24 class CPDF_ColorSpace; | 24 class CPDF_ColorSpace; |
| 25 class CPDF_Face; | |
| 26 class CPDF_FontEncoding; | 25 class CPDF_FontEncoding; |
| 27 class CPDF_Form; | 26 class CPDF_Form; |
| 28 class CPDF_Function; | 27 class CPDF_Function; |
| 29 class CPDF_Image; | 28 class CPDF_Image; |
| 30 class CPDF_ImageObject; | |
| 31 class CPDF_Page; | 29 class CPDF_Page; |
| 32 class CPDF_Pattern; | 30 class CPDF_Pattern; |
| 33 class CPDF_RenderContext; | 31 class CPDF_RenderContext; |
| 34 class CPDF_ShadingPattern; | 32 class CPDF_ShadingPattern; |
| 35 class CPDF_TilingPattern; | 33 class CPDF_TilingPattern; |
| 36 class CPDF_ToUnicodeMap; | 34 class CPDF_ToUnicodeMap; |
| 37 class CPDF_TrueTypeFont; | 35 class CPDF_TrueTypeFont; |
| 38 class CPDF_Type1Font; | 36 class CPDF_Type1Font; |
| 39 class CPDF_Type3Font; | 37 class CPDF_Type3Font; |
| 40 typedef struct FT_FaceRec_* FXFT_Face; | 38 typedef struct FT_FaceRec_* FXFT_Face; |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 | 778 |
| 781 FX_BOOL m_bInterpolate; | 779 FX_BOOL m_bInterpolate; |
| 782 | 780 |
| 783 CPDF_Document* m_pDocument; | 781 CPDF_Document* m_pDocument; |
| 784 | 782 |
| 785 CPDF_Dictionary* m_pOC; | 783 CPDF_Dictionary* m_pOC; |
| 786 CPDF_Dictionary* InitJPEG(uint8_t* pData, FX_DWORD size); | 784 CPDF_Dictionary* InitJPEG(uint8_t* pData, FX_DWORD size); |
| 787 }; | 785 }; |
| 788 | 786 |
| 789 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ | 787 #endif // CORE_INCLUDE_FPDFAPI_FPDF_RESOURCE_H_ |
| OLD | NEW |