Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(279)

Side by Side Diff: xfa/fxfa/parser/xfa_document.h

Issue 1986503002: XFA_WIDGETSTATUS, LAYOUTSTATUS and WIDGETFILTER cleanup. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « xfa/fxfa/parser/xfa_doclayout.h ('k') | xfa/fxfa/parser/xfa_layout_appadapter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_FXFA_PARSER_XFA_DOCUMENT_H_ 7 #ifndef XFA_FXFA_PARSER_XFA_DOCUMENT_H_
8 #define XFA_FXFA_PARSER_XFA_DOCUMENT_H_ 8 #define XFA_FXFA_PARSER_XFA_DOCUMENT_H_
9 9
10 #include "xfa/fxfa/include/fxfa.h" 10 #include "xfa/fxfa/include/fxfa.h"
(...skipping 21 matching lines...) Expand all
32 XFA_VERSION_208 = 208, 32 XFA_VERSION_208 = 208,
33 XFA_VERSION_300 = 300, 33 XFA_VERSION_300 = 300,
34 XFA_VERSION_301 = 301, 34 XFA_VERSION_301 = 301,
35 XFA_VERSION_303 = 303, 35 XFA_VERSION_303 = 303,
36 XFA_VERSION_306 = 306, 36 XFA_VERSION_306 = 306,
37 XFA_VERSION_DEFAULT = XFA_VERSION_303, 37 XFA_VERSION_DEFAULT = XFA_VERSION_303,
38 XFA_VERSION_MIN = 200, 38 XFA_VERSION_MIN = 200,
39 XFA_VERSION_MAX = 400, 39 XFA_VERSION_MAX = 400,
40 }; 40 };
41 41
42 #define XFA_LAYOUTSTATUS_Visible 0x0001
43 #define XFA_LAYOUTSTATUS_Viewable 0x0010
44 #define XFA_LAYOUTSTATUS_Printable 0x0020
45
46 enum XFA_LAYOUTRESULT { 42 enum XFA_LAYOUTRESULT {
47 XFA_LAYOUTRESULT_Continue, 43 XFA_LAYOUTRESULT_Continue,
48 XFA_LAYOUTRESULT_Done, 44 XFA_LAYOUTRESULT_Done,
49 XFA_LAYOUTRESULT_NextContent, 45 XFA_LAYOUTRESULT_NextContent,
50 }; 46 };
51 #define XFA_LAYOUTNOTIFY_StrictHeight 0x0001 47 #define XFA_LAYOUTNOTIFY_StrictHeight 0x0001
52 #define XFA_LAYOUTNOTIFY_NoParentBreak 0x0002 48 #define XFA_LAYOUTNOTIFY_NoParentBreak 0x0002
53 49
54 #define XFA_DOCFLAG_StrictScoping 0x0001 50 #define XFA_DOCFLAG_StrictScoping 0x0001
55 #define XFA_DOCFLAG_HasInteractive 0x0002 51 #define XFA_DOCFLAG_HasInteractive 0x0002
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 CScript_LogPseudoModel* m_pScriptLog; 111 CScript_LogPseudoModel* m_pScriptLog;
116 CScript_LayoutPseudoModel* m_pScriptLayout; 112 CScript_LayoutPseudoModel* m_pScriptLayout;
117 CScript_SignaturePseudoModel* m_pScriptSignature; 113 CScript_SignaturePseudoModel* m_pScriptSignature;
118 CXFA_NodeSet m_PurgeNodes; 114 CXFA_NodeSet m_PurgeNodes;
119 XFA_VERSION m_eCurVersionMode; 115 XFA_VERSION m_eCurVersionMode;
120 uint32_t m_dwDocFlags; 116 uint32_t m_dwDocFlags;
121 friend class CXFA_SimpleParser; 117 friend class CXFA_SimpleParser;
122 }; 118 };
123 119
124 #endif // XFA_FXFA_PARSER_XFA_DOCUMENT_H_ 120 #endif // XFA_FXFA_PARSER_XFA_DOCUMENT_H_
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/xfa_doclayout.h ('k') | xfa/fxfa/parser/xfa_layout_appadapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698