• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/

Lines Matching +defs:part +defs:info

301 bool RenderThemeBlackBerry::paintTextArea(RenderObject* object, const PaintInfo& info, const IntRect& rect)
303 return paintTextFieldOrTextAreaOrSearchField(object, info, rect);
311 bool RenderThemeBlackBerry::paintTextFieldOrTextAreaOrSearchField(RenderObject* object, const PaintInfo& info, const IntRect& rect)
313 ASSERT(info.context);
314 GraphicsContext* context = info.context;
338 bool RenderThemeBlackBerry::paintTextField(RenderObject* object, const PaintInfo& info, const IntRect& rect)
340 return paintTextFieldOrTextAreaOrSearchField(object, info, rect);
362 bool RenderThemeBlackBerry::paintSearchField(RenderObject* object, const PaintInfo& info, const IntRect& rect)
364 return paintTextFieldOrTextAreaOrSearchField(object, info, rect);
369 // Compute an offset between the part renderer and the input renderer.
443 bool RenderThemeBlackBerry::paintCheckbox(RenderObject* object, const PaintInfo& info, const IntRect& rect)
445 ASSERT(info.context);
446 GraphicsContext* context = info.context;
494 bool RenderThemeBlackBerry::paintRadio(RenderObject* object, const PaintInfo& info, const IntRect& rect)
496 ASSERT(info.context);
497 GraphicsContext* context = info.context;
545 bool RenderThemeBlackBerry::paintButton(RenderObject* object, const PaintInfo& info, const IntRect& rect)
547 ASSERT(info.context);
548 info.context->save();
549 GraphicsContext* context = info.context;
583 bool RenderThemeBlackBerry::paintMenuList(RenderObject* object, const PaintInfo& info, const IntRect& rect)
585 ASSERT(info.context);
586 info.context->save();
587 GraphicsContext* context = info.context;
621 bool RenderThemeBlackBerry::paintMenuListButton(RenderObject* object, const PaintInfo& info, const IntRect& rect)
623 return paintMenuList(object, info, rect);
629 ControlPart part = style->appearance();
631 if (part == MediaSliderThumbPart || part == MediaVolumeSliderThumbPart) {
637 if (part == SliderThumbHorizontalPart || part == SliderThumbVerticalPart) {
638 style->setWidth(Length((part == SliderThumbVerticalPart ? sliderThumbHeight : sliderThumbWidth) * fullScreenMultiplier, Fixed));
639 style->setHeight(Length((part == SliderThumbVerticalPart ? sliderThumbWidth : sliderThumbHeight) * fullScreenMultiplier, Fixed));
640 } else if (part == MediaVolumeSliderThumbPart || part == MediaSliderThumbPart) {
646 bool RenderThemeBlackBerry::paintSliderTrack(RenderObject* object, const PaintInfo& info, const IntRect& rect)
662 return paintSliderTrackRect(object, info, rect2, sliderTrack);
665 bool RenderThemeBlackBerry::paintSliderTrackRect(RenderObject* object, const PaintInfo& info, const IntRect& rect, Image* inactive)
667 ASSERT(info.context);
668 info.context->save();
669 GraphicsContext* context = info.context;
691 bool RenderThemeBlackBerry::paintSliderThumb(RenderObject* object, const PaintInfo& info, const IntRect& rect)
693 ASSERT(info.context);
694 info.context->save();
695 GraphicsContext* context = info.context;
943 // part of the expression to account for the fact that the slider track's
961 // This is to paint played part of bar (left of slider thumb) using selection color.
1078 bool RenderThemeBlackBerry::paintProgressTrackRect(const PaintInfo& info, const IntRect& rect, Image* image)
1080 ASSERT(info.context);
1081 info.context->save();
1082 GraphicsContext* context = info.context;
1108 bool RenderThemeBlackBerry::paintProgressBar(RenderObject* object, const PaintInfo& info, const IntRect& rect)
1120 paintProgressTrackRect(info, rect, progressTrack);
1135 paintProgressTrackRect(info, progressRect, progressBar);
1138 drawProgressTexture(info.context, progressRect, loop, progressPattern);
1140 paintProgressTrackRect(info, progressRect, progressComplete);