Wed, 31 Dec 2014 06:55:50 +0100
Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2
michael@0 | 1 | /* -*- Mode: C++; 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 "domstubs.idl" |
michael@0 | 7 | #include "nsIDOMMouseEvent.idl" |
michael@0 | 8 | |
michael@0 | 9 | interface nsIDOMDataTransfer; |
michael@0 | 10 | |
michael@0 | 11 | [scriptable, builtinclass, uuid(4d0fe952-7ca7-4730-a163-4454e39ed187)] |
michael@0 | 12 | interface nsIDOMDragEvent : nsIDOMMouseEvent |
michael@0 | 13 | { |
michael@0 | 14 | readonly attribute nsIDOMDataTransfer dataTransfer; |
michael@0 | 15 | |
michael@0 | 16 | void initDragEvent(in DOMString typeArg, |
michael@0 | 17 | in boolean canBubbleArg, |
michael@0 | 18 | in boolean cancelableArg, |
michael@0 | 19 | in nsIDOMWindow aView, |
michael@0 | 20 | in long aDetail, |
michael@0 | 21 | in long aScreenX, |
michael@0 | 22 | in long aScreenY, |
michael@0 | 23 | in long aClientX, |
michael@0 | 24 | in long aClientY, |
michael@0 | 25 | in boolean aCtrlKey, |
michael@0 | 26 | in boolean aAltKey, |
michael@0 | 27 | in boolean aShiftKey, |
michael@0 | 28 | in boolean aMetaKey, |
michael@0 | 29 | in unsigned short aButton, |
michael@0 | 30 | in nsIDOMEventTarget aRelatedTarget, |
michael@0 | 31 | in nsIDOMDataTransfer aDataTransfer); |
michael@0 | 32 | }; |