Home | History | Annotate | Download | only in platform

Lines Matching refs:rect

279     IntRect rect = r;
284 view->setScrollPosition(rect.location());
285 rect.move(view->x() - view->scrollOffset().width(), view->y() - view->scrollOffset().height());
287 rect.intersect(view->frameRect());
295 // This rect is not clamped, since Mail actually relies on receiving an unclamped rect with negative coordinates in order to
298 hostWindow()->scrollRectIntoView(rect, this);
501 // with the clip rect every time to keep it smooth.
561 IntRect ScrollView::contentsToScreen(const IntRect& rect) const
564 return platformContentsToScreen(rect);
567 return hostWindow()->windowToScreen(contentsToWindow(rect));
708 void ScrollView::repaintContentRectangle(const IntRect& rect, bool now)
710 IntRect paintRect = rect;
714 if (rect != paintRect)
715 platformOffscreenContentRectangle(visibleContentRect(), rect);
758 void ScrollView::paintScrollbars(GraphicsContext* context, const IntRect& rect)
761 m_horizontalScrollbar->paint(context, rect);
763 m_verticalScrollbar->paint(context, rect);
774 void ScrollView::paint(GraphicsContext* context, const IntRect& rect)
777 Widget::paint(context, rect);
784 IntRect documentDirtyRect = rect;
804 IntRect scrollViewDirtyRect = rect;
1027 IntRect ScrollView::platformContentsToScreen(const IntRect& rect) const
1029 return rect;