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_PARSER_INCLUDE_CPDF_PARSER_H_ | 7 #ifndef CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ |
8 #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ | 8 #define CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 20 matching lines...) Expand all Loading... |
31 FILE_ERROR, | 31 FILE_ERROR, |
32 FORMAT_ERROR, | 32 FORMAT_ERROR, |
33 PASSWORD_ERROR, | 33 PASSWORD_ERROR, |
34 HANDLER_ERROR | 34 HANDLER_ERROR |
35 }; | 35 }; |
36 | 36 |
37 CPDF_Parser(); | 37 CPDF_Parser(); |
38 ~CPDF_Parser(); | 38 ~CPDF_Parser(); |
39 | 39 |
40 Error StartParse(IFX_FileRead* pFile); | 40 Error StartParse(IFX_FileRead* pFile); |
41 uint32_t GetPermissions(FX_BOOL bCheckRevision = FALSE); | 41 uint32_t GetPermissions() const; |
42 | 42 |
43 void SetPassword(const FX_CHAR* password) { m_Password = password; } | 43 void SetPassword(const FX_CHAR* password) { m_Password = password; } |
44 CFX_ByteString GetPassword() { return m_Password; } | 44 CFX_ByteString GetPassword() { return m_Password; } |
45 CPDF_Dictionary* GetTrailer() const { return m_pTrailer; } | 45 CPDF_Dictionary* GetTrailer() const { return m_pTrailer; } |
46 FX_FILESIZE GetLastXRefOffset() const { return m_LastXRefOffset; } | 46 FX_FILESIZE GetLastXRefOffset() const { return m_LastXRefOffset; } |
47 CPDF_Document* GetDocument() const { return m_pDocument; } | 47 CPDF_Document* GetDocument() const { return m_pDocument; } |
48 | 48 |
49 uint32_t GetRootObjNum(); | 49 uint32_t GetRootObjNum(); |
50 uint32_t GetInfoObjNum(); | 50 uint32_t GetInfoObjNum(); |
51 CPDF_Array* GetIDArray(); | 51 CPDF_Array* GetIDArray(); |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 kPostObjNum, | 167 kPostObjNum, |
168 kGenNum, | 168 kGenNum, |
169 kPostGenNum, | 169 kPostGenNum, |
170 kTrailer, | 170 kTrailer, |
171 kBeginObj, | 171 kBeginObj, |
172 kEndObj | 172 kEndObj |
173 }; | 173 }; |
174 }; | 174 }; |
175 | 175 |
176 #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ | 176 #endif // CORE_FPDFAPI_FPDF_PARSER_INCLUDE_CPDF_PARSER_H_ |
OLD | NEW |