OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface UIEvent extends Event { | 7 interface UIEvent extends Event { |
8 | 8 |
9 int get charCode(); | 9 final int charCode; |
10 | 10 |
11 int get detail(); | 11 final int detail; |
12 | 12 |
13 int get keyCode(); | 13 final int keyCode; |
14 | 14 |
15 int get layerX(); | 15 final int layerX; |
16 | 16 |
17 int get layerY(); | 17 final int layerY; |
18 | 18 |
19 int get pageX(); | 19 final int pageX; |
20 | 20 |
21 int get pageY(); | 21 final int pageY; |
22 | 22 |
23 DOMWindow get view(); | 23 final DOMWindow view; |
24 | 24 |
25 int get which(); | 25 final int which; |
26 | 26 |
27 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view,
int detail); | 27 void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view,
int detail); |
28 } | 28 } |
OLD | NEW |