-
Notifications
You must be signed in to change notification settings - Fork 465
/
Copy pathjsxEventC.res
348 lines (270 loc) · 9.78 KB
/
jsxEventC.res
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/* Copyright (C) 2015-2016 Bloomberg Finance L.P.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
/*** Internal: use JsxEvent directly. */
type synthetic<'a>
module MakeEventWithType = (
Type: {
type t
},
) => {
@get external bubbles: Type.t => bool = "bubbles"
@get external cancelable: Type.t => bool = "cancelable"
@get external currentTarget: Type.t => {..} = "currentTarget"
/* Should return Dom.eventTarget */
@get external defaultPrevented: Type.t => bool = "defaultPrevented"
@get external eventPhase: Type.t => int = "eventPhase"
@get external isTrusted: Type.t => bool = "isTrusted"
@get external nativeEvent: Type.t => {..} = "nativeEvent"
/* Should return Dom.event */
@send external preventDefault: Type.t => unit = "preventDefault"
@send external isDefaultPrevented: Type.t => bool = "isDefaultPrevented"
@send external stopPropagation: Type.t => unit = "stopPropagation"
@send external isPropagationStopped: Type.t => bool = "isPropagationStopped"
@get external target: Type.t => {..} = "target"
/* Should return Dom.eventTarget */
@get external timeStamp: Type.t => float = "timeStamp"
@get external type_: Type.t => string = "type"
@send external persist: Type.t => unit = "persist"
}
module Synthetic = {
type tag
type t = synthetic<tag>
@get external bubbles: synthetic<'a> => bool = "bubbles"
@get external cancelable: synthetic<'a> => bool = "cancelable"
@get external currentTarget: synthetic<'a> => {..} = "currentTarget"
/* Should return Dom.eventTarget */
@get external defaultPrevented: synthetic<'a> => bool = "defaultPrevented"
@get external eventPhase: synthetic<'a> => int = "eventPhase"
@get external isTrusted: synthetic<'a> => bool = "isTrusted"
@get external nativeEvent: synthetic<'a> => {..} = "nativeEvent"
/* Should return Dom.event */
@send external preventDefault: synthetic<'a> => unit = "preventDefault"
@send external isDefaultPrevented: synthetic<'a> => bool = "isDefaultPrevented"
@send external stopPropagation: synthetic<'a> => unit = "stopPropagation"
@send external isPropagationStopped: synthetic<'a> => bool = "isPropagationStopped"
@get external target: synthetic<'a> => {..} = "target"
/* Should return Dom.eventTarget */
@get external timeStamp: synthetic<'a> => float = "timeStamp"
@get external type_: synthetic<'a> => string = "type"
@send external persist: synthetic<'a> => unit = "persist"
}
/* Cast any event type to the general synthetic type. This is safe, since synthetic is more general */
external toSyntheticEvent: synthetic<'a> => Synthetic.t = "%identity"
module Clipboard = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external clipboardData: t => {..} = "clipboardData"
/* Should return Dom.dataTransfer */
}
module Composition = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external data: t => string = "data"
}
module Keyboard = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external altKey: t => bool = "altKey"
@get external charCode: t => int = "charCode"
@get external ctrlKey: t => bool = "ctrlKey"
@send external getModifierState: (t, string) => bool = "getModifierState"
@get external key: t => string = "key"
@get external keyCode: t => int = "keyCode"
@get external locale: t => string = "locale"
@get external location: t => int = "location"
@get external metaKey: t => bool = "metaKey"
@get external repeat: t => bool = "repeat"
@get external shiftKey: t => bool = "shiftKey"
@get external which: t => int = "which"
}
module Focus = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get @return(nullable) external relatedTarget: t => option<{..}> = "relatedTarget"
/* Should return Dom.eventTarget */
}
module Form = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
}
module Mouse = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external altKey: t => bool = "altKey"
@get external button: t => int = "button"
@get external buttons: t => int = "buttons"
@get external clientX: t => int = "clientX"
@get external clientY: t => int = "clientY"
@get external ctrlKey: t => bool = "ctrlKey"
@get external getModifierState: (t => string) => bool = "getModifierState"
@get external metaKey: t => bool = "metaKey"
@get external movementX: t => int = "movementX"
@get external movementY: t => int = "movementY"
@get external pageX: t => int = "pageX"
@get external pageY: t => int = "pageY"
@get @return(nullable) external relatedTarget: t => option<{..}> = "relatedTarget"
/* Should return Dom.eventTarget */
@get external screenX: t => int = "screenX"
@get external screenY: t => int = "screenY"
@get external shiftKey: t => bool = "shiftKey"
}
module Pointer = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
/* UIEvent */
@get @get
external detail: t => int = "detail"
/* external view : t -> Dom.window = "view" */
/* Should return DOMAbstractView/WindowProxy */
/* MouseEvent */
@get external screenX: t => int = "screenX"
@get external screenY: t => int = "screenY"
@get external clientX: t => int = "clientX"
@get external clientY: t => int = "clientY"
@get external pageX: t => int = "pageX"
@get external pageY: t => int = "pageY"
@get external movementX: t => int = "movementX"
@get external movementY: t => int = "movementY"
@get external ctrlKey: t => bool = "ctrlKey"
@get external shiftKey: t => bool = "shiftKey"
@get external altKey: t => bool = "altKey"
@get external metaKey: t => bool = "metaKey"
@get external getModifierState: (t => string) => bool = "getModifierState"
@get external button: t => int = "button"
@get external buttons: t => int = "buttons"
@get @return(nullable) external relatedTarget: t => option<{..}> = "relatedTarget"
/* Should return Dom.eventTarget */
/* PointerEvent */
/* external pointerId : t -> Dom.eventPointerId = "pointerId" [@@bs.get] */
@get external width: t => float = "width"
@get external height: t => float = "height"
@get external pressure: t => float = "pressure"
@get external tangentialPressure: t => float = "tangentialPressure"
@get external tiltX: t => int = "tiltX"
@get external tiltY: t => int = "tiltY"
@get external twist: t => int = "twist"
@get external pointerType: t => string = "pointerType"
@get external isPrimary: t => bool = "isPrimary"
}
module Selection = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
}
module Touch = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external altKey: t => bool = "altKey"
@get external changedTouches: t => {..} = "changedTouches"
/* Should return Dom.touchList */
@get external ctrlKey: t => bool = "ctrlKey"
@send external getModifierState: (t => string) => bool = "getModifierState"
@get external metaKey: t => bool = "metaKey"
@get external shiftKey: t => bool = "shiftKey"
@get external targetTouches: t => {..} = "targetTouches"
/* Should return Dom.touchList */
@get external touches: t => {..} = "touches"
/* Should return Dom.touchList */
}
module UI = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external detail: t => int = "detail"
/* external view : t -> Dom.window = "view" [@@bs.get] */
/* Should return DOMAbstractView/WindowProxy */
}
module Wheel = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external deltaMode: t => int = "deltaMode"
@get external deltaX: t => float = "deltaX"
@get external deltaY: t => float = "deltaY"
@get external deltaZ: t => float = "deltaZ"
}
module Media = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
}
module Image = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
}
module Animation = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external animationName: t => string = "animationName"
@get external pseudoElement: t => string = "pseudoElement"
@get external elapsedTime: t => float = "elapsedTime"
}
module Transition = {
type tag
type t = synthetic<tag>
include MakeEventWithType({
type t = t
})
@get external propertyName: t => string = "propertyName"
@get external pseudoElement: t => string = "pseudoElement"
@get external elapsedTime: t => float = "elapsedTime"
}