Lines Matching refs:paintInfo

371 bool RenderThemeWinCE::paintSearchFieldCancelButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
380 paintInfo.context->save();
381 paintInfo.context->addRoundedRectClip(RoundedIntRect(cancelBounds, cancelRadius, cancelRadius, cancelRadius, cancelRadius));
382 paintInfo.context->fillRect(cancelBounds, buttonColor, ColorSpaceDeviceRGB);
387 paintInfo.context->setStrokeColor(Color::white, ColorSpaceDeviceRGB);
388 paintInfo.context->drawLine(xBounds.location(), xBounds.location() + xBounds.size());
389 paintInfo.context->drawLine(IntPoint(xBounds.maxX(), xBounds.y()), IntPoint(xBounds.x(), xBounds.maxY()));
391 paintInfo.context->restore();
416 bool RenderThemeWinCE::paintSearchFieldResultsDecoration(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
429 bool RenderThemeWinCE::paintSearchFieldResultsButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
431 paintSearchFieldResultsDecoration(o, paintInfo, r);
543 bool RenderThemeWinCE::paintMediaFullscreenButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
545 bool rc = paintButton(o, paintInfo, r);
548 paintInfo.context->save();
549 paintInfo.context->setStrokeColor(Color::black);
550 paintInfo.context->setFillColor(Color::gray);
551 paintInfo.context->fillRect(imRect);
552 paintInfo.context->restore();
556 bool RenderThemeWinCE::paintMediaMuteButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
558 bool rc = paintButton(o, paintInfo, r);
563 paintInfo.context->save();
564 paintInfo.context->setStrokeColor(Color::black);
565 paintInfo.context->setFillColor(Color::black);
574 paintInfo.context->drawConvexPolygon(6, pts);
576 paintInfo.context->drawLine(IntPoint(imRect.maxX(), imRect.y()), IntPoint(imRect.x(), imRect.maxY()));
577 paintInfo.context->restore();
581 bool RenderThemeWinCE::paintMediaPlayButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
583 bool rc = paintButton(o, paintInfo, r);
586 paintInfo.context->save();
587 paintInfo.context->setStrokeColor(Color::black);
588 paintInfo.context->setFillColor(Color::black);
594 paintInfo.context->fillRect(imRect);
596 paintInfo.context->fillRect(imRect);
599 paintInfo.context->drawConvexPolygon(3, pts);
601 paintInfo.context->restore();
605 bool RenderThemeWinCE::paintMediaSeekBackButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
607 bool rc = paintButton(o, paintInfo, r);
612 paintInfo.context->save();
613 paintInfo.context->setStrokeColor(Color::black);
614 paintInfo.context->setFillColor(Color::black);
615 paintInfo.context->drawConvexPolygon(3, pts);
616 paintInfo.context->drawConvexPolygon(3, pts2);
617 paintInfo.context->restore();
621 bool RenderThemeWinCE::paintMediaSeekForwardButton(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
623 bool rc = paintButton(o, paintInfo, r);
628 paintInfo.context->save();
629 paintInfo.context->setStrokeColor(Color::black);
630 paintInfo.context->setFillColor(Color::black);
631 paintInfo.context->drawConvexPolygon(3, pts);
632 paintInfo.context->drawConvexPolygon(3, pts2);
633 paintInfo.context->restore();
637 bool RenderThemeWinCE::paintMediaSliderTrack(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
639 return paintSliderTrack(o, paintInfo, r);
642 bool RenderThemeWinCE::paintMediaSliderThumb(RenderObject* o, const PaintInfo& paintInfo, const IntRect& r)
644 return paintSliderThumb(o, paintInfo, r);