forked from nikhilk/scriptsharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjQueryEvent.cs
More file actions
284 lines (248 loc) · 6.35 KB
/
Copy pathjQueryEvent.cs
File metadata and controls
284 lines (248 loc) · 6.35 KB
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
// jQueryEvent.cs
// Script#/Libraries/jQuery/Core
// This source code is subject to terms and conditions of the Apache License, Version 2.0.
//
using System;
using System.Collections;
using System.Html;
using System.Runtime.CompilerServices;
namespace jQueryApi {
/// <summary>
/// Provides information about the current event.
/// </summary>
[ScriptImport]
[ScriptIgnoreNamespace]
public class jQueryEvent {
protected jQueryEvent() {
}
[ScriptField]
public bool AltKey {
get {
return false;
}
}
[ScriptField]
public bool Bubbles {
get {
return false;
}
}
[ScriptField]
public int Button {
get {
return 0;
}
}
[ScriptField]
public bool Cancelable {
get {
return false;
}
}
[ScriptField]
public bool CtrlKey {
get {
return false;
}
}
[ScriptField]
public int ClientX {
get {
return 0;
}
}
[ScriptField]
public int ClientY {
get {
return 0;
}
}
/// <summary>
/// Gets the current DOM element within the event bubbling phase.
/// </summary>
[ScriptField]
public Element CurrentTarget {
get {
return null;
}
}
/// <summary>
/// Gets the event data that was passed in into the Bind method.
/// </summary>
[ScriptField]
public Dictionary Data {
get {
return null;
}
}
[ScriptField]
public bool MetaKey {
get {
return false;
}
}
/// <summary>
/// Gets the namespace specified when the event was triggered.
/// </summary>
[ScriptField]
public string Namespace {
get {
return null;
}
}
[ScriptField]
public int OffsetX {
get {
return 0;
}
}
[ScriptField]
public int OffsetY {
get {
return 0;
}
}
/// <summary>
/// Gets the original DOM event which spawned this event.
/// </summary>
[ScriptField]
public ElementEvent OriginalEvent {
get{
return null;
}
}
[ScriptField]
public Element OriginalTarget {
get {
return null;
}
}
/// <summary>
/// Gets the mouse position relative to left edge of the document.
/// </summary>
[ScriptField]
public int PageX {
get {
return 0;
}
}
/// <summary>
/// Gets the mouse position relative to top edge of the document.
/// </summary>
[ScriptField]
public int PageY {
get {
return 0;
}
}
[ScriptField]
public int ScreenX {
get {
return 0;
}
}
[ScriptField]
public int ScreenY {
get {
return 0;
}
}
/// <summary>
/// Gets the other DOM element associated with the event if any.
/// </summary>
[ScriptField]
public Element RelatedTarget {
get {
return null;
}
}
/// <summary>
/// Gets the value returned by the last event handler if any.
/// </summary>
[ScriptField]
public object Result {
get {
return null;
}
}
[ScriptField]
public bool ShiftKey {
get {
return false;
}
}
/// <summary>
/// Gets the DOM element that initiated the event.
/// </summary>
[ScriptField]
public Element Target {
get {
return null;
}
}
/// <summary>
/// Gets the number of milliseconds since Jan 1, 1970, when the event
/// was triggered.
/// </summary>
[ScriptField]
public long TimeStamp {
get {
return 0;
}
}
/// <summary>
/// Gets the type or name of the event.
/// </summary>
[ScriptField]
public string Type {
get {
return null;
}
}
/// <summary>
/// Gets the key or button that was pressed.
/// </summary>
[ScriptField]
public int Which {
get {
return 0;
}
}
/// <summary>
/// Gets whether PreventDefault has been called on this event.
/// </summary>
/// <returns>True if PreventDefault was called. False otherwise.</returns>
public bool IsDefaultPrevented() {
return false;
}
/// <summary>
/// Gets whether StopImmediatePropagation has been called on this event.
/// </summary>
/// <returns>True if StopImmediatePropagation was called. False otherwise.</returns>
public bool IsImmediatePropagationStopped() {
return false;
}
/// <summary>
/// Gets whether StopPropagation has been called on this event.
/// </summary>
/// <returns>True if StopPropagation was called. False otherwise.</returns>
public bool IsPropagationStopped() {
return false;
}
/// <summary>
/// Prevents the default action associated with the event.
/// </summary>
public void PreventDefault() {
}
/// <summary>
/// Prevents the rest of the handlers associated with the event from being invoked.
/// </summary>
public void StopImmediatePropagation() {
}
/// <summary>
/// Prevents the event from being bubbled up the DOM tree.
/// </summary>
public void StopPropagation() {
}
}
}