2008-07-25 04:07:43 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2008-07-25 04:07:43 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
#ifndef mozilla_dom_MouseScrollEvent_h_
|
|
|
|
#define mozilla_dom_MouseScrollEvent_h_
|
2008-07-25 04:07:43 +00:00
|
|
|
|
|
|
|
#include "nsIDOMMouseScrollEvent.h"
|
2014-02-27 10:51:15 +00:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-04-15 20:37:52 +00:00
|
|
|
#include "mozilla/dom/MouseScrollEventBinding.h"
|
2008-07-25 04:07:43 +00:00
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2014-02-27 10:51:15 +00:00
|
|
|
class MouseScrollEvent : public MouseEvent,
|
2014-02-27 10:51:14 +00:00
|
|
|
public nsIDOMMouseScrollEvent
|
2008-07-25 04:07:43 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-02-27 10:51:14 +00:00
|
|
|
MouseScrollEvent(EventTarget* aOwner,
|
|
|
|
nsPresContext* aPresContext,
|
|
|
|
WidgetMouseScrollEvent* aEvent);
|
2008-07-25 04:07:43 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMMouseScrollEvent Interface
|
|
|
|
NS_DECL_NSIDOMMOUSESCROLLEVENT
|
2014-02-27 10:51:14 +00:00
|
|
|
|
2008-07-25 04:07:43 +00:00
|
|
|
// Forward to base class
|
2014-02-27 10:51:15 +00:00
|
|
|
NS_FORWARD_TO_MOUSEEVENT
|
2013-04-15 20:37:52 +00:00
|
|
|
|
2014-04-08 22:27:18 +00:00
|
|
|
virtual JSObject* WrapObject(JSContext* aCx) MOZ_OVERRIDE
|
2013-04-15 20:37:52 +00:00
|
|
|
{
|
Bug 991742 part 6. Remove the "aScope" argument of binding Wrap() methods. r=bholley
This patch was mostly generated with this command:
find . -name "*.h" -o -name "*.cpp" | xargs sed -e 's/Binding::Wrap(aCx, aScope, this/Binding::Wrap(aCx, this/' -e 's/Binding_workers::Wrap(aCx, aScope, this/Binding_workers::Wrap(aCx, this/' -e 's/Binding::Wrap(cx, scope, this/Binding::Wrap(cx, this/' -i ""
plus a few manual fixes to dom/bindings/Codegen.py, js/xpconnect/src/event_impl_gen.py, and a few C++ files that were not caught in the search-and-replace above.
2014-04-08 22:27:17 +00:00
|
|
|
return MouseScrollEventBinding::Wrap(aCx, this);
|
2013-04-15 20:37:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int32_t Axis();
|
|
|
|
|
|
|
|
void InitMouseScrollEvent(const nsAString& aType, bool aCanBubble,
|
|
|
|
bool aCancelable, nsIDOMWindow* aView,
|
|
|
|
int32_t aDetail, int32_t aScreenX, int32_t aScreenY,
|
|
|
|
int32_t aClientX, int32_t aClientY,
|
|
|
|
bool aCtrlKey, bool aAltKey, bool aShiftKey,
|
|
|
|
bool aMetaKey, uint16_t aButton,
|
|
|
|
nsIDOMEventTarget* aRelatedTarget, int32_t aAxis,
|
2014-02-27 10:51:14 +00:00
|
|
|
ErrorResult& aRv)
|
2013-04-15 20:37:52 +00:00
|
|
|
{
|
|
|
|
aRv = InitMouseScrollEvent(aType, aCanBubble, aCancelable, aView,
|
|
|
|
aDetail, aScreenX, aScreenY, aClientX, aClientY,
|
|
|
|
aCtrlKey, aAltKey, aShiftKey, aMetaKey, aButton,
|
|
|
|
aRelatedTarget, aAxis);
|
|
|
|
}
|
2008-07-25 04:07:43 +00:00
|
|
|
};
|
|
|
|
|
2014-02-27 10:51:14 +00:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_MouseScrollEvent_h_
|