OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012, 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 /// @domName UIEvent | |
8 abstract class UIEvent implements Event { | |
9 | |
10 /** @domName UIEvent.charCode */ | |
11 abstract int get charCode; | |
12 | |
13 /** @domName UIEvent.detail */ | |
14 abstract int get detail; | |
15 | |
16 /** @domName UIEvent.keyCode */ | |
17 abstract int get keyCode; | |
18 | |
19 /** @domName UIEvent.layerX */ | |
20 abstract int get layerX; | |
21 | |
22 /** @domName UIEvent.layerY */ | |
23 abstract int get layerY; | |
24 | |
25 /** @domName UIEvent.pageX */ | |
26 abstract int get pageX; | |
27 | |
28 /** @domName UIEvent.pageY */ | |
29 abstract int get pageY; | |
30 | |
31 /** @domName UIEvent.view */ | |
32 abstract Window get view; | |
33 | |
34 /** @domName UIEvent.which */ | |
35 abstract int get which; | |
36 | |
37 /** @domName UIEvent.initUIEvent */ | |
38 void initUIEvent(String type, bool canBubble, bool cancelable, LocalWindow vie
w, int detail); | |
39 } | |
OLD | NEW |