1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// Copyright 2014 PDFium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FPDFSDK_JAVASCRIPT_EVENT_H_
#define FPDFSDK_JAVASCRIPT_EVENT_H_
#include "fpdfsdk/javascript/JS_Define.h"
class event : public CJS_EmbedObj {
public:
explicit event(CJS_Object* pJSObject);
~event() override;
public:
bool change(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool changeEx(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool commitKey(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool fieldFull(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool keyDown(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool modifier(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool name(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool rc(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool richChange(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool richChangeEx(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool richValue(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool selEnd(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool selStart(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool shift(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool source(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool target(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool targetName(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
bool type(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool value(CJS_Runtime* pRuntime, CJS_PropValue& vp, CFX_WideString& sError);
bool willCommit(CJS_Runtime* pRuntime,
CJS_PropValue& vp,
CFX_WideString& sError);
};
class CJS_Event : public CJS_Object {
public:
explicit CJS_Event(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {}
~CJS_Event() override {}
DECLARE_JS_CLASS();
JS_STATIC_PROP(change, event);
JS_STATIC_PROP(changeEx, event);
JS_STATIC_PROP(commitKey, event);
JS_STATIC_PROP(fieldFull, event);
JS_STATIC_PROP(keyDown, event);
JS_STATIC_PROP(modifier, event);
JS_STATIC_PROP(name, event);
JS_STATIC_PROP(rc, event);
JS_STATIC_PROP(richChange, event);
JS_STATIC_PROP(richChangeEx, event);
JS_STATIC_PROP(richValue, event);
JS_STATIC_PROP(selEnd, event);
JS_STATIC_PROP(selStart, event);
JS_STATIC_PROP(shift, event);
JS_STATIC_PROP(source, event);
JS_STATIC_PROP(target, event);
JS_STATIC_PROP(targetName, event);
JS_STATIC_PROP(type, event);
JS_STATIC_PROP(value, event);
JS_STATIC_PROP(willCommit, event);
};
#endif // FPDFSDK_JAVASCRIPT_EVENT_H_
|