1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/events/DragEvent.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef mozilla_dom_DragEvent_h_ 1.10 +#define mozilla_dom_DragEvent_h_ 1.11 + 1.12 +#include "nsIDOMDragEvent.h" 1.13 +#include "mozilla/dom/MouseEvent.h" 1.14 +#include "mozilla/dom/DragEventBinding.h" 1.15 +#include "mozilla/EventForwards.h" 1.16 + 1.17 +namespace mozilla { 1.18 +namespace dom { 1.19 + 1.20 +class DataTransfer; 1.21 + 1.22 +class DragEvent : public MouseEvent, 1.23 + public nsIDOMDragEvent 1.24 +{ 1.25 +public: 1.26 + DragEvent(EventTarget* aOwner, 1.27 + nsPresContext* aPresContext, 1.28 + WidgetDragEvent* aEvent); 1.29 + 1.30 + NS_DECL_ISUPPORTS_INHERITED 1.31 + 1.32 + NS_DECL_NSIDOMDRAGEVENT 1.33 + 1.34 + NS_FORWARD_TO_MOUSEEVENT 1.35 + 1.36 + virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE 1.37 + { 1.38 + return DragEventBinding::Wrap(aCx, this); 1.39 + } 1.40 + 1.41 + DataTransfer* GetDataTransfer(); 1.42 + 1.43 + void InitDragEvent(const nsAString& aType, 1.44 + bool aCanBubble, bool aCancelable, 1.45 + nsIDOMWindow* aView, int32_t aDetail, 1.46 + int32_t aScreenX, int32_t aScreenY, 1.47 + int32_t aClientX, int32_t aClientY, 1.48 + bool aCtrlKey, bool aAltKey, bool aShiftKey, 1.49 + bool aMetaKey, uint16_t aButton, 1.50 + EventTarget* aRelatedTarget, 1.51 + DataTransfer* aDataTransfer, 1.52 + ErrorResult& aError); 1.53 +}; 1.54 + 1.55 +} // namespace dom 1.56 +} // namespace mozilla 1.57 + 1.58 +#endif // mozilla_dom_DragEvent_h_