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

Unified Diff: tools/dom/templates/html/impl/impl_WheelEvent.darttemplate

Issue 11931009: Adding support for the MouseWheel event in Streams. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/dom/templates/html/impl/impl_Element.darttemplate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
diff --git a/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate b/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
index bc664301de0ad37c17805ed3acde1b682a84654b..47e14c51c7f0c46a02f9991e32da05be30bd3f07 100644
--- a/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
+++ b/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
@@ -5,6 +5,71 @@
part of html;
$ANNOTATIONS
class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
+
+ factory WheelEvent(String type, Window view, int wheelDeltaX, int wheelDeltaY,
+ int detail, int screenX, int screenY, int clientX, int clientY,
+ int button,
+ [bool canBubble = true, bool cancelable = true, bool ctrlKey = false,
+ bool altKey = false, bool shiftKey = false, bool metaKey = false,
+ EventTarget relatedTarget = null]) {
+
+ var eventType = 'WheelEvent';
+ if (_Device.isFirefox) {
+ eventType = 'MouseScrollEvents';
+ }
+ final event = document.$dom_createEvent(eventType);
+$if DART2JS
+ if (event._hasInitWheelEvent) {
+ var modifiers = [];
+ if (ctrlKey) {
+ modifiers.push('Control');
+ }
+ if (altKey) {
+ modifiers.push('Alt');
+ }
+ if (shiftKey) {
+ modifiers.push('Shift');
+ }
+ if (metaKey) {
+ modifiers.push('Meta');
+ }
+ event._initWheelEvent(type, canBubble, cancelable, view, detail, screenX,
+ screenY, clientX, clientY, button, relatedTarget, modifiers.join(' '),
+ wheelDeltaX, wheelDeltaY, 0, 0);
+ } else if (event._hasInitMouseScrollEvent) {
+ var axis = 0;
+ var detail = 0;
+ if (wheelDeltaX != 0 && wheelDeltaY != 0) {
+ throw UnsupportedError(
+ 'Cannot modify wheelDeltaX and wheelDeltaY simultaneously');
+ }
+ if (wheelDeltaY != 0) {
+ detail = wheelDeltaY;
+ axis = JS('int', 'MouseScrollEvent.VERTICAL_AXIS');
+ } else if (wheelDeltaX != 0) {
+ detail = wheelDeltaX;
+ axis = JS('int', 'MouseScrollEvent.HORIZONTAL_AXIS');
+ }
+ event._initMouseScrollEvent(type, canBubble, cancelable, view, detail,
+ screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey,
+ metaKey, button, relatedTarget, axis);
+ } else {
+$endif
+ // Fallthrough for Dartium.
+ event.$dom_initMouseEvent(type, canBubble, cancelable, view, detail,
+ screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey,
+ metaKey, button, relatedTarget);
+ event.$dom_initWebKitWheelEvent(wheelDeltaX,
+ (wheelDeltaY / 120).toInt(), // Chrome does an auto-convert to pixels.
+ view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey,
+ metaKey);
+$if DART2JS
+ }
+$endif
+
+ return event;
+ }
+
$!MEMBERS
$if DART2JS
@@ -50,7 +115,8 @@ $if DART2JS
// Handle DOMMouseScroll case where it uses detail and the axis to
// differentiate.
- if (JS('bool', '#.axis !== undefined && #.axis == MouseScrollEvent.HORIZONTAL_AXIS', this, this)) {
+ if (JS('bool', '#.axis !== undefined && '
+ '#.axis == MouseScrollEvent.HORIZONTAL_AXIS', this, this)) {
var detail = this._detail;
// Firefox is normally the number of lines to scale (normally 3)
// so multiply it by 40 to get pixels to move, matching IE & WebKit.
@@ -80,6 +146,49 @@ $if DART2JS
num get _detail => JS('num', '#.detail', this);
int get _deltaMode => JS('int', '#.deltaMode', this);
+ bool get _hasInitMouseScrollEvent =>
+ JS('bool', '!!(#.initMouseScrollEvent)', this);
+
+ @JSName('initMouseScrollEvent')
+ void _initMouseScrollEvent(
+ String type,
Siggi Cherem (dart-lang) 2013/01/16 21:46:42 nit: ditto here on the convention
+ bool canBubble,
+ bool cancelable,
+ Window view,
+ int detail,
+ int screenX,
+ int screenY,
+ int clientX,
+ int clientY,
+ bool ctrlKey,
+ bool altKey,
+ bool shiftKey,
+ bool metaKey,
+ int button,
+ EventTarget relatedTarget,
+ int axis) native;
+
+ bool get _hasInitWheelEvent =>
+ JS('bool', '!!(#.initWheelEvent)', this);
+ @JSName('initWheelEvent')
+ void _initWheelEvent(
+ String eventType,
+ bool canBubble,
+ bool cancelable,
+ Window view,
+ int detail,
+ int screenX,
+ int screenY,
+ int clientX,
+ int clientY,
+ int button,
+ EventTarget relatedTarget,
+ String modifiersList,
+ int deltaX,
+ int deltaY,
+ int deltaZ,
+ int deltaMode) native;
+
$else
@DomName('WheelEvent.deltaX')
num get deltaX => $dom_wheelDeltaX;
« no previous file with comments | « tools/dom/templates/html/impl/impl_Element.darttemplate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698