| OLD | NEW |
| 1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "xfa/fxfa/parser/xfa_basic_data.h" | 7 #include "xfa/fxfa/parser/xfa_basic_data.h" |
| 8 | 8 |
| 9 #include "xfa/fxfa/include/fxfa_basic.h" | 9 #include "xfa/fxfa/fxfa_basic.h" |
| 10 #include "xfa/fxfa/parser/cscript_datawindow.h" | 10 #include "xfa/fxfa/parser/cscript_datawindow.h" |
| 11 #include "xfa/fxfa/parser/cscript_eventpseudomodel.h" | 11 #include "xfa/fxfa/parser/cscript_eventpseudomodel.h" |
| 12 #include "xfa/fxfa/parser/cscript_hostpseudomodel.h" | 12 #include "xfa/fxfa/parser/cscript_hostpseudomodel.h" |
| 13 #include "xfa/fxfa/parser/cscript_layoutpseudomodel.h" | 13 #include "xfa/fxfa/parser/cscript_layoutpseudomodel.h" |
| 14 #include "xfa/fxfa/parser/cscript_logpseudomodel.h" | 14 #include "xfa/fxfa/parser/cscript_logpseudomodel.h" |
| 15 #include "xfa/fxfa/parser/cscript_signaturepseudomodel.h" | 15 #include "xfa/fxfa/parser/cscript_signaturepseudomodel.h" |
| 16 | 16 |
| 17 const XFA_SCRIPTHIERARCHY g_XFAScriptIndex[] = { | 17 const XFA_SCRIPTHIERARCHY g_XFAScriptIndex[] = { |
| 18 {0, 0, 0, 2, 316}, {0, 0, 2, 2, 316}, {0, 0, 4, 2, 316}, | 18 {0, 0, 0, 2, 316}, {0, 0, 2, 2, 316}, {0, 0, 4, 2, 316}, |
| 19 {0, 0, 6, 8, 316}, {0, 0, 14, 4, 316}, {0, 0, 18, 5, 317}, | 19 {0, 0, 6, 8, 316}, {0, 0, 14, 4, 316}, {0, 0, 18, 5, 317}, |
| (...skipping 3570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3590 XFA_SCRIPT_Object}, | 3590 XFA_SCRIPT_Object}, |
| 3591 {0xa52682bd, L"{default}", | 3591 {0xa52682bd, L"{default}", |
| 3592 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, | 3592 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, |
| 3593 XFA_SCRIPT_Basic}, | 3593 XFA_SCRIPT_Basic}, |
| 3594 {0xd6e27f1d, L"value", | 3594 {0xd6e27f1d, L"value", |
| 3595 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, | 3595 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, |
| 3596 XFA_SCRIPT_Basic}, | 3596 XFA_SCRIPT_Basic}, |
| 3597 }; | 3597 }; |
| 3598 const int32_t g_iSomAttributeCount = | 3598 const int32_t g_iSomAttributeCount = |
| 3599 sizeof(g_SomAttributeData) / sizeof(XFA_ATTRIBUTEINFO); | 3599 sizeof(g_SomAttributeData) / sizeof(XFA_ATTRIBUTEINFO); |
| OLD | NEW |