| 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 #include "xfa/fxfa/parser/xfa_script_eventpseudomodel.h" | 7 #include "xfa/fxfa/parser/xfa_script_eventpseudomodel.h" |
| 8 | 8 |
| 9 #include "fxjs/include/cfxjse_arguments.h" | 9 #include "fxjs/include/cfxjse_arguments.h" |
| 10 #include "xfa/fxfa/app/xfa_ffnotify.h" | 10 #include "xfa/fxfa/app/xfa_ffnotify.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 return; | 44 return; |
| 45 } | 45 } |
| 46 pValue->SetBoolean(bValue); | 46 pValue->SetBoolean(bValue); |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace | 49 } // namespace |
| 50 | 50 |
| 51 CScript_EventPseudoModel::CScript_EventPseudoModel(CXFA_Document* pDocument) | 51 CScript_EventPseudoModel::CScript_EventPseudoModel(CXFA_Document* pDocument) |
| 52 : CXFA_Object(pDocument, | 52 : CXFA_Object(pDocument, |
| 53 XFA_ObjectType::Object, | 53 XFA_ObjectType::Object, |
| 54 XFA_Element::EventPseudoModel) {} | 54 XFA_Element::EventPseudoModel, |
| 55 CFX_WideStringC(L"eventPseudoModel")) {} |
| 55 | 56 |
| 56 CScript_EventPseudoModel::~CScript_EventPseudoModel() {} | 57 CScript_EventPseudoModel::~CScript_EventPseudoModel() {} |
| 57 | 58 |
| 58 void CScript_EventPseudoModel::Property(CFXJSE_Value* pValue, | 59 void CScript_EventPseudoModel::Property(CFXJSE_Value* pValue, |
| 59 XFA_Event dwFlag, | 60 XFA_Event dwFlag, |
| 60 FX_BOOL bSetting) { | 61 FX_BOOL bSetting) { |
| 61 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); | 62 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); |
| 62 if (!pScriptContext) | 63 if (!pScriptContext) |
| 63 return; | 64 return; |
| 64 | 65 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 224 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); | 225 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); |
| 225 if (!pScriptContext) { | 226 if (!pScriptContext) { |
| 226 return; | 227 return; |
| 227 } | 228 } |
| 228 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); | 229 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); |
| 229 if (!pEventParam) { | 230 if (!pEventParam) { |
| 230 return; | 231 return; |
| 231 } | 232 } |
| 232 pEventParam->Reset(); | 233 pEventParam->Reset(); |
| 233 } | 234 } |
| OLD | NEW |