Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(344)

Side by Side Diff: core/include/fpdfapi/fpdf_resource.h

Issue 656753002: Store the address of the page data map's value for proper referencing. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: typedef Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 _FPDF_RESOURCE_
8 #define _FPDF_RESOURCE_ 8 #define _FPDF_RESOURCE_
9 #ifndef _FPDF_PARSER_ 9 #ifndef _FPDF_PARSER_
10 #include "fpdf_parser.h" 10 #include "fpdf_parser.h"
(...skipping 20 matching lines...) Expand all
31 class CPDF_ToUnicodeMap; 31 class CPDF_ToUnicodeMap;
32 class CFX_SubstFont; 32 class CFX_SubstFont;
33 class CFX_Font; 33 class CFX_Font;
34 class CPDF_RenderContext; 34 class CPDF_RenderContext;
35 class CPDF_Form; 35 class CPDF_Form;
36 class CPDF_ImageObject; 36 class CPDF_ImageObject;
37 class CFX_DIBitmap; 37 class CFX_DIBitmap;
38 typedef struct FT_FaceRec_* FXFT_Face; 38 typedef struct FT_FaceRec_* FXFT_Face;
39 class CFX_CTTGSUBTable; 39 class CFX_CTTGSUBTable;
40 class CPDF_Page; 40 class CPDF_Page;
41
42 template <class ObjClass> class CPDF_CountedObject : public CFX_Object
43 {
44 public:
45 ObjClass m_Obj;
46 FX_DWORD m_nCount;
47 };
48 typedef CPDF_CountedObject<CPDF_Font*> CPDF_CountedFont;
49 typedef CPDF_CountedObject<CPDF_ColorSpace*> CPDF_CountedColorSpace;
50 typedef CPDF_CountedObject<CPDF_Pattern*> CPDF_CountedPattern;
51 typedef CPDF_CountedObject<CPDF_Image*> CPDF_CountedImage;
52 typedef CPDF_CountedObject<CPDF_IccProfile*> CPDF_CountedICCProfile;
53 typedef CPDF_CountedObject<CPDF_StreamAcc*> CPDF_CountedStreamAcc;
54
55
56 typedef CFX_MapPtrTemplate<CPDF_Dictionary*, CPDF_CountedFont*> CPDF_FontMap ;
57 typedef CFX_MapPtrTemplate<CPDF_Object*, CPDF_CountedColorSpace*> CPDF_ColorSp aceMap;
58 typedef CFX_MapPtrTemplate<CPDF_Object*, CPDF_CountedPattern*> CPDF_Pattern Map;
59 typedef CFX_MapPtrTemplate<FX_DWORD, CPDF_CountedImage*> CPDF_ImageMa p;
60 typedef CFX_MapPtrTemplate<CPDF_Stream*, CPDF_CountedICCProfile*> CPDF_IccProf ileMap;
61 typedef CFX_MapPtrTemplate<CPDF_Stream*, CPDF_CountedStreamAcc*> CPDF_FontFil eMap;
62
41 #define PDFFONT_TYPE1 1 63 #define PDFFONT_TYPE1 1
42 #define PDFFONT_TRUETYPE 2 64 #define PDFFONT_TRUETYPE 2
43 #define PDFFONT_TYPE3 3 65 #define PDFFONT_TYPE3 3
44 #define PDFFONT_CIDFONT 4 66 #define PDFFONT_CIDFONT 4
45 #define PDFFONT_FIXEDPITCH 1 67 #define PDFFONT_FIXEDPITCH 1
46 #define PDFFONT_SERIF 2 68 #define PDFFONT_SERIF 2
47 #define PDFFONT_SYMBOLIC 4 69 #define PDFFONT_SYMBOLIC 4
48 #define PDFFONT_SCRIPT 8 70 #define PDFFONT_SCRIPT 8
49 #define PDFFONT_NONSYMBOLIC 32 71 #define PDFFONT_NONSYMBOLIC 32
50 #define PDFFONT_ITALIC 64 72 #define PDFFONT_ITALIC 64
(...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 CPDF_Object* m_pShadingObj; 805 CPDF_Object* m_pShadingObj;
784 806
785 FX_BOOL m_bShadingObj; 807 FX_BOOL m_bShadingObj;
786 808
787 FX_BOOL Load(); 809 FX_BOOL Load();
788 810
789 FX_BOOL Reload(); 811 FX_BOOL Reload();
790 812
791 int m_ShadingType; 813 int m_ShadingType;
792 814
793 CPDF_ColorSpace*» m_pCS; 815 CPDF_ColorSpace*» m_pCS; // Still keep m_pCS as some CPDF_ColorSpace (name object) are not managed as counted objects. Refer to CPDF_DocPageData::GetColor Space.
794 816
817 CPDF_CountedColorSpace* m_pCountedCS;
795 818
796 CPDF_Function* m_pFunctions[4]; 819 CPDF_Function* m_pFunctions[4];
797 820
798 int m_nFuncs; 821 int m_nFuncs;
799 protected: 822 protected:
800 void Clear(); 823 void Clear();
801 }; 824 };
802 struct CPDF_MeshVertex { 825 struct CPDF_MeshVertex {
803 FX_FLOAT x, y; 826 FX_FLOAT x, y;
804 FX_FLOAT r, g, b; 827 FX_FLOAT r, g, b;
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
948 FX_BOOL m_bIsMask; 971 FX_BOOL m_bIsMask;
949 972
950 FX_BOOL m_bInterpolate; 973 FX_BOOL m_bInterpolate;
951 974
952 CPDF_Document* m_pDocument; 975 CPDF_Document* m_pDocument;
953 976
954 CPDF_Dictionary* m_pOC; 977 CPDF_Dictionary* m_pOC;
955 CPDF_Dictionary* InitJPEG(FX_LPBYTE pData, FX_DWORD size); 978 CPDF_Dictionary* InitJPEG(FX_LPBYTE pData, FX_DWORD size);
956 }; 979 };
957 #endif 980 #endif
OLDNEW
« no previous file with comments | « no previous file | core/src/fpdfapi/fpdf_page/fpdf_page_colors.cpp » ('j') | core/src/fpdfapi/fpdf_page/fpdf_page_doc.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698