Home | History | Annotate | Download | only in scroll

Lines Matching refs:scrollbar

100 PassRefPtr<Scrollbar> ScrollView::createScrollbar(ScrollbarOrientation orientation)
102 return Scrollbar::create(this, orientation, RegularScrollbar);
190 if (Scrollbar* verticalBar = verticalScrollbar())
192 if (Scrollbar* horizontalBar = horizontalScrollbar())
245 Scrollbar* scrollbar = ((orientation == HorizontalScrollbar) ? m_horizontalScrollbar : m_verticalScrollbar).get();
248 if (!scrollbar) {
254 return scrollbar->totalSize() - scrollbar->visibleSize();
372 // If we ever turn one scrollbar off, always turn the other one off too.
373 // Never ever try to both gain/lose a scrollbar in the same pass.
688 Scrollbar* ScrollView::scrollbarAtPoint(const IntPoint& windowPoint)
719 static void positionScrollbarLayer(GraphicsLayer* graphicsLayer, Scrollbar* scrollbar)
721 if (!graphicsLayer || !scrollbar)
724 IntRect scrollbarRect = scrollbar->frameRect();
829 void ScrollView::paintScrollbar(GraphicsContext* context, Scrollbar* bar, const IntRect& rect)
1019 IntRect ScrollView::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntRect& localRect) const
1023 newRect.moveBy(scrollbar->location());
1027 IntRect ScrollView::convertFromContainingViewToScrollbar(const Scrollbar* scrollbar, const IntRect& parentRect) const
1031 newRect.moveBy(-scrollbar->location());
1036 IntPoint ScrollView::convertFromScrollbarToContainingView(const Scrollbar* scrollbar, const IntPoint& localPoint) const
1040 newPoint.moveBy(scrollbar->location());
1044 IntPoint ScrollView::convertFromContainingViewToScrollbar(const Scrollbar* scrollbar, const IntPoint& parentPoint) const
1048 newPoint.moveBy(-scrollbar->location());