1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 * For more information see nsIPointerEvent.idl.
8 * Portions Copyright 2013 Microsoft Open Technologies, Inc. */
10 interface WindowProxy;
13 interface PointerEvent : MouseEvent
15 constructor(DOMString type, optional PointerEventInit eventInitDict = {});
18 readonly attribute long pointerId;
21 readonly attribute long width;
23 readonly attribute long height;
25 readonly attribute float pressure;
27 readonly attribute float tangentialPressure;
29 readonly attribute long tiltX;
31 readonly attribute long tiltY;
33 readonly attribute long twist;
36 readonly attribute DOMString pointerType;
37 readonly attribute boolean isPrimary;
38 sequence<PointerEvent> getCoalescedEvents();
39 sequence<PointerEvent> getPredictedEvents();
42 dictionary PointerEventInit : MouseEventInit
48 float tangentialPressure = 0;
52 DOMString pointerType = "";
53 boolean isPrimary = false;
54 sequence<PointerEvent> coalescedEvents = [];
55 sequence<PointerEvent> predictedEvents = [];