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

Side by Side Diff: xfa/src/fxfa/fm2js/xfa_fm2jsapi.cpp

Issue 1803723002: Move xfa/src up to xfa/. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Rebase to master Created 4 years, 9 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
« no previous file with comments | « xfa/src/fxfa/fm2js/xfa_fm2jsapi.h ('k') | xfa/src/fxfa/fm2js/xfa_fm2jscontext.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
7 #include "xfa/src/fxfa/fm2js/xfa_fm2jsapi.h"
8
9 #include "core/include/fxcrt/fx_basic.h"
10 #include "xfa/src/fxfa/fm2js/xfa_fm2jscontext.h"
11 #include "xfa/src/fxfa/fm2js/xfa_program.h"
12 #include "xfa/src/fxfa/parser/xfa_document.h"
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 int32_t XFA_FM2JS_Translate(const CFX_WideStringC& wsFormcalc,
19 CFX_WideTextBuf& wsJavascript,
20 CFX_WideString& wsError) {
21 if (wsFormcalc.IsEmpty()) {
22 wsJavascript.Clear();
23 wsError.Empty();
24 return 0;
25 }
26 int32_t status = 0;
27 CXFA_FMProgram program;
28 status = program.Init(wsFormcalc);
29 if (status) {
30 wsError = program.GetError().message;
31 return status;
32 }
33 status = program.ParseProgram();
34 if (status) {
35 wsError = program.GetError().message;
36 return status;
37 }
38 program.TranslateProgram(wsJavascript);
39 return 0;
40 }
41 XFA_HFM2JSCONTEXT XFA_FM2JS_ContextCreate() {
42 return (XFA_HFM2JSCONTEXT)CXFA_FM2JSContext::Create();
43 }
44 void XFA_FM2JS_ContextInitialize(XFA_HFM2JSCONTEXT hFM2JSContext,
45 FXJSE_HRUNTIME hScriptRuntime,
46 FXJSE_HCONTEXT hScriptContext,
47 CXFA_Document* pDocument) {
48 CXFA_FM2JSContext* pContext =
49 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext);
50 pContext->Initialize(hScriptRuntime, hScriptContext, pDocument);
51 }
52 void XFA_FM2JS_GlobalPropertyGetter(XFA_HFM2JSCONTEXT hFM2JSContext,
53 FXJSE_HVALUE hValue) {
54 CXFA_FM2JSContext* pContext =
55 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext);
56 pContext->GlobalPropertyGetter(hValue);
57 }
58 void XFA_FM2JS_ContextRelease(XFA_HFM2JSCONTEXT hFM2JSContext) {
59 CXFA_FM2JSContext* pContext =
60 reinterpret_cast<CXFA_FM2JSContext*>(hFM2JSContext);
61 pContext->Release();
62 }
63 #ifdef __cplusplus
64 }
65 #endif
OLDNEW
« no previous file with comments | « xfa/src/fxfa/fm2js/xfa_fm2jsapi.h ('k') | xfa/src/fxfa/fm2js/xfa_fm2jscontext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698