Bug 1794292 - [ANGLE] cherry-pick init-gl-point-size. r=gfx-reviewers,bradwerth
[gecko.git] / widget / MouseEvents.h
blob5a19cb4082674ede982a0c66c84bf7c4642abe2b
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_MouseEvents_h__
7 #define mozilla_MouseEvents_h__
9 #include <stdint.h>
11 #include "mozilla/BasicEvents.h"
12 #include "mozilla/MathAlgorithms.h"
13 #include "mozilla/dom/DataTransfer.h"
14 #include "mozilla/ipc/IPCForwards.h"
15 #include "nsCOMPtr.h"
17 namespace mozilla {
19 namespace dom {
20 class PBrowserParent;
21 class PBrowserChild;
22 class PBrowserBridgeParent;
23 } // namespace dom
25 class WidgetPointerEvent;
26 } // namespace mozilla
28 namespace mozilla {
29 class WidgetPointerEventHolder final {
30 public:
31 nsTArray<WidgetPointerEvent> mEvents;
32 NS_INLINE_DECL_REFCOUNTING(WidgetPointerEventHolder)
34 private:
35 virtual ~WidgetPointerEventHolder() = default;
38 /******************************************************************************
39 * mozilla::WidgetPointerHelper
40 ******************************************************************************/
42 class WidgetPointerHelper {
43 public:
44 uint32_t pointerId;
45 int32_t tiltX;
46 int32_t tiltY;
47 int32_t twist;
48 float tangentialPressure;
49 bool convertToPointer;
50 RefPtr<WidgetPointerEventHolder> mCoalescedWidgetEvents;
52 WidgetPointerHelper()
53 : pointerId(0),
54 tiltX(0),
55 tiltY(0),
56 twist(0),
57 tangentialPressure(0),
58 convertToPointer(true) {}
60 WidgetPointerHelper(uint32_t aPointerId, uint32_t aTiltX, uint32_t aTiltY,
61 uint32_t aTwist = 0, float aTangentialPressure = 0)
62 : pointerId(aPointerId),
63 tiltX(aTiltX),
64 tiltY(aTiltY),
65 twist(aTwist),
66 tangentialPressure(aTangentialPressure),
67 convertToPointer(true) {}
69 explicit WidgetPointerHelper(const WidgetPointerHelper& aHelper) = default;
71 void AssignPointerHelperData(const WidgetPointerHelper& aEvent,
72 bool aCopyCoalescedEvents = false) {
73 pointerId = aEvent.pointerId;
74 tiltX = aEvent.tiltX;
75 tiltY = aEvent.tiltY;
76 twist = aEvent.twist;
77 tangentialPressure = aEvent.tangentialPressure;
78 convertToPointer = aEvent.convertToPointer;
79 if (aCopyCoalescedEvents) {
80 mCoalescedWidgetEvents = aEvent.mCoalescedWidgetEvents;
85 /******************************************************************************
86 * mozilla::WidgetMouseEventBase
87 ******************************************************************************/
89 class WidgetMouseEventBase : public WidgetInputEvent {
90 private:
91 friend class dom::PBrowserParent;
92 friend class dom::PBrowserChild;
93 friend class dom::PBrowserBridgeParent;
94 ALLOW_DEPRECATED_READPARAM
96 protected:
97 WidgetMouseEventBase()
98 : mPressure(0),
99 mButton(0),
100 mButtons(0),
101 mInputSource(/* MouseEvent_Binding::MOZ_SOURCE_MOUSE = */ 1) {}
102 // Including MouseEventBinding.h here leads to an include loop, so
103 // we have to hardcode MouseEvent_Binding::MOZ_SOURCE_MOUSE.
105 WidgetMouseEventBase(bool aIsTrusted, EventMessage aMessage,
106 nsIWidget* aWidget, EventClassID aEventClassID)
107 : WidgetInputEvent(aIsTrusted, aMessage, aWidget, aEventClassID),
108 mPressure(0),
109 mButton(0),
110 mButtons(0),
111 mInputSource(/* MouseEvent_Binding::MOZ_SOURCE_MOUSE = */ 1) {}
112 // Including MouseEventBinding.h here leads to an include loop, so
113 // we have to hardcode MouseEvent_Binding::MOZ_SOURCE_MOUSE.
115 public:
116 virtual WidgetMouseEventBase* AsMouseEventBase() override { return this; }
118 virtual WidgetEvent* Duplicate() const override {
119 MOZ_CRASH("WidgetMouseEventBase must not be most-subclass");
122 // Finger or touch pressure of event. It ranges between 0.0 and 1.0.
123 float mPressure;
125 // Pressed button ID of mousedown or mouseup event.
126 // This is set only when pressing a button causes the event.
127 int16_t mButton;
129 // Flags of all pressed buttons at the event fired.
130 // This is set at any mouse event, don't be confused with |mButton|.
131 int16_t mButtons;
133 // Possible values a in MouseEvent
134 uint16_t mInputSource;
136 bool IsLeftButtonPressed() const {
137 return !!(mButtons & MouseButtonsFlag::ePrimaryFlag);
139 bool IsRightButtonPressed() const {
140 return !!(mButtons & MouseButtonsFlag::eSecondaryFlag);
142 bool IsMiddleButtonPressed() const {
143 return !!(mButtons & MouseButtonsFlag::eMiddleFlag);
145 bool Is4thButtonPressed() const {
146 return !!(mButtons & MouseButtonsFlag::e4thFlag);
148 bool Is5thButtonPressed() const {
149 return !!(mButtons & MouseButtonsFlag::e5thFlag);
152 void AssignMouseEventBaseData(const WidgetMouseEventBase& aEvent,
153 bool aCopyTargets) {
154 AssignInputEventData(aEvent, aCopyTargets);
156 mButton = aEvent.mButton;
157 mButtons = aEvent.mButtons;
158 mPressure = aEvent.mPressure;
159 mInputSource = aEvent.mInputSource;
163 * Returns true if left click event.
165 bool IsLeftClickEvent() const {
166 return mMessage == eMouseClick && mButton == MouseButton::ePrimary;
170 /******************************************************************************
171 * mozilla::WidgetMouseEvent
172 ******************************************************************************/
174 class WidgetMouseEvent : public WidgetMouseEventBase,
175 public WidgetPointerHelper {
176 private:
177 friend class dom::PBrowserParent;
178 friend class dom::PBrowserChild;
179 friend class dom::PBrowserBridgeParent;
180 ALLOW_DEPRECATED_READPARAM
182 public:
183 typedef bool ReasonType;
184 enum Reason : ReasonType { eReal, eSynthesized };
186 typedef uint8_t ContextMenuTriggerType;
187 enum ContextMenuTrigger : ContextMenuTriggerType {
188 eNormal,
189 eContextMenuKey,
190 eControlClick
193 typedef uint8_t ExitFromType;
194 enum ExitFrom : ExitFromType {
195 ePlatformChild,
196 ePlatformTopLevel,
197 ePuppet,
198 ePuppetParentToPuppetChild
201 protected:
202 WidgetMouseEvent()
203 : mReason(eReal),
204 mContextMenuTrigger(eNormal),
205 mClickCount(0),
206 mIgnoreRootScrollFrame(false),
207 mUseLegacyNonPrimaryDispatch(false),
208 mClickEventPrevented(false) {}
210 WidgetMouseEvent(bool aIsTrusted, EventMessage aMessage, nsIWidget* aWidget,
211 EventClassID aEventClassID, Reason aReason)
212 : WidgetMouseEventBase(aIsTrusted, aMessage, aWidget, aEventClassID),
213 mReason(aReason),
214 mContextMenuTrigger(eNormal),
215 mClickCount(0),
216 mIgnoreRootScrollFrame(false),
217 mUseLegacyNonPrimaryDispatch(false),
218 mClickEventPrevented(false) {}
220 #ifdef DEBUG
221 void AssertContextMenuEventButtonConsistency() const;
222 #endif
224 public:
225 virtual WidgetMouseEvent* AsMouseEvent() override { return this; }
227 WidgetMouseEvent(bool aIsTrusted, EventMessage aMessage, nsIWidget* aWidget,
228 Reason aReason,
229 ContextMenuTrigger aContextMenuTrigger = eNormal)
230 : WidgetMouseEventBase(aIsTrusted, aMessage, aWidget, eMouseEventClass),
231 mReason(aReason),
232 mContextMenuTrigger(aContextMenuTrigger),
233 mClickCount(0),
234 mIgnoreRootScrollFrame(false),
235 mUseLegacyNonPrimaryDispatch(false),
236 mClickEventPrevented(false) {
237 if (aMessage == eContextMenu) {
238 mButton = (mContextMenuTrigger == eNormal) ? MouseButton::eSecondary
239 : MouseButton::ePrimary;
243 #ifdef DEBUG
244 virtual ~WidgetMouseEvent() { AssertContextMenuEventButtonConsistency(); }
245 #endif
247 virtual WidgetEvent* Duplicate() const override {
248 MOZ_ASSERT(mClass == eMouseEventClass,
249 "Duplicate() must be overridden by sub class");
250 // Not copying widget, it is a weak reference.
251 WidgetMouseEvent* result = new WidgetMouseEvent(
252 false, mMessage, nullptr, mReason, mContextMenuTrigger);
253 result->AssignMouseEventData(*this, true);
254 result->mFlags = mFlags;
255 return result;
258 // If during mouseup handling we detect that click event might need to be
259 // dispatched, this is setup to be the target of the click event.
260 nsCOMPtr<dom::EventTarget> mClickTarget;
262 // mReason indicates the reason why the event is fired:
263 // - Representing mouse operation.
264 // - Synthesized for emulating mousemove event when the content under the
265 // mouse cursor is scrolled.
266 Reason mReason;
268 // mContextMenuTrigger is valid only when mMessage is eContextMenu.
269 // This indicates if the context menu event is caused by context menu key or
270 // other reasons (typically, a click of right mouse button).
271 ContextMenuTrigger mContextMenuTrigger;
273 // mExitFrom contains a value only when mMessage is eMouseExitFromWidget.
274 // This indicates if the mouse cursor exits from a top level platform widget,
275 // a child widget or a puppet widget.
276 Maybe<ExitFrom> mExitFrom;
278 // mClickCount may be non-zero value when mMessage is eMouseDown, eMouseUp,
279 // eMouseClick or eMouseDoubleClick. The number is count of mouse clicks.
280 // Otherwise, this must be 0.
281 uint32_t mClickCount;
283 // Whether the event should ignore scroll frame bounds during dispatch.
284 bool mIgnoreRootScrollFrame;
286 // Indicates whether the event should dispatch click events for non-primary
287 // mouse buttons on window and document.
288 bool mUseLegacyNonPrimaryDispatch;
290 // Whether the event shouldn't cause click event.
291 bool mClickEventPrevented;
293 void AssignMouseEventData(const WidgetMouseEvent& aEvent, bool aCopyTargets) {
294 AssignMouseEventBaseData(aEvent, aCopyTargets);
295 AssignPointerHelperData(aEvent, /* aCopyCoalescedEvents */ true);
297 mExitFrom = aEvent.mExitFrom;
298 mClickCount = aEvent.mClickCount;
299 mIgnoreRootScrollFrame = aEvent.mIgnoreRootScrollFrame;
300 mUseLegacyNonPrimaryDispatch = aEvent.mUseLegacyNonPrimaryDispatch;
301 mClickEventPrevented = aEvent.mClickEventPrevented;
305 * Returns true if the event is a context menu event caused by key.
307 bool IsContextMenuKeyEvent() const {
308 return mMessage == eContextMenu && mContextMenuTrigger == eContextMenuKey;
312 * Returns true if the event is a real mouse event. Otherwise, i.e., it's
313 * a synthesized event by scroll or something, returns false.
315 bool IsReal() const { return mReason == eReal; }
318 * Returns true if middle click paste is enabled.
320 static bool IsMiddleClickPasteEnabled();
323 /******************************************************************************
324 * mozilla::WidgetDragEvent
325 ******************************************************************************/
327 class WidgetDragEvent : public WidgetMouseEvent {
328 private:
329 friend class mozilla::dom::PBrowserParent;
330 friend class mozilla::dom::PBrowserChild;
331 ALLOW_DEPRECATED_READPARAM
333 protected:
334 WidgetDragEvent()
335 : mUserCancelled(false), mDefaultPreventedOnContent(false) {}
337 public:
338 virtual WidgetDragEvent* AsDragEvent() override { return this; }
340 WidgetDragEvent(bool aIsTrusted, EventMessage aMessage, nsIWidget* aWidget)
341 : WidgetMouseEvent(aIsTrusted, aMessage, aWidget, eDragEventClass, eReal),
342 mUserCancelled(false),
343 mDefaultPreventedOnContent(false) {}
345 virtual WidgetEvent* Duplicate() const override {
346 MOZ_ASSERT(mClass == eDragEventClass,
347 "Duplicate() must be overridden by sub class");
348 // Not copying widget, it is a weak reference.
349 WidgetDragEvent* result = new WidgetDragEvent(false, mMessage, nullptr);
350 result->AssignDragEventData(*this, true);
351 result->mFlags = mFlags;
352 return result;
355 // The dragging data.
356 nsCOMPtr<dom::DataTransfer> mDataTransfer;
358 // If this is true, user has cancelled the drag operation.
359 bool mUserCancelled;
360 // If this is true, the drag event's preventDefault() is called on content.
361 bool mDefaultPreventedOnContent;
363 // XXX Not tested by test_assign_event_data.html
364 void AssignDragEventData(const WidgetDragEvent& aEvent, bool aCopyTargets) {
365 AssignMouseEventData(aEvent, aCopyTargets);
367 mDataTransfer = aEvent.mDataTransfer;
368 // XXX mUserCancelled isn't copied, is this intentionally?
369 mUserCancelled = false;
370 mDefaultPreventedOnContent = aEvent.mDefaultPreventedOnContent;
374 * Should be called before dispatching the DOM tree if this event is
375 * synthesized for tests because drop effect is initialized before
376 * dispatching from widget if it's not synthesized event, but synthesized
377 * events are not initialized in the path.
379 void InitDropEffectForTests();
382 /******************************************************************************
383 * mozilla::WidgetMouseScrollEvent
385 * This is used for legacy DOM mouse scroll events, i.e.,
386 * DOMMouseScroll and MozMousePixelScroll event. These events are NOT hanbled
387 * by ESM even if widget dispatches them. Use new WidgetWheelEvent instead.
388 ******************************************************************************/
390 class WidgetMouseScrollEvent : public WidgetMouseEventBase {
391 private:
392 WidgetMouseScrollEvent() : mDelta(0), mIsHorizontal(false) {}
394 public:
395 virtual WidgetMouseScrollEvent* AsMouseScrollEvent() override { return this; }
397 WidgetMouseScrollEvent(bool aIsTrusted, EventMessage aMessage,
398 nsIWidget* aWidget)
399 : WidgetMouseEventBase(aIsTrusted, aMessage, aWidget,
400 eMouseScrollEventClass),
401 mDelta(0),
402 mIsHorizontal(false) {}
404 virtual WidgetEvent* Duplicate() const override {
405 MOZ_ASSERT(mClass == eMouseScrollEventClass,
406 "Duplicate() must be overridden by sub class");
407 // Not copying widget, it is a weak reference.
408 WidgetMouseScrollEvent* result =
409 new WidgetMouseScrollEvent(false, mMessage, nullptr);
410 result->AssignMouseScrollEventData(*this, true);
411 result->mFlags = mFlags;
412 return result;
415 // The delta value of mouse scroll event.
416 // If the event message is eLegacyMouseLineOrPageScroll, the value indicates
417 // scroll amount in lines. However, if the value is
418 // UIEvent::SCROLL_PAGE_UP or UIEvent::SCROLL_PAGE_DOWN, the
419 // value inducates one page scroll. If the event message is
420 // eLegacyMousePixelScroll, the value indicates scroll amount in pixels.
421 int32_t mDelta;
423 // If this is true, it may cause to scroll horizontally.
424 // Otherwise, vertically.
425 bool mIsHorizontal;
427 void AssignMouseScrollEventData(const WidgetMouseScrollEvent& aEvent,
428 bool aCopyTargets) {
429 AssignMouseEventBaseData(aEvent, aCopyTargets);
431 mDelta = aEvent.mDelta;
432 mIsHorizontal = aEvent.mIsHorizontal;
436 /******************************************************************************
437 * mozilla::WidgetWheelEvent
438 ******************************************************************************/
440 class WidgetWheelEvent : public WidgetMouseEventBase {
441 private:
442 friend class mozilla::dom::PBrowserParent;
443 friend class mozilla::dom::PBrowserChild;
444 ALLOW_DEPRECATED_READPARAM
446 WidgetWheelEvent()
447 : mDeltaX(0.0),
448 mDeltaY(0.0),
449 mDeltaZ(0.0),
450 mOverflowDeltaX(0.0),
451 mOverflowDeltaY(0.0)
452 // Including WheelEventBinding.h here leads to an include loop, so
453 // we have to hardcode WheelEvent_Binding::DOM_DELTA_PIXEL.
455 mDeltaMode(/* WheelEvent_Binding::DOM_DELTA_PIXEL = */ 0),
456 mLineOrPageDeltaX(0),
457 mLineOrPageDeltaY(0),
458 mScrollType(SCROLL_DEFAULT),
459 mCustomizedByUserPrefs(false),
460 mMayHaveMomentum(false),
461 mIsMomentum(false),
462 mIsNoLineOrPageDelta(false),
463 mViewPortIsOverscrolled(false),
464 mCanTriggerSwipe(false),
465 mAllowToOverrideSystemScrollSpeed(false),
466 mDeltaValuesHorizontalizedForDefaultHandler(false) {}
468 public:
469 virtual WidgetWheelEvent* AsWheelEvent() override { return this; }
471 WidgetWheelEvent(bool aIsTrusted, EventMessage aMessage, nsIWidget* aWidget)
472 : WidgetMouseEventBase(aIsTrusted, aMessage, aWidget, eWheelEventClass),
473 mDeltaX(0.0),
474 mDeltaY(0.0),
475 mDeltaZ(0.0),
476 mOverflowDeltaX(0.0),
477 mOverflowDeltaY(0.0)
478 // Including WheelEventBinding.h here leads to an include loop, so
479 // we have to hardcode WheelEvent_Binding::DOM_DELTA_PIXEL.
481 mDeltaMode(/* WheelEvent_Binding::DOM_DELTA_PIXEL = */ 0),
482 mLineOrPageDeltaX(0),
483 mLineOrPageDeltaY(0),
484 mScrollType(SCROLL_DEFAULT),
485 mCustomizedByUserPrefs(false),
486 mMayHaveMomentum(false),
487 mIsMomentum(false),
488 mIsNoLineOrPageDelta(false),
489 mViewPortIsOverscrolled(false),
490 mCanTriggerSwipe(false),
491 mAllowToOverrideSystemScrollSpeed(true),
492 mDeltaValuesHorizontalizedForDefaultHandler(false) {}
494 virtual WidgetEvent* Duplicate() const override {
495 MOZ_ASSERT(mClass == eWheelEventClass,
496 "Duplicate() must be overridden by sub class");
497 // Not copying widget, it is a weak reference.
498 WidgetWheelEvent* result = new WidgetWheelEvent(false, mMessage, nullptr);
499 result->AssignWheelEventData(*this, true);
500 result->mFlags = mFlags;
501 return result;
504 // Scroll gestures that start at the edge of the scrollable range can result
505 // in a swipe gesture. For the first wheel event of such a gesture, call
506 // TriggersSwipe() after the event has been processed in order to find out
507 // whether a swipe should be started.
508 bool TriggersSwipe() const {
509 return mCanTriggerSwipe && mViewPortIsOverscrolled &&
510 this->mOverflowDeltaX != 0.0;
513 // NOTE: mDeltaX, mDeltaY and mDeltaZ may be customized by
514 // mousewheel.*.delta_multiplier_* prefs which are applied by
515 // EventStateManager. So, after widget dispatches this event,
516 // these delta values may have different values than before.
517 double mDeltaX;
518 double mDeltaY;
519 double mDeltaZ;
521 // The mousewheel tick counts.
522 double mWheelTicksX = 0.0;
523 double mWheelTicksY = 0.0;
525 enum class DeltaModeCheckingState : uint8_t {
526 // Neither deltaMode nor the delta values have been accessed.
527 Unknown,
528 // The delta values have been accessed, without checking deltaMode first.
529 Unchecked,
530 // The deltaMode has been checked.
531 Checked,
534 // For compat reasons, we might expose a DOM_DELTA_LINE event as
535 // DOM_DELTA_PIXEL instead. Whether we do that depends on whether the event
536 // has been asked for the deltaMode before the deltas. If it has, we assume
537 // that the page will correctly handle DOM_DELTA_LINE. This variable tracks
538 // that state. See bug 1392460.
539 DeltaModeCheckingState mDeltaModeCheckingState =
540 DeltaModeCheckingState::Unknown;
542 // The amount of scrolling per line or page, without accounting for mouse
543 // wheel transactions etc.
545 // Computed by EventStateManager::DeltaAccumulator::InitLineOrPageDelta.
546 nsSize mScrollAmount;
548 // overflowed delta values for scroll, these values are set by
549 // EventStateManger. If the default action of the wheel event isn't scroll,
550 // these values are always zero. Otherwise, remaining delta values which are
551 // not used by scroll are set.
552 // NOTE: mDeltaX, mDeltaY and mDeltaZ may be modified by EventStateManager.
553 // However, mOverflowDeltaX and mOverflowDeltaY indicate unused original
554 // delta values which are not applied the delta_multiplier prefs.
555 // So, if widget wanted to know the actual direction to be scrolled,
556 // it would need to check the mDeltaX and mDeltaY.
557 double mOverflowDeltaX;
558 double mOverflowDeltaY;
560 // Should be one of WheelEvent_Binding::DOM_DELTA_*
561 uint32_t mDeltaMode;
563 // If widget sets mLineOrPageDelta, EventStateManager will dispatch
564 // eLegacyMouseLineOrPageScroll event for compatibility. Note that the delta
565 // value means pages if the mDeltaMode is DOM_DELTA_PAGE, otherwise, lines.
566 int32_t mLineOrPageDeltaX;
567 int32_t mLineOrPageDeltaY;
569 // When the default action for an wheel event is moving history or zooming,
570 // need to chose a delta value for doing it.
571 int32_t GetPreferredIntDelta() {
572 if (!mLineOrPageDeltaX && !mLineOrPageDeltaY) {
573 return 0;
575 if (mLineOrPageDeltaY && !mLineOrPageDeltaX) {
576 return mLineOrPageDeltaY;
578 if (mLineOrPageDeltaX && !mLineOrPageDeltaY) {
579 return mLineOrPageDeltaX;
581 if ((mLineOrPageDeltaX < 0 && mLineOrPageDeltaY > 0) ||
582 (mLineOrPageDeltaX > 0 && mLineOrPageDeltaY < 0)) {
583 return 0; // We cannot guess the answer in this case.
585 return (Abs(mLineOrPageDeltaX) > Abs(mLineOrPageDeltaY))
586 ? mLineOrPageDeltaX
587 : mLineOrPageDeltaY;
590 // Scroll type
591 // The default value is SCROLL_DEFAULT, which means EventStateManager will
592 // select preferred scroll type automatically.
593 enum ScrollType : uint8_t {
594 SCROLL_DEFAULT,
595 SCROLL_SYNCHRONOUSLY,
596 SCROLL_ASYNCHRONOUSLY,
597 SCROLL_SMOOTHLY
599 ScrollType mScrollType;
601 // If the delta values are computed from prefs, this value is true.
602 // Otherwise, i.e., they are computed from native events, false.
603 bool mCustomizedByUserPrefs;
605 // true if the momentum events directly tied to this event may follow it.
606 bool mMayHaveMomentum;
607 // true if the event is caused by momentum.
608 bool mIsMomentum;
610 // If device event handlers don't know when they should set mLineOrPageDeltaX
611 // and mLineOrPageDeltaY, this is true. Otherwise, false.
612 // If mIsNoLineOrPageDelta is true, ESM will generate
613 // eLegacyMouseLineOrPageScroll events when accumulated delta values reach
614 // a line height.
615 bool mIsNoLineOrPageDelta;
617 // Whether or not the parent of the currently overscrolled frame is the
618 // ViewPort. This is false in situations when an element on the page is being
619 // overscrolled (such as a text field), but true when the 'page' is being
620 // overscrolled.
621 bool mViewPortIsOverscrolled;
623 // The wheel event can trigger a swipe to start if it's overscrolling the
624 // viewport.
625 bool mCanTriggerSwipe;
627 // If mAllowToOverrideSystemScrollSpeed is true, the scroll speed may be
628 // overridden. Otherwise, the scroll speed won't be overridden even if
629 // it's enabled by the pref.
630 bool mAllowToOverrideSystemScrollSpeed;
632 // After the event's default action handler has adjusted its delta's values
633 // for horizontalizing a vertical wheel scroll, this variable will be set to
634 // true.
635 bool mDeltaValuesHorizontalizedForDefaultHandler;
637 void AssignWheelEventData(const WidgetWheelEvent& aEvent, bool aCopyTargets) {
638 AssignMouseEventBaseData(aEvent, aCopyTargets);
640 mDeltaX = aEvent.mDeltaX;
641 mDeltaY = aEvent.mDeltaY;
642 mDeltaZ = aEvent.mDeltaZ;
643 mDeltaMode = aEvent.mDeltaMode;
644 mScrollAmount = aEvent.mScrollAmount;
645 mCustomizedByUserPrefs = aEvent.mCustomizedByUserPrefs;
646 mMayHaveMomentum = aEvent.mMayHaveMomentum;
647 mIsMomentum = aEvent.mIsMomentum;
648 mIsNoLineOrPageDelta = aEvent.mIsNoLineOrPageDelta;
649 mLineOrPageDeltaX = aEvent.mLineOrPageDeltaX;
650 mLineOrPageDeltaY = aEvent.mLineOrPageDeltaY;
651 mScrollType = aEvent.mScrollType;
652 mOverflowDeltaX = aEvent.mOverflowDeltaX;
653 mOverflowDeltaY = aEvent.mOverflowDeltaY;
654 mViewPortIsOverscrolled = aEvent.mViewPortIsOverscrolled;
655 mCanTriggerSwipe = aEvent.mCanTriggerSwipe;
656 mAllowToOverrideSystemScrollSpeed =
657 aEvent.mAllowToOverrideSystemScrollSpeed;
658 mDeltaValuesHorizontalizedForDefaultHandler =
659 aEvent.mDeltaValuesHorizontalizedForDefaultHandler;
662 // System scroll speed settings may be too slow at using Gecko. In such
663 // case, we should override the scroll speed computed with system settings.
664 // Following methods return preferred delta values which are multiplied by
665 // factors specified by prefs. If system scroll speed shouldn't be
666 // overridden (e.g., this feature is disabled by pref), they return raw
667 // delta values.
668 double OverriddenDeltaX() const;
669 double OverriddenDeltaY() const;
671 // Compute the overridden delta value. This may be useful for suppressing
672 // too fast scroll by system scroll speed overriding when widget sets
673 // mAllowToOverrideSystemScrollSpeed.
674 static double ComputeOverriddenDelta(double aDelta, bool aIsForVertical);
676 private:
677 static bool sInitialized;
678 static bool sIsSystemScrollSpeedOverrideEnabled;
679 static int32_t sOverrideFactorX;
680 static int32_t sOverrideFactorY;
681 static void Initialize();
684 /******************************************************************************
685 * mozilla::WidgetPointerEvent
686 ******************************************************************************/
688 class WidgetPointerEvent : public WidgetMouseEvent {
689 friend class mozilla::dom::PBrowserParent;
690 friend class mozilla::dom::PBrowserChild;
691 ALLOW_DEPRECATED_READPARAM
693 public:
694 virtual WidgetPointerEvent* AsPointerEvent() override { return this; }
696 WidgetPointerEvent(bool aIsTrusted, EventMessage aMsg, nsIWidget* w)
697 : WidgetMouseEvent(aIsTrusted, aMsg, w, ePointerEventClass, eReal),
698 mWidth(1),
699 mHeight(1),
700 mIsPrimary(true),
701 mFromTouchEvent(false) {}
703 explicit WidgetPointerEvent(const WidgetMouseEvent& aEvent)
704 : WidgetMouseEvent(aEvent),
705 mWidth(1),
706 mHeight(1),
707 mIsPrimary(true),
708 mFromTouchEvent(false) {
709 mClass = ePointerEventClass;
712 virtual WidgetEvent* Duplicate() const override {
713 MOZ_ASSERT(mClass == ePointerEventClass,
714 "Duplicate() must be overridden by sub class");
715 // Not copying widget, it is a weak reference.
716 WidgetPointerEvent* result =
717 new WidgetPointerEvent(false, mMessage, nullptr);
718 result->AssignPointerEventData(*this, true);
719 result->mFlags = mFlags;
720 return result;
723 int32_t mWidth;
724 int32_t mHeight;
725 bool mIsPrimary;
726 bool mFromTouchEvent;
728 // XXX Not tested by test_assign_event_data.html
729 void AssignPointerEventData(const WidgetPointerEvent& aEvent,
730 bool aCopyTargets) {
731 AssignMouseEventData(aEvent, aCopyTargets);
733 mWidth = aEvent.mWidth;
734 mHeight = aEvent.mHeight;
735 mIsPrimary = aEvent.mIsPrimary;
736 mFromTouchEvent = aEvent.mFromTouchEvent;
740 } // namespace mozilla
742 #endif // mozilla_MouseEvents_h__