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 XFA_INCLUDE_FXFA_FXFA_H_ | 7 #ifndef XFA_INCLUDE_FXFA_FXFA_H_ |
8 #define XFA_INCLUDE_FXFA_FXFA_H_ | 8 #define XFA_INCLUDE_FXFA_FXFA_H_ |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "xfa/include/fxfa/fxfa_basic.h" | 12 #include "xfa/include/fxfa/fxfa_basic.h" |
13 #include "xfa/include/fxfa/fxfa_widget.h" | 13 #include "xfa/include/fxfa/fxfa_widget.h" |
14 | 14 |
15 class CFX_Graphics; | 15 class CFX_Graphics; |
16 class CPDF_Document; | 16 class CPDF_Document; |
17 class CXFA_Node; | 17 class CXFA_Node; |
18 class CXFA_NodeList; | 18 class CXFA_NodeList; |
19 class CXFA_WidgetAcc; | 19 class CXFA_WidgetAcc; |
20 class IFDE_XMLElement; | |
21 class IFWL_AdapterTimerMgr; | 20 class IFWL_AdapterTimerMgr; |
22 class IFX_Font; | 21 class IFX_Font; |
23 class IXFA_App; | 22 class IXFA_App; |
24 class IXFA_AppProvider; | 23 class IXFA_AppProvider; |
25 class IXFA_ChecksumContext; | 24 class IXFA_ChecksumContext; |
26 class IXFA_DocHandler; | 25 class IXFA_DocHandler; |
27 class IXFA_DocProvider; | 26 class IXFA_DocProvider; |
28 class IXFA_DocView; | 27 class IXFA_DocView; |
29 class IXFA_FontMgr; | 28 class IXFA_FontMgr; |
30 class IXFA_MenuHandler; | 29 class IXFA_MenuHandler; |
31 class IXFA_PageView; | 30 class IXFA_PageView; |
32 class IXFA_PageViewRender; | |
33 class IXFA_WidgetAccIterator; | 31 class IXFA_WidgetAccIterator; |
34 class IXFA_WidgetHandler; | 32 class IXFA_WidgetHandler; |
35 class IXFA_WidgetIterator; | 33 class IXFA_WidgetIterator; |
36 | 34 |
37 class IXFA_Doc { | 35 class IXFA_Doc { |
38 public: | 36 public: |
39 virtual ~IXFA_Doc() {} | 37 virtual ~IXFA_Doc() {} |
40 | 38 |
41 protected: | 39 protected: |
42 IXFA_Doc() {} | 40 IXFA_Doc() {} |
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
838 size_t size = 0) = 0; | 836 size_t size = 0) = 0; |
839 virtual void FinishChecksum() = 0; | 837 virtual void FinishChecksum() = 0; |
840 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; | 838 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; |
841 | 839 |
842 protected: | 840 protected: |
843 ~IXFA_ChecksumContext() {} | 841 ~IXFA_ChecksumContext() {} |
844 }; | 842 }; |
845 IXFA_ChecksumContext* XFA_Checksum_Create(); | 843 IXFA_ChecksumContext* XFA_Checksum_Create(); |
846 | 844 |
847 #endif // XFA_INCLUDE_FXFA_FXFA_H_ | 845 #endif // XFA_INCLUDE_FXFA_FXFA_H_ |
OLD | NEW |