K. Moon | 832a694 | 2022-10-31 20:11:31 +0000 | [diff] [blame] | 1 | // Copyright 2014 The PDFium Authors |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
Lei Zhang | a6d9f0e | 2015-06-13 00:48:38 -0700 | [diff] [blame] | 4 | |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 5 | // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com |
| 6 | |
Dan Sinclair | e0345a4 | 2017-10-30 20:20:42 +0000 | [diff] [blame] | 7 | #ifndef FXJS_CJS_EVENT_H_ |
| 8 | #define FXJS_CJS_EVENT_H_ |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 9 | |
Lei Zhang | 31beedc | 2018-10-18 21:09:55 +0000 | [diff] [blame] | 10 | #include "fxjs/cjs_object.h" |
Tom Sepez | 221f0b3 | 2018-06-04 22:11:27 +0000 | [diff] [blame] | 11 | #include "fxjs/js_define.h" |
Tom Sepez | 9a3f812 | 2015-04-07 15:35:48 -0700 | [diff] [blame] | 12 | |
Tom Sepez | 5586545 | 2018-08-27 20:18:04 +0000 | [diff] [blame] | 13 | class CJS_Event final : public CJS_Object { |
Nico Weber | 9d8ec5a | 2015-08-04 13:00:21 -0700 | [diff] [blame] | 14 | public: |
Tom Sepez | b495871 | 2020-10-13 20:30:43 +0000 | [diff] [blame] | 15 | static uint32_t GetObjDefnID(); |
Dan Sinclair | f743552 | 2018-02-05 22:27:22 +0000 | [diff] [blame] | 16 | static void DefineJSObjects(CFXJS_Engine* pEngine); |
| 17 | |
Tom Sepez | 36aae4f | 2018-06-04 19:44:37 +0000 | [diff] [blame] | 18 | CJS_Event(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime); |
Dan Sinclair | f743552 | 2018-02-05 22:27:22 +0000 | [diff] [blame] | 19 | ~CJS_Event() override; |
| 20 | |
Nico Weber | 563f62a | 2019-02-12 18:47:12 +0000 | [diff] [blame] | 21 | JS_STATIC_PROP(change, change, CJS_Event) |
| 22 | JS_STATIC_PROP(changeEx, change_ex, CJS_Event) |
| 23 | JS_STATIC_PROP(commitKey, commit_key, CJS_Event) |
| 24 | JS_STATIC_PROP(fieldFull, field_full, CJS_Event) |
| 25 | JS_STATIC_PROP(keyDown, key_down, CJS_Event) |
| 26 | JS_STATIC_PROP(modifier, modifier, CJS_Event) |
| 27 | JS_STATIC_PROP(name, name, CJS_Event) |
| 28 | JS_STATIC_PROP(rc, rc, CJS_Event) |
| 29 | JS_STATIC_PROP(richChange, rich_change, CJS_Event) |
| 30 | JS_STATIC_PROP(richChangeEx, rich_change_ex, CJS_Event) |
| 31 | JS_STATIC_PROP(richValue, rich_value, CJS_Event) |
| 32 | JS_STATIC_PROP(selEnd, sel_end, CJS_Event) |
| 33 | JS_STATIC_PROP(selStart, sel_start, CJS_Event) |
| 34 | JS_STATIC_PROP(shift, shift, CJS_Event) |
| 35 | JS_STATIC_PROP(source, source, CJS_Event) |
| 36 | JS_STATIC_PROP(target, target, CJS_Event) |
| 37 | JS_STATIC_PROP(targetName, target_name, CJS_Event) |
| 38 | JS_STATIC_PROP(type, type, CJS_Event) |
| 39 | JS_STATIC_PROP(value, value, CJS_Event) |
| 40 | JS_STATIC_PROP(willCommit, will_commit, CJS_Event) |
Dan Sinclair | f743552 | 2018-02-05 22:27:22 +0000 | [diff] [blame] | 41 | |
| 42 | private: |
Tom Sepez | b495871 | 2020-10-13 20:30:43 +0000 | [diff] [blame] | 43 | static uint32_t ObjDefnID; |
Dan Sinclair | f743552 | 2018-02-05 22:27:22 +0000 | [diff] [blame] | 44 | static const char kName[]; |
| 45 | static const JSPropertySpec PropertySpecs[]; |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 46 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 47 | CJS_Result get_change(CJS_Runtime* pRuntime); |
| 48 | CJS_Result set_change(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 49 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 50 | CJS_Result get_change_ex(CJS_Runtime* pRuntime); |
| 51 | CJS_Result set_change_ex(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 52 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 53 | CJS_Result get_commit_key(CJS_Runtime* pRuntime); |
| 54 | CJS_Result set_commit_key(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 55 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 56 | CJS_Result get_field_full(CJS_Runtime* pRuntime); |
| 57 | CJS_Result set_field_full(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 58 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 59 | CJS_Result get_key_down(CJS_Runtime* pRuntime); |
| 60 | CJS_Result set_key_down(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 61 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 62 | CJS_Result get_modifier(CJS_Runtime* pRuntime); |
| 63 | CJS_Result set_modifier(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 64 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 65 | CJS_Result get_name(CJS_Runtime* pRuntime); |
| 66 | CJS_Result set_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 67 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 68 | CJS_Result get_rc(CJS_Runtime* pRuntime); |
| 69 | CJS_Result set_rc(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 70 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 71 | CJS_Result get_rich_change(CJS_Runtime* pRuntime); |
| 72 | CJS_Result set_rich_change(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 73 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 74 | CJS_Result get_rich_change_ex(CJS_Runtime* pRuntime); |
| 75 | CJS_Result set_rich_change_ex(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 76 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 77 | CJS_Result get_rich_value(CJS_Runtime* pRuntime); |
| 78 | CJS_Result set_rich_value(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 79 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 80 | CJS_Result get_sel_end(CJS_Runtime* pRuntime); |
| 81 | CJS_Result set_sel_end(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 82 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 83 | CJS_Result get_sel_start(CJS_Runtime* pRuntime); |
| 84 | CJS_Result set_sel_start(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 85 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 86 | CJS_Result get_shift(CJS_Runtime* pRuntime); |
| 87 | CJS_Result set_shift(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 88 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 89 | CJS_Result get_source(CJS_Runtime* pRuntime); |
| 90 | CJS_Result set_source(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 91 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 92 | CJS_Result get_target(CJS_Runtime* pRuntime); |
| 93 | CJS_Result set_target(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 94 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 95 | CJS_Result get_target_name(CJS_Runtime* pRuntime); |
| 96 | CJS_Result set_target_name(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 97 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 98 | CJS_Result get_type(CJS_Runtime* pRuntime); |
| 99 | CJS_Result set_type(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 100 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 101 | CJS_Result get_value(CJS_Runtime* pRuntime); |
| 102 | CJS_Result set_value(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
dan sinclair | cbe23db | 2017-10-19 14:29:33 -0400 | [diff] [blame] | 103 | |
Tom Sepez | 3a6d058 | 2018-08-17 19:28:52 +0000 | [diff] [blame] | 104 | CJS_Result get_will_commit(CJS_Runtime* pRuntime); |
| 105 | CJS_Result set_will_commit(CJS_Runtime* pRuntime, v8::Local<v8::Value> vp); |
John Abd-El-Malek | 3f3b45c | 2014-05-23 17:28:10 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
Dan Sinclair | e0345a4 | 2017-10-30 20:20:42 +0000 | [diff] [blame] | 108 | #endif // FXJS_CJS_EVENT_H_ |