Home | History | Annotate | Download | only in platform

Lines Matching refs:scrollAnimator

35 #include "core/platform/ScrollAnimator.h"
87 ScrollAnimator* ScrollableArea::scrollAnimator() const
90 m_scrollAnimator = ScrollAnimator::create(const_cast<ScrollableArea*>(this));
135 return scrollAnimator()->scroll(orientation, granularity, step, multiplier);
140 scrollAnimator()->scrollToOffsetWithoutAnimation(offset);
146 scrollToOffsetWithoutAnimation(FloatPoint(offset, scrollAnimator()->currentPosition().y()));
148 scrollToOffsetWithoutAnimation(FloatPoint(scrollAnimator()->currentPosition().x(), offset));
154 scrollAnimator()->setCurrentPosition(position);
189 scrollAnimator()->notifyContentAreaScrolled(scrollPosition() - oldPosition);
194 return scrollAnimator()->handleWheelEvent(wheelEvent);
216 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
217 scrollAnimator->willStartLiveResize();
225 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
226 scrollAnimator->willEndLiveResize();
231 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
232 scrollAnimator->contentAreaWillPaint();
237 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
238 scrollAnimator->mouseEnteredContentArea();
243 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
244 scrollAnimator->mouseEnteredContentArea();
249 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
250 scrollAnimator->mouseMovedInContentArea();
255 scrollAnimator()->mouseEnteredScrollbar(scrollbar);
260 scrollAnimator()->mouseExitedScrollbar(scrollbar);
265 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
266 scrollAnimator->contentAreaDidShow();
271 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
272 scrollAnimator->contentAreaDidHide();
277 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
278 scrollAnimator->finishCurrentScrollAnimations();
283 scrollAnimator()->didAddVerticalScrollbar(scrollbar);
291 scrollAnimator()->willRemoveVerticalScrollbar(scrollbar);
296 scrollAnimator()->didAddHorizontalScrollbar(scrollbar);
304 scrollAnimator()->willRemoveHorizontalScrollbar(scrollbar);
309 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
310 scrollAnimator->contentsResized();
378 if (ScrollAnimator* scrollAnimator = existingScrollAnimator())
379 scrollAnimator->serviceScrollAnimations();