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 #ifndef FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ | 7 #ifndef FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ |
8 #define FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ | 8 #define FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ |
9 | 9 |
10 #include <set> | 10 #include <set> |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 bool AddEventToSet(const FieldEvent& event); | 51 bool AddEventToSet(const FieldEvent& event); |
52 void RemoveEventFromSet(const FieldEvent& event); | 52 void RemoveEventFromSet(const FieldEvent& event); |
53 | 53 |
54 void BeginBlock() { m_bBlocking = TRUE; } | 54 void BeginBlock() { m_bBlocking = TRUE; } |
55 void EndBlock() { m_bBlocking = FALSE; } | 55 void EndBlock() { m_bBlocking = FALSE; } |
56 FX_BOOL IsBlocking() const { return m_bBlocking; } | 56 FX_BOOL IsBlocking() const { return m_bBlocking; } |
57 | 57 |
58 v8::Isolate* GetIsolate() const { return m_isolate; } | 58 v8::Isolate* GetIsolate() const { return m_isolate; } |
59 v8::Local<v8::Context> NewJSContext(); | 59 v8::Local<v8::Context> NewJSContext(); |
60 | 60 |
| 61 #ifdef PDF_ENABLE_XFA |
61 // IJS_Runtime: | 62 // IJS_Runtime: |
62 FX_BOOL GetHValueByName(const CFX_ByteStringC& utf8Name, | 63 FX_BOOL GetHValueByName(const CFX_ByteStringC& utf8Name, |
63 FXJSE_HVALUE hValue) override; | 64 FXJSE_HVALUE hValue) override; |
64 FX_BOOL SetHValueByName(const CFX_ByteStringC& utf8Name, | 65 FX_BOOL SetHValueByName(const CFX_ByteStringC& utf8Name, |
65 FXJSE_HVALUE hValue) override; | 66 FXJSE_HVALUE hValue) override; |
66 | 67 |
| 68 #endif |
67 void AddObserver(Observer* observer); | 69 void AddObserver(Observer* observer); |
68 void RemoveObserver(Observer* observer); | 70 void RemoveObserver(Observer* observer); |
69 | 71 |
70 private: | 72 private: |
71 void DefineJSObjects(); | 73 void DefineJSObjects(); |
72 | 74 |
73 CFX_ArrayTemplate<CJS_Context*> m_ContextArray; | 75 CFX_ArrayTemplate<CJS_Context*> m_ContextArray; |
74 CPDFDoc_Environment* m_pApp; | 76 CPDFDoc_Environment* m_pApp; |
75 CPDFSDK_Document* m_pDocument; | 77 CPDFSDK_Document* m_pDocument; |
76 FX_BOOL m_bBlocking; | 78 FX_BOOL m_bBlocking; |
77 std::set<FieldEvent> m_FieldEventSet; | 79 std::set<FieldEvent> m_FieldEventSet; |
78 v8::Isolate* m_isolate; | 80 v8::Isolate* m_isolate; |
79 bool m_isolateManaged; | 81 bool m_isolateManaged; |
80 v8::Global<v8::Context> m_context; | 82 v8::Global<v8::Context> m_context; |
81 std::vector<v8::Global<v8::Object>*> m_StaticObjects; | 83 std::vector<v8::Global<v8::Object>*> m_StaticObjects; |
82 std::set<Observer*> m_observers; | 84 std::set<Observer*> m_observers; |
83 }; | 85 }; |
84 | 86 |
85 #endif // FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ | 87 #endif // FPDFSDK_SRC_JAVASCRIPT_JS_RUNTIME_H_ |
OLD | NEW |