| 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" |
| 13 #include "xfa/include/fxfa/fxfa_widget.h" |
| 14 |
| 12 class CFX_Graphics; | 15 class CFX_Graphics; |
| 13 class CPDF_Document; | 16 class CPDF_Document; |
| 14 class CXFA_Node; | 17 class CXFA_Node; |
| 15 class CXFA_NodeList; | 18 class CXFA_NodeList; |
| 16 class CXFA_WidgetAcc; | 19 class CXFA_WidgetAcc; |
| 17 class IFDE_XMLElement; | 20 class IFDE_XMLElement; |
| 18 class IFWL_AdapterTimerMgr; | 21 class IFWL_AdapterTimerMgr; |
| 19 class IFX_Font; | 22 class IFX_Font; |
| 20 class IXFA_App; | 23 class IXFA_App; |
| 21 class IXFA_AppProvider; | 24 class IXFA_AppProvider; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 40 }; | 43 }; |
| 41 | 44 |
| 42 class IXFA_Widget { | 45 class IXFA_Widget { |
| 43 public: | 46 public: |
| 44 virtual ~IXFA_Widget() {} | 47 virtual ~IXFA_Widget() {} |
| 45 | 48 |
| 46 protected: | 49 protected: |
| 47 IXFA_Widget() {} | 50 IXFA_Widget() {} |
| 48 }; | 51 }; |
| 49 | 52 |
| 50 #include "xfa/include/fxfa/fxfa_basic.h" | |
| 51 #include "xfa/include/fxfa/fxfa_widget.h" | |
| 52 #define XFA_MBICON_Error 0 | 53 #define XFA_MBICON_Error 0 |
| 53 #define XFA_MBICON_Warning 1 | 54 #define XFA_MBICON_Warning 1 |
| 54 #define XFA_MBICON_Question 2 | 55 #define XFA_MBICON_Question 2 |
| 55 #define XFA_MBICON_Status 3 | 56 #define XFA_MBICON_Status 3 |
| 56 #define XFA_MB_OK 0 | 57 #define XFA_MB_OK 0 |
| 57 #define XFA_MB_OKCancel 1 | 58 #define XFA_MB_OKCancel 1 |
| 58 #define XFA_MB_YesNo 2 | 59 #define XFA_MB_YesNo 2 |
| 59 #define XFA_MB_YesNoCancel 3 | 60 #define XFA_MB_YesNoCancel 3 |
| 60 #define XFA_IDOK 1 | 61 #define XFA_IDOK 1 |
| 61 #define XFA_IDCancel 2 | 62 #define XFA_IDCancel 2 |
| (...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 837 size_t size = 0) = 0; | 838 size_t size = 0) = 0; |
| 838 virtual void FinishChecksum() = 0; | 839 virtual void FinishChecksum() = 0; |
| 839 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; | 840 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; |
| 840 | 841 |
| 841 protected: | 842 protected: |
| 842 ~IXFA_ChecksumContext() {} | 843 ~IXFA_ChecksumContext() {} |
| 843 }; | 844 }; |
| 844 IXFA_ChecksumContext* XFA_Checksum_Create(); | 845 IXFA_ChecksumContext* XFA_Checksum_Create(); |
| 845 | 846 |
| 846 #endif // XFA_INCLUDE_FXFA_FXFA_H_ | 847 #endif // XFA_INCLUDE_FXFA_FXFA_H_ |
| OLD | NEW |