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_FPDFDOC_FPDF_DOC_H_ | 7 #ifndef CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
8 #define CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ | 8 #define CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 16 matching lines...) Expand all Loading... |
27 class CPDF_Dest; | 27 class CPDF_Dest; |
28 class CPDF_DocJSActions; | 28 class CPDF_DocJSActions; |
29 class CPDF_FileSpec; | 29 class CPDF_FileSpec; |
30 class CPDF_FormControl; | 30 class CPDF_FormControl; |
31 class CPDF_FormField; | 31 class CPDF_FormField; |
32 class CPDF_FormNotify; | 32 class CPDF_FormNotify; |
33 class CPDF_IconFit; | 33 class CPDF_IconFit; |
34 class CPDF_InterForm; | 34 class CPDF_InterForm; |
35 class CPDF_Link; | 35 class CPDF_Link; |
36 class CPDF_Metadata; | 36 class CPDF_Metadata; |
37 class CPDF_NumberTree; | |
38 class CPDF_OCContext; | 37 class CPDF_OCContext; |
39 class CPDF_Page; | 38 class CPDF_Page; |
40 class CPDF_RenderOptions; | 39 class CPDF_RenderOptions; |
41 class CPDF_TextObject; | |
42 class CPDF_ViewerPreferences; | 40 class CPDF_ViewerPreferences; |
43 class CXML_Element; | 41 class CXML_Element; |
44 | 42 |
45 class CPDF_NameTree { | 43 class CPDF_NameTree { |
46 public: | 44 public: |
47 explicit CPDF_NameTree(CPDF_Dictionary* pRoot) { m_pRoot = pRoot; } | 45 explicit CPDF_NameTree(CPDF_Dictionary* pRoot) { m_pRoot = pRoot; } |
48 | 46 |
49 CPDF_NameTree(CPDF_Document* pDoc, const CFX_ByteStringC& category); | 47 CPDF_NameTree(CPDF_Document* pDoc, const CFX_ByteStringC& category); |
50 | 48 |
51 CPDF_Object* LookupValue(int nIndex, CFX_ByteString& csName) const; | 49 CPDF_Object* LookupValue(int nIndex, CFX_ByteString& csName) const; |
(...skipping 1077 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1129 CFX_WideString GetCaption(const CFX_ByteStringC& csEntry) const; | 1127 CFX_WideString GetCaption(const CFX_ByteStringC& csEntry) const; |
1130 | 1128 |
1131 CPDF_Stream* GetIcon(const CFX_ByteStringC& csEntry) const; | 1129 CPDF_Stream* GetIcon(const CFX_ByteStringC& csEntry) const; |
1132 | 1130 |
1133 CPDF_Dictionary* const m_pDict; | 1131 CPDF_Dictionary* const m_pDict; |
1134 }; | 1132 }; |
1135 | 1133 |
1136 CFX_WideString FILESPEC_EncodeFileName(const CFX_WideStringC& filepath); | 1134 CFX_WideString FILESPEC_EncodeFileName(const CFX_WideStringC& filepath); |
1137 | 1135 |
1138 #endif // CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ | 1136 #endif // CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
OLD | NEW |