Lines Matching full:clip
299 void QWebFramePrivate::renderContentsLayerAbsoluteCoords(GraphicsContext* context, const QRegion& clip)
304 QVector<QRect> vector = clip.rects();
327 void QWebFramePrivate::renderRelativeCoords(GraphicsContext* context, QWebFrame::RenderLayer layer, const QRegion& clip)
332 QVector<QRect> vector = clip.rects();
363 context->clip(view->visibleContentRect());
1144 Render the \a layer of the frame using \a painter clipping to \a clip.
1149 void QWebFrame::render(QPainter* painter, RenderLayer layer, const QRegion& clip)
1155 if (!clip.isEmpty())
1156 d->renderRelativeCoords(&context, layer, clip);
1162 Render the frame into \a painter clipping to \a clip.
1164 void QWebFrame::render(QPainter* painter, const QRegion& clip)
1170 d->renderRelativeCoords(&context, AllLayers, clip);