From 472bb7f919736ae58461f653597eb6854119cca9 Mon Sep 17 00:00:00 2001 From: Dan Sinclair Date: Mon, 6 Nov 2017 18:17:41 +0000 Subject: Call CJX methods directly instead of proxying This CL updates the XFA JS code to call the methods on the CJX objects directly instead of proxying through the CXFA objects. The script methods have been removed from the CXFA objects. Change-Id: I2d7b502473a8e88a7af88b10aa0da602d4998394 Reviewed-on: https://pdfium-review.googlesource.com/17851 Reviewed-by: Tom Sepez Commit-Queue: dsinclair --- xfa/fxfa/parser/cxfa_node.cpp | 716 ------------------------------------------ 1 file changed, 716 deletions(-) (limited to 'xfa/fxfa/parser/cxfa_node.cpp') diff --git a/xfa/fxfa/parser/cxfa_node.cpp b/xfa/fxfa/parser/cxfa_node.cpp index 5962e7693f..475295f9dd 100644 --- a/xfa/fxfa/parser/cxfa_node.cpp +++ b/xfa/fxfa/parser/cxfa_node.cpp @@ -636,722 +636,6 @@ void CXFA_Node::SetDataDescriptionNode(CXFA_Node* pDataDescriptionNode) { m_pAuxNode = pDataDescriptionNode; } -void CXFA_Node::Script_TreeClass_ResolveNode(CFXJSE_Arguments* pArguments) { - JSNode()->Script_TreeClass_ResolveNode(pArguments); -} - -void CXFA_Node::Script_TreeClass_ResolveNodes(CFXJSE_Arguments* pArguments) { - JSNode()->Script_TreeClass_ResolveNodes(pArguments); -} - -void CXFA_Node::Script_TreeClass_All(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_All(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_Nodes(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_Nodes(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_ClassAll(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_ClassAll(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_Parent(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_Parent(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_Index(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_Index(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_ClassIndex(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_ClassIndex(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_TreeClass_SomExpression(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_TreeClass_SomExpression(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_NodeClass_ApplyXSL(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_ApplyXSL(pArguments); -} - -void CXFA_Node::Script_NodeClass_AssignNode(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_AssignNode(pArguments); -} - -void CXFA_Node::Script_NodeClass_Clone(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_Clone(pArguments); -} - -void CXFA_Node::Script_NodeClass_GetAttribute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_GetAttribute(pArguments); -} - -void CXFA_Node::Script_NodeClass_GetElement(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_GetElement(pArguments); -} - -void CXFA_Node::Script_NodeClass_IsPropertySpecified( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_IsPropertySpecified(pArguments); -} - -void CXFA_Node::Script_NodeClass_LoadXML(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_LoadXML(pArguments); -} - -void CXFA_Node::Script_NodeClass_SaveFilteredXML(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_SaveFilteredXML(pArguments); -} - -void CXFA_Node::Script_NodeClass_SaveXML(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_SaveXML(pArguments); -} - -void CXFA_Node::Script_NodeClass_SetAttribute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_SetAttribute(pArguments); -} - -void CXFA_Node::Script_NodeClass_SetElement(CFXJSE_Arguments* pArguments) { - JSNode()->Script_NodeClass_SetElement(pArguments); -} - -void CXFA_Node::Script_NodeClass_Ns(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_NodeClass_Ns(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_NodeClass_Model(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_NodeClass_Model(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_NodeClass_IsContainer(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_NodeClass_IsContainer(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_NodeClass_IsNull(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_NodeClass_IsNull(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_NodeClass_OneOfChild(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_NodeClass_OneOfChild(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_ContainerClass_GetDelta(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ContainerClass_GetDelta(pArguments); -} - -void CXFA_Node::Script_ContainerClass_GetDeltas(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ContainerClass_GetDeltas(pArguments); -} - -void CXFA_Node::Script_ModelClass_ClearErrorList(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ModelClass_ClearErrorList(pArguments); -} - -void CXFA_Node::Script_ModelClass_CreateNode(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ModelClass_CreateNode(pArguments); -} - -void CXFA_Node::Script_ModelClass_IsCompatibleNS(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ModelClass_IsCompatibleNS(pArguments); -} - -void CXFA_Node::Script_ModelClass_Context(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_ModelClass_Context(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_ModelClass_AliasNode(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_ModelClass_AliasNode(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_Integer(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_Integer(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_IntegerRead(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_IntegerRead(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_BOOL(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_BOOL(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_BOOLRead(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_BOOLRead(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_String(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_String(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Attribute_StringRead(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Attribute_StringRead(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_WsdlConnection_Execute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_WsdlConnection_Execute(pArguments); -} - -void CXFA_Node::Script_Delta_Restore(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Delta_Restore(pArguments); -} - -void CXFA_Node::Script_Delta_CurrentValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Delta_CurrentValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Delta_SavedValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Delta_SavedValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Delta_Target(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Delta_Target(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_Message(CFXJSE_Value* pValue, - bool bSetting, - XFA_SOM_MESSAGETYPE iMessageType) { - JSNode()->Script_Som_Message(pValue, bSetting, iMessageType); -} - -void CXFA_Node::Script_Som_ValidationMessage(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_ValidationMessage(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_Length(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_Length(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_DefaultValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_DefaultValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_DefaultValue_Read(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_DefaultValue_Read(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Boolean_Value(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Boolean_Value(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_BorderColor(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_BorderColor(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_BorderWidth(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_BorderWidth(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_FillColor(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_FillColor(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_DataNode(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_DataNode(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Draw_DefaultValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Draw_DefaultValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_DefaultValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_DefaultValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_EditValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_EditValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_FontColor(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_FontColor(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_FormatMessage(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_FormatMessage(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_FormattedValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_FormattedValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_Mandatory(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_Mandatory(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Som_MandatoryMessage(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_MandatoryMessage(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_ParentSubform(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_ParentSubform(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_SelectedIndex(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Field_SelectedIndex(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Field_ClearItems(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_ClearItems(pArguments); -} - -void CXFA_Node::Script_Field_ExecEvent(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_ExecEvent(pArguments); -} - -void CXFA_Node::Script_Field_ExecInitialize(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_Field_DeleteItem(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_DeleteItem(pArguments); -} - -void CXFA_Node::Script_Field_GetSaveItem(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_GetSaveItem(pArguments); -} - -void CXFA_Node::Script_Field_BoundItem(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_BoundItem(pArguments); -} - -void CXFA_Node::Script_Field_GetItemState(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_GetItemState(pArguments); -} - -void CXFA_Node::Script_Field_ExecCalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_ExecCalculate(pArguments); -} - -void CXFA_Node::Script_Field_SetItems(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_SetItems(pArguments); -} - -void CXFA_Node::Script_Field_GetDisplayItem(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_GetDisplayItem(pArguments); -} - -void CXFA_Node::Script_Field_SetItemState(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_SetItemState(pArguments); -} - -void CXFA_Node::Script_Field_AddItem(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_AddItem(pArguments); -} - -void CXFA_Node::Script_Field_ExecValidate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Field_ExecValidate(pArguments); -} - -void CXFA_Node::Script_ExclGroup_ErrorText(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_ExclGroup_ErrorText(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_ExclGroup_DefaultAndRawValue(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_ExclGroup_DefaultAndRawValue(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_ExclGroup_Transient(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_ExclGroup_Transient(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_ExclGroup_ExecEvent(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ExclGroup_ExecEvent(pArguments); -} - -void CXFA_Node::Script_ExclGroup_SelectedMember(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ExclGroup_SelectedMember(pArguments); -} - -void CXFA_Node::Script_ExclGroup_ExecInitialize(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ExclGroup_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_ExclGroup_ExecCalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ExclGroup_ExecCalculate(pArguments); -} - -void CXFA_Node::Script_ExclGroup_ExecValidate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_ExclGroup_ExecValidate(pArguments); -} - -void CXFA_Node::Script_Som_InstanceIndex(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Som_InstanceIndex(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Subform_InstanceManager(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Subform_InstanceManager(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Subform_Locale(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Subform_Locale(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Subform_ExecEvent(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Subform_ExecEvent(pArguments); -} - -void CXFA_Node::Script_Subform_ExecInitialize(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Subform_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_Subform_ExecCalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Subform_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_Subform_ExecValidate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Subform_ExecValidate(pArguments); -} - -void CXFA_Node::Script_Subform_GetInvalidObjects(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Subform_GetInvalidObjects(pArguments); -} - -void CXFA_Node::Script_Template_FormNodes(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_FormNodes(pArguments); -} - -void CXFA_Node::Script_Template_Remerge(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_Remerge(pArguments); -} - -void CXFA_Node::Script_Template_ExecInitialize(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_Template_CreateNode(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_CreateNode(pArguments); -} - -void CXFA_Node::Script_Template_Recalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_Recalculate(pArguments); -} - -void CXFA_Node::Script_Template_ExecCalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_ExecCalculate(pArguments); -} - -void CXFA_Node::Script_Template_ExecValidate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Template_ExecValidate(pArguments); -} - -void CXFA_Node::Script_Manifest_Evaluate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Manifest_Evaluate(pArguments); -} - -void CXFA_Node::Script_InstanceManager_Max(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_InstanceManager_Max(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_InstanceManager_Min(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_InstanceManager_Min(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_InstanceManager_Count(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_InstanceManager_Count(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_InstanceManager_MoveInstance( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_InstanceManager_MoveInstance(pArguments); -} - -void CXFA_Node::Script_InstanceManager_RemoveInstance( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_InstanceManager_RemoveInstance(pArguments); -} - -void CXFA_Node::Script_InstanceManager_SetInstances( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_InstanceManager_SetInstances(pArguments); -} - -void CXFA_Node::Script_InstanceManager_AddInstance( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_InstanceManager_AddInstance(pArguments); -} - -void CXFA_Node::Script_InstanceManager_InsertInstance( - CFXJSE_Arguments* pArguments) { - JSNode()->Script_InstanceManager_InsertInstance(pArguments); -} - -void CXFA_Node::Script_Occur_Max(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Occur_Max(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Occur_Min(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Occur_Min(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Desc_Metadata(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Desc_Metadata(pArguments); -} - -void CXFA_Node::Script_Form_FormNodes(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_FormNodes(pArguments); -} - -void CXFA_Node::Script_Form_Remerge(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_Remerge(pArguments); -} - -void CXFA_Node::Script_Form_ExecInitialize(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_ExecInitialize(pArguments); -} - -void CXFA_Node::Script_Form_Recalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_Recalculate(pArguments); -} - -void CXFA_Node::Script_Form_ExecCalculate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_ExecCalculate(pArguments); -} - -void CXFA_Node::Script_Form_ExecValidate(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Form_ExecValidate(pArguments); -} - -void CXFA_Node::Script_Form_Checksum(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Form_Checksum(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Packet_GetAttribute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Packet_GetAttribute(pArguments); -} - -void CXFA_Node::Script_Packet_SetAttribute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Packet_SetAttribute(pArguments); -} - -void CXFA_Node::Script_Packet_RemoveAttribute(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Packet_RemoveAttribute(pArguments); -} - -void CXFA_Node::Script_Packet_Content(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Packet_Content(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Source_Next(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Next(pArguments); -} - -void CXFA_Node::Script_Source_CancelBatch(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_CancelBatch(pArguments); -} - -void CXFA_Node::Script_Source_First(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_First(pArguments); -} - -void CXFA_Node::Script_Source_UpdateBatch(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_UpdateBatch(pArguments); -} - -void CXFA_Node::Script_Source_Previous(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Previous(pArguments); -} - -void CXFA_Node::Script_Source_IsBOF(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_IsBOF(pArguments); -} - -void CXFA_Node::Script_Source_IsEOF(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_IsEOF(pArguments); -} - -void CXFA_Node::Script_Source_Cancel(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Cancel(pArguments); -} - -void CXFA_Node::Script_Source_Update(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Update(pArguments); -} - -void CXFA_Node::Script_Source_Open(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Open(pArguments); -} - -void CXFA_Node::Script_Source_Delete(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Delete(pArguments); -} - -void CXFA_Node::Script_Source_AddNew(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_AddNew(pArguments); -} - -void CXFA_Node::Script_Source_Requery(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Requery(pArguments); -} - -void CXFA_Node::Script_Source_Resync(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Resync(pArguments); -} - -void CXFA_Node::Script_Source_Close(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Close(pArguments); -} - -void CXFA_Node::Script_Source_Last(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_Last(pArguments); -} - -void CXFA_Node::Script_Source_HasDataChanged(CFXJSE_Arguments* pArguments) { - JSNode()->Script_Source_HasDataChanged(pArguments); -} - -void CXFA_Node::Script_Source_Db(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Source_Db(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Xfa_This(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Xfa_This(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Handler_Version(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Handler_Version(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_SubmitFormat_Mode(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_SubmitFormat_Mode(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Extras_Type(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Extras_Type(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Script_Stateless(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Script_Stateless(pValue, bSetting, eAttribute); -} - -void CXFA_Node::Script_Encrypt_Format(CFXJSE_Value* pValue, - bool bSetting, - XFA_ATTRIBUTE eAttribute) { - JSNode()->Script_Encrypt_Format(pValue, bSetting, eAttribute); -} - CXFA_Node* CXFA_Node::GetModelNode() { switch (GetPacketID()) { case XFA_XDPPACKET_XDP: -- cgit v1.2.3