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> |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 #define XFA_INVALIDATE_AllPages 0x00000000 | 347 #define XFA_INVALIDATE_AllPages 0x00000000 |
348 #define XFA_INVALIDATE_CurrentPage 0x00000001 | 348 #define XFA_INVALIDATE_CurrentPage 0x00000001 |
349 #define XFA_PRINTOPT_ShowDialog 0x00000001 | 349 #define XFA_PRINTOPT_ShowDialog 0x00000001 |
350 #define XFA_PRINTOPT_CanCancel 0x00000002 | 350 #define XFA_PRINTOPT_CanCancel 0x00000002 |
351 #define XFA_PRINTOPT_ShrinkPage 0x00000004 | 351 #define XFA_PRINTOPT_ShrinkPage 0x00000004 |
352 #define XFA_PRINTOPT_AsImage 0x00000008 | 352 #define XFA_PRINTOPT_AsImage 0x00000008 |
353 #define XFA_PRINTOPT_ReverseOrder 0x00000010 | 353 #define XFA_PRINTOPT_ReverseOrder 0x00000010 |
354 #define XFA_PRINTOPT_PrintAnnot 0x00000020 | 354 #define XFA_PRINTOPT_PrintAnnot 0x00000020 |
355 #define XFA_PAGEVIEWEVENT_PostAdded 1 | 355 #define XFA_PAGEVIEWEVENT_PostAdded 1 |
356 #define XFA_PAGEVIEWEVENT_PostRemoved 3 | 356 #define XFA_PAGEVIEWEVENT_PostRemoved 3 |
| 357 #define XFA_PAGEVIEWEVENT_StopLayout 4 |
357 #define XFA_WIDGETEVENT_PostAdded 2 | 358 #define XFA_WIDGETEVENT_PostAdded 2 |
358 #define XFA_WIDGETEVENT_PreRemoved 3 | 359 #define XFA_WIDGETEVENT_PreRemoved 3 |
359 #define XFA_WIDGETEVENT_PostContentChanged 6 | 360 #define XFA_WIDGETEVENT_PostContentChanged 6 |
360 #define XFA_WIDGETEVENT_ListItemRemoved 7 | 361 #define XFA_WIDGETEVENT_ListItemRemoved 7 |
361 #define XFA_WIDGETEVENT_ListItemAdded 8 | 362 #define XFA_WIDGETEVENT_ListItemAdded 8 |
362 #define XFA_WIDGETEVENT_AccessChanged 9 | 363 #define XFA_WIDGETEVENT_AccessChanged 9 |
363 class IXFA_DocProvider { | 364 class IXFA_DocProvider { |
364 public: | 365 public: |
365 virtual ~IXFA_DocProvider() {} | 366 virtual ~IXFA_DocProvider() {} |
366 | 367 |
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
836 size_t size = 0) = 0; | 837 size_t size = 0) = 0; |
837 virtual void FinishChecksum() = 0; | 838 virtual void FinishChecksum() = 0; |
838 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; | 839 virtual void GetChecksum(CFX_ByteString& bsChecksum) = 0; |
839 | 840 |
840 protected: | 841 protected: |
841 ~IXFA_ChecksumContext() {} | 842 ~IXFA_ChecksumContext() {} |
842 }; | 843 }; |
843 IXFA_ChecksumContext* XFA_Checksum_Create(); | 844 IXFA_ChecksumContext* XFA_Checksum_Create(); |
844 | 845 |
845 #endif // XFA_INCLUDE_FXFA_FXFA_H_ | 846 #endif // XFA_INCLUDE_FXFA_FXFA_H_ |
OLD | NEW |