127 lines
5.0 KiB
JavaScript
127 lines
5.0 KiB
JavaScript
|
/*---------------------------------------------------------------------------------------------
|
||
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
*--------------------------------------------------------------------------------------------*/
|
||
|
var __extends = (this && this.__extends) || (function () {
|
||
|
var extendStatics = function (d, b) {
|
||
|
extendStatics = Object.setPrototypeOf ||
|
||
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
||
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
||
|
return extendStatics(d, b);
|
||
|
};
|
||
|
return function (d, b) {
|
||
|
extendStatics(d, b);
|
||
|
function __() { this.constructor = d; }
|
||
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
||
|
};
|
||
|
})();
|
||
|
import * as browser from './browser.js';
|
||
|
import { IframeUtils } from './iframe.js';
|
||
|
import * as platform from '../common/platform.js';
|
||
|
var StandardMouseEvent = /** @class */ (function () {
|
||
|
function StandardMouseEvent(e) {
|
||
|
this.timestamp = Date.now();
|
||
|
this.browserEvent = e;
|
||
|
this.leftButton = e.button === 0;
|
||
|
this.middleButton = e.button === 1;
|
||
|
this.rightButton = e.button === 2;
|
||
|
this.target = e.target;
|
||
|
this.detail = e.detail || 1;
|
||
|
if (e.type === 'dblclick') {
|
||
|
this.detail = 2;
|
||
|
}
|
||
|
this.ctrlKey = e.ctrlKey;
|
||
|
this.shiftKey = e.shiftKey;
|
||
|
this.altKey = e.altKey;
|
||
|
this.metaKey = e.metaKey;
|
||
|
if (typeof e.pageX === 'number') {
|
||
|
this.posx = e.pageX;
|
||
|
this.posy = e.pageY;
|
||
|
}
|
||
|
else {
|
||
|
// Probably hit by MSGestureEvent
|
||
|
this.posx = e.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
|
||
|
this.posy = e.clientY + document.body.scrollTop + document.documentElement.scrollTop;
|
||
|
}
|
||
|
// Find the position of the iframe this code is executing in relative to the iframe where the event was captured.
|
||
|
var iframeOffsets = IframeUtils.getPositionOfChildWindowRelativeToAncestorWindow(self, e.view);
|
||
|
this.posx -= iframeOffsets.left;
|
||
|
this.posy -= iframeOffsets.top;
|
||
|
}
|
||
|
StandardMouseEvent.prototype.preventDefault = function () {
|
||
|
if (this.browserEvent.preventDefault) {
|
||
|
this.browserEvent.preventDefault();
|
||
|
}
|
||
|
};
|
||
|
StandardMouseEvent.prototype.stopPropagation = function () {
|
||
|
if (this.browserEvent.stopPropagation) {
|
||
|
this.browserEvent.stopPropagation();
|
||
|
}
|
||
|
};
|
||
|
return StandardMouseEvent;
|
||
|
}());
|
||
|
export { StandardMouseEvent };
|
||
|
var DragMouseEvent = /** @class */ (function (_super) {
|
||
|
__extends(DragMouseEvent, _super);
|
||
|
function DragMouseEvent(e) {
|
||
|
var _this = _super.call(this, e) || this;
|
||
|
_this.dataTransfer = e.dataTransfer;
|
||
|
return _this;
|
||
|
}
|
||
|
return DragMouseEvent;
|
||
|
}(StandardMouseEvent));
|
||
|
export { DragMouseEvent };
|
||
|
var StandardWheelEvent = /** @class */ (function () {
|
||
|
function StandardWheelEvent(e, deltaX, deltaY) {
|
||
|
if (deltaX === void 0) { deltaX = 0; }
|
||
|
if (deltaY === void 0) { deltaY = 0; }
|
||
|
this.browserEvent = e || null;
|
||
|
this.target = e ? (e.target || e.targetNode || e.srcElement) : null;
|
||
|
this.deltaY = deltaY;
|
||
|
this.deltaX = deltaX;
|
||
|
if (e) {
|
||
|
var e1 = e;
|
||
|
var e2 = e;
|
||
|
// vertical delta scroll
|
||
|
if (typeof e1.wheelDeltaY !== 'undefined') {
|
||
|
this.deltaY = e1.wheelDeltaY / 120;
|
||
|
}
|
||
|
else if (typeof e2.VERTICAL_AXIS !== 'undefined' && e2.axis === e2.VERTICAL_AXIS) {
|
||
|
this.deltaY = -e2.detail / 3;
|
||
|
}
|
||
|
// horizontal delta scroll
|
||
|
if (typeof e1.wheelDeltaX !== 'undefined') {
|
||
|
if (browser.isSafari && platform.isWindows) {
|
||
|
this.deltaX = -(e1.wheelDeltaX / 120);
|
||
|
}
|
||
|
else {
|
||
|
this.deltaX = e1.wheelDeltaX / 120;
|
||
|
}
|
||
|
}
|
||
|
else if (typeof e2.HORIZONTAL_AXIS !== 'undefined' && e2.axis === e2.HORIZONTAL_AXIS) {
|
||
|
this.deltaX = -e.detail / 3;
|
||
|
}
|
||
|
// Assume a vertical scroll if nothing else worked
|
||
|
if (this.deltaY === 0 && this.deltaX === 0 && e.wheelDelta) {
|
||
|
this.deltaY = e.wheelDelta / 120;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
StandardWheelEvent.prototype.preventDefault = function () {
|
||
|
if (this.browserEvent) {
|
||
|
if (this.browserEvent.preventDefault) {
|
||
|
this.browserEvent.preventDefault();
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
StandardWheelEvent.prototype.stopPropagation = function () {
|
||
|
if (this.browserEvent) {
|
||
|
if (this.browserEvent.stopPropagation) {
|
||
|
this.browserEvent.stopPropagation();
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
return StandardWheelEvent;
|
||
|
}());
|
||
|
export { StandardWheelEvent };
|