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

Side by Side Diff: lib/html/doc/interface/WheelEvent.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
« no previous file with comments | « lib/html/doc/interface/WebSocket.dartdoc ('k') | lib/html/doc/interface/Window.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 WheelEvent
10 interface WheelEvent extends UIEvent {
11
12 /** @domName WheelEvent.altKey */
13 final bool altKey;
14
15 /** @domName WheelEvent.clientX */
16 final int clientX;
17
18 /** @domName WheelEvent.clientY */
19 final int clientY;
20
21 /** @domName WheelEvent.ctrlKey */
22 final bool ctrlKey;
23
24 /** @domName WheelEvent.metaKey */
25 final bool metaKey;
26
27 /** @domName WheelEvent.offsetX */
28 final int offsetX;
29
30 /** @domName WheelEvent.offsetY */
31 final int offsetY;
32
33 /** @domName WheelEvent.screenX */
34 final int screenX;
35
36 /** @domName WheelEvent.screenY */
37 final int screenY;
38
39 /** @domName WheelEvent.shiftKey */
40 final bool shiftKey;
41
42 /** @domName WheelEvent.webkitDirectionInvertedFromDevice */
43 final bool webkitDirectionInvertedFromDevice;
44
45 /** @domName WheelEvent.wheelDelta */
46 final int wheelDelta;
47
48 /** @domName WheelEvent.wheelDeltaX */
49 final int wheelDeltaX;
50
51 /** @domName WheelEvent.wheelDeltaY */
52 final int wheelDeltaY;
53
54 /** @domName WheelEvent.x */
55 final int x;
56
57 /** @domName WheelEvent.y */
58 final int y;
59
60 /** @domName WheelEvent.initWebKitWheelEvent */
61 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, Window view, int s creenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool s hiftKey, bool metaKey);
62 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/WebSocket.dartdoc ('k') | lib/html/doc/interface/Window.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698