HomeSort by relevance Sort by last modified time
    Searched refs:brush (Results 1 - 12 of 12) sorted by null

  /external/webkit/WebCore/platform/graphics/qt/
PatternQt.cpp 41 QBrush brush(*pixmap);
42 brush.setTransform(m_patternSpaceTransformation);
44 return brush;
FontQt.cpp 78 QBrush brush(*ctx->fillGradient()->platformGradient());
79 brush.setTransform(ctx->fillGradient()->gradientSpaceTransform());
80 p->setPen(QPen(brush, 0));
90 QBrush brush(*ctx->strokeGradient()->platformGradient());
91 brush.setTransform(ctx->strokeGradient()->gradientSpaceTransform());
92 p->setPen(QPen(brush, ctx->strokeThickness()));
ImageBufferQt.cpp 56 // its painter's pen and brush with the corresponding canvas defaults
65 QBrush brush = painter->brush(); local
66 brush.setColor(Qt::black);
67 painter->setBrush(brush);
GraphicsContextQt.cpp 179 painter.setBrush(p->brush());
494 if (p->brush().style() != Qt::NoBrush)
544 QBrush brush(*m_common->state.fillGradient->platformGradient());
545 brush.setTransform(m_common->state.fillGradient->gradientSpaceTransform());
546 p->fillPath(path, brush);
549 p->fillPath(path, p->brush());
583 QBrush brush(*m_common->state.strokeGradient->platformGradient());
584 brush.setTransform(m_common->state.strokeGradient->gradientSpaceTransform());
585 pen.setBrush(brush);
621 QBrush brush(*m_common->state.fillGradient->platformGradient())
    [all...]
  /external/webkit/WebCore/platform/graphics/wince/
GraphicsContextWince.cpp 646 HGDIOBJ brush = 0; local
649 brush = createBrush(fillColor());
650 oldBrush = SelectObject(dc, brush);
662 if (!brush && !pen)
677 if (brush) {
679 DeleteObject(brush);
730 HGDIOBJ brush = 0; local
733 brush = createBrush(fillColor());
734 oldBrush = SelectObject(dc, brush);
752 if (brush) {
918 HGDIOBJ brush = 0; local
1277 HGDIOBJ brush = createBrush(shadowColor); local
1374 HGDIOBJ brush = createBrush(c); local
1394 HGDIOBJ brush = createBrush(c); local
    [all...]
  /external/webkit/WebCore/platform/win/
ScrollbarThemeWin.cpp 256 HBRUSH brush = ::CreatePatternBrush(patternBitmap); local
261 ::SelectObject(hdc, brush);
262 ::FillRect(hdc, &themeRect, brush);
264 ::DeleteObject(brush);
  /external/webkit/WebCore/rendering/
RenderThemeWin.cpp 584 HBRUSH brush = (HBRUSH) ::CreatePatternBrush(patternBmp); local
590 HBRUSH oldBrush = (HBRUSH) ::SelectObject(hdc, brush);
591 ::FillRect(hdc, &widgetRect, brush);
595 ::DeleteObject(brush);
603 HBRUSH brush = ::GetSysColorBrush(COLOR_3DDKSHADOW); local
604 ::FrameRect(hdc, &widgetRect, brush);
    [all...]
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.cpp 95 // the styles often assume being called with a pristine painter where no brush is set,
97 oldBrush = painter->brush();
258 return pal.brush(QPalette::Active, QPalette::Highlight).color();
264 return pal.brush(QPalette::Inactive, QPalette::Highlight).color();
270 return pal.brush(QPalette::Active, QPalette::HighlightedText).color();
276 return pal.brush(QPalette::Inactive, QPalette::HighlightedText).color();
  /external/webkit/WebCore/html/canvas/
CanvasStyle.cpp 212 QBrush currentBrush = context->platformContext()->brush();
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 211 QBrush brush = m_webFrame->page()->palette().brush(QPalette::Base); local
212 QColor backgroundColor = brush.style() == Qt::SolidPattern ? brush.color() : QColor();
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 299 Q_INVOKABLE QBrush myInvokableWithQBrushArg(const QBrush &brush) {
301 m_actuals << qVariantFromValue(brush);
302 return brush;
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]

Completed in 235 milliseconds