From 6bf0a5cb5034a7e684dcc3500e841785237ce2dd Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 19:32:43 +0200 Subject: Adding upstream version 1:115.7.0. Signed-off-by: Daniel Baumann --- dom/events/MouseEvent.h | 115 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 insertions(+) create mode 100644 dom/events/MouseEvent.h (limited to 'dom/events/MouseEvent.h') diff --git a/dom/events/MouseEvent.h b/dom/events/MouseEvent.h new file mode 100644 index 0000000000..7d1b403ab0 --- /dev/null +++ b/dom/events/MouseEvent.h @@ -0,0 +1,115 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* 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/. */ + +#ifndef mozilla_dom_MouseEvent_h_ +#define mozilla_dom_MouseEvent_h_ + +#include "mozilla/dom/BindingDeclarations.h" +#include "mozilla/dom/UIEvent.h" +#include "mozilla/dom/MouseEventBinding.h" +#include "mozilla/EventForwards.h" + +namespace mozilla::dom { + +class MouseEvent : public UIEvent { + public: + MouseEvent(EventTarget* aOwner, nsPresContext* aPresContext, + WidgetMouseEventBase* aEvent); + + NS_INLINE_DECL_REFCOUNTING_INHERITED(MouseEvent, UIEvent) + + virtual JSObject* WrapObjectInternal( + JSContext* aCx, JS::Handle aGivenProto) override { + return MouseEvent_Binding::Wrap(aCx, this, aGivenProto); + } + + virtual MouseEvent* AsMouseEvent() override { return this; } + + // Web IDL binding methods + virtual uint32_t Which(CallerType aCallerType) override { + return Button() + 1; + } + + already_AddRefed GetScreen(); + + // In CSS coords. + CSSIntPoint ScreenPoint(CallerType) const; + int32_t ScreenX(CallerType aCallerType) const { + return ScreenPoint(aCallerType).x; + } + int32_t ScreenY(CallerType aCallerType) const { + return ScreenPoint(aCallerType).y; + } + LayoutDeviceIntPoint ScreenPointLayoutDevicePix() const; + DesktopIntPoint ScreenPointDesktopPix() const; + + CSSIntPoint PagePoint() const; + int32_t PageX() const { return PagePoint().x; } + int32_t PageY() const { return PagePoint().y; } + + CSSIntPoint ClientPoint() const; + int32_t ClientX() const { return ClientPoint().x; } + int32_t ClientY() const { return ClientPoint().y; } + + CSSIntPoint OffsetPoint() const; + int32_t OffsetX() const { return OffsetPoint().x; } + int32_t OffsetY() const { return OffsetPoint().y; } + + bool CtrlKey(); + bool ShiftKey(); + bool AltKey(); + bool MetaKey(); + int16_t Button(); + uint16_t Buttons(); + already_AddRefed GetRelatedTarget(); + void GetRegion(nsAString& aRegion); + void InitMouseEvent(const nsAString& aType, bool aCanBubble, bool aCancelable, + nsGlobalWindowInner* 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, + EventTarget* aRelatedTarget); + + void InitializeExtraMouseEventDictionaryMembers(const MouseEventInit& aParam); + + bool GetModifierState(const nsAString& aKeyArg) { + return GetModifierStateInternal(aKeyArg); + } + static already_AddRefed Constructor(const GlobalObject& aGlobal, + const nsAString& aType, + const MouseEventInit& aParam); + int32_t MovementX() { return GetMovementPoint().x; } + int32_t MovementY() { return GetMovementPoint().y; } + float MozPressure() const; + uint16_t MozInputSource() const; + void InitNSMouseEvent(const nsAString& aType, bool aCanBubble, + bool aCancelable, nsGlobalWindowInner* 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, EventTarget* aRelatedTarget, + float aPressure, uint16_t aInputSource); + void PreventClickEvent(); + bool ClickEventPrevented(); + + protected: + ~MouseEvent() = default; + + void InitMouseEvent(const nsAString& aType, bool aCanBubble, bool aCancelable, + nsGlobalWindowInner* aView, int32_t aDetail, + int32_t aScreenX, int32_t aScreenY, int32_t aClientX, + int32_t aClientY, int16_t aButton, + EventTarget* aRelatedTarget, + const nsAString& aModifiersList); +}; + +} // namespace mozilla::dom + +already_AddRefed NS_NewDOMMouseEvent( + mozilla::dom::EventTarget* aOwner, nsPresContext* aPresContext, + mozilla::WidgetMouseEvent* aEvent); + +#endif // mozilla_dom_MouseEvent_h_ -- cgit v1.2.3