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

Side by Side Diff: lib/html/doc/interface/MouseEvent.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 months 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) 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:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName MouseEvent
10 interface MouseEvent extends UIEvent default _MouseEventFactoryProvider {
11
12 MouseEvent(String type, Window view, int detail, int screenX, int screenY,
13 int clientX, int clientY, int button, [bool canBubble, bool cancelable,
14 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey,
15 EventTarget relatedTarget]);
16
17
18 /** @domName MouseEvent.altKey */
19 final bool altKey;
20
21 /** @domName MouseEvent.button */
22 final int button;
23
24 /** @domName MouseEvent.clientX */
25 final int clientX;
26
27 /** @domName MouseEvent.clientY */
28 final int clientY;
29
30 /** @domName MouseEvent.ctrlKey */
31 final bool ctrlKey;
32
33 /** @domName MouseEvent.dataTransfer */
34 final Clipboard dataTransfer;
35
36 /** @domName MouseEvent.fromElement */
37 final Node fromElement;
38
39 /** @domName MouseEvent.metaKey */
40 final bool metaKey;
41
42 /** @domName MouseEvent.offsetX */
43 final int offsetX;
44
45 /** @domName MouseEvent.offsetY */
46 final int offsetY;
47
48 /** @domName MouseEvent.relatedTarget */
49 final EventTarget relatedTarget;
50
51 /** @domName MouseEvent.screenX */
52 final int screenX;
53
54 /** @domName MouseEvent.screenY */
55 final int screenY;
56
57 /** @domName MouseEvent.shiftKey */
58 final bool shiftKey;
59
60 /** @domName MouseEvent.toElement */
61 final Node toElement;
62
63 /** @domName MouseEvent.webkitMovementX */
64 final int webkitMovementX;
65
66 /** @domName MouseEvent.webkitMovementY */
67 final int webkitMovementY;
68
69 /** @domName MouseEvent.x */
70 final int x;
71
72 /** @domName MouseEvent.y */
73 final int y;
74
75 /** @domName MouseEvent.initMouseEvent */
76 void $dom_initMouseEvent(String type, bool canBubble, bool cancelable, Window view, int detail, int screenX, int screenY, int clientX, int clientY, bool ctrlK ey, bool altKey, bool shiftKey, bool metaKey, int button, EventTarget relatedTar get);
77 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/ModElement.dartdoc ('k') | lib/html/doc/interface/MutationCallback.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698