Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: xfa/fxfa/parser/xfa_script_hostpseudomodel.cpp

Issue 2101403002: Pass element hash and name into CXFA_Object constructor. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@classname_return
Patch Set: Rebase to master Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp ('k') | xfa/fxfa/parser/xfa_script_layoutpseudomodel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698