2012-08-12 05:42:34 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2015-05-03 22:32:37 +03:00
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-08-12 05:42:34 +04: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/. */
|
|
|
|
|
2014-02-26 09:23:55 +04:00
|
|
|
#ifndef mozilla_dom_WheelEvent_h_
|
|
|
|
#define mozilla_dom_WheelEvent_h_
|
2012-08-12 05:42:34 +04:00
|
|
|
|
2014-02-27 14:51:15 +04:00
|
|
|
#include "mozilla/dom/MouseEvent.h"
|
2013-03-28 18:57:33 +04:00
|
|
|
#include "mozilla/dom/WheelEventBinding.h"
|
2014-02-27 14:51:15 +04:00
|
|
|
#include "mozilla/EventForwards.h"
|
2012-08-12 05:42:34 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
class WheelEvent : public MouseEvent {
|
2012-08-12 05:42:34 +04:00
|
|
|
public:
|
2014-02-26 09:23:55 +04:00
|
|
|
WheelEvent(EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
WidgetWheelEvent* aWheelEvent);
|
2012-08-12 05:42:34 +04:00
|
|
|
|
2018-02-12 23:43:55 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(WheelEvent, MouseEvent)
|
2012-08-12 05:42:34 +04:00
|
|
|
|
2014-02-26 09:23:55 +04:00
|
|
|
static already_AddRefed<WheelEvent> Constructor(const GlobalObject& aGlobal,
|
|
|
|
const nsAString& aType,
|
2019-09-11 17:35:28 +03:00
|
|
|
const WheelEventInit& aParam);
|
2013-03-28 18:57:33 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual JSObject* WrapObjectInternal(
|
|
|
|
JSContext* aCx, JS::Handle<JSObject*> aGivenProto) override {
|
2018-06-26 00:20:54 +03:00
|
|
|
return WheelEvent_Binding::Wrap(aCx, this, aGivenProto);
|
2013-03-28 18:57:33 +04:00
|
|
|
}
|
|
|
|
|
2014-03-11 09:14:07 +04:00
|
|
|
// NOTE: DeltaX(), DeltaY() and DeltaZ() return CSS pixels when deltaMode is
|
|
|
|
// DOM_DELTA_PIXEL. (The internal event's delta values are device pixels
|
|
|
|
// if it's dispatched by widget)
|
2013-10-22 12:55:21 +04:00
|
|
|
double DeltaX();
|
|
|
|
double DeltaY();
|
|
|
|
double DeltaZ();
|
|
|
|
uint32_t DeltaMode();
|
2014-03-11 09:14:07 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
void InitWheelEvent(const nsAString& aType, bool aCanBubble, bool aCancelable,
|
2017-11-07 01:52:14 +03:00
|
|
|
nsGlobalWindowInner* aView, int32_t aDetail,
|
2016-01-30 20:05:36 +03:00
|
|
|
int32_t aScreenX, int32_t aScreenY, int32_t aClientX,
|
|
|
|
int32_t aClientY, uint16_t aButton,
|
|
|
|
EventTarget* aRelatedTarget,
|
|
|
|
const nsAString& aModifiersList, double aDeltaX,
|
|
|
|
double aDeltaY, double aDeltaZ, uint32_t aDeltaMode);
|
|
|
|
|
2014-07-09 01:23:17 +04:00
|
|
|
protected:
|
2020-02-20 18:56:28 +03:00
|
|
|
~WheelEvent() = default;
|
2014-07-09 01:23:17 +04:00
|
|
|
|
2014-03-11 09:14:07 +04:00
|
|
|
private:
|
|
|
|
int32_t mAppUnitsPerDevPixel;
|
2012-08-12 05:42:34 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2015-08-12 14:39:31 +03:00
|
|
|
already_AddRefed<mozilla::dom::WheelEvent> NS_NewDOMWheelEvent(
|
|
|
|
mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext,
|
|
|
|
mozilla::WidgetWheelEvent* aEvent);
|
|
|
|
|
2014-02-26 09:23:55 +04:00
|
|
|
#endif // mozilla_dom_WheelEvent_h_
|