Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #include "nsIDOMMouseEvent.idl" |
michael@0 | 7 | |
michael@0 | 8 | [scriptable, builtinclass, uuid(2bce5c03-5bed-4c22-8a6a-a3ac8f5563d7)] |
michael@0 | 9 | interface nsIDOMMouseScrollEvent : nsIDOMMouseEvent |
michael@0 | 10 | { |
michael@0 | 11 | const long HORIZONTAL_AXIS = 1; |
michael@0 | 12 | const long VERTICAL_AXIS = 2; |
michael@0 | 13 | |
michael@0 | 14 | readonly attribute long axis; |
michael@0 | 15 | |
michael@0 | 16 | void initMouseScrollEvent(in DOMString typeArg, |
michael@0 | 17 | in boolean canBubbleArg, |
michael@0 | 18 | in boolean cancelableArg, |
michael@0 | 19 | in nsIDOMWindow viewArg, |
michael@0 | 20 | in long detailArg, |
michael@0 | 21 | in long screenXArg, |
michael@0 | 22 | in long screenYArg, |
michael@0 | 23 | in long clientXArg, |
michael@0 | 24 | in long clientYArg, |
michael@0 | 25 | in boolean ctrlKeyArg, |
michael@0 | 26 | in boolean altKeyArg, |
michael@0 | 27 | in boolean shiftKeyArg, |
michael@0 | 28 | in boolean metaKeyArg, |
michael@0 | 29 | in unsigned short buttonArg, |
michael@0 | 30 | in nsIDOMEventTarget relatedTargetArg, |
michael@0 | 31 | in long axis); |
michael@0 | 32 | }; |