/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/. */ #include "APZEventState.h" #include "ActiveElementManager.h" #include "mozilla/BasicEvents.h" #include "mozilla/Preferences.h" #include "nsCOMPtr.h" #include "nsDocShell.h" #include "nsIDOMWindowUtils.h" #include "nsITimer.h" #include "nsIWeakReferenceUtils.h" #include "nsIWidget.h" #include "TouchManager.h" #define APZES_LOG(...) // #define APZES_LOG(...) printf_stderr("APZCCH: " __VA_ARGS__) // Static helper functions namespace { int32_t WidgetModifiersToDOMModifiers(mozilla::Modifiers aModifiers) { int32_t result = 0; if (aModifiers & mozilla::MODIFIER_SHIFT) { result |= nsIDOMWindowUtils::MODIFIER_SHIFT; } if (aModifiers & mozilla::MODIFIER_CONTROL) { result |= nsIDOMWindowUtils::MODIFIER_CONTROL; } if (aModifiers & mozilla::MODIFIER_ALT) { result |= nsIDOMWindowUtils::MODIFIER_ALT; } if (aModifiers & mozilla::MODIFIER_META) { result |= nsIDOMWindowUtils::MODIFIER_META; } if (aModifiers & mozilla::MODIFIER_ALTGRAPH) { result |= nsIDOMWindowUtils::MODIFIER_ALTGRAPH; } if (aModifiers & mozilla::MODIFIER_CAPSLOCK) { result |= nsIDOMWindowUtils::MODIFIER_CAPSLOCK; } if (aModifiers & mozilla::MODIFIER_FN) { result |= nsIDOMWindowUtils::MODIFIER_FN; } if (aModifiers & mozilla::MODIFIER_FNLOCK) { result |= nsIDOMWindowUtils::MODIFIER_FNLOCK; } if (aModifiers & mozilla::MODIFIER_NUMLOCK) { result |= nsIDOMWindowUtils::MODIFIER_NUMLOCK; } if (aModifiers & mozilla::MODIFIER_SCROLLLOCK) { result |= nsIDOMWindowUtils::MODIFIER_SCROLLLOCK; } if (aModifiers & mozilla::MODIFIER_SYMBOL) { result |= nsIDOMWindowUtils::MODIFIER_SYMBOL; } if (aModifiers & mozilla::MODIFIER_SYMBOLLOCK) { result |= nsIDOMWindowUtils::MODIFIER_SYMBOLLOCK; } if (aModifiers & mozilla::MODIFIER_OS) { result |= nsIDOMWindowUtils::MODIFIER_OS; } return result; } } namespace mozilla { namespace layers { static int32_t sActiveDurationMs = 10; static bool sActiveDurationMsSet = false; APZEventState::APZEventState(nsIWidget* aWidget, const nsRefPtr& aCallback) : mWidget(nullptr) // initialized in constructor body , mActiveElementManager(new ActiveElementManager()) , mContentReceivedInputBlockCallback(aCallback) , mPendingTouchPreventedResponse(false) , mPendingTouchPreventedBlockId(0) , mEndTouchIsClick(false) , mTouchEndCancelled(false) , mActiveAPZTransforms(0) { nsresult rv; mWidget = do_GetWeakReference(aWidget, &rv); MOZ_ASSERT(NS_SUCCEEDED(rv), "APZEventState constructed with a widget that" " does not support weak references. APZ will NOT work!"); if (!sActiveDurationMsSet) { Preferences::AddIntVarCache(&sActiveDurationMs, "ui.touch_activation.duration_ms", sActiveDurationMs); sActiveDurationMsSet = true; } } APZEventState::~APZEventState() {} class DelayedFireSingleTapEvent final : public nsITimerCallback { public: NS_DECL_ISUPPORTS DelayedFireSingleTapEvent(nsWeakPtr aWidget, LayoutDevicePoint& aPoint, Modifiers aModifiers, nsITimer* aTimer) : mWidget(aWidget) , mPoint(aPoint) , mModifiers(aModifiers) // Hold the reference count until we are called back. , mTimer(aTimer) { } NS_IMETHODIMP Notify(nsITimer*) override { if (nsCOMPtr widget = do_QueryReferent(mWidget)) { APZCCallbackHelper::FireSingleTapEvent(mPoint, mModifiers, widget); } mTimer = nullptr; return NS_OK; } void ClearTimer() { mTimer = nullptr; } private: ~DelayedFireSingleTapEvent() { } nsWeakPtr mWidget; LayoutDevicePoint mPoint; Modifiers mModifiers; nsCOMPtr mTimer; }; NS_IMPL_ISUPPORTS(DelayedFireSingleTapEvent, nsITimerCallback) void APZEventState::ProcessSingleTap(const CSSPoint& aPoint, Modifiers aModifiers, const ScrollableLayerGuid& aGuid, float aPresShellResolution) { APZES_LOG("Handling single tap at %s on %s with %d\n", Stringify(aPoint).c_str(), Stringify(aGuid).c_str(), mTouchEndCancelled); nsCOMPtr widget = GetWidget(); if (!widget) { return; } if (mTouchEndCancelled) { return; } LayoutDevicePoint currentPoint = APZCCallbackHelper::ApplyCallbackTransform(aPoint, aGuid, aPresShellResolution) * widget->GetDefaultScale();; if (!mActiveElementManager->ActiveElementUsesStyle()) { // If the active element isn't visually affected by the :active style, we // have no need to wait the extra sActiveDurationMs to make the activation // visually obvious to the user. APZCCallbackHelper::FireSingleTapEvent(currentPoint, aModifiers, widget); return; } APZES_LOG("Active element uses style, scheduling timer for click event\n"); nsCOMPtr timer = do_CreateInstance(NS_TIMER_CONTRACTID); nsRefPtr callback = new DelayedFireSingleTapEvent(mWidget, currentPoint, aModifiers, timer); nsresult rv = timer->InitWithCallback(callback, sActiveDurationMs, nsITimer::TYPE_ONE_SHOT); if (NS_FAILED(rv)) { // Make |callback| not hold the timer, so they will both be destructed when // we leave the scope of this function. callback->ClearTimer(); } } void APZEventState::ProcessLongTap(const nsCOMPtr& aUtils, const CSSPoint& aPoint, Modifiers aModifiers, const ScrollableLayerGuid& aGuid, uint64_t aInputBlockId, float aPresShellResolution) { APZES_LOG("Handling long tap at %s\n", Stringify(aPoint).c_str()); nsCOMPtr widget = GetWidget(); if (!widget) { return; } SendPendingTouchPreventedResponse(false, aGuid); // Converting the modifiers to DOM format for the DispatchMouseEvent call // is the most useless thing ever because nsDOMWindowUtils::SendMouseEvent // just converts them back to widget format, but that API has many callers, // including in JS code, so it's not trivial to change. bool eventHandled = APZCCallbackHelper::DispatchMouseEvent(aUtils, NS_LITERAL_STRING("contextmenu"), APZCCallbackHelper::ApplyCallbackTransform(aPoint, aGuid, aPresShellResolution), 2, 1, WidgetModifiersToDOMModifiers(aModifiers), true, nsIDOMMouseEvent::MOZ_SOURCE_TOUCH); APZES_LOG("Contextmenu event handled: %d\n", eventHandled); // If no one handle context menu, fire MOZLONGTAP event if (!eventHandled) { LayoutDevicePoint currentPoint = APZCCallbackHelper::ApplyCallbackTransform(aPoint, aGuid, aPresShellResolution) * widget->GetDefaultScale(); int time = 0; nsEventStatus status = APZCCallbackHelper::DispatchSynthesizedMouseEvent(NS_MOUSE_MOZLONGTAP, time, currentPoint, aModifiers, widget); eventHandled = (status == nsEventStatus_eConsumeNoDefault); APZES_LOG("MOZLONGTAP event handled: %d\n", eventHandled); } mContentReceivedInputBlockCallback->Run(aGuid, aInputBlockId, eventHandled); } void APZEventState::ProcessTouchEvent(const WidgetTouchEvent& aEvent, const ScrollableLayerGuid& aGuid, uint64_t aInputBlockId, nsEventStatus aApzResponse) { if (aEvent.message == NS_TOUCH_START && aEvent.touches.Length() > 0) { mActiveElementManager->SetTargetElement(aEvent.touches[0]->GetTarget()); } bool isTouchPrevented = TouchManager::gPreventMouseEvents || aEvent.mFlags.mMultipleActionsPrevented; bool sentContentResponse = false; switch (aEvent.message) { case NS_TOUCH_START: { mTouchEndCancelled = false; if (mPendingTouchPreventedResponse) { // We can enter here if we get two TOUCH_STARTs in a row and didn't // respond to the first one. Respond to it now. mContentReceivedInputBlockCallback->Run(mPendingTouchPreventedGuid, mPendingTouchPreventedBlockId, false); sentContentResponse = true; mPendingTouchPreventedResponse = false; } if (isTouchPrevented) { mContentReceivedInputBlockCallback->Run(aGuid, aInputBlockId, isTouchPrevented); sentContentResponse = true; } else { mPendingTouchPreventedResponse = true; mPendingTouchPreventedGuid = aGuid; mPendingTouchPreventedBlockId = aInputBlockId; } break; } case NS_TOUCH_END: if (isTouchPrevented) { mTouchEndCancelled = true; mEndTouchIsClick = false; } // fall through case NS_TOUCH_CANCEL: mActiveElementManager->HandleTouchEndEvent(mEndTouchIsClick); // fall through case NS_TOUCH_MOVE: { sentContentResponse = SendPendingTouchPreventedResponse(isTouchPrevented, aGuid); break; } default: NS_WARNING("Unknown touch event type"); } if (sentContentResponse && aApzResponse == nsEventStatus_eConsumeDoDefault && gfxPrefs::PointerEventsEnabled()) { WidgetTouchEvent cancelEvent(aEvent); cancelEvent.message = NS_TOUCH_CANCEL; cancelEvent.mFlags.mCancelable = false; // message != NS_TOUCH_CANCEL; for (uint32_t i = 0; i < cancelEvent.touches.Length(); ++i) { if (mozilla::dom::Touch* touch = cancelEvent.touches[i]) { touch->convertToPointer = true; } } nsEventStatus status; cancelEvent.widget->DispatchEvent(&cancelEvent, status); } } void APZEventState::ProcessWheelEvent(const WidgetWheelEvent& aEvent, const ScrollableLayerGuid& aGuid, uint64_t aInputBlockId) { mContentReceivedInputBlockCallback->Run(aGuid, aInputBlockId, aEvent.mFlags.mDefaultPrevented); } void APZEventState::ProcessAPZStateChange(const nsCOMPtr& aDocument, ViewID aViewId, APZStateChange aChange, int aArg) { switch (aChange) { case APZStateChange::TransformBegin: { nsIScrollableFrame* sf = nsLayoutUtils::FindScrollableFrameFor(aViewId); if (sf) { sf->SetTransformingByAPZ(true); } nsIScrollbarMediator* scrollbarMediator = do_QueryFrame(sf); if (scrollbarMediator) { scrollbarMediator->ScrollbarActivityStarted(); } if (aDocument && mActiveAPZTransforms == 0) { nsCOMPtr docshell(aDocument->GetDocShell()); if (docshell && sf) { nsDocShell* nsdocshell = static_cast(docshell.get()); nsdocshell->NotifyAsyncPanZoomStarted(); } } mActiveAPZTransforms++; break; } case APZStateChange::TransformEnd: { mActiveAPZTransforms--; nsIScrollableFrame* sf = nsLayoutUtils::FindScrollableFrameFor(aViewId); if (sf) { sf->SetTransformingByAPZ(false); } nsIScrollbarMediator* scrollbarMediator = do_QueryFrame(sf); if (scrollbarMediator) { scrollbarMediator->ScrollbarActivityStopped(); } if (aDocument && mActiveAPZTransforms == 0) { nsCOMPtr docshell(aDocument->GetDocShell()); if (docshell && sf) { nsDocShell* nsdocshell = static_cast(docshell.get()); nsdocshell->NotifyAsyncPanZoomStopped(); } } break; } case APZStateChange::StartTouch: { mActiveElementManager->HandleTouchStart(aArg); break; } case APZStateChange::StartPanning: { mActiveElementManager->HandlePanStart(); break; } case APZStateChange::EndTouch: { mEndTouchIsClick = aArg; mActiveElementManager->HandleTouchEnd(); break; } default: // APZStateChange has a 'sentinel' value, and the compiler complains // if an enumerator is not handled and there is no 'default' case. break; } } bool APZEventState::SendPendingTouchPreventedResponse(bool aPreventDefault, const ScrollableLayerGuid& aGuid) { if (mPendingTouchPreventedResponse) { MOZ_ASSERT(aGuid == mPendingTouchPreventedGuid); mContentReceivedInputBlockCallback->Run(mPendingTouchPreventedGuid, mPendingTouchPreventedBlockId, aPreventDefault); mPendingTouchPreventedResponse = false; return true; } return false; } already_AddRefed APZEventState::GetWidget() const { nsCOMPtr result = do_QueryReferent(mWidget); return result.forget(); } } }