Searched refs:scrollAnimator (Results 1 – 10 of 10) sorted by relevance
90 ScrollAnimator* ScrollableArea::scrollAnimator() const in scrollAnimator() function in WebCore::ScrollableArea143 return scrollAnimator()->scroll(orientation, granularity, step, delta); in scroll()148 scrollAnimator()->scrollToOffsetWithoutAnimation(offset); in scrollToOffsetWithoutAnimation()154 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y())); in scrollToOffsetWithoutAnimation()156 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset)); in scrollToOffsetWithoutAnimation()162 scrollAnimator()->setCurrentPosition(position); in notifyScrollPositionChanged()197 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition); in scrollPositionChanged()220 return scrollAnimator()->handleWheelEvent(wheelEvent); in handleWheelEvent()239 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in willStartLiveResize() local240 scrollAnimator->willStartLiveResize(); in willStartLiveResize()[all …]
292 FloatPoint currentPosition = m_scrollableArea->scrollAnimator()->currentPosition(); in moveThumb()546 return m_scrollableArea->scrollAnimator()->shouldScrollbarParticipateInHitTesting(this); in shouldParticipateInHitTesting()
109 ScrollAnimator* scrollAnimator() const;
93 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator;108 - (id)initWithScrollAnimator:(WebCore::ScrollAnimatorMac*)scrollAnimator114 _animator = scrollAnimator;267 _scrollableArea->scrollAnimator()->contentAreaWillPaint();284 static_cast<ScrollAnimatorMac*>(_scrollableArea->scrollAnimator())->updateScrollerStyle();419 - (ScrollAnimatorMac*)scrollAnimator421 return static_cast<ScrollAnimatorMac*>(_scrollbar->scrollableArea()->scrollAnimator());448 bool mustAnimate = [self scrollAnimator]->haveScrolledSincePageLoad();450 if ([self scrollAnimator]->scrollbarPaintTimerIsActive() && !mustAnimate)454 [self scrollAnimator]->startScrollbarPaintTimer();[all …]
418 m_scrollbarGroup->scrollAnimator()->contentsResized(); in reportGeometry()702 m_scrollbarGroup->scrollAnimator()->mouseMovedInContentArea(); in handleMouseEvent()704 m_scrollbarGroup->scrollAnimator()->mouseEnteredContentArea(); in handleMouseEvent()706 m_scrollbarGroup->scrollAnimator()->mouseExitedContentArea(); in handleMouseEvent()
263 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in prepareForDetach() local264 scrollAnimator->cancelAnimations(); in prepareForDetach()1705 if (ScrollAnimator* scrollAnimator = existingScrollAnimator()) in isRubberBandInProgress() local1706 return scrollAnimator->isRubberBandInProgress(); in isRubberBandInProgress()
926 frameView->scrollAnimator()->handleWheelEventPhase(phase); in handleWheelEventPhase()
2051 if (ScrollAnimator* scrollAnimator = view->existingScrollAnimator()) in handleGestureShowPress() local2052 scrollAnimator->cancelAnimations(); in handleGestureShowPress()2058 ScrollAnimator* animator = sa->scrollAnimator(); in handleGestureShowPress()
94 … scrollAnimator()->setCurrentPosition(FloatPoint(m_scrollOffset.width(), m_scrollOffset.height())); in RenderLayerScrollableArea()
1423 ScrollView.prototype.scrollAnimator = function() { method in ScrollView