| 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 "fxjse/include/cfxjse_arguments.h" | 9 #include "fxjse/include/cfxjse_arguments.h" |
| 10 #include "xfa/fxfa/app/xfa_ffnotify.h" | 10 #include "xfa/fxfa/app/xfa_ffnotify.h" |
| 11 #include "xfa/fxfa/include/cxfa_eventparam.h" | 11 #include "xfa/fxfa/include/cxfa_eventparam.h" |
| 12 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" | 12 #include "xfa/fxfa/include/xfa_ffwidgethandler.h" |
| 13 #include "xfa/fxfa/parser/xfa_doclayout.h" | 13 #include "xfa/fxfa/parser/xfa_doclayout.h" |
| 14 #include "xfa/fxfa/parser/xfa_document.h" | 14 #include "xfa/fxfa/parser/xfa_document.h" |
| 15 #include "xfa/fxfa/parser/xfa_localemgr.h" | 15 #include "xfa/fxfa/parser/xfa_localemgr.h" |
| 16 #include "xfa/fxfa/parser/xfa_object.h" | 16 #include "xfa/fxfa/parser/xfa_object.h" |
| 17 #include "xfa/fxfa/parser/xfa_parser.h" | |
| 18 #include "xfa/fxfa/parser/xfa_parser_imp.h" | 17 #include "xfa/fxfa/parser/xfa_parser_imp.h" |
| 19 #include "xfa/fxfa/parser/xfa_script.h" | 18 #include "xfa/fxfa/parser/xfa_script.h" |
| 20 #include "xfa/fxfa/parser/xfa_script_imp.h" | 19 #include "xfa/fxfa/parser/xfa_script_imp.h" |
| 21 #include "xfa/fxfa/parser/xfa_utils.h" | 20 #include "xfa/fxfa/parser/xfa_utils.h" |
| 22 | 21 |
| 23 namespace { | 22 namespace { |
| 24 | 23 |
| 25 void StringProperty(CFXJSE_Value* pValue, | 24 void StringProperty(CFXJSE_Value* pValue, |
| 26 CFX_WideString& wsValue, | 25 CFX_WideString& wsValue, |
| 27 FX_BOOL bSetting) { | 26 FX_BOOL bSetting) { |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 } | 204 } |
| 206 void CScript_EventPseudoModel::Emit(CFXJSE_Arguments* pArguments) { | 205 void CScript_EventPseudoModel::Emit(CFXJSE_Arguments* pArguments) { |
| 207 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); | 206 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); |
| 208 if (!pScriptContext) { | 207 if (!pScriptContext) { |
| 209 return; | 208 return; |
| 210 } | 209 } |
| 211 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); | 210 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); |
| 212 if (!pEventParam) { | 211 if (!pEventParam) { |
| 213 return; | 212 return; |
| 214 } | 213 } |
| 215 CXFA_FFNotify* pNotify = m_pDocument->GetParser()->GetNotify(); | 214 CXFA_FFNotify* pNotify = m_pDocument->GetNotify(); |
| 216 if (!pNotify) { | 215 if (!pNotify) { |
| 217 return; | 216 return; |
| 218 } | 217 } |
| 219 CXFA_FFWidgetHandler* pWidgetHandler = pNotify->GetWidgetHandler(); | 218 CXFA_FFWidgetHandler* pWidgetHandler = pNotify->GetWidgetHandler(); |
| 220 if (!pWidgetHandler) { | 219 if (!pWidgetHandler) { |
| 221 return; | 220 return; |
| 222 } | 221 } |
| 223 pWidgetHandler->ProcessEvent(pEventParam->m_pTarget, pEventParam); | 222 pWidgetHandler->ProcessEvent(pEventParam->m_pTarget, pEventParam); |
| 224 } | 223 } |
| 225 void CScript_EventPseudoModel::Reset(CFXJSE_Arguments* pArguments) { | 224 void CScript_EventPseudoModel::Reset(CFXJSE_Arguments* pArguments) { |
| 226 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); | 225 CXFA_ScriptContext* pScriptContext = m_pDocument->GetScriptContext(); |
| 227 if (!pScriptContext) { | 226 if (!pScriptContext) { |
| 228 return; | 227 return; |
| 229 } | 228 } |
| 230 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); | 229 CXFA_EventParam* pEventParam = pScriptContext->GetEventParam(); |
| 231 if (!pEventParam) { | 230 if (!pEventParam) { |
| 232 return; | 231 return; |
| 233 } | 232 } |
| 234 pEventParam->Reset(); | 233 pEventParam->Reset(); |
| 235 } | 234 } |
| OLD | NEW |