Searched refs:exposedRect (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/plugins/qt/
H A DPluginViewQt.cpp118 m_view->paintUsingXPixmap(painter, option->exposedRect.toRect());
212 void PluginView::paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect) argument
240 imagePainter.fillRect(exposedRect, Qt::white);
253 imageExpose.x = exposedRect.x();
254 imageExpose.y = exposedRect.y();
255 imageExpose.width = exposedRect.width();
256 imageExpose.height = exposedRect.height();
264 exposeEvent.x = exposedRect.x();
265 exposeEvent.y = exposedRect.y();
266 exposeEvent.width = exposedRect
276 paintUsingXPixmap(QPainter* painter, const QRect &exposedRect) argument
335 painter->drawPixmap(QPoint(exposedRect.x(), exposedRect.y()), qtDrawable, exposedRect); local
[all...]
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
H A DNetscapePluginX11.cpp228 IntRect exposedRect(dirtyRect);
229 exposedRect.intersect(m_frameRect);
230 exposedRect.move(-m_frameRect.x(), -m_frameRect.y());
231 exposeEvent.x = exposedRect.x();
232 exposeEvent.y = exposedRect.y();
236 exposeEvent.width = exposedRect.width();
237 exposeEvent.height = exposedRect.height();
247 painter->drawPixmap(QPoint(exposedRect.x(), exposedRect.y()), qtDrawable, exposedRect); local
[all...]
/external/webkit/Source/WebCore/plugins/gtk/
H A DPluginViewGtk.cpp199 IntRect exposedRect(rect);
200 exposedRect.intersect(frameRect());
201 exposedRect.move(-frameRect().x(), -frameRect().y());
228 cairo_rectangle(cr.get(), exposedRect.x(), exposedRect.y(),
229 exposedRect.width(), exposedRect.height());
239 exposeEvent.x = exposedRect.x();
240 exposeEvent.y = exposedRect.y();
241 exposeEvent.width = exposedRect
[all...]
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
H A Dtst_qgraphicswebview.cpp213 option.exposedRect = webView->geometry();
214 QImage img(option.exposedRect.width(), option.exposedRect.height(), QImage::Format_ARGB32_Premultiplied);
220 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(255, 255, 255, 255));
221 painter.fillRect(option.exposedRect, Qt::black);
222 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(0, 0, 0, 255));
225 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect
[all...]
/external/webkit/Source/WebKit/qt/Api/
H A Dqgraphicswebview.cpp292 page()->mainFrame()->d->renderFromTiledBackingStore(&context, option->exposedRect.toAlignedRect());
298 page()->mainFrame()->render(painter, d->overlay() ? QWebFrame::ContentsLayer : QWebFrame::AllLayers, option->exposedRect.toAlignedRect());
300 page()->mainFrame()->render(painter, QWebFrame::AllLayers, option->exposedRect.toRect());
/external/webkit/Source/WebCore/plugins/
H A DPluginView.h473 void paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect);
476 void paintUsingXPixmap(QPainter* painter, const QRect &exposedRect);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DPageClientQt.h133 page->mainFrame()->render(painter, static_cast<QWebFrame::RenderLayer>(QWebFrame::AllLayers&(~QWebFrame::ContentsLayer)), options->exposedRect.toRect());
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DMediaPlayerPrivateQt.cpp628 opt.exposedRect = m_videoItem.data()->sceneBoundingRect();
629 opt.rect = opt.exposedRect.toRect();
H A DGraphicsLayerQt.cpp93 option.exposedRect = option.rect = maskPixmap.rect();
635 painter->fillRect(option->exposedRect, QColor(m_currentContent.backgroundColor));
641 drawLayerContent(painter, option->exposedRect.toRect());
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp104 page()->d->paint(painter, option->exposedRect.toAlignedRect());

Completed in 116 milliseconds