Changeset 240787 in webkit
- Timestamp:
- Jan 31, 2019, 8:28:27 AM (6 years ago)
- Location:
- trunk/Source
- Files:
-
- 45 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r240784 r240787 1 2019-01-30 Simon Fraser <simon.fraser@apple.com> 2 3 [Mac] Implement basic hit testing in the scrolling tree 4 https://bugs.webkit.org/show_bug.cgi?id=172917 5 <rdar://problem/34215516> 6 7 Reviewed by Antti Koivisto. 8 9 First steps to getting hit testing of scrolling nodes in the scrolling tree. Based on patch 10 by Frédéric Wang. 11 12 First we pipe the "async scrolling enabled" setting through to the ScrollingTree via 13 the root node (like the other settings; weird, but that's how it's done). For now, 14 we hit test in the scrolling tree if either async overflow or frame scrolling are enabled 15 (it's hard to deal with one without the other). 16 17 Nodes in the scrolling tree implement scrollingNodeForPoint() to implement hit testing. 18 Two helper functions exist to simplify coordinate conversion: parentToLocalPoint() 19 and localToContentsPoint(). Child nodes are hit-testing in reverse order to find nodes 20 hightest in Z first. Only scrolling nodes are returned (not sure if we'll ever need 21 to hit-test non-scrolling nodes). Nodes use parentRelativeScrollableRect and scroll positions 22 to do these point mappings. 23 24 handleWheelEvent() is changed to return a ScrollingEventResult. 25 26 Latching is not correct with this change when async frame scrolling is enabled. That needs 27 to be fixed separately. 28 29 No tests yet; for ease of testing, I'd like to add an Internals API to hit-test the 30 scrolling tree, rather than doing eventSender stuff everywhere. 31 32 * page/scrolling/AsyncScrollingCoordinator.cpp: 33 (WebCore::AsyncScrollingCoordinator::frameViewLayoutUpdated): 34 (WebCore::AsyncScrollingCoordinator::asyncFrameOrOverflowScrollingEnabled const): 35 * page/scrolling/AsyncScrollingCoordinator.h: 36 * page/scrolling/ScrollingStateFrameScrollingNode.cpp: 37 (WebCore::ScrollingStateFrameScrollingNode::ScrollingStateFrameScrollingNode): 38 (WebCore::ScrollingStateFrameScrollingNode::setAllPropertiesChanged): 39 (WebCore::ScrollingStateFrameScrollingNode::setAsyncFrameOrOverflowScrollingEnabled): 40 * page/scrolling/ScrollingStateFrameScrollingNode.h: 41 * page/scrolling/ScrollingTree.cpp: 42 (WebCore::ScrollingTree::shouldHandleWheelEventSynchronously): 43 (WebCore::ScrollingTree::handleWheelEvent): 44 (WebCore::ScrollingTree::commitTreeState): 45 (WebCore::ScrollingTree::setAsyncFrameOrOverflowScrollingEnabled): 46 * page/scrolling/ScrollingTree.h: 47 (WebCore::ScrollingTree::asyncFrameOrOverflowScrollingEnabled const): 48 * page/scrolling/ScrollingTreeFrameHostingNode.cpp: 49 (WebCore::ScrollingTreeFrameHostingNode::parentToLocalPoint const): 50 * page/scrolling/ScrollingTreeFrameHostingNode.h: 51 * page/scrolling/ScrollingTreeFrameScrollingNode.cpp: 52 (WebCore::ScrollingTreeFrameScrollingNode::parentToLocalPoint const): 53 (WebCore::ScrollingTreeFrameScrollingNode::localToContentsPoint const): 54 * page/scrolling/ScrollingTreeFrameScrollingNode.h: 55 * page/scrolling/ScrollingTreeNode.cpp: 56 (WebCore::ScrollingTreeNode::scrollingNodeForPoint const): 57 * page/scrolling/ScrollingTreeNode.h: 58 (WebCore::ScrollingTreeNode::children const): 59 (WebCore::ScrollingTreeNode::parentToLocalPoint const): 60 (WebCore::ScrollingTreeNode::localToContentsPoint const): 61 * page/scrolling/ScrollingTreeScrollingNode.cpp: 62 (WebCore::ScrollingTreeScrollingNode::scrollLimitReached const): 63 (WebCore::ScrollingTreeScrollingNode::parentToLocalPoint const): 64 (WebCore::ScrollingTreeScrollingNode::localToContentsPoint const): 65 (WebCore::ScrollingTreeScrollingNode::scrollingNodeForPoint const): 66 * page/scrolling/ScrollingTreeScrollingNode.h: 67 * page/scrolling/ThreadedScrollingTree.cpp: 68 (WebCore::ThreadedScrollingTree::handleWheelEvent): 69 * page/scrolling/ThreadedScrollingTree.h: 70 * page/scrolling/ios/ScrollingTreeFrameScrollingNodeIOS.h: 71 * page/scrolling/ios/ScrollingTreeFrameScrollingNodeIOS.mm: 72 (WebCore::ScrollingTreeFrameScrollingNodeIOS::handleWheelEvent): 73 * page/scrolling/ios/ScrollingTreeIOS.h: 74 * page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.h: 75 * page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm: 76 (WebCore::ScrollingTreeFrameScrollingNodeMac::handleWheelEvent): 77 * page/scrolling/mac/ScrollingTreeOverflowScrollingNodeMac.h: 78 1 79 2019-01-31 Alicia Boya García <aboya@igalia.com> 2 80 -
trunk/Source/WebCore/page/FrameView.cpp
r240628 r240787 5012 5012 if (ScrollingCoordinator* scrollingCoordinator = page->scrollingCoordinator()) { 5013 5013 if (scrollingCoordinator->coordinatesScrollingForFrameView(*this)) 5014 return scrollingCoordinator->handleWheelEvent(*this, wheelEvent) ;5014 return scrollingCoordinator->handleWheelEvent(*this, wheelEvent) != ScrollingEventResult::DidNotHandleEvent; 5015 5015 } 5016 5016 } -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.cpp
r240713 r240787 131 131 return; 132 132 133 auto* node = downcast<ScrollingStateFrameScrollingNode>(m_scrollingStateTree->stateNodeForID(frameView.scrollLayerID())); 134 if (!node) 135 return; 133 auto* node = m_scrollingStateTree->stateNodeForID(frameView.scrollLayerID()); 134 if (!node || !is<ScrollingStateFrameScrollingNode>(*node)) 135 return; 136 137 auto& frameScrollingNode = downcast<ScrollingStateFrameScrollingNode>(*node); 136 138 137 139 auto* verticalScrollbar = frameView.verticalScrollbar(); 138 140 auto* horizontalScrollbar = frameView.horizontalScrollbar(); 139 node->setScrollerImpsFromScrollbars(verticalScrollbar, horizontalScrollbar); 140 141 node->setFrameScaleFactor(frameView.frame().frameScaleFactor()); 142 node->setHeaderHeight(frameView.headerHeight()); 143 node->setFooterHeight(frameView.footerHeight()); 144 node->setTopContentInset(frameView.topContentInset()); 145 146 node->setVisualViewportEnabled(visualViewportEnabled()); 147 node->setLayoutViewport(frameView.layoutViewportRect()); 148 node->setMinLayoutViewportOrigin(frameView.minStableLayoutViewportOrigin()); 149 node->setMaxLayoutViewportOrigin(frameView.maxStableLayoutViewportOrigin()); 150 151 node->setScrollOrigin(frameView.scrollOrigin()); 152 node->setScrollableAreaSize(frameView.visibleContentRect().size()); 153 node->setTotalContentsSize(frameView.totalContentsSize()); 154 node->setReachableContentsSize(frameView.totalContentsSize()); 155 node->setFixedElementsLayoutRelativeToFrame(frameView.fixedElementsLayoutRelativeToFrame()); 156 node->setScrollBehaviorForFixedElements(frameView.scrollBehaviorForFixedElements()); 141 frameScrollingNode.setScrollerImpsFromScrollbars(verticalScrollbar, horizontalScrollbar); 142 143 frameScrollingNode.setFrameScaleFactor(frameView.frame().frameScaleFactor()); 144 frameScrollingNode.setHeaderHeight(frameView.headerHeight()); 145 frameScrollingNode.setFooterHeight(frameView.footerHeight()); 146 frameScrollingNode.setTopContentInset(frameView.topContentInset()); 147 148 frameScrollingNode.setVisualViewportEnabled(visualViewportEnabled()); 149 frameScrollingNode.setLayoutViewport(frameView.layoutViewportRect()); 150 frameScrollingNode.setAsyncFrameOrOverflowScrollingEnabled(asyncFrameOrOverflowScrollingEnabled()); 151 152 frameScrollingNode.setMinLayoutViewportOrigin(frameView.minStableLayoutViewportOrigin()); 153 frameScrollingNode.setMaxLayoutViewportOrigin(frameView.maxStableLayoutViewportOrigin()); 154 155 frameScrollingNode.setScrollOrigin(frameView.scrollOrigin()); 156 frameScrollingNode.setScrollableAreaSize(frameView.visibleContentRect().size()); 157 frameScrollingNode.setTotalContentsSize(frameView.totalContentsSize()); 158 frameScrollingNode.setReachableContentsSize(frameView.totalContentsSize()); 159 frameScrollingNode.setFixedElementsLayoutRelativeToFrame(frameView.fixedElementsLayoutRelativeToFrame()); 160 frameScrollingNode.setScrollBehaviorForFixedElements(frameView.scrollBehaviorForFixedElements()); 157 161 158 162 #if ENABLE(CSS_SCROLL_SNAP) … … 165 169 if (page && page->expectsWheelEventTriggers()) { 166 170 LOG(WheelEventTestTriggers, " AsyncScrollingCoordinator::frameViewLayoutUpdated: Expects wheel event test trigger=%d", page->expectsWheelEventTriggers()); 167 node->setExpectsWheelEventTestTrigger(page->expectsWheelEventTriggers());171 frameScrollingNode.setExpectsWheelEventTestTrigger(page->expectsWheelEventTriggers()); 168 172 } 169 173 #endif … … 178 182 scrollParameters.useDarkAppearanceForScrollbars = frameView.useDarkAppearanceForScrollbars(); 179 183 180 node->setScrollableAreaParameters(scrollParameters);184 frameScrollingNode.setScrollableAreaParameters(scrollParameters); 181 185 } 182 186 … … 680 684 } 681 685 686 bool AsyncScrollingCoordinator::asyncFrameOrOverflowScrollingEnabled() const 687 { 688 auto& settings = m_page->mainFrame().settings(); 689 return settings.asyncFrameScrollingEnabled() || settings.asyncOverflowScrollingEnabled(); 690 } 691 682 692 String AsyncScrollingCoordinator::scrollingStateTreeAsText(ScrollingStateTreeAsTextBehavior behavior) const 683 693 { -
trunk/Source/WebCore/page/scrolling/AsyncScrollingCoordinator.h
r240551 r240787 91 91 92 92 bool visualViewportEnabled() const; 93 bool asyncFrameOrOverflowScrollingEnabled() const; 93 94 94 95 WEBCORE_EXPORT void frameViewLayoutUpdated(FrameView&) override; -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinator.h
r240579 r240787 112 112 virtual void commitTreeStateIfNeeded() { } 113 113 virtual bool requestScrollPositionUpdate(FrameView&, const IntPoint&) { return false; } 114 virtual bool handleWheelEvent(FrameView&, const PlatformWheelEvent&) { return true; }114 virtual ScrollingEventResult handleWheelEvent(FrameView&, const PlatformWheelEvent&) { return ScrollingEventResult::DidNotHandleEvent; } 115 115 116 116 // Create an unparented node. -
trunk/Source/WebCore/page/scrolling/ScrollingCoordinatorTypes.h
r240579 r240787 81 81 }; 82 82 83 enum class ScrollingEventResult { 84 DidNotHandleEvent, 85 DidHandleEvent, 86 SendToMainThread 87 }; 88 83 89 enum class ViewportRectStability { 84 90 Stable, -
trunk/Source/WebCore/page/scrolling/ScrollingStateFrameScrollingNode.cpp
r240677 r240787 65 65 , m_fixedElementsLayoutRelativeToFrame(stateNode.fixedElementsLayoutRelativeToFrame()) 66 66 , m_visualViewportEnabled(stateNode.visualViewportEnabled()) 67 , m_asyncFrameOrOverflowScrollingEnabled(stateNode.asyncFrameOrOverflowScrollingEnabled()) 67 68 { 68 69 if (hasChangedProperty(CounterScrollingLayer)) … … 115 116 setPropertyChangedBit(FixedElementsLayoutRelativeToFrame); 116 117 setPropertyChangedBit(VisualViewportEnabled); 118 setPropertyChangedBit(AsyncFrameOrOverflowScrollingEnabled); 117 119 setPropertyChangedBit(LayoutViewport); 118 120 setPropertyChangedBit(MinLayoutViewportOrigin); … … 293 295 m_visualViewportEnabled = visualViewportEnabled; 294 296 setPropertyChanged(VisualViewportEnabled); 297 } 298 299 void ScrollingStateFrameScrollingNode::setAsyncFrameOrOverflowScrollingEnabled(bool enabled) 300 { 301 if (enabled == m_asyncFrameOrOverflowScrollingEnabled) 302 return; 303 304 m_asyncFrameOrOverflowScrollingEnabled = enabled; 305 setPropertyChanged(AsyncFrameOrOverflowScrollingEnabled); 295 306 } 296 307 -
trunk/Source/WebCore/page/scrolling/ScrollingStateFrameScrollingNode.h
r240677 r240787 65 65 FixedElementsLayoutRelativeToFrame, 66 66 VisualViewportEnabled, 67 AsyncFrameOrOverflowScrollingEnabled, 67 68 LayoutViewport, 68 69 MinLayoutViewportOrigin, … … 128 129 WEBCORE_EXPORT void setHorizontalScrollbarLayer(const LayerRepresentation&); 129 130 131 // These are more like Settings, and should probably move to the Scrolling{State}Tree itself. 130 132 bool fixedElementsLayoutRelativeToFrame() const { return m_fixedElementsLayoutRelativeToFrame; } 131 133 WEBCORE_EXPORT void setFixedElementsLayoutRelativeToFrame(bool); … … 133 135 bool visualViewportEnabled() const { return m_visualViewportEnabled; }; 134 136 WEBCORE_EXPORT void setVisualViewportEnabled(bool); 137 138 bool asyncFrameOrOverflowScrollingEnabled() const { return m_asyncFrameOrOverflowScrollingEnabled; } 139 void setAsyncFrameOrOverflowScrollingEnabled(bool); 135 140 136 141 #if PLATFORM(MAC) … … 177 182 bool m_fixedElementsLayoutRelativeToFrame { false }; 178 183 bool m_visualViewportEnabled { false }; 184 bool m_asyncFrameOrOverflowScrollingEnabled { false }; 179 185 }; 180 186 -
trunk/Source/WebCore/page/scrolling/ScrollingTree.cpp
r240677 r240787 66 66 const EventNames& names = eventNames(); 67 67 IntPoint roundedPosition = roundedIntPoint(position); 68 69 // Event regions are affected by page scale, so no need to map through scale. 68 70 bool isSynchronousDispatchRegion = m_eventTrackingRegions.trackingTypeForPoint(names.wheelEvent, roundedPosition) == TrackingType::Synchronous 69 71 || m_eventTrackingRegions.trackingTypeForPoint(names.mousewheelEvent, roundedPosition) == TrackingType::Synchronous; … … 84 86 } 85 87 86 void ScrollingTree::handleWheelEvent(const PlatformWheelEvent& wheelEvent) 87 { 88 if (m_rootNode) 89 downcast<ScrollingTreeScrollingNode>(*m_rootNode).handleWheelEvent(wheelEvent); 88 ScrollingEventResult ScrollingTree::handleWheelEvent(const PlatformWheelEvent& wheelEvent) 89 { 90 LOG_WITH_STREAM(Scrolling, stream << "ScrollingTree " << this << " handleWheelEvent (async scrolling enabled: " << asyncFrameOrOverflowScrollingEnabled() << ")"); 91 92 if (!asyncFrameOrOverflowScrollingEnabled()) { 93 if (m_rootNode) 94 downcast<ScrollingTreeScrollingNode>(*m_rootNode).handleWheelEvent(wheelEvent); 95 return ScrollingEventResult::DidNotHandleEvent; 96 } 97 98 if (hasLatchedNode()) { 99 auto* node = nodeForID(latchedNode()); 100 if (is<ScrollingTreeScrollingNode>(node)) 101 return downcast<ScrollingTreeScrollingNode>(*node).handleWheelEvent(wheelEvent); 102 } 103 104 if (m_rootNode) { 105 auto& frameScrollingNode = downcast<ScrollingTreeFrameScrollingNode>(*m_rootNode); 106 107 FloatPoint position = wheelEvent.position(); 108 ScrollingTreeNode* node = frameScrollingNode.scrollingNodeForPoint(LayoutPoint(position)); 109 110 LOG_WITH_STREAM(Scrolling, stream << "ScrollingTree::handleWheelEvent found node " << (node ? node->scrollingNodeID() : 0) << " for point " << position << "\n"); 111 112 while (node) { 113 if (is<ScrollingTreeScrollingNode>(*node)) { 114 auto& scrollingNode = downcast<ScrollingTreeScrollingNode>(*node); 115 // FIXME: this needs to consult latching logic. 116 if (scrollingNode.handleWheelEvent(wheelEvent) == ScrollingEventResult::DidHandleEvent) 117 return ScrollingEventResult::DidHandleEvent; 118 } 119 node = node->parent(); 120 } 121 } 122 return ScrollingEventResult::DidNotHandleEvent; 90 123 } 91 124 … … 116 149 bool rootStateNodeChanged = scrollingStateTree->hasNewRootStateNode(); 117 150 118 LOG(Scrolling, "\nScrollingTree ::commitTreeState");151 LOG(Scrolling, "\nScrollingTree %p commitTreeState", this); 119 152 120 153 auto* rootNode = scrollingStateTree->rootStateNode(); … … 123 156 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::EventTrackingRegion) 124 157 || rootNode->hasChangedProperty(ScrollingStateNode::ScrollLayer) 125 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::VisualViewportEnabled))) { 158 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::VisualViewportEnabled) 159 || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::AsyncFrameOrOverflowScrollingEnabled))) { 126 160 LockHolder lock(m_mutex); 127 161 … … 134 168 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::VisualViewportEnabled)) 135 169 m_visualViewportEnabled = scrollingStateTree->rootStateNode()->visualViewportEnabled(); 170 171 if (rootStateNodeChanged || rootNode->hasChangedProperty(ScrollingStateFrameScrollingNode::AsyncFrameOrOverflowScrollingEnabled)) 172 m_asyncFrameOrOverflowScrollingEnabled = scrollingStateTree->rootStateNode()->asyncFrameOrOverflowScrollingEnabled(); 136 173 } 137 174 … … 224 261 } 225 262 263 void ScrollingTree::setAsyncFrameOrOverflowScrollingEnabled(bool enabled) 264 { 265 LockHolder lock(m_mutex); 266 m_asyncFrameOrOverflowScrollingEnabled = enabled; 267 } 268 226 269 void ScrollingTree::setMainFramePinState(bool pinnedToTheLeft, bool pinnedToTheRight, bool pinnedToTheTop, bool pinnedToTheBottom) 227 270 { -
trunk/Source/WebCore/page/scrolling/ScrollingTree.h
r240677 r240787 51 51 WEBCORE_EXPORT virtual ~ScrollingTree(); 52 52 53 enum EventResult {54 DidNotHandleEvent,55 DidHandleEvent,56 SendToMainThread57 };58 59 53 virtual bool isThreadedScrollingTree() const { return false; } 60 54 virtual bool isRemoteScrollingTree() const { return false; } … … 63 57 bool visualViewportEnabled() const { return m_visualViewportEnabled; } 64 58 65 virtual EventResult tryToHandleWheelEvent(const PlatformWheelEvent&) = 0; 59 // This implies that we'll do hit-testing in the scrolling tree. 60 bool asyncFrameOrOverflowScrollingEnabled() const { return m_asyncFrameOrOverflowScrollingEnabled; } 61 void setAsyncFrameOrOverflowScrollingEnabled(bool); 62 63 virtual ScrollingEventResult tryToHandleWheelEvent(const PlatformWheelEvent&) = 0; 66 64 WEBCORE_EXPORT bool shouldHandleWheelEventSynchronously(const PlatformWheelEvent&); 67 65 … … 161 159 void setVisualViewportEnabled(bool b) { m_visualViewportEnabled = b; } 162 160 163 WEBCORE_EXPORT virtual voidhandleWheelEvent(const PlatformWheelEvent&);161 WEBCORE_EXPORT virtual ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&); 164 162 165 163 private: … … 197 195 bool m_isHandlingProgrammaticScroll { false }; 198 196 bool m_visualViewportEnabled { false }; 197 bool m_asyncFrameOrOverflowScrollingEnabled { false }; 199 198 }; 200 199 -
trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameHostingNode.cpp
r240713 r240787 67 67 } 68 68 69 LayoutPoint ScrollingTreeFrameHostingNode::parentToLocalPoint(LayoutPoint point) const 70 { 71 return point - toLayoutSize(parentRelativeScrollableRect().location()); 72 } 73 69 74 void ScrollingTreeFrameHostingNode::dumpProperties(TextStream& ts, ScrollingStateTreeAsTextBehavior behavior) const 70 75 { -
trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameHostingNode.h
r240713 r240787 47 47 const LayoutRect& parentRelativeScrollableRect() const { return m_parentRelativeScrollableRect; } 48 48 49 LayoutPoint parentToLocalPoint(LayoutPoint) const final; 50 49 51 WEBCORE_EXPORT void dumpProperties(WTF::TextStream&, ScrollingStateTreeAsTextBehavior) const override; 50 52 -
trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameScrollingNode.cpp
r240581 r240787 127 127 } 128 128 129 LayoutPoint ScrollingTreeFrameScrollingNode::parentToLocalPoint(LayoutPoint point) const 130 { 131 return point - LayoutSize(0, headerHeight() + topContentInset()); 132 } 133 134 LayoutPoint ScrollingTreeFrameScrollingNode::localToContentsPoint(LayoutPoint point) const 135 { 136 auto scrolledPoint = point + LayoutPoint(scrollPosition()); 137 return scrolledPoint.scaled(1 / frameScaleFactor()); 138 } 139 129 140 void ScrollingTreeFrameScrollingNode::dumpProperties(TextStream& ts, ScrollingStateTreeAsTextBehavior behavior) const 130 141 { -
trunk/Source/WebCore/page/scrolling/ScrollingTreeFrameScrollingNode.h
r239689 r240787 45 45 void updateLayersAfterAncestorChange(const ScrollingTreeNode& /*changedNode*/, const FloatRect& /*fixedPositionRect*/, const FloatSize& /*cumulativeDelta*/) override { } 46 46 47 voidhandleWheelEvent(const PlatformWheelEvent&) override = 0;47 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) override = 0; 48 48 void setScrollPosition(const FloatPoint&) override; 49 49 void setScrollPositionWithoutContentEdgeConstraints(const FloatPoint&) override = 0; … … 81 81 82 82 private: 83 WEBCORE_EXPORT LayoutPoint parentToLocalPoint(LayoutPoint) const final; 84 WEBCORE_EXPORT LayoutPoint localToContentsPoint(LayoutPoint) const final; 85 83 86 WEBCORE_EXPORT void dumpProperties(WTF::TextStream&, ScrollingStateTreeAsTextBehavior) const override; 84 87 -
trunk/Source/WebCore/page/scrolling/ScrollingTreeNode.cpp
r225480 r240787 99 99 } 100 100 101 ScrollingTreeScrollingNode* ScrollingTreeNode::scrollingNodeForPoint(LayoutPoint parentPoint) const 102 { 103 LayoutPoint localPoint = parentToLocalPoint(parentPoint); 104 LayoutPoint contentsPoint = localToContentsPoint(localPoint); 105 106 if (children()) { 107 for (auto iterator = children()->rbegin(), end = children()->rend(); iterator != end; iterator++) { 108 if (auto node = (**iterator).scrollingNodeForPoint(contentsPoint)) 109 return node; 110 } 111 } 112 113 return nullptr; 114 } 115 101 116 } // namespace WebCore 102 117 -
trunk/Source/WebCore/page/scrolling/ScrollingTreeNode.h
r240579 r240787 41 41 class ScrollingStateScrollingNode; 42 42 class ScrollingTreeFrameScrollingNode; 43 class ScrollingTreeScrollingNode; 43 44 44 45 class ScrollingTreeNode : public RefCounted<ScrollingTreeNode> { … … 65 66 66 67 Vector<RefPtr<ScrollingTreeNode>>* children() { return m_children.get(); } 68 const Vector<RefPtr<ScrollingTreeNode>>* children() const { return m_children.get(); } 67 69 68 70 void appendChild(Ref<ScrollingTreeNode>&&); … … 72 74 73 75 WEBCORE_EXPORT void dump(WTF::TextStream&, ScrollingStateTreeAsTextBehavior) const; 76 77 virtual LayoutPoint parentToLocalPoint(LayoutPoint point) const { return point; } 78 virtual LayoutPoint localToContentsPoint(LayoutPoint point) const { return point; } 79 virtual ScrollingTreeScrollingNode* scrollingNodeForPoint(LayoutPoint) const; 74 80 75 81 protected: -
trunk/Source/WebCore/page/scrolling/ScrollingTreeScrollingNode.cpp
r240252 r240787 29 29 #if ENABLE(ASYNC_SCROLLING) 30 30 31 #include "Logging.h" 31 32 #include "ScrollingStateScrollingNode.h" 32 33 #include "ScrollingStateTree.h" … … 132 133 FloatPoint contentSizePoint(totalContentsSize()); 133 134 return FloatPoint(contentSizePoint - scrollableAreaSize()).expandedTo(FloatPoint()); 135 } 136 137 bool ScrollingTreeScrollingNode::scrollLimitReached(const PlatformWheelEvent& wheelEvent) const 138 { 139 FloatPoint oldScrollPosition = scrollPosition(); 140 FloatPoint newScrollPosition = oldScrollPosition + FloatSize(wheelEvent.deltaX(), -wheelEvent.deltaY()); 141 newScrollPosition = newScrollPosition.constrainedBetween(minimumScrollPosition(), maximumScrollPosition()); 142 return newScrollPosition == oldScrollPosition; 143 } 144 145 LayoutPoint ScrollingTreeScrollingNode::parentToLocalPoint(LayoutPoint point) const 146 { 147 return point - toLayoutSize(parentRelativeScrollableRect().location()); 148 } 149 150 LayoutPoint ScrollingTreeScrollingNode::localToContentsPoint(LayoutPoint point) const 151 { 152 return point + LayoutPoint(scrollPosition()); 153 } 154 155 ScrollingTreeScrollingNode* ScrollingTreeScrollingNode::scrollingNodeForPoint(LayoutPoint parentPoint) const 156 { 157 if (auto* node = ScrollingTreeNode::scrollingNodeForPoint(parentPoint)) 158 return node; 159 160 if (parentRelativeScrollableRect().contains(parentPoint)) 161 return const_cast<ScrollingTreeScrollingNode*>(this); 162 163 return nullptr; 134 164 } 135 165 -
trunk/Source/WebCore/page/scrolling/ScrollingTreeScrollingNode.h
r239689 r240787 56 56 WEBCORE_EXPORT void updateLayersAfterAncestorChange(const ScrollingTreeNode& changedNode, const FloatRect& fixedPositionRect, const FloatSize& cumulativeDelta) override; 57 57 58 virtual voidhandleWheelEvent(const PlatformWheelEvent&) = 0;58 virtual ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) = 0; 59 59 WEBCORE_EXPORT virtual void setScrollPosition(const FloatPoint&); 60 60 WEBCORE_EXPORT virtual void setScrollPositionWithoutContentEdgeConstraints(const FloatPoint&); … … 79 79 80 80 bool useDarkAppearanceForScrollbars() const { return m_scrollableAreaParameters.useDarkAppearanceForScrollbars; } 81 82 bool scrollLimitReached(const PlatformWheelEvent&) const; 83 WEBCORE_EXPORT ScrollingTreeScrollingNode* scrollingNodeForPoint(LayoutPoint) const override; 81 84 82 85 protected: … … 107 110 bool canHaveScrollbars() const { return m_scrollableAreaParameters.horizontalScrollbarMode != ScrollbarAlwaysOff || m_scrollableAreaParameters.verticalScrollbarMode != ScrollbarAlwaysOff; } 108 111 112 WEBCORE_EXPORT LayoutPoint parentToLocalPoint(LayoutPoint) const override; 113 WEBCORE_EXPORT LayoutPoint localToContentsPoint(LayoutPoint) const override; 114 109 115 WEBCORE_EXPORT void dumpProperties(WTF::TextStream&, ScrollingStateTreeAsTextBehavior) const override; 110 116 -
trunk/Source/WebCore/page/scrolling/ThreadedScrollingTree.cpp
r239427 r240787 49 49 } 50 50 51 Scrolling Tree::EventResult ThreadedScrollingTree::tryToHandleWheelEvent(const PlatformWheelEvent& wheelEvent)51 ScrollingEventResult ThreadedScrollingTree::tryToHandleWheelEvent(const PlatformWheelEvent& wheelEvent) 52 52 { 53 53 if (shouldHandleWheelEventSynchronously(wheelEvent)) 54 return S endToMainThread;54 return ScrollingEventResult::SendToMainThread; 55 55 56 56 if (willWheelEventStartSwipeGesture(wheelEvent)) 57 return DidNotHandleEvent;57 return ScrollingEventResult::DidNotHandleEvent; 58 58 59 59 RefPtr<ThreadedScrollingTree> protectedThis(this); … … 62 62 }); 63 63 64 return DidHandleEvent;64 return ScrollingEventResult::DidHandleEvent; 65 65 } 66 66 67 voidThreadedScrollingTree::handleWheelEvent(const PlatformWheelEvent& wheelEvent)67 ScrollingEventResult ThreadedScrollingTree::handleWheelEvent(const PlatformWheelEvent& wheelEvent) 68 68 { 69 69 ASSERT(ScrollingThread::isCurrentThread()); 70 ScrollingTree::handleWheelEvent(wheelEvent);70 return ScrollingTree::handleWheelEvent(wheelEvent); 71 71 } 72 72 -
trunk/Source/WebCore/page/scrolling/ThreadedScrollingTree.h
r239427 r240787 46 46 void commitTreeState(std::unique_ptr<ScrollingStateTree>) override; 47 47 48 voidhandleWheelEvent(const PlatformWheelEvent&) override;48 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) override; 49 49 50 50 // Can be called from any thread. Will try to handle the wheel event on the scrolling thread. 51 51 // Returns true if the wheel event can be handled on the scrolling thread and false if the 52 52 // event must be sent again to the WebCore event handler. 53 EventResult tryToHandleWheelEvent(const PlatformWheelEvent&) override;53 ScrollingEventResult tryToHandleWheelEvent(const PlatformWheelEvent&) override; 54 54 55 55 void invalidate() override; -
trunk/Source/WebCore/page/scrolling/ios/ScrollingCoordinatorIOS.h
r237266 r240787 48 48 49 49 // Handle the wheel event on the scrolling thread. Returns whether the event was handled or not. 50 bool handleWheelEvent(FrameView&, const PlatformWheelEvent&) override { return false; }50 ScrollingEventResult handleWheelEvent(FrameView&, const PlatformWheelEvent&) override { return ScrollingEventResult::DidNotHandleEvent; } 51 51 52 52 private: -
trunk/Source/WebCore/page/scrolling/ios/ScrollingTreeFrameScrollingNodeIOS.h
r240162 r240787 47 47 void commitStateAfterChildren(const ScrollingStateNode&) override; 48 48 49 void handleWheelEvent(const PlatformWheelEvent&) override { }49 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) override; 50 50 51 51 FloatPoint scrollPosition() const override; -
trunk/Source/WebCore/page/scrolling/ios/ScrollingTreeFrameScrollingNodeIOS.mm
r240162 r240787 97 97 } 98 98 99 ScrollingEventResult ScrollingTreeFrameScrollingNodeIOS::handleWheelEvent(const PlatformWheelEvent&) 100 { 101 return ScrollingEventResult::DidNotHandleEvent; 102 } 103 99 104 FloatPoint ScrollingTreeFrameScrollingNodeIOS::scrollPosition() const 100 105 { -
trunk/Source/WebCore/page/scrolling/ios/ScrollingTreeIOS.h
r239427 r240787 46 46 47 47 // No wheel events on iOS 48 void handleWheelEvent(const PlatformWheelEvent&) final {}49 EventResult tryToHandleWheelEvent(const PlatformWheelEvent&) final { returnDidNotHandleEvent; }48 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) final { return ScrollingEventResult::DidNotHandleEvent; } 49 ScrollingEventResult tryToHandleWheelEvent(const PlatformWheelEvent&) final { return ScrollingEventResult::DidNotHandleEvent; } 50 50 51 51 void invalidate() final; -
trunk/Source/WebCore/page/scrolling/mac/ScrollingCoordinatorMac.h
r208179 r240787 48 48 49 49 // Handle the wheel event on the scrolling thread. Returns whether the event was handled or not. 50 boolhandleWheelEvent(FrameView&, const PlatformWheelEvent&) override;50 ScrollingEventResult handleWheelEvent(FrameView&, const PlatformWheelEvent&) override; 51 51 52 52 private: -
trunk/Source/WebCore/page/scrolling/mac/ScrollingCoordinatorMac.mm
r230211 r240787 83 83 } 84 84 85 boolScrollingCoordinatorMac::handleWheelEvent(FrameView&, const PlatformWheelEvent& wheelEvent)85 ScrollingEventResult ScrollingCoordinatorMac::handleWheelEvent(FrameView&, const PlatformWheelEvent& wheelEvent) 86 86 { 87 87 ASSERT(isMainThread()); … … 89 89 90 90 if (scrollingTree()->willWheelEventStartSwipeGesture(wheelEvent)) 91 return false;91 return ScrollingEventResult::DidNotHandleEvent; 92 92 93 93 RefPtr<ThreadedScrollingTree> threadedScrollingTree = downcast<ThreadedScrollingTree>(scrollingTree()); … … 95 95 threadedScrollingTree->handleWheelEvent(wheelEvent); 96 96 }); 97 return true;97 return ScrollingEventResult::DidHandleEvent; 98 98 } 99 99 -
trunk/Source/WebCore/page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.h
r239689 r240787 52 52 void commitStateAfterChildren(const ScrollingStateNode&) override; 53 53 54 voidhandleWheelEvent(const PlatformWheelEvent&) override;54 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) override; 55 55 56 56 // ScrollController member functions. -
trunk/Source/WebCore/page/scrolling/mac/ScrollingTreeFrameScrollingNodeMac.mm
r240698 r240787 185 185 } 186 186 187 voidScrollingTreeFrameScrollingNodeMac::handleWheelEvent(const PlatformWheelEvent& wheelEvent)187 ScrollingEventResult ScrollingTreeFrameScrollingNodeMac::handleWheelEvent(const PlatformWheelEvent& wheelEvent) 188 188 { 189 189 if (!canHaveScrollbars()) 190 return ;190 return ScrollingEventResult::DidNotHandleEvent; 191 191 192 192 if (wheelEvent.momentumPhase() == PlatformWheelEventPhaseBegan) { … … 216 216 scrollingTree().setOrClearLatchedNode(wheelEvent, scrollingNodeID()); 217 217 scrollingTree().handleWheelEventPhase(wheelEvent.phase()); 218 219 // FIXME: This needs to return whether the event was handled. 220 return ScrollingEventResult::DidHandleEvent; 218 221 } 219 222 -
trunk/Source/WebCore/page/scrolling/mac/ScrollingTreeOverflowScrollingNodeMac.h
r240105 r240787 52 52 void updateLayersAfterAncestorChange(const WebCore::ScrollingTreeNode& changedNode, const WebCore::FloatRect& fixedPositionRect, const WebCore::FloatSize& cumulativeDelta) override; 53 53 54 void handleWheelEvent(const WebCore::PlatformWheelEvent&) override {}54 ScrollingEventResult handleWheelEvent(const WebCore::PlatformWheelEvent&) override { return ScrollingEventResult::DidNotHandleEvent; } 55 55 }; 56 56 -
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingCoordinatorNicosia.cpp
r239667 r240787 68 68 } 69 69 70 boolScrollingCoordinatorNicosia::handleWheelEvent(FrameView&, const PlatformWheelEvent&)70 ScrollingEventResult ScrollingCoordinatorNicosia::handleWheelEvent(FrameView&, const PlatformWheelEvent&) 71 71 { 72 return false;72 return ScrollingEventResult::DidNotHandleEvent; 73 73 } 74 74 -
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingCoordinatorNicosia.h
r239667 r240787 45 45 void commitTreeStateIfNeeded() override; 46 46 47 boolhandleWheelEvent(FrameView&, const PlatformWheelEvent&) override;47 ScrollingEventResult handleWheelEvent(FrameView&, const PlatformWheelEvent&) override; 48 48 49 49 private: -
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeFrameScrollingNodeNicosia.cpp
r239667 r240787 45 45 ScrollingTreeFrameScrollingNodeNicosia::~ScrollingTreeFrameScrollingNodeNicosia() = default; 46 46 47 voidScrollingTreeFrameScrollingNodeNicosia::handleWheelEvent(const PlatformWheelEvent&)47 ScrollingEventResult ScrollingTreeFrameScrollingNodeNicosia::handleWheelEvent(const PlatformWheelEvent&) 48 48 { 49 return ScrollingEventResult::DidNotHandleEvent; 49 50 } 50 51 -
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeFrameScrollingNodeNicosia.h
r239667 r240787 42 42 ScrollingTreeFrameScrollingNodeNicosia(ScrollingTree&, ScrollingNodeType, ScrollingNodeID); 43 43 44 voidhandleWheelEvent(const PlatformWheelEvent&) override;44 ScrollingEventResult handleWheelEvent(const PlatformWheelEvent&) override; 45 45 46 46 FloatPoint scrollPosition() const override; -
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeNicosia.cpp
r239667 r240787 32 32 33 33 #include "ScrollingTreeFixedNode.h" 34 #include "ScrollingTreeFrameHostingNode.h" 34 35 #include "ScrollingTreeFrameScrollingNodeNicosia.h" 35 36 #include "ScrollingTreeStickyNode.h" … … 53 54 case ScrollingNodeType::Subframe: 54 55 return ScrollingTreeFrameScrollingNodeNicosia::create(*this, nodeType, nodeID); 56 case ScrollingNodeType::FrameHosting: 57 return ScrollingTreeFrameHostingNode::create(*this, nodeID); 55 58 case ScrollingNodeType::Overflow: 56 59 // Should not be reached -- caught by ASSERT_NOT_REACHED() below. -
trunk/Source/WebKit/ChangeLog
r240785 r240787 1 2019-01-30 Simon Fraser <simon.fraser@apple.com> 2 3 [Mac] Implement basic hit testing in the scrolling tree 4 https://bugs.webkit.org/show_bug.cgi?id=172917 5 <rdar://problem/34215516> 6 7 Reviewed by Antti Koivisto. 8 9 Changed return types, "using namespace WebCore" in ScrollingTreeFrameScrollingNodeRemoteMac.cpp. 10 11 * Shared/RemoteLayerTree/RemoteScrollingCoordinatorTransaction.cpp: 12 (ArgumentCoder<ScrollingStateFrameScrollingNode>::encode): 13 * UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.h: 14 * UIProcess/RemoteLayerTree/mac/ScrollerPairMac.h: 15 * UIProcess/RemoteLayerTree/mac/ScrollerPairMac.mm: 16 (WebKit::ScrollerPairMac::handleWheelEvent): 17 (WebKit::ScrollerPairMac::handleMouseEvent): 18 * UIProcess/RemoteLayerTree/mac/ScrollingTreeFrameScrollingNodeRemoteMac.cpp: 19 (WebKit::ScrollingTreeFrameScrollingNodeRemoteMac::handleWheelEvent): 20 (WebKit::ScrollingTreeFrameScrollingNodeRemoteMac::handleMouseEvent): 21 * UIProcess/RemoteLayerTree/mac/ScrollingTreeFrameScrollingNodeRemoteMac.h: 22 1 23 2019-01-31 Michael Catanzaro <mcatanzaro@igalia.com> 2 24 -
trunk/Source/WebKit/Shared/RemoteLayerTree/RemoteScrollingCoordinatorTransaction.cpp
r240713 r240787 159 159 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::FixedElementsLayoutRelativeToFrame, fixedElementsLayoutRelativeToFrame) 160 160 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::VisualViewportEnabled, visualViewportEnabled) 161 // AsyncFrameOrOverflowScrollingEnabled is not relevant for UI-side compositing. 161 162 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::LayoutViewport, layoutViewport) 162 163 SCROLLING_NODE_ENCODE(ScrollingStateFrameScrollingNode::MinLayoutViewportOrigin, minLayoutViewportOrigin) -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteScrollingCoordinatorProxy.cpp
r240579 r240787 152 152 bool RemoteScrollingCoordinatorProxy::handleWheelEvent(const PlatformWheelEvent& event) 153 153 { 154 Scrolling Tree::EventResult result = m_scrollingTree->tryToHandleWheelEvent(event);155 return result == Scrolling Tree::DidHandleEvent; // FIXME: handle other values.154 ScrollingEventResult result = m_scrollingTree->tryToHandleWheelEvent(event); 155 return result == ScrollingEventResult::DidHandleEvent; // FIXME: handle other values. 156 156 } 157 157 -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteScrollingTree.cpp
r240435 r240787 60 60 } 61 61 62 Scrolling Tree::EventResult RemoteScrollingTree::tryToHandleWheelEvent(const PlatformWheelEvent& wheelEvent)62 ScrollingEventResult RemoteScrollingTree::tryToHandleWheelEvent(const PlatformWheelEvent& wheelEvent) 63 63 { 64 64 if (shouldHandleWheelEventSynchronously(wheelEvent)) 65 return S endToMainThread;65 return ScrollingEventResult::SendToMainThread; 66 66 67 67 if (willWheelEventStartSwipeGesture(wheelEvent)) 68 return DidNotHandleEvent;68 return ScrollingEventResult::DidNotHandleEvent; 69 69 70 70 handleWheelEvent(wheelEvent); 71 return DidHandleEvent;71 return ScrollingEventResult::DidHandleEvent; 72 72 } 73 73 -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/RemoteScrollingTree.h
r239689 r240787 46 46 47 47 bool isRemoteScrollingTree() const override { return true; } 48 EventResult tryToHandleWheelEvent(const WebCore::PlatformWheelEvent&) override;48 WebCore::ScrollingEventResult tryToHandleWheelEvent(const WebCore::PlatformWheelEvent&) override; 49 49 50 50 void handleMouseEvent(const WebCore::PlatformMouseEvent&); -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/ios/ScrollingTreeOverflowScrollingNodeIOS.h
r237266 r240787 54 54 void updateLayersAfterAncestorChange(const WebCore::ScrollingTreeNode& changedNode, const WebCore::FloatRect& fixedPositionRect, const WebCore::FloatSize& cumulativeDelta) override; 55 55 56 void handleWheelEvent(const WebCore::PlatformWheelEvent&) override {}56 WebCore::ScrollingEventResult handleWheelEvent(const WebCore::PlatformWheelEvent&) override { return ScrollingEventResult::DidNotHandleEvent; } 57 57 58 58 std::unique_ptr<ScrollingTreeScrollingNodeDelegateIOS> m_scrollingNodeDelegate; -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/mac/ScrollerPairMac.h
r239689 r240787 53 53 ScrollerMac& horizontalScroller() { return m_horizontalScroller; } 54 54 55 voidhandleWheelEvent(const WebCore::PlatformWheelEvent&);56 voidhandleMouseEvent(const WebCore::PlatformMouseEvent&);55 bool handleWheelEvent(const WebCore::PlatformWheelEvent&); 56 bool handleMouseEvent(const WebCore::PlatformMouseEvent&); 57 57 58 58 void updateValues(); -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/mac/ScrollerPairMac.mm
r239689 r240787 142 142 } 143 143 144 voidScrollerPairMac::handleWheelEvent(const WebCore::PlatformWheelEvent& event)144 bool ScrollerPairMac::handleWheelEvent(const WebCore::PlatformWheelEvent& event) 145 145 { 146 146 switch (event.phase()) { … … 159 159 break; 160 160 } 161 } 162 163 void ScrollerPairMac::handleMouseEvent(const WebCore::PlatformMouseEvent& event) 161 // FIXME: this needs to return whether the event was handled. 162 return true; 163 } 164 165 bool ScrollerPairMac::handleMouseEvent(const WebCore::PlatformMouseEvent& event) 164 166 { 165 167 if (event.type() != WebCore::PlatformEvent::MouseMoved) 166 return ;168 return false; 167 169 168 170 m_lastKnownMousePosition = event.position(); 169 171 [m_scrollerImpPair mouseMovedInContentArea]; 172 // FIXME: this needs to return whether the event was handled. 173 return true; 170 174 } 171 175 -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/mac/ScrollingTreeFrameScrollingNodeRemoteMac.cpp
r239689 r240787 33 33 34 34 namespace WebKit { 35 using namespace WebCore; 35 36 36 ScrollingTreeFrameScrollingNodeRemoteMac::ScrollingTreeFrameScrollingNodeRemoteMac( WebCore::ScrollingTree& tree, WebCore::ScrollingNodeType nodeType, WebCore::ScrollingNodeID nodeID)37 : WebCore::ScrollingTreeFrameScrollingNodeMac(tree, nodeType, nodeID)37 ScrollingTreeFrameScrollingNodeRemoteMac::ScrollingTreeFrameScrollingNodeRemoteMac(ScrollingTree& tree, ScrollingNodeType nodeType, ScrollingNodeID nodeID) 38 : ScrollingTreeFrameScrollingNodeMac(tree, nodeType, nodeID) 38 39 , m_scrollerPair(std::make_unique<ScrollerPairMac>(*this)) 39 40 { … … 44 45 } 45 46 46 Ref<ScrollingTreeFrameScrollingNodeRemoteMac> ScrollingTreeFrameScrollingNodeRemoteMac::create( WebCore::ScrollingTree& tree, WebCore::ScrollingNodeType nodeType, WebCore::ScrollingNodeID nodeID)47 Ref<ScrollingTreeFrameScrollingNodeRemoteMac> ScrollingTreeFrameScrollingNodeRemoteMac::create(ScrollingTree& tree, ScrollingNodeType nodeType, ScrollingNodeID nodeID) 47 48 { 48 49 return adoptRef(*new ScrollingTreeFrameScrollingNodeRemoteMac(tree, nodeType, nodeID)); 49 50 } 50 51 51 void ScrollingTreeFrameScrollingNodeRemoteMac::commitStateBeforeChildren(const WebCore::ScrollingStateNode& stateNode)52 void ScrollingTreeFrameScrollingNodeRemoteMac::commitStateBeforeChildren(const ScrollingStateNode& stateNode) 52 53 { 53 WebCore::ScrollingTreeFrameScrollingNodeMac::commitStateBeforeChildren(stateNode);54 const auto& scrollingStateNode = downcast< WebCore::ScrollingStateFrameScrollingNode>(stateNode);54 ScrollingTreeFrameScrollingNodeMac::commitStateBeforeChildren(stateNode); 55 const auto& scrollingStateNode = downcast<ScrollingStateFrameScrollingNode>(stateNode); 55 56 56 if (scrollingStateNode.hasChangedProperty( WebCore::ScrollingStateFrameScrollingNode::VerticalScrollbarLayer))57 if (scrollingStateNode.hasChangedProperty(ScrollingStateFrameScrollingNode::VerticalScrollbarLayer)) 57 58 m_scrollerPair->verticalScroller().setHostLayer(scrollingStateNode.verticalScrollbarLayer()); 58 59 59 if (scrollingStateNode.hasChangedProperty( WebCore::ScrollingStateFrameScrollingNode::HorizontalScrollbarLayer))60 if (scrollingStateNode.hasChangedProperty(ScrollingStateFrameScrollingNode::HorizontalScrollbarLayer)) 60 61 m_scrollerPair->horizontalScroller().setHostLayer(scrollingStateNode.horizontalScrollbarLayer()); 61 62 … … 63 64 } 64 65 65 void ScrollingTreeFrameScrollingNodeRemoteMac::setScrollLayerPosition(const WebCore::FloatPoint& position, const WebCore::FloatRect& layoutViewport)66 void ScrollingTreeFrameScrollingNodeRemoteMac::setScrollLayerPosition(const FloatPoint& position, const FloatRect& layoutViewport) 66 67 { 67 68 ScrollingTreeFrameScrollingNodeMac::setScrollLayerPosition(position, layoutViewport); … … 70 71 } 71 72 72 void ScrollingTreeFrameScrollingNodeRemoteMac::handleWheelEvent(const WebCore::PlatformWheelEvent& wheelEvent)73 ScrollingEventResult ScrollingTreeFrameScrollingNodeRemoteMac::handleWheelEvent(const PlatformWheelEvent& wheelEvent) 73 74 { 74 75 ScrollingTreeFrameScrollingNodeMac::handleWheelEvent(wheelEvent); 75 76 76 m_scrollerPair->handleWheelEvent(wheelEvent);77 return m_scrollerPair->handleWheelEvent(wheelEvent) ? ScrollingEventResult::DidHandleEvent : ScrollingEventResult::DidNotHandleEvent; 77 78 } 78 79 79 void ScrollingTreeFrameScrollingNodeRemoteMac::handleMouseEvent(const WebCore::PlatformMouseEvent& mouseEvent)80 bool ScrollingTreeFrameScrollingNodeRemoteMac::handleMouseEvent(const PlatformMouseEvent& mouseEvent) 80 81 { 81 m_scrollerPair->handleMouseEvent(mouseEvent);82 return m_scrollerPair->handleMouseEvent(mouseEvent); 82 83 } 83 84 -
trunk/Source/WebKit/UIProcess/RemoteLayerTree/mac/ScrollingTreeFrameScrollingNodeRemoteMac.h
r239689 r240787 39 39 virtual ~ScrollingTreeFrameScrollingNodeRemoteMac(); 40 40 41 voidhandleMouseEvent(const WebCore::PlatformMouseEvent&);41 bool handleMouseEvent(const WebCore::PlatformMouseEvent&); 42 42 43 43 private: … … 45 45 46 46 void commitStateBeforeChildren(const WebCore::ScrollingStateNode&) override; 47 voidhandleWheelEvent(const WebCore::PlatformWheelEvent&) override;47 WebCore::ScrollingEventResult handleWheelEvent(const WebCore::PlatformWheelEvent&) override; 48 48 void setScrollLayerPosition(const WebCore::FloatPoint& position, const WebCore::FloatRect& layoutViewport) override; 49 49 -
trunk/Source/WebKit/WebProcess/WebPage/EventDispatcher.cpp
r235236 r240787 123 123 scrollingTree->setCanRubberBandState(canRubberBandAtLeft, canRubberBandAtRight, canRubberBandAtTop, canRubberBandAtBottom); 124 124 125 Scrolling Tree::EventResult result = scrollingTree->tryToHandleWheelEvent(platformWheelEvent);126 127 if (result == Scrolling Tree::DidHandleEvent || result == ScrollingTree::DidNotHandleEvent) {128 sendDidReceiveEvent(pageID, wheelEvent, result == Scrolling Tree::DidHandleEvent);125 ScrollingEventResult result = scrollingTree->tryToHandleWheelEvent(platformWheelEvent); 126 127 if (result == ScrollingEventResult::DidHandleEvent || result == ScrollingEventResult::DidNotHandleEvent) { 128 sendDidReceiveEvent(pageID, wheelEvent, result == ScrollingEventResult::DidHandleEvent); 129 129 return; 130 130 }
Note:
See TracChangeset
for help on using the changeset viewer.