1 /* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #include "ThemeCocoa.h"
10 #include "ThemeDrawing.h"
12 #include "mozilla/MathAlgorithms.h"
13 #include "mozilla/ClearOnShutdown.h"
14 #include "mozilla/dom/Document.h"
15 #include "mozilla/dom/HTMLMeterElement.h"
16 #include "mozilla/dom/HTMLProgressElement.h"
17 #include "mozilla/gfx/Rect.h"
18 #include "mozilla/gfx/Types.h"
19 #include "mozilla/gfx/Filters.h"
20 #include "mozilla/RelativeLuminanceUtils.h"
21 #include "mozilla/StaticPrefs_widget.h"
22 #include "mozilla/webrender/WebRenderAPI.h"
23 #include "nsCSSColorUtils.h"
24 #include "nsCSSRendering.h"
25 #include "nsScrollbarFrame.h"
26 #include "nsIScrollableFrame.h"
27 #include "nsIScrollbarMediator.h"
28 #include "nsDeviceContext.h"
29 #include "nsLayoutUtils.h"
30 #include "nsRangeFrame.h"
31 #include "PathHelpers.h"
32 #include "ScrollbarDrawingAndroid.h"
33 #include "ScrollbarDrawingCocoa.h"
34 #include "ScrollbarDrawingGTK.h"
35 #include "ScrollbarDrawingWin.h"
36 #include "ScrollbarDrawingWin11.h"
39 # include "mozilla/WindowsVersion.h"
42 using namespace mozilla
;
43 using namespace mozilla::dom
;
44 using namespace mozilla::gfx
;
45 using namespace mozilla::widget
;
49 static constexpr gfx::sRGBColor
sColorGrey10(
50 gfx::sRGBColor::UnusualFromARGB(0xffe9e9ed));
51 static constexpr gfx::sRGBColor
sColorGrey10Alpha50(
52 gfx::sRGBColor::UnusualFromARGB(0x7fe9e9ed));
53 static constexpr gfx::sRGBColor
sColorGrey20(
54 gfx::sRGBColor::UnusualFromARGB(0xffd0d0d7));
55 static constexpr gfx::sRGBColor
sColorGrey30(
56 gfx::sRGBColor::UnusualFromARGB(0xffb1b1b9));
57 static constexpr gfx::sRGBColor
sColorGrey40(
58 gfx::sRGBColor::UnusualFromARGB(0xff8f8f9d));
59 static constexpr gfx::sRGBColor
sColorGrey40Alpha50(
60 gfx::sRGBColor::UnusualFromARGB(0x7f8f8f9d));
61 static constexpr gfx::sRGBColor
sColorGrey50(
62 gfx::sRGBColor::UnusualFromARGB(0xff676774));
63 static constexpr gfx::sRGBColor
sColorGrey60(
64 gfx::sRGBColor::UnusualFromARGB(0xff484851));
66 static constexpr gfx::sRGBColor
sColorMeterGreen10(
67 gfx::sRGBColor::UnusualFromARGB(0xff00ab60));
68 static constexpr gfx::sRGBColor
sColorMeterGreen20(
69 gfx::sRGBColor::UnusualFromARGB(0xff056139));
70 static constexpr gfx::sRGBColor
sColorMeterYellow10(
71 gfx::sRGBColor::UnusualFromARGB(0xffffbd4f));
72 static constexpr gfx::sRGBColor
sColorMeterYellow20(
73 gfx::sRGBColor::UnusualFromARGB(0xffd2811e));
74 static constexpr gfx::sRGBColor
sColorMeterRed10(
75 gfx::sRGBColor::UnusualFromARGB(0xffe22850));
76 static constexpr gfx::sRGBColor
sColorMeterRed20(
77 gfx::sRGBColor::UnusualFromARGB(0xff810220));
79 static const CSSCoord kMinimumRangeThumbSize
= 20.0f
;
80 static const CSSCoord kMinimumDropdownArrowButtonWidth
= 18.0f
;
81 static const CSSCoord kMinimumSpinnerButtonWidth
= 18.0f
;
82 static const CSSCoord kMinimumSpinnerButtonHeight
= 9.0f
;
83 static const CSSCoord kButtonBorderWidth
= 1.0f
;
84 static const CSSCoord kMenulistBorderWidth
= 1.0f
;
85 static const CSSCoord kTextFieldBorderWidth
= 1.0f
;
86 static const CSSCoord kRangeHeight
= 6.0f
;
87 static const CSSCoord kProgressbarHeight
= 6.0f
;
88 static const CSSCoord kMeterHeight
= 12.0f
;
90 // nsCheckboxRadioFrame takes the bottom of the content box as the baseline.
91 // This border-width makes its baseline 2px under the bottom, which is nice.
92 static constexpr CSSCoord kCheckboxRadioBorderWidth
= 2.0f
;
94 static constexpr sRGBColor sTransparent
= sRGBColor::White(0.0);
96 // This pushes and pops a clip rect to the draw target.
98 // This is done to reduce fuzz in places where we may have antialiasing,
99 // because skia is not clip-invariant: given different clips, it does not
100 // guarantee the same result, even if the painted content doesn't intersect
103 // This is a bit sad, overall, but...
104 struct MOZ_RAII AutoClipRect
{
105 AutoClipRect(DrawTarget
& aDt
, const LayoutDeviceRect
& aRect
) : mDt(aDt
) {
106 mDt
.PushClipRect(aRect
.ToUnknownRect());
109 ~AutoClipRect() { mDt
.PopClip(); }
115 static StaticRefPtr
<Theme
> gNativeInstance
;
116 static StaticRefPtr
<Theme
> gNonNativeInstance
;
117 static StaticRefPtr
<Theme
> gRDMInstance
;
122 already_AddRefed
<Theme
> do_CreateNativeThemeDoNotUseDirectly() {
123 // Android doesn't have a native theme.
124 return do_AddRef(new Theme(Theme::ScrollbarStyle()));
128 already_AddRefed
<nsITheme
> do_GetBasicNativeThemeDoNotUseDirectly() {
129 if (MOZ_UNLIKELY(!gNonNativeInstance
)) {
130 UniquePtr
<ScrollbarDrawing
> scrollbarDrawing
= Theme::ScrollbarStyle();
131 #ifdef MOZ_WIDGET_COCOA
132 gNonNativeInstance
= new ThemeCocoa(std::move(scrollbarDrawing
));
134 gNonNativeInstance
= new Theme(std::move(scrollbarDrawing
));
136 ClearOnShutdown(&gNonNativeInstance
);
138 return do_AddRef(gNonNativeInstance
);
141 already_AddRefed
<nsITheme
> do_GetNativeThemeDoNotUseDirectly() {
142 if (MOZ_UNLIKELY(!gNativeInstance
)) {
143 gNativeInstance
= do_CreateNativeThemeDoNotUseDirectly();
144 ClearOnShutdown(&gNativeInstance
);
146 return do_AddRef(gNativeInstance
);
149 already_AddRefed
<nsITheme
> do_GetRDMThemeDoNotUseDirectly() {
150 if (MOZ_UNLIKELY(!gRDMInstance
)) {
151 gRDMInstance
= new Theme(MakeUnique
<ScrollbarDrawingAndroid
>());
152 ClearOnShutdown(&gRDMInstance
);
154 return do_AddRef(gRDMInstance
);
157 namespace mozilla::widget
{
159 NS_IMPL_ISUPPORTS_INHERITED(Theme
, nsNativeTheme
, nsITheme
)
161 static constexpr nsLiteralCString kPrefs
[] = {
162 "widget.non-native-theme.use-theme-accent"_ns
,
163 "widget.non-native-theme.win.scrollbar.use-system-size"_ns
,
164 "widget.non-native-theme.scrollbar.size.override"_ns
,
165 "widget.non-native-theme.scrollbar.style"_ns
,
169 for (const auto& pref
: kPrefs
) {
170 Preferences::RegisterCallback(PrefChangedCallback
, pref
);
172 LookAndFeelChanged();
175 void Theme::Shutdown() {
176 for (const auto& pref
: kPrefs
) {
177 Preferences::UnregisterCallback(PrefChangedCallback
, pref
);
182 void Theme::LookAndFeelChanged() {
183 ThemeColors::RecomputeAccentColors();
184 if (gNonNativeInstance
) {
185 gNonNativeInstance
->SetScrollbarDrawing(ScrollbarStyle());
187 if (gNativeInstance
) {
188 gNativeInstance
->SetScrollbarDrawing(ScrollbarStyle());
192 auto Theme::GetDPIRatio(nsPresContext
* aPc
, StyleAppearance aAppearance
)
194 // Widgets react to zoom, except scrollbars.
195 if (IsWidgetScrollbarPart(aAppearance
)) {
196 return GetScrollbarDrawing().GetDPIRatioForScrollbarPart(aPc
);
198 return DPIRatio(float(AppUnitsPerCSSPixel()) / aPc
->AppUnitsPerDevPixel());
201 auto Theme::GetDPIRatio(nsIFrame
* aFrame
, StyleAppearance aAppearance
)
203 return GetDPIRatio(aFrame
->PresContext(), aAppearance
);
206 // Checkbox and radio need to preserve aspect-ratio for compat. We also snap the
207 // size to exact device pixels to avoid snapping disorting the circles.
208 static LayoutDeviceRect
CheckBoxRadioRect(const LayoutDeviceRect
& aRect
) {
209 // Place a square rect in the center of aRect.
210 auto size
= std::trunc(std::min(aRect
.width
, aRect
.height
));
211 auto position
= aRect
.Center() - LayoutDevicePoint(size
* 0.5, size
* 0.5);
212 return LayoutDeviceRect(position
, LayoutDeviceSize(size
, size
));
215 std::tuple
<sRGBColor
, sRGBColor
, sRGBColor
> Theme::ComputeCheckboxColors(
216 const ElementState
& aState
, StyleAppearance aAppearance
,
217 const Colors
& aColors
) {
218 MOZ_ASSERT(aAppearance
== StyleAppearance::Checkbox
||
219 aAppearance
== StyleAppearance::Radio
);
221 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
222 bool isChecked
= aState
.HasState(ElementState::CHECKED
);
223 bool isIndeterminate
= aAppearance
== StyleAppearance::Checkbox
&&
224 aState
.HasState(ElementState::INDETERMINATE
);
226 if (isChecked
|| isIndeterminate
) {
228 auto bg
= ComputeBorderColor(aState
, aColors
, OutlineCoversBorder::No
);
229 auto fg
= aColors
.HighContrast()
230 ? aColors
.System(StyleSystemColor::Graytext
)
231 : sRGBColor::White(.8f
);
232 return std::make_tuple(bg
, bg
, fg
);
235 if (aColors
.HighContrast()) {
236 auto bg
= aColors
.System(StyleSystemColor::Selecteditem
);
237 auto fg
= aColors
.System(StyleSystemColor::Selecteditemtext
);
238 return std::make_tuple(bg
, bg
, fg
);
242 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
243 bool isHovered
= aState
.HasState(ElementState::HOVER
);
244 const auto& bg
= isActive
? aColors
.Accent().GetDarker()
245 : isHovered
? aColors
.Accent().GetDark()
246 : aColors
.Accent().Get();
247 const auto& fg
= aColors
.Accent().GetForeground();
248 return std::make_tuple(bg
, bg
, fg
);
252 ComputeTextfieldColors(aState
, aColors
, OutlineCoversBorder::No
);
253 // We don't paint a checkmark in this case so any color would do.
254 return std::make_tuple(bg
, border
, sTransparent
);
257 sRGBColor
Theme::ComputeBorderColor(const ElementState
& aState
,
258 const Colors
& aColors
,
259 OutlineCoversBorder aOutlineCoversBorder
) {
260 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
261 if (aColors
.HighContrast()) {
262 return aColors
.System(isDisabled
? StyleSystemColor::Graytext
263 : StyleSystemColor::Buttontext
);
266 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
267 bool isHovered
= aState
.HasState(ElementState::HOVER
);
268 bool isFocused
= aState
.HasState(ElementState::FOCUSRING
);
270 return sColorGrey40Alpha50
;
272 if (isFocused
&& aOutlineCoversBorder
== OutlineCoversBorder::Yes
) {
273 // If we draw the outline over the border, prevent issues where the border
274 // shows underneath if it snaps in the wrong direction by using a
275 // transparent border. An alternative to this is ensuring that we snap the
276 // offset in PaintRoundedFocusRect the same was a we snap border widths, so
277 // that negative offsets are guaranteed to cover the border.
278 // But this looks harder to mess up.
281 bool dark
= aColors
.IsDark();
283 return dark
? sColorGrey20
: sColorGrey60
;
286 return dark
? sColorGrey30
: sColorGrey50
;
291 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeButtonColors(
292 const ElementState
& aState
, const Colors
& aColors
, nsIFrame
* aFrame
) {
294 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
295 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
296 bool isHovered
= aState
.HasState(ElementState::HOVER
);
298 nscolor backgroundColor
= [&] {
300 return aColors
.SystemNs(StyleSystemColor::MozButtondisabledface
);
303 return aColors
.SystemNs(StyleSystemColor::MozButtonactiveface
);
306 return aColors
.SystemNs(StyleSystemColor::MozButtonhoverface
);
308 return aColors
.SystemNs(StyleSystemColor::Buttonface
);
311 if (aState
.HasState(ElementState::AUTOFILL
)) {
312 backgroundColor
= NS_ComposeColors(
314 aColors
.SystemNs(StyleSystemColor::MozAutofillBackground
));
317 const sRGBColor borderColor
=
318 ComputeBorderColor(aState
, aColors
, OutlineCoversBorder::Yes
);
319 return std::make_pair(sRGBColor::FromABGR(backgroundColor
), borderColor
);
322 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeTextfieldColors(
323 const ElementState
& aState
, const Colors
& aColors
,
324 OutlineCoversBorder aOutlineCoversBorder
) {
325 nscolor backgroundColor
= [&] {
326 if (aState
.HasState(ElementState::DISABLED
)) {
327 return aColors
.SystemNs(StyleSystemColor::MozDisabledfield
);
329 return aColors
.SystemNs(StyleSystemColor::Field
);
332 if (aState
.HasState(ElementState::AUTOFILL
)) {
333 backgroundColor
= NS_ComposeColors(
335 aColors
.SystemNs(StyleSystemColor::MozAutofillBackground
));
338 const sRGBColor borderColor
=
339 ComputeBorderColor(aState
, aColors
, aOutlineCoversBorder
);
340 return std::make_pair(sRGBColor::FromABGR(backgroundColor
), borderColor
);
343 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeRangeProgressColors(
344 const ElementState
& aState
, const Colors
& aColors
) {
345 if (aColors
.HighContrast()) {
346 return aColors
.SystemPair(StyleSystemColor::Selecteditem
,
347 StyleSystemColor::Buttontext
);
351 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
352 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
353 bool isHovered
= aState
.HasState(ElementState::HOVER
);
356 return std::make_pair(sColorGrey40Alpha50
, sColorGrey40Alpha50
);
358 if (isActive
|| isHovered
) {
359 return std::make_pair(aColors
.Accent().GetDark(),
360 aColors
.Accent().GetDarker());
362 return std::make_pair(aColors
.Accent().Get(), aColors
.Accent().GetDark());
365 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeRangeTrackColors(
366 const ElementState
& aState
, const Colors
& aColors
) {
367 if (aColors
.HighContrast()) {
368 return aColors
.SystemPair(StyleSystemColor::Window
,
369 StyleSystemColor::Buttontext
);
372 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
373 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
374 bool isHovered
= aState
.HasState(ElementState::HOVER
);
377 return std::make_pair(sColorGrey10Alpha50
, sColorGrey40Alpha50
);
379 if (isActive
|| isHovered
) {
380 return std::make_pair(sColorGrey20
, sColorGrey50
);
382 return std::make_pair(sColorGrey10
, sColorGrey40
);
385 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeRangeThumbColors(
386 const ElementState
& aState
, const Colors
& aColors
) {
387 if (aColors
.HighContrast()) {
388 return aColors
.SystemPair(StyleSystemColor::Selecteditemtext
,
389 StyleSystemColor::Selecteditem
);
393 aState
.HasAllStates(ElementState::HOVER
| ElementState::ACTIVE
);
394 bool isDisabled
= aState
.HasState(ElementState::DISABLED
);
395 bool isHovered
= aState
.HasState(ElementState::HOVER
);
397 const sRGBColor
& backgroundColor
= [&] {
402 return aColors
.Accent().Get();
410 const sRGBColor borderColor
= sRGBColor::OpaqueWhite();
411 return std::make_pair(backgroundColor
, borderColor
);
414 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeProgressColors(
415 const Colors
& aColors
) {
416 if (aColors
.HighContrast()) {
417 return aColors
.SystemPair(StyleSystemColor::Selecteditem
,
418 StyleSystemColor::Buttontext
);
420 return std::make_pair(aColors
.Accent().Get(), aColors
.Accent().GetDark());
423 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeProgressTrackColors(
424 const Colors
& aColors
) {
425 if (aColors
.HighContrast()) {
426 return aColors
.SystemPair(StyleSystemColor::Buttonface
,
427 StyleSystemColor::Buttontext
);
429 return std::make_pair(sColorGrey10
, sColorGrey40
);
432 std::pair
<sRGBColor
, sRGBColor
> Theme::ComputeMeterchunkColors(
433 const ElementState
& aMeterState
, const Colors
& aColors
) {
434 if (aColors
.HighContrast()) {
435 return ComputeProgressColors(aColors
);
437 sRGBColor borderColor
= sColorMeterGreen20
;
438 sRGBColor chunkColor
= sColorMeterGreen10
;
440 if (aMeterState
.HasState(ElementState::SUB_OPTIMUM
)) {
441 borderColor
= sColorMeterYellow20
;
442 chunkColor
= sColorMeterYellow10
;
443 } else if (aMeterState
.HasState(ElementState::SUB_SUB_OPTIMUM
)) {
444 borderColor
= sColorMeterRed20
;
445 chunkColor
= sColorMeterRed10
;
448 return std::make_pair(chunkColor
, borderColor
);
451 std::array
<sRGBColor
, 3> Theme::ComputeFocusRectColors(const Colors
& aColors
) {
452 if (aColors
.HighContrast()) {
453 return {aColors
.System(StyleSystemColor::Selecteditem
),
454 aColors
.System(StyleSystemColor::Buttontext
),
455 aColors
.System(StyleSystemColor::Window
)};
457 const auto& accent
= aColors
.Accent();
458 const sRGBColor middle
=
459 aColors
.IsDark() ? sRGBColor::Black(.3f
) : sRGBColor::White(.3f
);
460 return {accent
.Get(), middle
, accent
.GetLight()};
463 template <typename PaintBackendData
>
464 void Theme::PaintRoundedFocusRect(PaintBackendData
& aBackendData
,
465 const LayoutDeviceRect
& aRect
,
466 const Colors
& aColors
, DPIRatio aDpiRatio
,
467 CSSCoord aRadius
, CSSCoord aOffset
) {
468 // NOTE(emilio): If the widths or offsets here change, make sure to tweak
469 // the GetWidgetOverflow path for FocusOutline.
470 auto [innerColor
, middleColor
, outerColor
] = ComputeFocusRectColors(aColors
);
472 LayoutDeviceRect
focusRect(aRect
);
474 // The focus rect is painted outside of the border area (aRect), see:
476 // data:text/html,<div style="border: 1px solid; outline: 2px solid
479 // But some controls might provide a negative offset to cover the border, if
481 CSSCoord strokeWidth
= 2.0f
;
482 auto strokeWidthDevPx
=
483 LayoutDeviceCoord(ThemeDrawing::SnapBorderWidth(strokeWidth
, aDpiRatio
));
484 CSSCoord strokeRadius
= aRadius
;
485 focusRect
.Inflate(aOffset
* aDpiRatio
+ strokeWidthDevPx
);
487 ThemeDrawing::PaintRoundedRectWithRadius(
488 aBackendData
, focusRect
, sTransparent
, innerColor
, strokeWidth
,
489 strokeRadius
, aDpiRatio
);
491 strokeWidth
= CSSCoord(1.0f
);
493 LayoutDeviceCoord(ThemeDrawing::SnapBorderWidth(strokeWidth
, aDpiRatio
));
494 strokeRadius
+= strokeWidth
;
495 focusRect
.Inflate(strokeWidthDevPx
);
497 ThemeDrawing::PaintRoundedRectWithRadius(
498 aBackendData
, focusRect
, sTransparent
, middleColor
, strokeWidth
,
499 strokeRadius
, aDpiRatio
);
501 strokeWidth
= CSSCoord(2.0f
);
503 LayoutDeviceCoord(ThemeDrawing::SnapBorderWidth(strokeWidth
, aDpiRatio
));
504 strokeRadius
+= strokeWidth
;
505 focusRect
.Inflate(strokeWidthDevPx
);
507 ThemeDrawing::PaintRoundedRectWithRadius(
508 aBackendData
, focusRect
, sTransparent
, outerColor
, strokeWidth
,
509 strokeRadius
, aDpiRatio
);
512 void Theme::PaintCheckboxControl(DrawTarget
& aDrawTarget
,
513 const LayoutDeviceRect
& aRect
,
514 const ElementState
& aState
,
515 const Colors
& aColors
, DPIRatio aDpiRatio
) {
516 auto [backgroundColor
, borderColor
, checkColor
] =
517 ComputeCheckboxColors(aState
, StyleAppearance::Checkbox
, aColors
);
519 const CSSCoord radius
= 2.0f
;
520 CSSCoord borderWidth
= kCheckboxRadioBorderWidth
;
521 if (backgroundColor
== borderColor
) {
524 ThemeDrawing::PaintRoundedRectWithRadius(aDrawTarget
, aRect
,
525 backgroundColor
, borderColor
,
526 borderWidth
, radius
, aDpiRatio
);
529 if (aState
.HasState(ElementState::INDETERMINATE
)) {
530 PaintIndeterminateMark(aDrawTarget
, aRect
, checkColor
);
531 } else if (aState
.HasState(ElementState::CHECKED
)) {
532 PaintCheckMark(aDrawTarget
, aRect
, checkColor
);
535 if (aState
.HasState(ElementState::FOCUSRING
)) {
536 PaintRoundedFocusRect(aDrawTarget
, aRect
, aColors
, aDpiRatio
, 5.0f
, 1.0f
);
540 constexpr CSSCoord kCheckboxRadioContentBoxSize
= 10.0f
;
541 constexpr CSSCoord kCheckboxRadioBorderBoxSize
=
542 kCheckboxRadioContentBoxSize
+ kCheckboxRadioBorderWidth
* 2.0f
;
544 void Theme::PaintCheckMark(DrawTarget
& aDrawTarget
,
545 const LayoutDeviceRect
& aRect
,
546 const sRGBColor
& aColor
) {
547 // Points come from the coordinates on a 14X14 (kCheckboxRadioBorderBoxSize)
548 // unit box centered at 0,0
549 const float checkPolygonX
[] = {-4.5f
, -1.5f
, -0.5f
, 5.0f
, 4.75f
,
550 3.5f
, -0.5f
, -1.5f
, -3.5f
};
551 const float checkPolygonY
[] = {0.5f
, 4.0f
, 4.0f
, -2.5f
, -4.0f
,
552 -4.0f
, 1.0f
, 1.25f
, -1.0f
};
553 const int32_t checkNumPoints
= sizeof(checkPolygonX
) / sizeof(float);
555 ThemeDrawing::ScaleToFillRect(aRect
, kCheckboxRadioBorderBoxSize
);
556 auto center
= aRect
.Center().ToUnknownPoint();
558 RefPtr
<PathBuilder
> builder
= aDrawTarget
.CreatePathBuilder();
559 Point p
= center
+ Point(checkPolygonX
[0] * scale
, checkPolygonY
[0] * scale
);
561 for (int32_t i
= 1; i
< checkNumPoints
; i
++) {
562 p
= center
+ Point(checkPolygonX
[i
] * scale
, checkPolygonY
[i
] * scale
);
565 RefPtr
<Path
> path
= builder
->Finish();
567 aDrawTarget
.Fill(path
, ColorPattern(ToDeviceColor(aColor
)));
570 void Theme::PaintIndeterminateMark(DrawTarget
& aDrawTarget
,
571 const LayoutDeviceRect
& aRect
,
572 const sRGBColor
& aColor
) {
573 const CSSCoord borderWidth
= 2.0f
;
575 ThemeDrawing::ScaleToFillRect(aRect
, kCheckboxRadioBorderBoxSize
);
577 Rect rect
= aRect
.ToUnknownRect();
578 rect
.y
+= (rect
.height
/ 2) - (borderWidth
* scale
/ 2);
579 rect
.height
= borderWidth
* scale
;
580 rect
.x
+= (borderWidth
* scale
) + (borderWidth
* scale
/ 8);
581 rect
.width
-= ((borderWidth
* scale
) + (borderWidth
* scale
/ 8)) * 2;
583 aDrawTarget
.FillRect(rect
, ColorPattern(ToDeviceColor(aColor
)));
586 template <typename PaintBackendData
>
587 void Theme::PaintStrokedCircle(PaintBackendData
& aPaintData
,
588 const LayoutDeviceRect
& aRect
,
589 const sRGBColor
& aBackgroundColor
,
590 const sRGBColor
& aBorderColor
,
591 const CSSCoord aBorderWidth
,
592 DPIRatio aDpiRatio
) {
593 auto radius
= LayoutDeviceCoord(aRect
.Size().width
) / aDpiRatio
;
594 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, aRect
, aBackgroundColor
,
595 aBorderColor
, aBorderWidth
, radius
,
599 void Theme::PaintCircleShadow(WebRenderBackendData
& aWrData
,
600 const LayoutDeviceRect
& aBoxRect
,
601 const LayoutDeviceRect
& aClipRect
,
602 float aShadowAlpha
, const CSSPoint
& aShadowOffset
,
603 CSSCoord aShadowBlurStdDev
, DPIRatio aDpiRatio
) {
604 const bool kBackfaceIsVisible
= true;
605 const LayoutDeviceCoord stdDev
= aShadowBlurStdDev
* aDpiRatio
;
606 const LayoutDevicePoint shadowOffset
= aShadowOffset
* aDpiRatio
;
607 const IntSize inflation
=
608 gfxAlphaBoxBlur::CalculateBlurRadius(gfxPoint(stdDev
, stdDev
));
609 LayoutDeviceRect shadowRect
= aBoxRect
;
610 shadowRect
.MoveBy(shadowOffset
);
611 shadowRect
.Inflate(inflation
.width
, inflation
.height
);
612 const auto boxRect
= wr::ToLayoutRect(aBoxRect
);
613 aWrData
.mBuilder
.PushBoxShadow(
614 wr::ToLayoutRect(shadowRect
), wr::ToLayoutRect(aClipRect
),
615 kBackfaceIsVisible
, boxRect
,
616 wr::ToLayoutVector2D(aShadowOffset
* aDpiRatio
),
617 wr::ToColorF(DeviceColor(0.0f
, 0.0f
, 0.0f
, aShadowAlpha
)), stdDev
,
618 /* aSpread = */ 0.0f
,
619 wr::ToBorderRadius(gfx::RectCornerRadii(aBoxRect
.Size().width
)),
620 wr::BoxShadowClipMode::Outset
);
623 void Theme::PaintCircleShadow(DrawTarget
& aDrawTarget
,
624 const LayoutDeviceRect
& aBoxRect
,
625 const LayoutDeviceRect
& aClipRect
,
626 float aShadowAlpha
, const CSSPoint
& aShadowOffset
,
627 CSSCoord aShadowBlurStdDev
, DPIRatio aDpiRatio
) {
628 Float stdDev
= aShadowBlurStdDev
* aDpiRatio
;
629 Point offset
= (aShadowOffset
* aDpiRatio
).ToUnknownPoint();
631 RefPtr
<FilterNode
> blurFilter
=
632 aDrawTarget
.CreateFilter(FilterType::GAUSSIAN_BLUR
);
637 blurFilter
->SetAttribute(ATT_GAUSSIAN_BLUR_STD_DEVIATION
, stdDev
);
640 gfxAlphaBoxBlur::CalculateBlurRadius(gfxPoint(stdDev
, stdDev
));
641 Rect inflatedRect
= aBoxRect
.ToUnknownRect();
642 inflatedRect
.Inflate(inflation
.width
, inflation
.height
);
643 Rect sourceRectInFilterSpace
=
644 inflatedRect
- aBoxRect
.TopLeft().ToUnknownPoint();
645 Point destinationPointOfSourceRect
= inflatedRect
.TopLeft() + offset
;
647 IntSize dtSize
= RoundedToInt(aBoxRect
.Size().ToUnknownSize());
648 RefPtr
<DrawTarget
> ellipseDT
= aDrawTarget
.CreateSimilarDrawTargetForFilter(
649 dtSize
, SurfaceFormat::A8
, blurFilter
, blurFilter
,
650 sourceRectInFilterSpace
, destinationPointOfSourceRect
);
655 AutoClipRect
clipRect(aDrawTarget
, aClipRect
);
657 RefPtr
<Path
> ellipse
= MakePathForEllipse(
658 *ellipseDT
, (aBoxRect
- aBoxRect
.TopLeft()).Center().ToUnknownPoint(),
659 aBoxRect
.Size().ToUnknownSize());
660 ellipseDT
->Fill(ellipse
,
661 ColorPattern(DeviceColor(0.0f
, 0.0f
, 0.0f
, aShadowAlpha
)));
662 RefPtr
<SourceSurface
> ellipseSurface
= ellipseDT
->Snapshot();
664 blurFilter
->SetInput(IN_GAUSSIAN_BLUR_IN
, ellipseSurface
);
665 aDrawTarget
.DrawFilter(blurFilter
, sourceRectInFilterSpace
,
666 destinationPointOfSourceRect
);
669 template <typename PaintBackendData
>
670 void Theme::PaintRadioControl(PaintBackendData
& aPaintData
,
671 const LayoutDeviceRect
& aRect
,
672 const ElementState
& aState
, const Colors
& aColors
,
673 DPIRatio aDpiRatio
) {
674 auto [backgroundColor
, borderColor
, checkColor
] =
675 ComputeCheckboxColors(aState
, StyleAppearance::Radio
, aColors
);
677 CSSCoord borderWidth
= kCheckboxRadioBorderWidth
;
678 if (backgroundColor
== borderColor
) {
681 PaintStrokedCircle(aPaintData
, aRect
, backgroundColor
, borderColor
,
682 borderWidth
, aDpiRatio
);
685 if (aState
.HasState(ElementState::CHECKED
)) {
686 LayoutDeviceRect
rect(aRect
);
687 auto width
= LayoutDeviceCoord(
688 ThemeDrawing::SnapBorderWidth(kCheckboxRadioBorderWidth
, aDpiRatio
));
691 PaintStrokedCircle(aPaintData
, rect
, backgroundColor
, checkColor
,
692 kCheckboxRadioBorderWidth
, aDpiRatio
);
695 if (aState
.HasState(ElementState::FOCUSRING
)) {
696 PaintRoundedFocusRect(aPaintData
, aRect
, aColors
, aDpiRatio
, 5.0f
, 1.0f
);
700 template <typename PaintBackendData
>
701 void Theme::PaintTextField(PaintBackendData
& aPaintData
,
702 const LayoutDeviceRect
& aRect
,
703 const ElementState
& aState
, const Colors
& aColors
,
704 DPIRatio aDpiRatio
) {
705 auto [backgroundColor
, borderColor
] =
706 ComputeTextfieldColors(aState
, aColors
, OutlineCoversBorder::Yes
);
708 const CSSCoord radius
= 2.0f
;
710 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, aRect
, backgroundColor
,
711 borderColor
, kTextFieldBorderWidth
,
714 if (aState
.HasState(ElementState::FOCUSRING
)) {
715 PaintRoundedFocusRect(aPaintData
, aRect
, aColors
, aDpiRatio
,
716 radius
+ kTextFieldBorderWidth
,
717 -kTextFieldBorderWidth
);
721 template <typename PaintBackendData
>
722 void Theme::PaintListbox(PaintBackendData
& aPaintData
,
723 const LayoutDeviceRect
& aRect
,
724 const ElementState
& aState
, const Colors
& aColors
,
725 DPIRatio aDpiRatio
) {
726 const CSSCoord radius
= 2.0f
;
727 auto [backgroundColor
, borderColor
] =
728 ComputeTextfieldColors(aState
, aColors
, OutlineCoversBorder::Yes
);
730 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, aRect
, backgroundColor
,
731 borderColor
, kMenulistBorderWidth
,
734 if (aState
.HasState(ElementState::FOCUSRING
)) {
735 PaintRoundedFocusRect(aPaintData
, aRect
, aColors
, aDpiRatio
,
736 radius
+ kMenulistBorderWidth
, -kMenulistBorderWidth
);
740 template <typename PaintBackendData
>
741 void Theme::PaintMenulist(PaintBackendData
& aDrawTarget
,
742 const LayoutDeviceRect
& aRect
,
743 const ElementState
& aState
, const Colors
& aColors
,
744 DPIRatio aDpiRatio
) {
745 const CSSCoord radius
= 4.0f
;
746 auto [backgroundColor
, borderColor
] = ComputeButtonColors(aState
, aColors
);
748 ThemeDrawing::PaintRoundedRectWithRadius(aDrawTarget
, aRect
, backgroundColor
,
749 borderColor
, kMenulistBorderWidth
,
752 if (aState
.HasState(ElementState::FOCUSRING
)) {
753 PaintRoundedFocusRect(aDrawTarget
, aRect
, aColors
, aDpiRatio
,
754 radius
+ kMenulistBorderWidth
, -kMenulistBorderWidth
);
758 void Theme::PaintMenulistArrowButton(nsIFrame
* aFrame
, DrawTarget
& aDrawTarget
,
759 const LayoutDeviceRect
& aRect
,
760 const ElementState
& aState
) {
761 // not const: these may be negated in-place below
762 float polygonX
[] = {-4.0f
, -0.5f
, 0.5f
, 4.0f
, 4.0f
,
763 3.0f
, 0.0f
, 0.0f
, -3.0f
, -4.0f
};
764 float polygonY
[] = {-1, 3.0f
, 3.0f
, -1.0f
, -2.0f
,
765 -2.0f
, 1.5f
, 1.5f
, -2.0f
, -2.0f
};
767 const float kPolygonSize
= kMinimumDropdownArrowButtonWidth
;
769 auto const [xs
, ys
] = [&] {
770 using Pair
= std::pair
<const float*, const float*>;
771 switch (aFrame
->GetWritingMode().GetBlockDir()) {
772 case WritingMode::BlockDir::eBlockRL
:
773 // rotate 90°: [[0,1],[-1,0]]
774 for (float& f
: polygonY
) {
777 return Pair(polygonY
, polygonX
);
779 case WritingMode::BlockDir::eBlockLR
:
780 // rotate 270°: [[0,-1],[1,0]]
781 for (float& f
: polygonX
) {
784 return Pair(polygonY
, polygonX
);
786 case WritingMode::BlockDir::eBlockTB
:
787 // rotate 0°: [[1,0],[0,1]]
788 return Pair(polygonX
, polygonY
);
790 MOZ_ASSERT_UNREACHABLE("unhandled BlockDir");
791 return Pair(polygonX
, polygonY
);
794 const auto arrowColor
= sRGBColor::FromABGR(
795 nsLayoutUtils::GetColor(aFrame
, &nsStyleText::mWebkitTextFillColor
));
796 ThemeDrawing::PaintArrow(aDrawTarget
, aRect
, xs
, ys
, kPolygonSize
,
797 ArrayLength(polygonX
), arrowColor
);
800 void Theme::PaintSpinnerButton(nsIFrame
* aFrame
, DrawTarget
& aDrawTarget
,
801 const LayoutDeviceRect
& aRect
,
802 const ElementState
& aState
,
803 StyleAppearance aAppearance
,
804 const Colors
& aColors
, DPIRatio aDpiRatio
) {
805 auto [backgroundColor
, borderColor
] = ComputeButtonColors(aState
, aColors
);
807 aDrawTarget
.FillRect(aRect
.ToUnknownRect(),
808 ColorPattern(ToDeviceColor(backgroundColor
)));
810 const float kPolygonX
[] = {-3.5f
, -0.5f
, 0.5f
, 3.5f
, 3.5f
,
811 2.5f
, 0.0f
, 0.0f
, -2.5f
, -3.5f
};
812 float polygonY
[] = {-1.5f
, 1.5f
, 1.5f
, -1.5f
, -2.5f
,
813 -2.5f
, 0.0f
, 0.0f
, -2.5f
, -2.5f
};
815 const float kPolygonSize
= kMinimumSpinnerButtonHeight
;
816 if (aAppearance
== StyleAppearance::SpinnerUpbutton
) {
817 for (auto& coord
: polygonY
) {
822 ThemeDrawing::PaintArrow(aDrawTarget
, aRect
, kPolygonX
, polygonY
,
823 kPolygonSize
, ArrayLength(kPolygonX
), borderColor
);
826 template <typename PaintBackendData
>
827 void Theme::PaintRange(nsIFrame
* aFrame
, PaintBackendData
& aPaintData
,
828 const LayoutDeviceRect
& aRect
,
829 const ElementState
& aState
, const Colors
& aColors
,
830 DPIRatio aDpiRatio
, bool aHorizontal
) {
831 nsRangeFrame
* rangeFrame
= do_QueryFrame(aFrame
);
836 auto tickMarks
= rangeFrame
->TickMarks();
837 double progress
= rangeFrame
->GetValueAsFractionOfRange();
839 LayoutDeviceRect
thumbRect(0, 0, kMinimumRangeThumbSize
* aDpiRatio
,
840 kMinimumRangeThumbSize
* aDpiRatio
);
841 LayoutDeviceRect
progressClipRect(aRect
);
842 LayoutDeviceRect
trackClipRect(aRect
);
843 const LayoutDeviceCoord verticalSize
= kRangeHeight
* aDpiRatio
;
844 const LayoutDeviceCoord
tickMarkWidth(
845 ThemeDrawing::SnapBorderWidth(1.0f
, aDpiRatio
));
846 const LayoutDeviceCoord
tickMarkHeight(
847 ThemeDrawing::SnapBorderWidth(5.0f
, aDpiRatio
));
848 LayoutDevicePoint tickMarkOrigin
, tickMarkDirection
;
849 LayoutDeviceSize tickMarkSize
;
851 rect
.height
= verticalSize
;
852 rect
.y
= aRect
.y
+ (aRect
.height
- rect
.height
) / 2;
853 tickMarkSize
= LayoutDeviceSize(tickMarkWidth
, tickMarkHeight
);
854 thumbRect
.y
= aRect
.y
+ (aRect
.height
- thumbRect
.height
) / 2;
856 if (IsFrameRTL(aFrame
)) {
858 LayoutDevicePoint(aRect
.XMost() - thumbRect
.width
/ 2, aRect
.YMost());
859 tickMarkDirection
= LayoutDevicePoint(-1.0f
, 0.0f
);
861 aRect
.x
+ (aRect
.width
- thumbRect
.width
) * (1.0 - progress
);
862 float midPoint
= thumbRect
.Center().X();
863 trackClipRect
.SetBoxX(aRect
.X(), midPoint
);
864 progressClipRect
.SetBoxX(midPoint
, aRect
.XMost());
867 LayoutDevicePoint(aRect
.x
+ thumbRect
.width
/ 2, aRect
.YMost());
868 tickMarkDirection
= LayoutDevicePoint(1.0, 0.0f
);
869 thumbRect
.x
= aRect
.x
+ (aRect
.width
- thumbRect
.width
) * progress
;
870 float midPoint
= thumbRect
.Center().X();
871 progressClipRect
.SetBoxX(aRect
.X(), midPoint
);
872 trackClipRect
.SetBoxX(midPoint
, aRect
.XMost());
875 rect
.width
= verticalSize
;
876 rect
.x
= aRect
.x
+ (aRect
.width
- rect
.width
) / 2;
877 tickMarkOrigin
= LayoutDevicePoint(aRect
.XMost() - tickMarkHeight
/ 4,
878 aRect
.YMost() - thumbRect
.width
/ 2);
879 tickMarkDirection
= LayoutDevicePoint(0.0f
, -1.0f
);
880 tickMarkSize
= LayoutDeviceSize(tickMarkHeight
, tickMarkWidth
);
881 thumbRect
.x
= aRect
.x
+ (aRect
.width
- thumbRect
.width
) / 2;
883 if (rangeFrame
->IsUpwards()) {
885 aRect
.y
+ (aRect
.height
- thumbRect
.height
) * (1.0 - progress
);
886 float midPoint
= thumbRect
.Center().Y();
887 trackClipRect
.SetBoxY(aRect
.Y(), midPoint
);
888 progressClipRect
.SetBoxY(midPoint
, aRect
.YMost());
890 thumbRect
.y
= aRect
.y
+ (aRect
.height
- thumbRect
.height
) * progress
;
891 float midPoint
= thumbRect
.Center().Y();
892 trackClipRect
.SetBoxY(midPoint
, aRect
.YMost());
893 progressClipRect
.SetBoxY(aRect
.Y(), midPoint
);
897 const CSSCoord borderWidth
= 1.0f
;
898 const CSSCoord radius
= 3.0f
;
900 auto [progressColor
, progressBorderColor
] =
901 ComputeRangeProgressColors(aState
, aColors
);
902 auto [trackColor
, trackBorderColor
] =
903 ComputeRangeTrackColors(aState
, aColors
);
904 auto tickMarkColor
= trackBorderColor
;
906 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, rect
, progressClipRect
,
907 progressColor
, progressBorderColor
,
908 borderWidth
, radius
, aDpiRatio
);
910 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, rect
, trackClipRect
,
911 trackColor
, trackBorderColor
,
912 borderWidth
, radius
, aDpiRatio
);
914 if (!aState
.HasState(ElementState::DISABLED
)) {
915 // Ensure the shadow doesn't expand outside of our overflow rect declared in
916 // GetWidgetOverflow().
917 auto overflowRect
= aRect
;
918 overflowRect
.Inflate(CSSCoord(6.0f
) * aDpiRatio
);
920 PaintCircleShadow(aPaintData
, thumbRect
, overflowRect
, 0.3f
,
921 CSSPoint(0.0f
, 2.0f
), 2.0f
, aDpiRatio
);
924 tickMarkDirection
.x
*= aRect
.width
- thumbRect
.width
;
925 tickMarkDirection
.y
*= aRect
.height
- thumbRect
.height
;
927 LayoutDevicePoint(tickMarkSize
.width
, tickMarkSize
.height
) / 2;
928 auto tickMarkRect
= LayoutDeviceRect(tickMarkOrigin
, tickMarkSize
);
929 for (auto tickMark
: tickMarks
) {
930 auto tickMarkOffset
=
932 float(rangeFrame
->GetDoubleAsFractionOfRange(tickMark
));
933 ThemeDrawing::FillRect(aPaintData
, tickMarkRect
+ tickMarkOffset
,
937 // Draw the thumb on top.
938 const CSSCoord thumbBorderWidth
= 2.0f
;
939 auto [thumbColor
, thumbBorderColor
] =
940 ComputeRangeThumbColors(aState
, aColors
);
942 PaintStrokedCircle(aPaintData
, thumbRect
, thumbColor
, thumbBorderColor
,
943 thumbBorderWidth
, aDpiRatio
);
945 if (aState
.HasState(ElementState::FOCUSRING
)) {
946 PaintRoundedFocusRect(aPaintData
, aRect
, aColors
, aDpiRatio
, radius
, 1.0f
);
950 template <typename PaintBackendData
>
951 void Theme::PaintProgress(nsIFrame
* aFrame
, PaintBackendData
& aPaintData
,
952 const LayoutDeviceRect
& aRect
,
953 const ElementState
& aState
, const Colors
& aColors
,
954 DPIRatio aDpiRatio
, bool aIsMeter
) {
955 const CSSCoord borderWidth
= 1.0f
;
956 const CSSCoord radius
= aIsMeter
? 6.0f
: 3.0f
;
958 LayoutDeviceRect
rect(aRect
);
959 const LayoutDeviceCoord thickness
=
960 (aIsMeter
? kMeterHeight
: kProgressbarHeight
) * aDpiRatio
;
962 const bool isHorizontal
= !nsNativeTheme::IsVerticalProgress(aFrame
);
964 // Center it vertically.
965 rect
.y
+= (rect
.height
- thickness
) / 2;
966 rect
.height
= thickness
;
968 // Center it horizontally.
969 rect
.x
+= (rect
.width
- thickness
) / 2;
970 rect
.width
= thickness
;
974 // Paint the track, unclipped.
975 auto [backgroundColor
, borderColor
] = ComputeProgressTrackColors(aColors
);
976 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, rect
, rect
,
977 backgroundColor
, borderColor
,
978 borderWidth
, radius
, aDpiRatio
);
981 // Now paint the chunk, clipped as needed.
982 LayoutDeviceRect clipRect
= rect
;
983 if (aState
.HasState(ElementState::INDETERMINATE
)) {
984 // For indeterminate progress, we paint an animated chunk of 1/3 of the
987 // Animation speed and math borrowed from GTK.
988 const LayoutDeviceCoord size
= isHorizontal
? rect
.width
: rect
.height
;
989 const LayoutDeviceCoord barSize
= size
* 0.3333f
;
990 const LayoutDeviceCoord travel
= 2.0f
* (size
- barSize
);
992 // Period equals to travel / pixelsPerMillisecond where pixelsPerMillisecond
993 // equals progressSize / 1000.0. This is equivalent to 1600.
994 const unsigned kPeriod
= 1600;
996 const int t
= PR_IntervalToMilliseconds(PR_IntervalNow()) % kPeriod
;
997 const LayoutDeviceCoord dx
= travel
* float(t
) / float(kPeriod
);
999 rect
.width
= barSize
;
1000 rect
.x
+= (dx
< travel
* .5f
) ? dx
: travel
- dx
;
1002 rect
.height
= barSize
;
1003 rect
.y
+= (dx
< travel
* .5f
) ? dx
: travel
- dx
;
1006 // Queue the next frame if needed.
1007 if (!QueueAnimatedContentForRefresh(aFrame
->GetContent(), 60)) {
1008 NS_WARNING("Couldn't refresh indeterminate <progress>");
1011 // This is the progress chunk, clip it to the right amount.
1012 double position
= [&] {
1014 auto* meter
= dom::HTMLMeterElement::FromNode(aFrame
->GetContent());
1018 return meter
->Position();
1020 auto* progress
= dom::HTMLProgressElement::FromNode(aFrame
->GetContent());
1024 return progress
->Position();
1027 double clipWidth
= rect
.width
* position
;
1028 clipRect
.width
= clipWidth
;
1029 if (IsFrameRTL(aFrame
)) {
1030 clipRect
.x
+= rect
.width
- clipWidth
;
1033 double clipHeight
= rect
.height
* position
;
1034 clipRect
.height
= clipHeight
;
1035 clipRect
.y
+= rect
.height
- clipHeight
;
1039 auto [backgroundColor
, borderColor
] =
1040 aIsMeter
? ComputeMeterchunkColors(aState
, aColors
)
1041 : ComputeProgressColors(aColors
);
1042 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, rect
, clipRect
,
1043 backgroundColor
, borderColor
,
1044 borderWidth
, radius
, aDpiRatio
);
1047 template <typename PaintBackendData
>
1048 void Theme::PaintButton(nsIFrame
* aFrame
, PaintBackendData
& aPaintData
,
1049 const LayoutDeviceRect
& aRect
,
1050 const ElementState
& aState
, const Colors
& aColors
,
1051 DPIRatio aDpiRatio
) {
1052 const CSSCoord radius
= 4.0f
;
1053 auto [backgroundColor
, borderColor
] =
1054 ComputeButtonColors(aState
, aColors
, aFrame
);
1056 ThemeDrawing::PaintRoundedRectWithRadius(aPaintData
, aRect
, backgroundColor
,
1057 borderColor
, kButtonBorderWidth
,
1060 if (aState
.HasState(ElementState::FOCUSRING
)) {
1061 PaintRoundedFocusRect(aPaintData
, aRect
, aColors
, aDpiRatio
,
1062 radius
+ kButtonBorderWidth
, -kButtonBorderWidth
);
1067 Theme::DrawWidgetBackground(gfxContext
* aContext
, nsIFrame
* aFrame
,
1068 StyleAppearance aAppearance
, const nsRect
& aRect
,
1069 const nsRect
& /* aDirtyRect */,
1070 DrawOverflow aDrawOverflow
) {
1071 if (!DoDrawWidgetBackground(*aContext
->GetDrawTarget(), aFrame
, aAppearance
,
1072 aRect
, aDrawOverflow
)) {
1073 return NS_ERROR_NOT_IMPLEMENTED
;
1078 bool Theme::CreateWebRenderCommandsForWidget(
1079 mozilla::wr::DisplayListBuilder
& aBuilder
,
1080 mozilla::wr::IpcResourceUpdateQueue
& aResources
,
1081 const mozilla::layers::StackingContextHelper
& aSc
,
1082 mozilla::layers::RenderRootStateManager
* aManager
, nsIFrame
* aFrame
,
1083 StyleAppearance aAppearance
, const nsRect
& aRect
) {
1084 if (!StaticPrefs::widget_non_native_theme_webrender()) {
1087 WebRenderBackendData data
{aBuilder
, aResources
, aSc
, aManager
};
1088 return DoDrawWidgetBackground(data
, aFrame
, aAppearance
, aRect
,
1092 static LayoutDeviceRect
ToSnappedRect(const nsRect
& aRect
,
1093 nscoord aTwipsPerPixel
, DrawTarget
& aDt
) {
1094 return LayoutDeviceRect::FromUnknownRect(
1095 NSRectToSnappedRect(aRect
, aTwipsPerPixel
, aDt
));
1098 static LayoutDeviceRect
ToSnappedRect(const nsRect
& aRect
,
1099 nscoord aTwipsPerPixel
,
1100 WebRenderBackendData
& aDt
) {
1101 // TODO: Do we need to do any more snapping here?
1102 return LayoutDeviceRect::FromAppUnits(aRect
, aTwipsPerPixel
);
1105 static ScrollbarDrawing::ScrollbarKind
ComputeScrollbarKind(
1106 nsIFrame
* aFrame
, bool aIsHorizontal
) {
1107 if (aIsHorizontal
) {
1108 return ScrollbarDrawing::ScrollbarKind::Horizontal
;
1110 nsIFrame
* scrollbar
= ScrollbarDrawing::GetParentScrollbarFrame(aFrame
);
1111 if (NS_WARN_IF(!scrollbar
)) {
1112 return ScrollbarDrawing::ScrollbarKind::VerticalRight
;
1114 MOZ_ASSERT(scrollbar
->IsScrollbarFrame());
1115 nsIScrollbarMediator
* sm
=
1116 static_cast<nsScrollbarFrame
*>(scrollbar
)->GetScrollbarMediator();
1117 if (NS_WARN_IF(!sm
)) {
1118 return ScrollbarDrawing::ScrollbarKind::VerticalRight
;
1120 return sm
->IsScrollbarOnRight()
1121 ? ScrollbarDrawing::ScrollbarKind::VerticalRight
1122 : ScrollbarDrawing::ScrollbarKind::VerticalLeft
;
1125 static ScrollbarDrawing::ScrollbarKind
ComputeScrollbarKindForScrollCorner(
1127 nsIScrollableFrame
* sf
= do_QueryFrame(aFrame
->GetParent());
1129 return ScrollbarDrawing::ScrollbarKind::VerticalRight
;
1131 return sf
->IsScrollbarOnRight()
1132 ? ScrollbarDrawing::ScrollbarKind::VerticalRight
1133 : ScrollbarDrawing::ScrollbarKind::VerticalLeft
;
1136 template <typename PaintBackendData
>
1137 bool Theme::DoDrawWidgetBackground(PaintBackendData
& aPaintData
,
1139 StyleAppearance aAppearance
,
1140 const nsRect
& aRect
,
1141 DrawOverflow aDrawOverflow
) {
1142 static_assert(std::is_same_v
<PaintBackendData
, DrawTarget
> ||
1143 std::is_same_v
<PaintBackendData
, WebRenderBackendData
>);
1145 const nsPresContext
* pc
= aFrame
->PresContext();
1146 const nscoord twipsPerPixel
= pc
->AppUnitsPerDevPixel();
1147 const auto devPxRect
= ToSnappedRect(aRect
, twipsPerPixel
, aPaintData
);
1149 const DocumentState docState
= pc
->Document()->GetDocumentState();
1150 ElementState elementState
= GetContentState(aFrame
, aAppearance
);
1151 if (aAppearance
== StyleAppearance::MozMenulistArrowButton
) {
1152 // HTML select and XUL menulist dropdown buttons get state from the
1154 nsIFrame
* parentFrame
= aFrame
->GetParent();
1155 aFrame
= parentFrame
;
1156 elementState
= GetContentState(parentFrame
, aAppearance
);
1159 // Paint the outline iff we're asked to draw overflow and we have
1160 // outline-style: auto.
1161 if (aDrawOverflow
== DrawOverflow::Yes
&&
1162 aFrame
->StyleOutline()->mOutlineStyle
.IsAuto()) {
1163 elementState
|= ElementState::FOCUSRING
;
1165 elementState
&= ~ElementState::FOCUSRING
;
1168 // Hack to avoid skia fuzziness: Add a dummy clip if the widget doesn't
1169 // overflow devPxRect.
1170 Maybe
<AutoClipRect
> maybeClipRect
;
1171 if constexpr (std::is_same_v
<PaintBackendData
, DrawTarget
>) {
1172 if (aAppearance
!= StyleAppearance::FocusOutline
&&
1173 aAppearance
!= StyleAppearance::Range
&&
1174 !elementState
.HasState(ElementState::FOCUSRING
)) {
1175 maybeClipRect
.emplace(aPaintData
, devPxRect
);
1179 const Colors
colors(aFrame
, aAppearance
);
1180 DPIRatio dpiRatio
= GetDPIRatio(aFrame
, aAppearance
);
1182 switch (aAppearance
) {
1183 case StyleAppearance::Radio
: {
1184 auto rect
= CheckBoxRadioRect(devPxRect
);
1185 PaintRadioControl(aPaintData
, rect
, elementState
, colors
, dpiRatio
);
1188 case StyleAppearance::Checkbox
: {
1189 if constexpr (std::is_same_v
<PaintBackendData
, WebRenderBackendData
>) {
1190 // TODO: Need to figure out how to best draw this using WR.
1193 auto rect
= CheckBoxRadioRect(devPxRect
);
1194 PaintCheckboxControl(aPaintData
, rect
, elementState
, colors
, dpiRatio
);
1198 case StyleAppearance::Textarea
:
1199 case StyleAppearance::Textfield
:
1200 case StyleAppearance::NumberInput
:
1201 PaintTextField(aPaintData
, devPxRect
, elementState
, colors
, dpiRatio
);
1203 case StyleAppearance::Listbox
:
1204 PaintListbox(aPaintData
, devPxRect
, elementState
, colors
, dpiRatio
);
1206 case StyleAppearance::MenulistButton
:
1207 case StyleAppearance::Menulist
:
1208 PaintMenulist(aPaintData
, devPxRect
, elementState
, colors
, dpiRatio
);
1210 case StyleAppearance::MozMenulistArrowButton
:
1211 if constexpr (std::is_same_v
<PaintBackendData
, WebRenderBackendData
>) {
1212 // TODO: Need to figure out how to best draw this using WR.
1215 PaintMenulistArrowButton(aFrame
, aPaintData
, devPxRect
, elementState
);
1218 case StyleAppearance::Tooltip
: {
1219 const CSSCoord
strokeWidth(1.0f
);
1220 const CSSCoord
strokeRadius(2.0f
);
1221 ThemeDrawing::PaintRoundedRectWithRadius(
1222 aPaintData
, devPxRect
,
1223 colors
.System(StyleSystemColor::Infobackground
),
1224 colors
.System(StyleSystemColor::Infotext
), strokeWidth
, strokeRadius
,
1228 case StyleAppearance::Menuitem
: {
1229 ThemeDrawing::FillRect(aPaintData
, devPxRect
, [&] {
1230 if (CheckBooleanAttr(aFrame
, nsGkAtoms::menuactive
)) {
1231 if (elementState
.HasState(ElementState::DISABLED
)) {
1232 return colors
.System(StyleSystemColor::MozMenuhoverdisabled
);
1234 return colors
.System(StyleSystemColor::MozMenuhover
);
1236 return sTransparent
;
1240 case StyleAppearance::SpinnerUpbutton
:
1241 case StyleAppearance::SpinnerDownbutton
:
1242 if constexpr (std::is_same_v
<PaintBackendData
, WebRenderBackendData
>) {
1243 // TODO: Need to figure out how to best draw this using WR.
1246 PaintSpinnerButton(aFrame
, aPaintData
, devPxRect
, elementState
,
1247 aAppearance
, colors
, dpiRatio
);
1250 case StyleAppearance::Range
:
1251 PaintRange(aFrame
, aPaintData
, devPxRect
, elementState
, colors
, dpiRatio
,
1252 IsRangeHorizontal(aFrame
));
1254 case StyleAppearance::RangeThumb
:
1255 // Painted as part of StyleAppearance::Range.
1257 case StyleAppearance::ProgressBar
:
1258 PaintProgress(aFrame
, aPaintData
, devPxRect
, elementState
, colors
,
1260 /* aIsMeter = */ false);
1262 case StyleAppearance::Progresschunk
:
1263 /* Painted as part of the progress bar */
1265 case StyleAppearance::Meter
:
1266 PaintProgress(aFrame
, aPaintData
, devPxRect
, elementState
, colors
,
1268 /* aIsMeter = */ true);
1270 case StyleAppearance::Meterchunk
:
1271 /* Painted as part of the meter bar */
1273 case StyleAppearance::ScrollbarthumbHorizontal
:
1274 case StyleAppearance::ScrollbarthumbVertical
: {
1276 aAppearance
== StyleAppearance::ScrollbarthumbHorizontal
;
1277 auto kind
= ComputeScrollbarKind(aFrame
, isHorizontal
);
1278 return GetScrollbarDrawing().PaintScrollbarThumb(
1279 aPaintData
, devPxRect
, kind
, aFrame
,
1280 *nsLayoutUtils::StyleForScrollbar(aFrame
), elementState
, docState
,
1283 case StyleAppearance::ScrollbartrackHorizontal
:
1284 case StyleAppearance::ScrollbartrackVertical
: {
1286 aAppearance
== StyleAppearance::ScrollbartrackHorizontal
;
1287 auto kind
= ComputeScrollbarKind(aFrame
, isHorizontal
);
1288 return GetScrollbarDrawing().PaintScrollbarTrack(
1289 aPaintData
, devPxRect
, kind
, aFrame
,
1290 *nsLayoutUtils::StyleForScrollbar(aFrame
), docState
, colors
,
1293 case StyleAppearance::ScrollbarHorizontal
:
1294 case StyleAppearance::ScrollbarVertical
: {
1295 bool isHorizontal
= aAppearance
== StyleAppearance::ScrollbarHorizontal
;
1296 auto kind
= ComputeScrollbarKind(aFrame
, isHorizontal
);
1297 return GetScrollbarDrawing().PaintScrollbar(
1298 aPaintData
, devPxRect
, kind
, aFrame
,
1299 *nsLayoutUtils::StyleForScrollbar(aFrame
), elementState
, docState
,
1302 case StyleAppearance::Scrollcorner
: {
1303 auto kind
= ComputeScrollbarKindForScrollCorner(aFrame
);
1304 return GetScrollbarDrawing().PaintScrollCorner(
1305 aPaintData
, devPxRect
, kind
, aFrame
,
1306 *nsLayoutUtils::StyleForScrollbar(aFrame
), docState
, colors
,
1309 case StyleAppearance::ScrollbarbuttonUp
:
1310 case StyleAppearance::ScrollbarbuttonDown
:
1311 case StyleAppearance::ScrollbarbuttonLeft
:
1312 case StyleAppearance::ScrollbarbuttonRight
: {
1313 // For scrollbar-width:thin, we don't display the buttons.
1314 if (!ScrollbarDrawing::IsScrollbarWidthThin(aFrame
)) {
1315 if constexpr (std::is_same_v
<PaintBackendData
, WebRenderBackendData
>) {
1316 // TODO: Need to figure out how to best draw this using WR.
1320 aAppearance
== StyleAppearance::ScrollbarbuttonLeft
||
1321 aAppearance
== StyleAppearance::ScrollbarbuttonRight
;
1322 auto kind
= ComputeScrollbarKind(aFrame
, isHorizontal
);
1323 GetScrollbarDrawing().PaintScrollbarButton(
1324 aPaintData
, aAppearance
, devPxRect
, kind
, aFrame
,
1325 *nsLayoutUtils::StyleForScrollbar(aFrame
), elementState
, docState
,
1331 case StyleAppearance::Button
:
1332 PaintButton(aFrame
, aPaintData
, devPxRect
, elementState
, colors
,
1335 case StyleAppearance::FocusOutline
:
1336 PaintAutoStyleOutline(aFrame
, aPaintData
, devPxRect
, colors
, dpiRatio
);
1339 // Various appearance values are used for XUL elements. Normally these
1340 // will not be available in content documents (and thus in the content
1341 // processes where the native basic theme can be used), but tests are
1342 // run with the remote XUL pref enabled and so we can get in here. So
1343 // we just return an error rather than assert.
1350 template <typename PaintBackendData
>
1351 void Theme::PaintAutoStyleOutline(nsIFrame
* aFrame
,
1352 PaintBackendData
& aPaintData
,
1353 const LayoutDeviceRect
& aRect
,
1354 const Colors
& aColors
, DPIRatio aDpiRatio
) {
1355 const auto& accentColor
= aColors
.Accent();
1356 const bool solid
= StaticPrefs::widget_non_native_theme_solid_outline_style();
1357 LayoutDeviceCoord
strokeWidth(ThemeDrawing::SnapBorderWidth(2.0f
, aDpiRatio
));
1359 LayoutDeviceRect
rect(aRect
);
1360 rect
.Inflate(strokeWidth
);
1362 const nscoord a2d
= aFrame
->PresContext()->AppUnitsPerDevPixel();
1363 nscoord cssOffset
= aFrame
->StyleOutline()->mOutlineOffset
.ToAppUnits();
1364 nscoord cssRadii
[8] = {0};
1365 if (!aFrame
->GetBorderRadii(cssRadii
)) {
1366 const auto twoPixels
= 2 * AppUnitsPerCSSPixel();
1367 const nscoord radius
=
1368 cssOffset
>= 0 ? twoPixels
: std::max(twoPixels
+ cssOffset
, 0);
1369 cssOffset
= -twoPixels
;
1370 for (auto& r
: cssRadii
) {
1375 auto offset
= LayoutDevicePixel::FromAppUnits(cssOffset
, a2d
);
1376 RectCornerRadii innerRadii
;
1377 nsCSSRendering::ComputePixelRadii(cssRadii
, a2d
, &innerRadii
);
1379 // NOTE(emilio): This doesn't use PaintRoundedRectWithRadius because we need
1380 // to support arbitrary radii.
1381 auto DrawRect
= [&](const sRGBColor
& aColor
) {
1382 RectCornerRadii outerRadii
;
1383 if constexpr (std::is_same_v
<PaintBackendData
, WebRenderBackendData
>) {
1384 const Float widths
[4] = {strokeWidth
+ offset
, strokeWidth
+ offset
,
1385 strokeWidth
+ offset
, strokeWidth
+ offset
};
1386 nsCSSBorderRenderer::ComputeOuterRadii(innerRadii
, widths
, &outerRadii
);
1387 const auto dest
= wr::ToLayoutRect(rect
);
1389 wr::ToBorderSide(ToDeviceColor(aColor
), StyleBorderStyle::Solid
);
1390 const wr::BorderSide sides
[4] = {side
, side
, side
, side
};
1391 const bool kBackfaceIsVisible
= true;
1392 const auto wrWidths
= wr::ToBorderWidths(strokeWidth
, strokeWidth
,
1393 strokeWidth
, strokeWidth
);
1394 const auto wrRadius
= wr::ToBorderRadius(outerRadii
);
1395 aPaintData
.mBuilder
.PushBorder(dest
, dest
, kBackfaceIsVisible
, wrWidths
,
1396 {sides
, 4}, wrRadius
);
1398 const LayoutDeviceCoord halfWidth
= strokeWidth
* 0.5f
;
1399 const Float widths
[4] = {halfWidth
+ offset
, halfWidth
+ offset
,
1400 halfWidth
+ offset
, halfWidth
+ offset
};
1401 nsCSSBorderRenderer::ComputeOuterRadii(innerRadii
, widths
, &outerRadii
);
1402 LayoutDeviceRect
dest(rect
);
1403 dest
.Deflate(halfWidth
);
1405 MakePathForRoundedRect(aPaintData
, dest
.ToUnknownRect(), outerRadii
);
1406 aPaintData
.Stroke(path
, ColorPattern(ToDeviceColor(aColor
)),
1407 StrokeOptions(strokeWidth
));
1411 DrawRect(accentColor
.Get());
1417 offset
+= strokeWidth
;
1420 LayoutDeviceCoord(ThemeDrawing::SnapBorderWidth(1.0f
, aDpiRatio
));
1421 rect
.Inflate(strokeWidth
);
1423 DrawRect(accentColor
.GetForeground());
1426 LayoutDeviceIntMargin
Theme::GetWidgetBorder(nsDeviceContext
* aContext
,
1428 StyleAppearance aAppearance
) {
1429 switch (aAppearance
) {
1430 case StyleAppearance::Textfield
:
1431 case StyleAppearance::Textarea
:
1432 case StyleAppearance::NumberInput
:
1433 case StyleAppearance::Listbox
:
1434 case StyleAppearance::Menulist
:
1435 case StyleAppearance::MenulistButton
:
1436 case StyleAppearance::Button
:
1437 // Return the border size from the UA sheet, even though what we paint
1438 // doesn't actually match that. We know this is the UA sheet border
1439 // because we disable native theming when different border widths are
1440 // specified by authors, see Theme::IsWidgetStyled.
1442 // The Rounded() bit is technically redundant, but needed to appease the
1443 // type system, we should always end up with full device pixels due to
1444 // round_border_to_device_pixels at style time.
1445 return LayoutDeviceIntMargin::FromAppUnits(
1446 aFrame
->StyleBorder()->GetComputedBorder(),
1447 aFrame
->PresContext()->AppUnitsPerDevPixel())
1449 case StyleAppearance::Checkbox
:
1450 case StyleAppearance::Radio
: {
1451 DPIRatio dpiRatio
= GetDPIRatio(aFrame
, aAppearance
);
1452 LayoutDeviceIntCoord w
=
1453 ThemeDrawing::SnapBorderWidth(kCheckboxRadioBorderWidth
, dpiRatio
);
1454 return LayoutDeviceIntMargin(w
, w
, w
, w
);
1457 return LayoutDeviceIntMargin();
1461 bool Theme::GetWidgetPadding(nsDeviceContext
* aContext
, nsIFrame
* aFrame
,
1462 StyleAppearance aAppearance
,
1463 LayoutDeviceIntMargin
* aResult
) {
1464 switch (aAppearance
) {
1465 // Radios and checkboxes return a fixed size in GetMinimumWidgetSize
1466 // and have a meaningful baseline, so they can't have
1467 // author-specified padding.
1468 case StyleAppearance::Radio
:
1469 case StyleAppearance::Checkbox
:
1470 aResult
->SizeTo(0, 0, 0, 0);
1478 bool Theme::GetWidgetOverflow(nsDeviceContext
* aContext
, nsIFrame
* aFrame
,
1479 StyleAppearance aAppearance
,
1480 nsRect
* aOverflowRect
) {
1481 CSSIntMargin overflow
;
1482 switch (aAppearance
) {
1483 case StyleAppearance::FocusOutline
: {
1484 // 2px * one segment, or 2px + 1px
1486 StaticPrefs::widget_non_native_theme_solid_outline_style() ? 2 : 3;
1487 overflow
.SizeTo(width
, width
, width
, width
);
1490 case StyleAppearance::Radio
:
1491 case StyleAppearance::Checkbox
:
1492 case StyleAppearance::Range
:
1493 // 2px for each outline segment, plus 1px separation, plus we paint with a
1494 // 1px extra offset, so 6px.
1495 overflow
.SizeTo(6, 6, 6, 6);
1497 case StyleAppearance::Textarea
:
1498 case StyleAppearance::Textfield
:
1499 case StyleAppearance::NumberInput
:
1500 case StyleAppearance::Listbox
:
1501 case StyleAppearance::MenulistButton
:
1502 case StyleAppearance::Menulist
:
1503 case StyleAppearance::Button
:
1504 // 2px for each segment, plus 1px separation, but we paint 1px inside
1505 // the border area so 4px overflow.
1506 overflow
.SizeTo(4, 4, 4, 4);
1512 // TODO: This should convert from device pixels to app units, not from CSS
1513 // pixels. And it should take the dpi ratio into account.
1514 // Using CSS pixels can cause the overflow to be too small if the page is
1516 aOverflowRect
->Inflate(CSSPixel::ToAppUnits(overflow
));
1520 LayoutDeviceIntCoord
Theme::GetScrollbarSize(const nsPresContext
* aPresContext
,
1521 StyleScrollbarWidth aWidth
,
1523 return GetScrollbarDrawing().GetScrollbarSize(aPresContext
, aWidth
, aOverlay
);
1526 nscoord
Theme::GetCheckboxRadioPrefSize() {
1527 return CSSPixel::ToAppUnits(kCheckboxRadioContentBoxSize
);
1531 UniquePtr
<ScrollbarDrawing
> Theme::ScrollbarStyle() {
1532 switch (StaticPrefs::widget_non_native_theme_scrollbar_style()) {
1534 return MakeUnique
<ScrollbarDrawingCocoa
>();
1536 return MakeUnique
<ScrollbarDrawingGTK
>();
1538 return MakeUnique
<ScrollbarDrawingAndroid
>();
1540 return MakeUnique
<ScrollbarDrawingWin
>();
1542 return MakeUnique
<ScrollbarDrawingWin11
>();
1546 // Default to native scrollbar style for each platform.
1548 if (IsWin11OrLater()) {
1549 return MakeUnique
<ScrollbarDrawingWin11
>();
1551 return MakeUnique
<ScrollbarDrawingWin
>();
1552 #elif MOZ_WIDGET_COCOA
1553 return MakeUnique
<ScrollbarDrawingCocoa
>();
1554 #elif MOZ_WIDGET_GTK
1555 return MakeUnique
<ScrollbarDrawingGTK
>();
1557 return MakeUnique
<ScrollbarDrawingAndroid
>();
1559 # error "Unknown platform, need scrollbar implementation."
1563 LayoutDeviceIntSize
Theme::GetMinimumWidgetSize(nsPresContext
* aPresContext
,
1565 StyleAppearance aAppearance
) {
1566 DPIRatio dpiRatio
= GetDPIRatio(aFrame
, aAppearance
);
1568 if (IsWidgetScrollbarPart(aAppearance
)) {
1569 return GetScrollbarDrawing().GetMinimumWidgetSize(aPresContext
, aAppearance
,
1573 LayoutDeviceIntSize result
;
1574 switch (aAppearance
) {
1575 case StyleAppearance::RangeThumb
:
1576 result
.SizeTo((kMinimumRangeThumbSize
* dpiRatio
).Rounded(),
1577 (kMinimumRangeThumbSize
* dpiRatio
).Rounded());
1579 case StyleAppearance::MozMenulistArrowButton
:
1580 result
.width
= (kMinimumDropdownArrowButtonWidth
* dpiRatio
).Rounded();
1582 case StyleAppearance::SpinnerUpbutton
:
1583 case StyleAppearance::SpinnerDownbutton
:
1584 result
.width
= (kMinimumSpinnerButtonWidth
* dpiRatio
).Rounded();
1585 result
.height
= (kMinimumSpinnerButtonHeight
* dpiRatio
).Rounded();
1593 nsITheme::Transparency
Theme::GetWidgetTransparency(
1594 nsIFrame
* aFrame
, StyleAppearance aAppearance
) {
1595 if (auto scrollbar
= GetScrollbarDrawing().GetScrollbarPartTransparency(
1596 aFrame
, aAppearance
)) {
1599 if (aAppearance
== StyleAppearance::Tooltip
) {
1600 // We draw a rounded rect, so we need transparency.
1601 return eTransparent
;
1603 return eUnknownTransparency
;
1607 Theme::WidgetStateChanged(nsIFrame
* aFrame
, StyleAppearance aAppearance
,
1608 nsAtom
* aAttribute
, bool* aShouldRepaint
,
1609 const nsAttrValue
* aOldValue
) {
1611 // Hover/focus/active changed. Always repaint.
1612 *aShouldRepaint
= true;
1614 // Check the attribute to see if it's relevant.
1615 // disabled, checked, dlgtype, default, etc.
1616 *aShouldRepaint
= false;
1617 if (aAttribute
== nsGkAtoms::disabled
|| aAttribute
== nsGkAtoms::checked
||
1618 aAttribute
== nsGkAtoms::selected
||
1619 aAttribute
== nsGkAtoms::visuallyselected
||
1620 aAttribute
== nsGkAtoms::menuactive
||
1621 aAttribute
== nsGkAtoms::sortDirection
||
1622 aAttribute
== nsGkAtoms::focused
|| aAttribute
== nsGkAtoms::_default
||
1623 aAttribute
== nsGkAtoms::open
|| aAttribute
== nsGkAtoms::hover
) {
1624 *aShouldRepaint
= true;
1632 Theme::ThemeChanged() { return NS_OK
; }
1634 bool Theme::WidgetAppearanceDependsOnWindowFocus(StyleAppearance aAppearance
) {
1635 return IsWidgetScrollbarPart(aAppearance
);
1638 nsITheme::ThemeGeometryType
Theme::ThemeGeometryTypeForWidget(
1639 nsIFrame
* aFrame
, StyleAppearance aAppearance
) {
1640 return eThemeGeometryTypeUnknown
;
1643 bool Theme::ThemeSupportsWidget(nsPresContext
* aPresContext
, nsIFrame
* aFrame
,
1644 StyleAppearance aAppearance
) {
1645 switch (aAppearance
) {
1646 case StyleAppearance::Radio
:
1647 case StyleAppearance::Checkbox
:
1648 case StyleAppearance::FocusOutline
:
1649 case StyleAppearance::Textarea
:
1650 case StyleAppearance::Textfield
:
1651 case StyleAppearance::Range
:
1652 case StyleAppearance::RangeThumb
:
1653 case StyleAppearance::ProgressBar
:
1654 case StyleAppearance::Progresschunk
:
1655 case StyleAppearance::Meter
:
1656 case StyleAppearance::Meterchunk
:
1657 case StyleAppearance::ScrollbarbuttonUp
:
1658 case StyleAppearance::ScrollbarbuttonDown
:
1659 case StyleAppearance::ScrollbarbuttonLeft
:
1660 case StyleAppearance::ScrollbarbuttonRight
:
1661 case StyleAppearance::ScrollbarthumbHorizontal
:
1662 case StyleAppearance::ScrollbarthumbVertical
:
1663 case StyleAppearance::ScrollbartrackHorizontal
:
1664 case StyleAppearance::ScrollbartrackVertical
:
1665 case StyleAppearance::ScrollbarHorizontal
:
1666 case StyleAppearance::ScrollbarVertical
:
1667 case StyleAppearance::Scrollcorner
:
1668 case StyleAppearance::Button
:
1669 case StyleAppearance::Listbox
:
1670 case StyleAppearance::Menulist
:
1671 case StyleAppearance::MenulistButton
:
1672 case StyleAppearance::NumberInput
:
1673 case StyleAppearance::MozMenulistArrowButton
:
1674 case StyleAppearance::SpinnerUpbutton
:
1675 case StyleAppearance::SpinnerDownbutton
:
1676 case StyleAppearance::Menuitem
:
1677 case StyleAppearance::Tooltip
:
1678 return !IsWidgetStyled(aPresContext
, aFrame
, aAppearance
);
1684 bool Theme::WidgetIsContainer(StyleAppearance aAppearance
) {
1685 switch (aAppearance
) {
1686 case StyleAppearance::MozMenulistArrowButton
:
1687 case StyleAppearance::Radio
:
1688 case StyleAppearance::Checkbox
:
1695 bool Theme::ThemeDrawsFocusForWidget(nsIFrame
*, StyleAppearance
) {
1699 bool Theme::ThemeNeedsComboboxDropmarker() { return true; }
1701 bool Theme::ThemeSupportsScrollbarButtons() {
1702 return GetScrollbarDrawing().ShouldDrawScrollbarButtons();
1705 } // namespace mozilla::widget