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_DOC_H_ | 7 #ifndef CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
8 #define _FPDF_DOC_H_ | 8 #define CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
9 #ifndef _FPDF_PARSER_ | 9 |
10 #include "../fpdfapi/fpdf_parser.h" | 10 #include "../fpdfapi/fpdf_parser.h" |
11 #endif | |
12 #ifndef _FPDF_RENDER_ | |
13 #include "../fpdfapi/fpdf_render.h" | 11 #include "../fpdfapi/fpdf_render.h" |
14 #endif | 12 |
15 class CPDF_Action; | 13 class CPDF_Action; |
16 class CPDF_Annot; | 14 class CPDF_Annot; |
17 class CPDF_AnnotList; | 15 class CPDF_AnnotList; |
18 class CPDF_Bookmark; | 16 class CPDF_Bookmark; |
19 class CPDF_BookmarkTree; | 17 class CPDF_BookmarkTree; |
20 class CPDF_Dest; | 18 class CPDF_Dest; |
21 class CPDF_Link; | 19 class CPDF_Link; |
22 class CPDF_LinkList; | 20 class CPDF_LinkList; |
23 class CPDF_Metadata; | 21 class CPDF_Metadata; |
24 class CPDF_NameTree; | 22 class CPDF_NameTree; |
(...skipping 1720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1745 | 1743 |
1746 FX_FLOAT GetOriginalColor(int index, FX_BSTR csEn
try); | 1744 FX_FLOAT GetOriginalColor(int index, FX_BSTR csEn
try); |
1747 | 1745 |
1748 void GetOriginalColor(int& iColorType
, FX_FLOAT fc[4], FX_BSTR csEntry); | 1746 void GetOriginalColor(int& iColorType
, FX_FLOAT fc[4], FX_BSTR csEntry); |
1749 | 1747 |
1750 CFX_WideString GetCaption(FX_BSTR csEntry); | 1748 CFX_WideString GetCaption(FX_BSTR csEntry); |
1751 | 1749 |
1752 CPDF_Stream* GetIcon(FX_BSTR csEntry); | 1750 CPDF_Stream* GetIcon(FX_BSTR csEntry); |
1753 friend class CPDF_FormControl; | 1751 friend class CPDF_FormControl; |
1754 }; | 1752 }; |
1755 #endif | 1753 |
| 1754 #endif // CORE_INCLUDE_FPDFDOC_FPDF_DOC_H_ |
OLD | NEW |