| 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_EVENT_H_ | 7 #ifndef FPDFSDK_SRC_JAVASCRIPT_EVENT_H_ |
| 8 #define FPDFSDK_SRC_JAVASCRIPT_EVENT_H_ | 8 #define FPDFSDK_SRC_JAVASCRIPT_EVENT_H_ |
| 9 | 9 |
| 10 #include "JS_Define.h" | 10 #include "JS_Define.h" |
| 11 | 11 |
| 12 class event : public CJS_EmbedObj { | 12 class event : public CJS_EmbedObj { |
| 13 public: | 13 public: |
| 14 event(CJS_Object* pJSObject); | 14 event(CJS_Object* pJSObject); |
| 15 ~event() override; | 15 ~event() override; |
| 16 | 16 |
| 17 public: | 17 public: |
| 18 FX_BOOL change(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | 18 FX_BOOL change(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 19 FX_BOOL changeEx(IFXJS_Context* cc, | 19 FX_BOOL changeEx(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 20 CJS_PropValue& vp, | 20 FX_BOOL commitKey(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 21 CFX_WideString& sError); | 21 FX_BOOL fieldFull(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 22 FX_BOOL commitKey(IFXJS_Context* cc, | 22 FX_BOOL keyDown(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 23 CJS_PropValue& vp, | 23 FX_BOOL modifier(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 24 CFX_WideString& sError); | 24 FX_BOOL name(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 25 FX_BOOL fieldFull(IFXJS_Context* cc, | 25 FX_BOOL rc(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 26 CJS_PropValue& vp, | 26 FX_BOOL richChange(IJS_Context* cc, |
| 27 CFX_WideString& sError); | |
| 28 FX_BOOL keyDown(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 29 FX_BOOL modifier(IFXJS_Context* cc, | |
| 30 CJS_PropValue& vp, | |
| 31 CFX_WideString& sError); | |
| 32 FX_BOOL name(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 33 FX_BOOL rc(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 34 FX_BOOL richChange(IFXJS_Context* cc, | |
| 35 CJS_PropValue& vp, | 27 CJS_PropValue& vp, |
| 36 CFX_WideString& sError); | 28 CFX_WideString& sError); |
| 37 FX_BOOL richChangeEx(IFXJS_Context* cc, | 29 FX_BOOL richChangeEx(IJS_Context* cc, |
| 38 CJS_PropValue& vp, | 30 CJS_PropValue& vp, |
| 39 CFX_WideString& sError); | 31 CFX_WideString& sError); |
| 40 FX_BOOL richValue(IFXJS_Context* cc, | 32 FX_BOOL richValue(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 41 CJS_PropValue& vp, | 33 FX_BOOL selEnd(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 42 CFX_WideString& sError); | 34 FX_BOOL selStart(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 43 FX_BOOL selEnd(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | 35 FX_BOOL shift(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 44 FX_BOOL selStart(IFXJS_Context* cc, | 36 FX_BOOL source(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 45 CJS_PropValue& vp, | 37 FX_BOOL target(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 46 CFX_WideString& sError); | 38 FX_BOOL targetName(IJS_Context* cc, |
| 47 FX_BOOL shift(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 48 FX_BOOL source(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 49 FX_BOOL target(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | |
| 50 FX_BOOL targetName(IFXJS_Context* cc, | |
| 51 CJS_PropValue& vp, | 39 CJS_PropValue& vp, |
| 52 CFX_WideString& sError); | 40 CFX_WideString& sError); |
| 53 FX_BOOL type(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | 41 FX_BOOL type(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 54 FX_BOOL value(IFXJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); | 42 FX_BOOL value(IJS_Context* cc, CJS_PropValue& vp, CFX_WideString& sError); |
| 55 FX_BOOL willCommit(IFXJS_Context* cc, | 43 FX_BOOL willCommit(IJS_Context* cc, |
| 56 CJS_PropValue& vp, | 44 CJS_PropValue& vp, |
| 57 CFX_WideString& sError); | 45 CFX_WideString& sError); |
| 58 }; | 46 }; |
| 59 | 47 |
| 60 class CJS_Event : public CJS_Object { | 48 class CJS_Event : public CJS_Object { |
| 61 public: | 49 public: |
| 62 CJS_Event(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} | 50 CJS_Event(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} |
| 63 ~CJS_Event() override {} | 51 ~CJS_Event() override {} |
| 64 | 52 |
| 65 DECLARE_JS_CLASS(); | 53 DECLARE_JS_CLASS(); |
| (...skipping 13 matching lines...) Expand all Loading... |
| 79 JS_STATIC_PROP(shift, event); | 67 JS_STATIC_PROP(shift, event); |
| 80 JS_STATIC_PROP(source, event); | 68 JS_STATIC_PROP(source, event); |
| 81 JS_STATIC_PROP(target, event); | 69 JS_STATIC_PROP(target, event); |
| 82 JS_STATIC_PROP(targetName, event); | 70 JS_STATIC_PROP(targetName, event); |
| 83 JS_STATIC_PROP(type, event); | 71 JS_STATIC_PROP(type, event); |
| 84 JS_STATIC_PROP(value, event); | 72 JS_STATIC_PROP(value, event); |
| 85 JS_STATIC_PROP(willCommit, event); | 73 JS_STATIC_PROP(willCommit, event); |
| 86 }; | 74 }; |
| 87 | 75 |
| 88 #endif // FPDFSDK_SRC_JAVASCRIPT_EVENT_H_ | 76 #endif // FPDFSDK_SRC_JAVASCRIPT_EVENT_H_ |
| OLD | NEW |