| 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/include/fxfa_basic.h" |
| 10 #include "xfa/fxfa/parser/cscript_datawindow.h" |
| 11 #include "xfa/fxfa/parser/cscript_eventpseudomodel.h" |
| 12 #include "xfa/fxfa/parser/cscript_hostpseudomodel.h" |
| 13 #include "xfa/fxfa/parser/cscript_layoutpseudomodel.h" |
| 14 #include "xfa/fxfa/parser/cscript_logpseudomodel.h" |
| 15 #include "xfa/fxfa/parser/cscript_signaturepseudomodel.h" |
| 10 #include "xfa/fxfa/parser/xfa_script.h" | 16 #include "xfa/fxfa/parser/xfa_script.h" |
| 11 #include "xfa/fxfa/parser/xfa_script_datawindow.h" | |
| 12 #include "xfa/fxfa/parser/xfa_script_eventpseudomodel.h" | |
| 13 #include "xfa/fxfa/parser/xfa_script_hostpseudomodel.h" | |
| 14 #include "xfa/fxfa/parser/xfa_script_layoutpseudomodel.h" | |
| 15 #include "xfa/fxfa/parser/xfa_script_logpseudomodel.h" | |
| 16 #include "xfa/fxfa/parser/xfa_script_signaturepseudomodel.h" | |
| 17 | 17 |
| 18 const XFA_SCRIPTHIERARCHY g_XFAScriptIndex[] = { | 18 const XFA_SCRIPTHIERARCHY g_XFAScriptIndex[] = { |
| 19 {0, 0, 0, 2, 316}, {0, 0, 2, 2, 316}, {0, 0, 4, 2, 316}, | 19 {0, 0, 0, 2, 316}, {0, 0, 2, 2, 316}, {0, 0, 4, 2, 316}, |
| 20 {0, 0, 6, 8, 316}, {0, 0, 14, 4, 316}, {0, 0, 18, 5, 317}, | 20 {0, 0, 6, 8, 316}, {0, 0, 14, 4, 316}, {0, 0, 18, 5, 317}, |
| 21 {0, 0, 23, 2, 316}, {0, 0, 25, 1, 316}, {0, 0, 26, 12, 316}, | 21 {0, 0, 23, 2, 316}, {0, 0, 25, 1, 316}, {0, 0, 26, 12, 316}, |
| 22 {0, 0, 38, 2, 316}, {0, 0, 40, 1, 316}, {0, 0, 41, 3, 316}, | 22 {0, 0, 38, 2, 316}, {0, 0, 40, 1, 316}, {0, 0, 41, 3, 316}, |
| 23 {0, 0, 44, 2, 316}, {0, 0, 46, 6, 316}, {0, 0, 52, 0, 316}, | 23 {0, 0, 44, 2, 316}, {0, 0, 46, 6, 316}, {0, 0, 52, 0, 316}, |
| 24 {0, 0, 52, 2, 319}, {0, 0, 54, 2, 316}, {0, 0, 56, 6, 316}, | 24 {0, 0, 52, 2, 319}, {0, 0, 54, 2, 316}, {0, 0, 56, 6, 316}, |
| 25 {0, 0, 62, 0, 316}, {0, 0, 62, 0, 316}, {0, 0, 62, 2, 316}, | 25 {0, 0, 62, 0, 316}, {0, 0, 62, 0, 316}, {0, 0, 62, 2, 316}, |
| 26 {0, 0, 64, 2, 316}, {0, 0, 66, 6, 316}, {0, 0, 72, 4, 316}, | 26 {0, 0, 64, 2, 316}, {0, 0, 66, 6, 316}, {0, 0, 72, 4, 316}, |
| (...skipping 3562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3589 XFA_SCRIPT_Object}, | 3589 XFA_SCRIPT_Object}, |
| 3590 {0xa52682bd, L"{default}", | 3590 {0xa52682bd, L"{default}", |
| 3591 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, | 3591 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, |
| 3592 XFA_SCRIPT_Basic}, | 3592 XFA_SCRIPT_Basic}, |
| 3593 {0xd6e27f1d, L"value", | 3593 {0xd6e27f1d, L"value", |
| 3594 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, | 3594 (XFA_ATTRIBUTE_CALLBACK)&CXFA_Node::Script_Som_DefaultValue, -1, |
| 3595 XFA_SCRIPT_Basic}, | 3595 XFA_SCRIPT_Basic}, |
| 3596 }; | 3596 }; |
| 3597 const int32_t g_iSomAttributeCount = | 3597 const int32_t g_iSomAttributeCount = |
| 3598 sizeof(g_SomAttributeData) / sizeof(XFA_ATTRIBUTEINFO); | 3598 sizeof(g_SomAttributeData) / sizeof(XFA_ATTRIBUTEINFO); |
| OLD | NEW |