mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 751147 - Remove touch.js from b2g/. r=gal
This commit is contained in:
parent
13a1200e08
commit
fafe09940f
@ -16,9 +16,6 @@
|
||||
onunload="shell.stop();">
|
||||
|
||||
<script type="application/javascript" src="chrome://browser/content/shell.js"/>
|
||||
#ifndef MOZ_TOUCH
|
||||
<script type="application/javascript" src="chrome://browser/content/touch.js"/>
|
||||
#endif
|
||||
|
||||
<browser id="homescreen"
|
||||
type="content-primary"
|
||||
|
@ -1,201 +0,0 @@
|
||||
/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /
|
||||
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
||||
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
(function touchEventHandler() {
|
||||
let debugging = false;
|
||||
function debug(str) {
|
||||
if (debugging)
|
||||
dump(str + '\n');
|
||||
};
|
||||
|
||||
let contextMenuTimeout = 0;
|
||||
|
||||
// This guard is used to not re-enter the events processing loop for
|
||||
// self dispatched events
|
||||
let ignoreEvents = false;
|
||||
|
||||
// During a 'touchstart' and the first 'touchmove' mouse events can be
|
||||
// prevented for the current touch sequence.
|
||||
let canPreventMouseEvents = false;
|
||||
|
||||
// Used to track the first mousemove and to cancel click dispatc if it's not
|
||||
// true.
|
||||
let isNewTouchAction = false;
|
||||
|
||||
// If this is set to true all mouse events will be cancelled by calling
|
||||
// both evt.preventDefault() and evt.stopPropagation().
|
||||
// This will not prevent a contextmenu event to be fired.
|
||||
// This can be turned on if canPreventMouseEvents is true and the consumer
|
||||
// application call evt.preventDefault();
|
||||
let preventMouseEvents = false;
|
||||
|
||||
let TouchEventHandler = {
|
||||
events: ['mousedown', 'mousemove', 'mouseup', 'click', 'unload'],
|
||||
start: function teh_start() {
|
||||
this.events.forEach((function(evt) {
|
||||
shell.contentBrowser.addEventListener(evt, this, true);
|
||||
}).bind(this));
|
||||
},
|
||||
stop: function teh_stop() {
|
||||
this.events.forEach((function(evt) {
|
||||
shell.contentBrowser.removeEventListener(evt, this, true);
|
||||
}).bind(this));
|
||||
},
|
||||
handleEvent: function teh_handleEvent(evt) {
|
||||
if (evt.button || ignoreEvents)
|
||||
return;
|
||||
|
||||
let eventTarget = this.target;
|
||||
let type = '';
|
||||
switch (evt.type) {
|
||||
case 'mousedown':
|
||||
debug('mousedown:');
|
||||
|
||||
this.target = evt.target;
|
||||
this.timestamp = evt.timeStamp;
|
||||
|
||||
preventMouseEvents = false;
|
||||
canPreventMouseEvents = true;
|
||||
isNewTouchAction = true;
|
||||
|
||||
contextMenuTimeout =
|
||||
this.sendContextMenu(evt.target, evt.pageX, evt.pageY, 2000);
|
||||
this.startX = evt.pageX;
|
||||
this.startY = evt.pageY;
|
||||
type = 'touchstart';
|
||||
break;
|
||||
|
||||
case 'mousemove':
|
||||
if (!eventTarget)
|
||||
return;
|
||||
|
||||
// On device a mousemove event if fired right after the mousedown
|
||||
// because of the size of the finger, so let's ignore what happens
|
||||
// below 5ms
|
||||
if (evt.timeStamp - this.timestamp < 30)
|
||||
break;
|
||||
|
||||
if (isNewTouchAction) {
|
||||
canPreventMouseEvents = true;
|
||||
isNewTouchAction = false;
|
||||
}
|
||||
|
||||
if (Math.abs(this.startX - evt.pageX) > 15 ||
|
||||
Math.abs(this.startY - evt.pageY) > 15)
|
||||
window.clearTimeout(contextMenuTimeout);
|
||||
type = 'touchmove';
|
||||
break;
|
||||
|
||||
case 'mouseup':
|
||||
if (!eventTarget)
|
||||
return;
|
||||
debug('mouseup:');
|
||||
|
||||
window.clearTimeout(contextMenuTimeout);
|
||||
this.target = null;
|
||||
type = 'touchend';
|
||||
break;
|
||||
|
||||
case 'unload':
|
||||
if (!eventTarget)
|
||||
return;
|
||||
|
||||
window.clearTimeout(contextMenuTimeout);
|
||||
this.target = null;
|
||||
TouchEventHandler.stop();
|
||||
return;
|
||||
|
||||
case 'click':
|
||||
if (isNewTouchAction) {
|
||||
// Mouse events has been cancelled so dispatch a sequence
|
||||
// of events to where touchend has been fired
|
||||
if (preventMouseEvents) {
|
||||
evt.preventDefault();
|
||||
evt.stopPropagation();
|
||||
|
||||
let target = evt.target;
|
||||
ignoreEvents = true;
|
||||
window.setTimeout(function dispatchMouseEvents(self) {
|
||||
self.fireMouseEvent('mousemove', evt);
|
||||
self.fireMouseEvent('mousedown', evt);
|
||||
self.fireMouseEvent('mouseup', evt);
|
||||
ignoreEvents = false;
|
||||
}, 0, this);
|
||||
}
|
||||
|
||||
debug('click: fire');
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
let target = eventTarget || this.target;
|
||||
if (target && type) {
|
||||
let touchEvent = this.sendTouchEvent(evt, target, type);
|
||||
if (touchEvent.defaultPrevented && canPreventMouseEvents)
|
||||
preventMouseEvents = true;
|
||||
}
|
||||
|
||||
if (preventMouseEvents) {
|
||||
evt.preventDefault();
|
||||
evt.stopPropagation();
|
||||
|
||||
if (type != 'touchmove')
|
||||
debug('cancelled (fire ' + type + ')');
|
||||
}
|
||||
},
|
||||
fireMouseEvent: function teh_fireMouseEvent(type, evt) {
|
||||
debug(type + ': fire');
|
||||
|
||||
let content = evt.target.ownerDocument.defaultView;
|
||||
var utils = content.QueryInterface(Ci.nsIInterfaceRequestor)
|
||||
.getInterface(Ci.nsIDOMWindowUtils);
|
||||
utils.sendMouseEvent(type, evt.pageX, evt.pageY, 0, 1, 0, true);
|
||||
},
|
||||
sendContextMenu: function teh_sendContextMenu(target, x, y, delay) {
|
||||
let doc = target.ownerDocument;
|
||||
let evt = doc.createEvent('MouseEvent');
|
||||
evt.initMouseEvent('contextmenu', true, true, doc.defaultView,
|
||||
0, x, y, x, y, false, false, false, false,
|
||||
0, null);
|
||||
|
||||
let timeout = window.setTimeout((function contextMenu() {
|
||||
debug('fire context-menu');
|
||||
|
||||
target.dispatchEvent(evt);
|
||||
if (!evt.defaultPrevented)
|
||||
return;
|
||||
|
||||
doc.releaseCapture();
|
||||
this.target = null;
|
||||
|
||||
isNewTouchAction = false;
|
||||
}).bind(this), delay);
|
||||
return timeout;
|
||||
},
|
||||
sendTouchEvent: function teh_sendTouchEvent(evt, target, name) {
|
||||
let touchEvent = document.createEvent('touchevent');
|
||||
let point = document.createTouch(window, target, 0,
|
||||
evt.pageX, evt.pageY,
|
||||
evt.screenX, evt.screenY,
|
||||
evt.clientX, evt.clientY,
|
||||
1, 1, 0, 0);
|
||||
let touches = document.createTouchList(point);
|
||||
let targetTouches = touches;
|
||||
let changedTouches = touches;
|
||||
touchEvent.initTouchEvent(name, true, true, window, 0,
|
||||
false, false, false, false,
|
||||
touches, targetTouches, changedTouches);
|
||||
target.dispatchEvent(touchEvent);
|
||||
return touchEvent;
|
||||
}
|
||||
};
|
||||
|
||||
window.addEventListener('ContentStart', function touchStart(evt) {
|
||||
window.removeEventListener('ContentStart', touchStart);
|
||||
TouchEventHandler.start();
|
||||
});
|
||||
})();
|
||||
|
@ -7,9 +7,6 @@ chrome.jar:
|
||||
content/dbg-browser-actors.js (content/dbg-browser-actors.js)
|
||||
* content/shell.xul (content/shell.xul)
|
||||
* content/shell.js (content/shell.js)
|
||||
#ifndef MOZ_TOUCH
|
||||
content/touch.js (content/touch.js)
|
||||
#endif
|
||||
content/webapi.js (content/webapi.js)
|
||||
content/content.css (content/content.css)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user