1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/events/MouseScrollEvent.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,58 @@ 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_MouseScrollEvent_h_ 1.10 +#define mozilla_dom_MouseScrollEvent_h_ 1.11 + 1.12 +#include "nsIDOMMouseScrollEvent.h" 1.13 +#include "mozilla/dom/MouseEvent.h" 1.14 +#include "mozilla/dom/MouseScrollEventBinding.h" 1.15 + 1.16 +namespace mozilla { 1.17 +namespace dom { 1.18 + 1.19 +class MouseScrollEvent : public MouseEvent, 1.20 + public nsIDOMMouseScrollEvent 1.21 +{ 1.22 +public: 1.23 + MouseScrollEvent(EventTarget* aOwner, 1.24 + nsPresContext* aPresContext, 1.25 + WidgetMouseScrollEvent* aEvent); 1.26 + 1.27 + NS_DECL_ISUPPORTS_INHERITED 1.28 + 1.29 + // nsIDOMMouseScrollEvent Interface 1.30 + NS_DECL_NSIDOMMOUSESCROLLEVENT 1.31 + 1.32 + // Forward to base class 1.33 + NS_FORWARD_TO_MOUSEEVENT 1.34 + 1.35 + virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE 1.36 + { 1.37 + return MouseScrollEventBinding::Wrap(aCx, this); 1.38 + } 1.39 + 1.40 + int32_t Axis(); 1.41 + 1.42 + void InitMouseScrollEvent(const nsAString& aType, bool aCanBubble, 1.43 + bool aCancelable, nsIDOMWindow* aView, 1.44 + int32_t aDetail, int32_t aScreenX, int32_t aScreenY, 1.45 + int32_t aClientX, int32_t aClientY, 1.46 + bool aCtrlKey, bool aAltKey, bool aShiftKey, 1.47 + bool aMetaKey, uint16_t aButton, 1.48 + nsIDOMEventTarget* aRelatedTarget, int32_t aAxis, 1.49 + ErrorResult& aRv) 1.50 + { 1.51 + aRv = InitMouseScrollEvent(aType, aCanBubble, aCancelable, aView, 1.52 + aDetail, aScreenX, aScreenY, aClientX, aClientY, 1.53 + aCtrlKey, aAltKey, aShiftKey, aMetaKey, aButton, 1.54 + aRelatedTarget, aAxis); 1.55 + } 1.56 +}; 1.57 + 1.58 +} // namespace dom 1.59 +} // namespace mozilla 1.60 + 1.61 +#endif // mozilla_dom_MouseScrollEvent_h_