|
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/. |
|
5 * |
|
6 * For more information see nsIPointerEvent.idl. |
|
7 * |
|
8 * Portions Copyright 2013 Microsoft Open Technologies, Inc. */ |
|
9 |
|
10 interface WindowProxy; |
|
11 |
|
12 [Pref="dom.w3c_pointer_events.enabled", |
|
13 Constructor(DOMString type, optional PointerEventInit eventInitDict)] |
|
14 interface PointerEvent : MouseEvent |
|
15 { |
|
16 readonly attribute long pointerId; |
|
17 readonly attribute long width; |
|
18 readonly attribute long height; |
|
19 readonly attribute float pressure; |
|
20 readonly attribute long tiltX; |
|
21 readonly attribute long tiltY; |
|
22 readonly attribute DOMString pointerType; |
|
23 readonly attribute boolean isPrimary; |
|
24 }; |
|
25 |
|
26 dictionary PointerEventInit : MouseEventInit |
|
27 { |
|
28 long pointerId = 0; |
|
29 long width = 0; |
|
30 long height = 0; |
|
31 float pressure = 0; |
|
32 long tiltX = 0; |
|
33 long tiltY = 0; |
|
34 DOMString pointerType = ""; |
|
35 boolean isPrimary = false; |
|
36 }; |
|
37 |