/external/webkit/Source/WebCore/platform/graphics/qt/ |
PatternQt.cpp | 41 QBrush brush(*pixmap); 42 brush.setTransform(m_patternSpaceTransformation); 44 return brush;
|
TransparencyLayer.h | 60 painter.setBrush(p->brush());
|
GraphicsContextQt.cpp | 195 // reuse this brush for solid color (to prevent expensive QBrush construction) 510 QBrush brush(*m_state.fillGradient->platformGradient()); 511 brush.setTransform(m_state.fillGradient->gradientSpaceTransform()); 513 shadowPainter->fillPath(platformPath, brush); 516 shadowColor.setAlphaF(shadowColor.alphaF() * p->brush().color().alphaF()); 525 shadowColor.setAlphaF(shadowColor.alphaF() * p->brush().color().alphaF()); 534 QBrush brush(*m_state.fillGradient->platformGradient()); 535 brush.setTransform(m_state.fillGradient->gradientSpaceTransform()); 536 p->fillPath(platformPath, brush); 538 p->fillPath(platformPath, p->brush()); [all...] |
FontQt.cpp | 86 QBrush brush(*ctx->fillGradient()->platformGradient()); 87 brush.setTransform(ctx->fillGradient()->gradientSpaceTransform()); 88 textFillPen = QPen(brush, 0); 99 QBrush brush(*ctx->strokeGradient()->platformGradient()); 100 brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform()); 101 textStrokePen = QPen(brush, ctx->strokeThickness()); 104 QBrush brush(ctx->strokePattern()->createPlatformPattern(affine)); 105 textStrokePen = QPen(brush, ctx->strokeThickness());
|
ImageBufferQt.cpp | 66 // its painter's pen and brush with the corresponding canvas defaults 75 QBrush brush = painter->brush(); local 76 brush.setColor(Qt::black); 77 painter->setBrush(brush);
|
/external/webkit/Source/WebCore/platform/win/ |
ScrollbarThemeWin.cpp | 260 HBRUSH brush = ::CreatePatternBrush(patternBitmap); local 265 ::SelectObject(hdc, brush); 266 ::FillRect(hdc, &themeRect, brush); 268 ::DeleteObject(brush);
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
GraphicsContextWinCE.cpp | 641 OwnPtr<HBRUSH> brush; local 644 brush = createBrush(fillColor()); 645 oldBrush = SelectObject(dc, brush.get()); 657 if (brush || pen) { 716 OwnPtr<HBRUSH> brush; local 719 brush = createBrush(fillColor()); 720 oldBrush = SelectObject(dc, brush.get()); 732 if (brush || pen) 898 OwnPtr<HBRUSH> brush; local 901 brush = createBrush(fillColor()) 1244 OwnPtr<HBRUSH> brush = createBrush(shadowColor); local [all...] |
/external/webkit/Source/WebCore/platform/qt/ |
RenderThemeQt.cpp | 143 // the styles often assume being called with a pristine painter where no brush is set, 145 oldBrush = painter->brush(); 397 return pal.brush(QPalette::Active, QPalette::Highlight).color(); 404 return pal.brush(QPalette::Inactive, QPalette::Highlight).color(); 411 return pal.brush(QPalette::Active, QPalette::HighlightedText).color(); 418 return pal.brush(QPalette::Inactive, QPalette::HighlightedText).color(); 425 return pal.brush(QPalette::Active, QPalette::Highlight).color(); 438 return pal.brush(QPalette::Active, QPalette::ButtonText).color(); 440 return pal.brush(QPalette::Active, QPalette::Text).color(); [all...] |
QtMobileWebStyle.cpp | 33 static inline void drawRectangularControlBackground(QPainter* painter, const QPen& pen, const QRect& rect, const QBrush& brush) 36 QBrush oldBrush = painter->brush(); 39 painter->setBrush(brush);
|
/external/webkit/Source/WebCore/rendering/ |
RenderThemeWin.cpp | 647 HBRUSH brush = (HBRUSH) ::CreatePatternBrush(patternBmp); local 653 HBRUSH oldBrush = (HBRUSH) ::SelectObject(hdc, brush); 654 ::FillRect(hdc, &widgetRect, brush); 658 ::DeleteObject(brush); 666 HBRUSH brush = ::GetSysColorBrush(COLOR_3DDKSHADOW); local 667 ::FrameRect(hdc, &widgetRect, brush); [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
CanvasStyle.cpp | 281 QBrush currentBrush = context->platformContext()->brush();
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
WebView.cpp | 653 static void flashRects(HDC dc, const IntRect rects[], size_t rectCount, HBRUSH brush) 657 ::FillRect(dc, &winRect, brush); 675 static HBRUSH brush = createBrush(WebPageProxy::viewUpdatesFlashColor().rgb()).leakPtr(); local 677 flashRects(hdc, &rect, 1, brush); 942 static HBRUSH brush = createBrush(WebPageProxy::backingStoreUpdatesFlashColor().rgb()).leakPtr(); local 944 flashRects(dc, updateRects.data(), updateRects.size(), brush); [all...] |
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
FrameLoaderClientQt.cpp | 270 QBrush brush = m_webFrame->page()->palette().brush(QPalette::Base); local 271 QColor backgroundColor = brush.style() == Qt::SolidPattern ? brush.color() : QColor(); [all...] |
/external/webkit/Source/WebKit/qt/tests/qwebframe/ |
tst_qwebframe.cpp | 334 Q_INVOKABLE QBrush myInvokableWithQBrushArg(const QBrush &brush) { 336 m_actuals << QVariant::fromValue(brush); 337 return brush; [all...] |
/external/webkit/Source/WebKit/qt/Api/ |
qwebpage.cpp | [all...] |