| 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_hostpseudomodel.h" | 7 #include "xfa/fxfa/parser/xfa_script_hostpseudomodel.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 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 CXFA_Node* ToNode(CFXJSE_Value* pValue, CFXJSE_Class* pClass) { | 22 CXFA_Node* ToNode(CFXJSE_Value* pValue, CFXJSE_Class* pClass) { |
| 23 return static_cast<CXFA_Node*>(pValue->ToHostObject(pClass)); | 23 return static_cast<CXFA_Node*>(pValue->ToHostObject(pClass)); |
| 24 } | 24 } |
| 25 | 25 |
| 26 } // namespace | 26 } // namespace |
| 27 | 27 |
| 28 CScript_HostPseudoModel::CScript_HostPseudoModel(CXFA_Document* pDocument) | 28 CScript_HostPseudoModel::CScript_HostPseudoModel(CXFA_Document* pDocument) |
| 29 : CXFA_Object(pDocument, | 29 : CXFA_Object(pDocument, |
| 30 XFA_ObjectType::Object, | 30 XFA_ObjectType::Object, |
| 31 XFA_Element::HostPseudoModel) {} | 31 XFA_Element::HostPseudoModel, |
| 32 CFX_WideStringC(L"hostPseudoModel")) {} |
| 33 |
| 32 CScript_HostPseudoModel::~CScript_HostPseudoModel() {} | 34 CScript_HostPseudoModel::~CScript_HostPseudoModel() {} |
| 35 |
| 33 void CScript_HostPseudoModel::LoadString(CFXJSE_Value* pValue, | 36 void CScript_HostPseudoModel::LoadString(CFXJSE_Value* pValue, |
| 34 CXFA_FFNotify* pNotify, | 37 CXFA_FFNotify* pNotify, |
| 35 uint32_t dwFlag) { | 38 uint32_t dwFlag) { |
| 36 CFX_WideString wsValue; | 39 CFX_WideString wsValue; |
| 37 pNotify->GetAppProvider()->LoadString(dwFlag, wsValue); | 40 pNotify->GetAppProvider()->LoadString(dwFlag, wsValue); |
| 38 pValue->SetString(FX_UTF8Encode(wsValue).AsStringC()); | 41 pValue->SetString(FX_UTF8Encode(wsValue).AsStringC()); |
| 39 } | 42 } |
| 40 | 43 |
| 41 void CScript_HostPseudoModel::AppType(CFXJSE_Value* pValue, | 44 void CScript_HostPseudoModel::AppType(CFXJSE_Value* pValue, |
| 42 FX_BOOL bSetting, | 45 FX_BOOL bSetting, |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 void CScript_HostPseudoModel::CurrentDateTime(CFXJSE_Arguments* pArguments) { | 708 void CScript_HostPseudoModel::CurrentDateTime(CFXJSE_Arguments* pArguments) { |
| 706 CXFA_FFNotify* pNotify = m_pDocument->GetNotify(); | 709 CXFA_FFNotify* pNotify = m_pDocument->GetNotify(); |
| 707 if (!pNotify) { | 710 if (!pNotify) { |
| 708 return; | 711 return; |
| 709 } | 712 } |
| 710 CFX_WideString wsDataTime = pNotify->GetCurrentDateTime(); | 713 CFX_WideString wsDataTime = pNotify->GetCurrentDateTime(); |
| 711 CFXJSE_Value* pValue = pArguments->GetReturnValue(); | 714 CFXJSE_Value* pValue = pArguments->GetReturnValue(); |
| 712 if (pValue) | 715 if (pValue) |
| 713 pValue->SetString(FX_UTF8Encode(wsDataTime).AsStringC()); | 716 pValue->SetString(FX_UTF8Encode(wsDataTime).AsStringC()); |
| 714 } | 717 } |
| OLD | NEW |