Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Side by Side Diff: client/html/generated/src/interface/Event.dart

Issue 8404013: Add constructors to all the event classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Regenerate release/html. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 interface Event {
8
9 static final int AT_TARGET = 2;
10
11 static final int BLUR = 8192;
12
13 static final int BUBBLING_PHASE = 3;
14
15 static final int CAPTURING_PHASE = 1;
16
17 static final int CHANGE = 32768;
18
19 static final int CLICK = 64;
20
21 static final int DBLCLICK = 128;
22
23 static final int DRAGDROP = 2048;
24
25 static final int FOCUS = 4096;
26
27 static final int KEYDOWN = 256;
28
29 static final int KEYPRESS = 1024;
30
31 static final int KEYUP = 512;
32
33 static final int MOUSEDOWN = 1;
34
35 static final int MOUSEDRAG = 32;
36
37 static final int MOUSEMOVE = 16;
38
39 static final int MOUSEOUT = 8;
40
41 static final int MOUSEOVER = 4;
42
43 static final int MOUSEUP = 2;
44
45 static final int SELECT = 16384;
46
47 bool get bubbles();
48
49 bool get cancelBubble();
50
51 void set cancelBubble(bool value);
52
53 bool get cancelable();
54
55 EventTarget get currentTarget();
56
57 bool get defaultPrevented();
58
59 int get eventPhase();
60
61 bool get returnValue();
62
63 void set returnValue(bool value);
64
65 EventTarget get srcElement();
66
67 EventTarget get target();
68
69 int get timeStamp();
70
71 String get type();
72
73 void initEvent(String eventTypeArg, bool canBubbleArg, bool cancelableArg);
74
75 void preventDefault();
76
77 void stopImmediatePropagation();
78
79 void stopPropagation();
80 }
OLDNEW
« no previous file with comments | « client/html/generated/src/interface/ErrorEvent.dart ('k') | client/html/generated/src/interface/HashChangeEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698