Home | History | Annotate | Download | only in win

Lines Matching full:scrollbar

205         m_scrollbar = Scrollbar::createNativeScrollbar(this, VerticalScrollbar, SmallScrollbar);
384 // We need room for a scrollbar
461 int WebPopupMenuProxyWin::scrollPosition(Scrollbar*) const
505 void WebPopupMenuProxyWin::invalidateScrollbarRect(Scrollbar* scrollbar, const IntRect& rect)
508 scrollRect.move(scrollbar->x(), scrollbar->y());
524 if (!scrollbar())
528 scrollbar()->setFrameRect(IntRect(size.width() - scrollbar()->width(), 0, scrollbar()->width(), size.height()));
531 scrollbar()->setEnabled(visibleItems < m_items.size());
532 scrollbar()->setSteps(1, max(1, visibleItems - 1));
533 scrollbar()->setProportion(visibleItems, m_items.size());
633 if (scrollbar()) {
634 IntRect scrollBarRect = scrollbar()->frameRect();
639 scrollbar()->mouseMoved(event);
671 if (scrollbar()) {
672 IntRect scrollBarRect = scrollbar()->frameRect();
677 scrollbar()->mouseDown(event);
701 if (scrollbar()) {
702 IntRect scrollBarRect = scrollbar()->frameRect();
708 scrollbar()->mouseUp();
709 // FIXME: This is a hack to work around Scrollbar not invalidating correctly when it doesn't have a parent widget
734 if (!scrollbar())