Home | History | Annotate | Download | only in rendering

Lines Matching refs:extraParams

189     PlatformBridge::ThemePaintExtraParams extraParams;
190 extraParams.button.checked = isChecked(o);
191 extraParams.button.indeterminate = isIndeterminate(o);
193 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartCheckbox, getWebThemeState(this, o), rect, &extraParams);
209 PlatformBridge::ThemePaintExtraParams extraParams;
210 extraParams.button.checked = isChecked(o);
212 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartRadio, getWebThemeState(this, o), rect, &extraParams);
228 PlatformBridge::ThemePaintExtraParams extraParams;
229 extraParams.button.isDefault = isDefault(o);
230 extraParams.button.hasBorder = true;
231 extraParams.button.backgroundColor = defaultButtonBackgroundColor;
233 extraParams.button.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor).rgb();
235 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartButton, getWebThemeState(this, o), rect, &extraParams);
248 PlatformBridge::ThemePaintExtraParams extraParams;
249 extraParams.textField.isTextArea = part == TextAreaPart;
250 extraParams.textField.isListbox = part == ListboxPart;
256 extraParams.textField.backgroundColor = backgroundColor.rgb();
258 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartTextField, getWebThemeState(this, o), rect, &extraParams);
270 PlatformBridge::ThemePaintExtraParams extraParams;
271 extraParams.menuList.arrowX = (o->style()->direction() == RTL) ? rect.x() + 7 : right - 13;
272 extraParams.menuList.arrowY = middle;
275 extraParams.menuList.hasBorder = box->borderRight() || box->borderLeft() || box->borderTop() || box->borderBottom();
276 extraParams.menuList.hasBorderRadius = o->style()->hasBorderRadius();
278 extraParams.menuList.backgroundColor = Color::transparent;
280 extraParams.menuList.backgroundColor = o->style()->visitedDependentColor(CSSPropertyBackgroundColor).rgb();
282 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartMenuList, getWebThemeState(this, o), rect, &extraParams);
288 PlatformBridge::ThemePaintExtraParams extraParams;
289 extraParams.slider.vertical = o->style()->appearance() == SliderVerticalPart;
291 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartSliderTrack, getWebThemeState(this, o), rect, &extraParams);
297 PlatformBridge::ThemePaintExtraParams extraParams;
298 extraParams.slider.vertical = o->style()->appearance() == SliderThumbVerticalPart;
299 extraParams.slider.inDrag = toRenderSlider(o->parent())->inDragMode();
301 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartSliderThumb, getWebThemeState(this, o), rect, &extraParams);
315 PlatformBridge::ThemePaintExtraParams extraParams;
316 extraParams.innerSpin.spinUp = (controlStatesForRenderer(o) & SpinUpState);
317 extraParams.innerSpin.readOnly = isReadOnlyControl(o);
319 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartInnerSpinButton, getWebThemeState(this, o), rect, &extraParams);
333 PlatformBridge::ThemePaintExtraParams extraParams;
334 extraParams.progressBar.determinate = renderProgress->isDeterminate();
335 extraParams.progressBar.valueRectX = valueRect.x();
336 extraParams.progressBar.valueRectY = valueRect.y();
337 extraParams.progressBar.valueRectWidth = valueRect.width();
338 extraParams.progressBar.valueRectHeight = valueRect.height();
340 PlatformBridge::paintThemePart(i.context, PlatformBridge::PartProgressBar, getWebThemeState(this, o), rect, &extraParams);