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 "../../include/javascript/JavaScript.h" | 7 #include "../../include/javascript/JavaScript.h" |
8 #include "../../include/javascript/IJavaScript.h" | 8 #include "../../include/javascript/IJavaScript.h" |
9 #include "../../include/javascript/JS_Define.h" | 9 #include "../../include/javascript/JS_Define.h" |
10 #include "../../include/javascript/JS_Object.h" | 10 #include "../../include/javascript/JS_Object.h" |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 CJS_EventHandler* pEvent = pContext->GetEventHandler(); | 345 CJS_EventHandler* pEvent = pContext->GetEventHandler(); |
346 ASSERT(pEvent != NULL); | 346 ASSERT(pEvent != NULL); |
347 | 347 |
348 if (wcscmp((const wchar_t*)pEvent->Type(),L"Field") != 0) | 348 if (wcscmp((const wchar_t*)pEvent->Type(),L"Field") != 0) |
349 return FALSE; | 349 return FALSE; |
350 if(!pEvent->m_pValue) | 350 if(!pEvent->m_pValue) |
351 return FALSE; | 351 return FALSE; |
352 CFX_WideString & val = pEvent->Value(); | 352 CFX_WideString & val = pEvent->Value(); |
353 if (vp.IsSetting()) | 353 if (vp.IsSetting()) |
354 { | 354 { |
355 » » val = vp; | 355 » » vp >> val; |
356 } | 356 } |
357 else | 357 else |
358 { | 358 { |
359 vp << val; | 359 vp << val; |
360 } | 360 } |
361 return TRUE; | 361 return TRUE; |
362 } | 362 } |
363 | 363 |
364 FX_BOOL event::willCommit(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString&
sError) | 364 FX_BOOL event::willCommit(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString&
sError) |
365 { | 365 { |
366 if (!vp.IsGetting())return FALSE; | 366 if (!vp.IsGetting())return FALSE; |
367 | 367 |
368 CJS_Context* pContext = (CJS_Context*)cc; | 368 CJS_Context* pContext = (CJS_Context*)cc; |
369 ASSERT(pContext != NULL); | 369 ASSERT(pContext != NULL); |
370 CJS_EventHandler* pEvent = pContext->GetEventHandler(); | 370 CJS_EventHandler* pEvent = pContext->GetEventHandler(); |
371 ASSERT(pEvent != NULL); | 371 ASSERT(pEvent != NULL); |
372 | 372 |
373 if (pEvent->WillCommit()) | 373 if (pEvent->WillCommit()) |
374 vp << TRUE; | 374 vp << TRUE; |
375 else | 375 else |
376 vp << FALSE; | 376 vp << FALSE; |
377 return TRUE; | 377 return TRUE; |
378 } | 378 } |
379 | 379 |
OLD | NEW |