2020-02-10 22:26:01 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "nsNativeBasicTheme.h"
|
|
|
|
|
2020-11-02 20:09:05 +03:00
|
|
|
#include "gfxBlur.h"
|
2021-01-26 04:35:04 +03:00
|
|
|
#include "mozilla/MathAlgorithms.h"
|
2020-11-23 19:21:38 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2020-11-02 20:09:05 +03:00
|
|
|
#include "mozilla/gfx/Rect.h"
|
|
|
|
#include "mozilla/gfx/Types.h"
|
|
|
|
#include "mozilla/gfx/Filters.h"
|
2021-02-04 19:15:27 +03:00
|
|
|
#include "mozilla/RelativeLuminanceUtils.h"
|
2021-02-10 03:47:38 +03:00
|
|
|
#include "mozilla/StaticPrefs_widget.h"
|
2021-02-23 13:49:37 +03:00
|
|
|
#include "mozilla/webrender/WebRenderAPI.h"
|
2020-10-15 07:54:41 +03:00
|
|
|
#include "nsCSSColorUtils.h"
|
2020-02-10 22:26:01 +03:00
|
|
|
#include "nsCSSRendering.h"
|
2020-10-01 00:06:47 +03:00
|
|
|
#include "nsLayoutUtils.h"
|
2020-02-10 22:26:01 +03:00
|
|
|
#include "PathHelpers.h"
|
|
|
|
|
2021-02-10 03:47:38 +03:00
|
|
|
#include "nsDeviceContext.h"
|
|
|
|
|
|
|
|
#include "nsColorControlFrame.h"
|
|
|
|
#include "nsDateTimeControlFrame.h"
|
|
|
|
#include "nsMeterFrame.h"
|
|
|
|
#include "nsProgressFrame.h"
|
|
|
|
#include "nsRangeFrame.h"
|
|
|
|
#include "mozilla/dom/HTMLMeterElement.h"
|
|
|
|
#include "mozilla/dom/HTMLProgressElement.h"
|
|
|
|
|
2020-07-31 15:04:29 +03:00
|
|
|
using namespace mozilla;
|
2020-02-10 22:26:01 +03:00
|
|
|
using namespace mozilla::widget;
|
2020-07-31 15:04:29 +03:00
|
|
|
using namespace mozilla::gfx;
|
2020-02-10 22:26:01 +03:00
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS_INHERITED(nsNativeBasicTheme, nsNativeTheme, nsITheme)
|
|
|
|
|
2021-01-23 22:31:33 +03:00
|
|
|
namespace {
|
|
|
|
|
2021-03-05 04:35:17 +03:00
|
|
|
static constexpr sRGBColor sTransparent = sRGBColor::White(0.0);
|
|
|
|
|
2021-01-23 22:31:33 +03:00
|
|
|
// This pushes and pops a clip rect to the draw target.
|
|
|
|
//
|
|
|
|
// This is done to reduce fuzz in places where we may have antialiasing,
|
|
|
|
// because skia is not clip-invariant: given different clips, it does not
|
|
|
|
// guarantee the same result, even if the painted content doesn't intersect
|
|
|
|
// the clips.
|
|
|
|
//
|
|
|
|
// This is a bit sad, overall, but...
|
|
|
|
struct MOZ_RAII AutoClipRect {
|
|
|
|
AutoClipRect(DrawTarget& aDt, const LayoutDeviceRect& aRect) : mDt(aDt) {
|
|
|
|
mDt.PushClipRect(aRect.ToUnknownRect());
|
|
|
|
}
|
|
|
|
|
|
|
|
~AutoClipRect() { mDt.PopClip(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
DrawTarget& mDt;
|
|
|
|
};
|
|
|
|
|
2021-01-27 01:12:03 +03:00
|
|
|
static LayoutDeviceIntCoord SnapBorderWidth(
|
|
|
|
CSSCoord aCssWidth, nsNativeBasicTheme::DPIRatio aDpiRatio) {
|
|
|
|
if (aCssWidth == 0.0f) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return std::max(LayoutDeviceIntCoord(1), (aCssWidth * aDpiRatio).Truncated());
|
|
|
|
}
|
|
|
|
|
2021-02-10 03:47:38 +03:00
|
|
|
[[nodiscard]] static float ScaleLuminanceBy(float aLuminance, float aFactor) {
|
|
|
|
return aLuminance >= 0.18f ? aLuminance * aFactor : aLuminance / aFactor;
|
|
|
|
}
|
|
|
|
|
2021-02-11 19:36:54 +03:00
|
|
|
static nscolor ThemedAccentColor(bool aBackground) {
|
2021-02-22 23:05:35 +03:00
|
|
|
MOZ_ASSERT(StaticPrefs::widget_non_native_theme_use_theme_accent());
|
2021-02-11 19:36:54 +03:00
|
|
|
nscolor color = LookAndFeel::GetColor(
|
|
|
|
aBackground ? LookAndFeel::ColorID::MozAccentColor
|
|
|
|
: LookAndFeel::ColorID::MozAccentColorForeground);
|
2021-02-10 03:47:38 +03:00
|
|
|
if (NS_GET_A(color) != 0xff) {
|
|
|
|
// Blend with white, ensuring the color is opaque to avoid surprises if we
|
|
|
|
// overdraw.
|
|
|
|
color = NS_ComposeColors(NS_RGB(0xff, 0xff, 0xff), color);
|
|
|
|
}
|
|
|
|
return color;
|
|
|
|
}
|
|
|
|
|
2021-01-23 22:31:33 +03:00
|
|
|
} // namespace
|
|
|
|
|
2021-02-10 03:47:38 +03:00
|
|
|
sRGBColor nsNativeBasicTheme::sAccentColor = sRGBColor::OpaqueWhite();
|
|
|
|
sRGBColor nsNativeBasicTheme::sAccentColorForeground = sRGBColor::OpaqueWhite();
|
|
|
|
sRGBColor nsNativeBasicTheme::sAccentColorLight = sRGBColor::OpaqueWhite();
|
|
|
|
sRGBColor nsNativeBasicTheme::sAccentColorDark = sRGBColor::OpaqueWhite();
|
|
|
|
sRGBColor nsNativeBasicTheme::sAccentColorDarker = sRGBColor::OpaqueWhite();
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::Init() {
|
|
|
|
Preferences::RegisterCallbackAndCall(PrefChangedCallback,
|
|
|
|
"widget.non-native.use-theme-accent");
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::Shutdown() {
|
|
|
|
Preferences::UnregisterCallback(PrefChangedCallback,
|
|
|
|
"widget.non-native.use-theme-accent");
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::LookAndFeelChanged() { RecomputeAccentColors(); }
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::RecomputeAccentColors() {
|
|
|
|
MOZ_RELEASE_ASSERT(NS_IsMainThread());
|
|
|
|
|
2021-02-22 23:05:35 +03:00
|
|
|
if (!StaticPrefs::widget_non_native_theme_use_theme_accent()) {
|
2021-02-10 03:47:38 +03:00
|
|
|
sAccentColorForeground = sColorWhite;
|
|
|
|
sAccentColor =
|
|
|
|
sRGBColor::UnusualFromARGB(0xff0060df); // Luminance: 13.69346%
|
|
|
|
sAccentColorLight =
|
|
|
|
sRGBColor::UnusualFromARGB(0x4d008deb); // Luminance: 25.04791%
|
|
|
|
sAccentColorDark =
|
|
|
|
sRGBColor::UnusualFromARGB(0xff0250bb); // Luminance: 9.33808%
|
|
|
|
sAccentColorDarker =
|
|
|
|
sRGBColor::UnusualFromARGB(0xff054096); // Luminance: 5.90106%
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
sAccentColorForeground = sRGBColor::FromABGR(ThemedAccentColor(false));
|
|
|
|
const nscolor accent = ThemedAccentColor(true);
|
|
|
|
const float luminance = RelativeLuminanceUtils::Compute(accent);
|
|
|
|
|
|
|
|
constexpr float kLightLuminanceScale = 25.048f / 13.693f;
|
|
|
|
constexpr float kDarkLuminanceScale = 9.338f / 13.693f;
|
|
|
|
constexpr float kDarkerLuminanceScale = 5.901f / 13.693f;
|
|
|
|
|
|
|
|
const float lightLuminanceAdjust =
|
|
|
|
ScaleLuminanceBy(luminance, kLightLuminanceScale);
|
|
|
|
const float darkLuminanceAdjust =
|
|
|
|
ScaleLuminanceBy(luminance, kDarkLuminanceScale);
|
|
|
|
const float darkerLuminanceAdjust =
|
|
|
|
ScaleLuminanceBy(luminance, kDarkerLuminanceScale);
|
|
|
|
|
|
|
|
sAccentColor = sRGBColor::FromABGR(accent);
|
|
|
|
|
|
|
|
{
|
|
|
|
nscolor lightColor =
|
|
|
|
RelativeLuminanceUtils::Adjust(accent, lightLuminanceAdjust);
|
|
|
|
lightColor = NS_RGBA(NS_GET_R(lightColor), NS_GET_G(lightColor),
|
|
|
|
NS_GET_B(lightColor), 0x4d);
|
|
|
|
sAccentColorLight = sRGBColor::FromABGR(lightColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
sAccentColorDark = sRGBColor::FromABGR(
|
|
|
|
RelativeLuminanceUtils::Adjust(accent, darkLuminanceAdjust));
|
|
|
|
sAccentColorDarker = sRGBColor::FromABGR(
|
|
|
|
RelativeLuminanceUtils::Adjust(accent, darkerLuminanceAdjust));
|
|
|
|
}
|
|
|
|
|
2021-01-21 00:54:58 +03:00
|
|
|
static bool IsScrollbarWidthThin(nsIFrame* aFrame) {
|
|
|
|
ComputedStyle* style = nsLayoutUtils::StyleForScrollbar(aFrame);
|
|
|
|
auto scrollbarWidth = style->StyleUIReset()->mScrollbarWidth;
|
|
|
|
return scrollbarWidth == StyleScrollbarWidth::Thin;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
static sRGBColor SystemColor(StyleSystemColor aColor) {
|
|
|
|
return sRGBColor::FromABGR(LookAndFeel::GetColor(aColor));
|
|
|
|
}
|
|
|
|
|
|
|
|
static std::pair<sRGBColor, sRGBColor> SystemColorPair(
|
|
|
|
StyleSystemColor aFirst, StyleSystemColor aSecond) {
|
|
|
|
return std::make_pair(SystemColor(aFirst), SystemColor(aSecond));
|
|
|
|
}
|
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
/* static */
|
2021-01-29 01:11:54 +03:00
|
|
|
auto nsNativeBasicTheme::GetDPIRatioForScrollbarPart(nsPresContext* aPc)
|
|
|
|
-> DPIRatio {
|
|
|
|
return DPIRatio(float(AppUnitsPerCSSPixel()) /
|
|
|
|
aPc->DeviceContext()->AppUnitsPerDevPixelAtUnitFullZoom());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
auto nsNativeBasicTheme::GetDPIRatio(nsPresContext* aPc,
|
2021-01-27 00:34:35 +03:00
|
|
|
StyleAppearance aAppearance) -> DPIRatio {
|
|
|
|
// Widgets react to zoom, except scrollbars.
|
2021-01-29 01:11:54 +03:00
|
|
|
if (IsWidgetScrollbarPart(aAppearance)) {
|
|
|
|
return GetDPIRatioForScrollbarPart(aPc);
|
|
|
|
}
|
|
|
|
return DPIRatio(float(AppUnitsPerCSSPixel()) / aPc->AppUnitsPerDevPixel());
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
auto nsNativeBasicTheme::GetDPIRatio(nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance) -> DPIRatio {
|
|
|
|
return GetDPIRatio(aFrame->PresContext(), aAppearance);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
/* static */
|
|
|
|
bool nsNativeBasicTheme::IsDateTimeResetButton(nsIFrame* aFrame) {
|
|
|
|
if (!aFrame) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-02-10 22:26:01 +03:00
|
|
|
nsIFrame* parent = aFrame->GetParent();
|
|
|
|
if (parent && (parent = parent->GetParent()) &&
|
|
|
|
(parent = parent->GetParent())) {
|
|
|
|
nsDateTimeControlFrame* dateTimeFrame = do_QueryFrame(parent);
|
|
|
|
if (dateTimeFrame) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
/* static */
|
|
|
|
bool nsNativeBasicTheme::IsColorPickerButton(nsIFrame* aFrame) {
|
|
|
|
nsColorControlFrame* colorPickerButton = do_QueryFrame(aFrame);
|
|
|
|
return colorPickerButton;
|
|
|
|
}
|
|
|
|
|
2021-03-12 14:25:49 +03:00
|
|
|
// Checkbox and radio need to preserve aspect-ratio for compat. We also snap the
|
|
|
|
// size to exact device pixels to avoid snapping disorting the circles.
|
|
|
|
static LayoutDeviceRect CheckBoxRadioRect(const LayoutDeviceRect& aRect) {
|
|
|
|
// Place a square rect in the center of aRect.
|
|
|
|
auto size = std::trunc(std::min(aRect.width, aRect.height));
|
|
|
|
auto position = aRect.Center() - LayoutDevicePoint(size * 0.5, size * 0.5);
|
|
|
|
return LayoutDeviceRect(position, LayoutDeviceSize(size, size));
|
2020-02-16 19:04:31 +03:00
|
|
|
}
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeCheckboxColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, StyleAppearance aAppearance,
|
|
|
|
UseSystemColors aUseSystemColors) {
|
2021-01-05 15:45:48 +03:00
|
|
|
MOZ_ASSERT(aAppearance == StyleAppearance::Checkbox ||
|
|
|
|
aAppearance == StyleAppearance::Radio);
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
|
|
|
bool isPressed = !isDisabled && aState.HasAllStates(NS_EVENT_STATE_HOVER |
|
|
|
|
NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
bool isChecked = aState.HasState(NS_EVENT_STATE_CHECKED);
|
2021-01-05 15:45:48 +03:00
|
|
|
bool isIndeterminate = aAppearance == StyleAppearance::Checkbox &&
|
|
|
|
aState.HasState(NS_EVENT_STATE_INDETERMINATE);
|
2020-11-17 23:53:01 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
sRGBColor backgroundColor = SystemColor(StyleSystemColor::TextBackground);
|
|
|
|
sRGBColor borderColor = SystemColor(StyleSystemColor::Buttontext);
|
|
|
|
if (isDisabled) {
|
|
|
|
borderColor = SystemColor(StyleSystemColor::Graytext);
|
|
|
|
if (isChecked || isIndeterminate) {
|
|
|
|
backgroundColor = borderColor;
|
|
|
|
}
|
|
|
|
} else if (isChecked || isIndeterminate) {
|
|
|
|
backgroundColor = SystemColor(StyleSystemColor::Highlight);
|
|
|
|
}
|
|
|
|
return {backgroundColor, borderColor};
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
sRGBColor backgroundColor = sColorWhite;
|
|
|
|
sRGBColor borderColor = sColorGrey40;
|
|
|
|
if (isDisabled) {
|
2020-12-15 04:42:10 +03:00
|
|
|
if (isChecked || isIndeterminate) {
|
2020-11-17 23:53:01 +03:00
|
|
|
backgroundColor = borderColor = sColorGrey40Alpha50;
|
|
|
|
} else {
|
|
|
|
backgroundColor = sColorWhiteAlpha50;
|
|
|
|
borderColor = sColorGrey40Alpha50;
|
|
|
|
}
|
|
|
|
} else {
|
2020-12-15 04:42:10 +03:00
|
|
|
if (isChecked || isIndeterminate) {
|
2021-02-10 03:47:38 +03:00
|
|
|
const auto& color = isPressed ? sAccentColorDarker
|
|
|
|
: isHovered ? sAccentColorDark
|
|
|
|
: sAccentColor;
|
|
|
|
backgroundColor = borderColor = color;
|
2020-11-17 23:53:01 +03:00
|
|
|
} else if (isPressed) {
|
|
|
|
backgroundColor = sColorGrey20;
|
|
|
|
borderColor = sColorGrey60;
|
|
|
|
} else if (isHovered) {
|
|
|
|
backgroundColor = sColorWhite;
|
|
|
|
borderColor = sColorGrey50;
|
|
|
|
} else {
|
|
|
|
backgroundColor = sColorWhite;
|
|
|
|
borderColor = sColorGrey40;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_pair(backgroundColor, borderColor);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor nsNativeBasicTheme::ComputeCheckmarkColor(
|
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(StyleSystemColor::TextBackground);
|
|
|
|
}
|
2021-02-10 03:47:38 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_DISABLED)) {
|
|
|
|
return sColorWhiteAlpha50;
|
|
|
|
}
|
|
|
|
return sAccentColorForeground;
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor nsNativeBasicTheme::ComputeBorderColor(
|
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
2021-03-12 17:44:13 +03:00
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(isDisabled ? StyleSystemColor::Graytext
|
|
|
|
: StyleSystemColor::Buttontext);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isActive =
|
|
|
|
aState.HasAllStates(NS_EVENT_STATE_HOVER | NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
2020-11-19 05:15:44 +03:00
|
|
|
bool isFocused = aState.HasState(NS_EVENT_STATE_FOCUSRING);
|
2020-11-17 23:53:01 +03:00
|
|
|
if (isDisabled) {
|
|
|
|
return sColorGrey40Alpha50;
|
|
|
|
}
|
|
|
|
if (isFocused) {
|
2021-03-05 04:35:17 +03:00
|
|
|
// We draw the outline over the border for all controls that call into this,
|
|
|
|
// so to prevent issues where the border shows underneath if it snaps in the
|
|
|
|
// wrong direction, we use a transparent border. An alternative to this is
|
|
|
|
// ensuring that we snap the offset in PaintRoundedFocusRect the same was a
|
|
|
|
// we snap border widths, so that negative offsets are guaranteed to cover
|
|
|
|
// the border. But this looks harder to mess up.
|
|
|
|
return sTransparent;
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
if (isActive) {
|
|
|
|
return sColorGrey60;
|
|
|
|
}
|
|
|
|
if (isHovered) {
|
|
|
|
return sColorGrey50;
|
|
|
|
}
|
|
|
|
return sColorGrey40;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeButtonColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors,
|
|
|
|
nsIFrame* aFrame) {
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isActive =
|
|
|
|
aState.HasAllStates(NS_EVENT_STATE_HOVER | NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
const sRGBColor backgroundColor = [&] {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(StyleSystemColor::Buttonface);
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
if (isDisabled) {
|
|
|
|
return sColorGrey10Alpha50;
|
|
|
|
}
|
|
|
|
if (IsDateTimeResetButton(aFrame)) {
|
|
|
|
return sColorWhite;
|
|
|
|
}
|
|
|
|
if (isActive) {
|
|
|
|
return sColorGrey30;
|
|
|
|
}
|
|
|
|
if (isHovered) {
|
|
|
|
return sColorGrey20;
|
|
|
|
}
|
|
|
|
return sColorGrey10;
|
|
|
|
}();
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
const sRGBColor borderColor = ComputeBorderColor(aState, aUseSystemColors);
|
2020-11-17 23:53:01 +03:00
|
|
|
return std::make_pair(backgroundColor, borderColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeTextfieldColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
|
|
|
const sRGBColor backgroundColor = [&] {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(StyleSystemColor::TextBackground);
|
|
|
|
}
|
|
|
|
if (aState.HasState(NS_EVENT_STATE_DISABLED)) {
|
|
|
|
return sColorWhiteAlpha50;
|
|
|
|
}
|
|
|
|
return sColorWhite;
|
|
|
|
}();
|
|
|
|
const sRGBColor borderColor = ComputeBorderColor(aState, aUseSystemColors);
|
2020-11-17 23:53:01 +03:00
|
|
|
return std::make_pair(backgroundColor, borderColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeRangeProgressColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::Highlight,
|
|
|
|
StyleSystemColor::Buttontext);
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isActive =
|
|
|
|
aState.HasAllStates(NS_EVENT_STATE_HOVER | NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
|
|
|
|
if (isDisabled) {
|
|
|
|
return std::make_pair(sColorGrey40Alpha50, sColorGrey40Alpha50);
|
|
|
|
}
|
|
|
|
if (isActive || isHovered) {
|
2021-02-10 03:47:38 +03:00
|
|
|
return std::make_pair(sAccentColorDark, sAccentColorDarker);
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
2021-02-10 03:47:38 +03:00
|
|
|
return std::make_pair(sAccentColor, sAccentColorDark);
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeRangeTrackColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::TextBackground,
|
|
|
|
StyleSystemColor::Buttontext);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isActive =
|
|
|
|
aState.HasAllStates(NS_EVENT_STATE_HOVER | NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
|
|
|
|
if (isDisabled) {
|
|
|
|
return std::make_pair(sColorGrey10Alpha50, sColorGrey40Alpha50);
|
|
|
|
}
|
|
|
|
if (isActive || isHovered) {
|
|
|
|
return std::make_pair(sColorGrey20, sColorGrey50);
|
|
|
|
}
|
|
|
|
return std::make_pair(sColorGrey10, sColorGrey40);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeRangeThumbColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::Highlight,
|
|
|
|
StyleSystemColor::Highlight);
|
|
|
|
}
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isActive =
|
|
|
|
aState.HasAllStates(NS_EVENT_STATE_HOVER | NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
|
|
|
bool isHovered = !isDisabled && aState.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
|
|
|
|
const sRGBColor& backgroundColor = [&] {
|
|
|
|
if (isDisabled) {
|
2021-02-24 02:22:19 +03:00
|
|
|
return sColorGrey40;
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
if (isActive) {
|
2021-02-10 03:47:38 +03:00
|
|
|
return sAccentColor;
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
if (isHovered) {
|
|
|
|
return sColorGrey60;
|
|
|
|
}
|
|
|
|
return sColorGrey50;
|
|
|
|
}();
|
|
|
|
|
|
|
|
const sRGBColor borderColor = sColorWhite;
|
|
|
|
|
|
|
|
return std::make_pair(backgroundColor, borderColor);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeProgressColors(
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::Highlight,
|
|
|
|
StyleSystemColor::Buttontext);
|
|
|
|
}
|
2021-02-10 03:47:38 +03:00
|
|
|
return std::make_pair(sAccentColor, sAccentColorDark);
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeProgressTrackColors(
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::TextBackground,
|
|
|
|
StyleSystemColor::Buttontext);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
return std::make_pair(sColorGrey10, sColorGrey40);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeMeterchunkColors(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aMeterState, UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::TextBackground,
|
|
|
|
StyleSystemColor::TextForeground);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
sRGBColor borderColor = sColorMeterGreen20;
|
|
|
|
sRGBColor chunkColor = sColorMeterGreen10;
|
|
|
|
|
2021-01-06 09:00:28 +03:00
|
|
|
if (aMeterState.HasState(NS_EVENT_STATE_SUB_OPTIMUM)) {
|
|
|
|
borderColor = sColorMeterYellow20;
|
|
|
|
chunkColor = sColorMeterYellow10;
|
|
|
|
} else if (aMeterState.HasState(NS_EVENT_STATE_SUB_SUB_OPTIMUM)) {
|
|
|
|
borderColor = sColorMeterRed20;
|
|
|
|
chunkColor = sColorMeterRed10;
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_pair(chunkColor, borderColor);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
std::pair<sRGBColor, sRGBColor> nsNativeBasicTheme::ComputeMeterTrackColors(
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::TextBackground,
|
|
|
|
StyleSystemColor::TextForeground);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
return std::make_pair(sColorGrey10, sColorGrey40);
|
|
|
|
}
|
|
|
|
|
|
|
|
sRGBColor nsNativeBasicTheme::ComputeMenulistArrowButtonColor(
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
2020-11-17 23:53:01 +03:00
|
|
|
bool isDisabled = aState.HasState(NS_EVENT_STATE_DISABLED);
|
2021-03-12 17:44:13 +03:00
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(isDisabled ? StyleSystemColor::Graytext
|
|
|
|
: StyleSystemColor::TextForeground);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
return isDisabled ? sColorGrey60Alpha50 : sColorGrey60;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
std::array<sRGBColor, 3> nsNativeBasicTheme::ComputeFocusRectColors(
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return {SystemColor(StyleSystemColor::Highlight),
|
|
|
|
SystemColor(StyleSystemColor::Buttontext),
|
|
|
|
SystemColor(StyleSystemColor::TextBackground)};
|
|
|
|
}
|
|
|
|
|
2021-02-10 03:47:38 +03:00
|
|
|
return {sAccentColor, sColorWhiteAlpha80, sAccentColorLight};
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor nsNativeBasicTheme::ComputeScrollbarColor(
|
2021-01-21 00:33:34 +03:00
|
|
|
nsIFrame* aFrame, const ComputedStyle& aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aDocumentState, UseSystemColors aUseSystemColors) {
|
2020-11-17 23:53:01 +03:00
|
|
|
const nsStyleUI* ui = aStyle.StyleUI();
|
2021-03-12 17:44:13 +03:00
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return SystemColor(StyleSystemColor::TextBackground);
|
|
|
|
}
|
|
|
|
if (ShouldUseDarkScrollbar(aFrame, aStyle)) {
|
|
|
|
return sRGBColor::FromU8(20, 20, 25, 77);
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
nscolor color;
|
|
|
|
if (ui->mScrollbarColor.IsColors()) {
|
|
|
|
color = ui->mScrollbarColor.AsColors().track.CalcColor(aStyle);
|
|
|
|
} else if (aDocumentState.HasAllStates(NS_DOCUMENT_STATE_WINDOW_INACTIVE)) {
|
|
|
|
color = LookAndFeel::GetColor(LookAndFeel::ColorID::ThemedScrollbarInactive,
|
|
|
|
sScrollbarColor.ToABGR());
|
|
|
|
} else {
|
|
|
|
color = LookAndFeel::GetColor(LookAndFeel::ColorID::ThemedScrollbar,
|
|
|
|
sScrollbarColor.ToABGR());
|
|
|
|
}
|
2021-03-12 17:44:13 +03:00
|
|
|
return gfx::sRGBColor::FromABGR(color);
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-04 19:15:27 +03:00
|
|
|
nscolor nsNativeBasicTheme::AdjustUnthemedScrollbarThumbColor(
|
|
|
|
nscolor aFaceColor, EventStates aStates) {
|
|
|
|
// In Windows 10, scrollbar thumb has the following colors:
|
|
|
|
//
|
|
|
|
// State | Color | Luminance
|
|
|
|
// -------+----------+----------
|
|
|
|
// Normal | Gray 205 | 61.0%
|
|
|
|
// Hover | Gray 166 | 38.1%
|
|
|
|
// Active | Gray 96 | 11.7%
|
|
|
|
//
|
|
|
|
// This function is written based on the ratios between the values.
|
|
|
|
bool isActive = aStates.HasState(NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isHover = aStates.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
if (!isActive && !isHover) {
|
|
|
|
return aFaceColor;
|
|
|
|
}
|
|
|
|
float luminance = RelativeLuminanceUtils::Compute(aFaceColor);
|
|
|
|
if (isActive) {
|
2021-02-10 03:47:38 +03:00
|
|
|
// 11.7 / 61.0
|
|
|
|
luminance = ScaleLuminanceBy(luminance, 0.192f);
|
2021-02-04 19:15:27 +03:00
|
|
|
} else {
|
2021-02-10 03:47:38 +03:00
|
|
|
// 38.1 / 61.0
|
|
|
|
luminance = ScaleLuminanceBy(luminance, 0.625f);
|
2021-02-04 19:15:27 +03:00
|
|
|
}
|
|
|
|
return RelativeLuminanceUtils::Adjust(aFaceColor, luminance);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
/*static*/
|
|
|
|
nscolor nsNativeBasicTheme::GetScrollbarButtonColor(nscolor aTrackColor,
|
|
|
|
EventStates aStates) {
|
|
|
|
// See numbers in GetScrollbarArrowColor.
|
|
|
|
// This function is written based on ratios between values listed there.
|
|
|
|
|
|
|
|
bool isActive = aStates.HasState(NS_EVENT_STATE_ACTIVE);
|
|
|
|
bool isHover = aStates.HasState(NS_EVENT_STATE_HOVER);
|
|
|
|
if (!isActive && !isHover) {
|
|
|
|
return aTrackColor;
|
|
|
|
}
|
|
|
|
float luminance = RelativeLuminanceUtils::Compute(aTrackColor);
|
|
|
|
if (isActive) {
|
|
|
|
if (luminance >= 0.18f) {
|
|
|
|
luminance *= 0.134f;
|
|
|
|
} else {
|
|
|
|
luminance /= 0.134f;
|
|
|
|
luminance = std::min(luminance, 1.0f);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (luminance >= 0.18f) {
|
|
|
|
luminance *= 0.805f;
|
|
|
|
} else {
|
|
|
|
luminance /= 0.805f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return RelativeLuminanceUtils::Adjust(aTrackColor, luminance);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*static*/
|
|
|
|
nscolor nsNativeBasicTheme::GetScrollbarArrowColor(nscolor aButtonColor) {
|
|
|
|
// In Windows 10 scrollbar, there are several gray colors used:
|
|
|
|
//
|
|
|
|
// State | Background (lum) | Arrow | Contrast
|
|
|
|
// -------+------------------+---------+---------
|
|
|
|
// Normal | Gray 240 (87.1%) | Gray 96 | 5.5
|
|
|
|
// Hover | Gray 218 (70.1%) | Black | 15.0
|
|
|
|
// Active | Gray 96 (11.7%) | White | 6.3
|
|
|
|
//
|
|
|
|
// Contrast value is computed based on the definition in
|
|
|
|
// https://www.w3.org/TR/WCAG20/#contrast-ratiodef
|
|
|
|
//
|
|
|
|
// This function is written based on these values.
|
|
|
|
|
|
|
|
float luminance = RelativeLuminanceUtils::Compute(aButtonColor);
|
|
|
|
// Color with luminance larger than 0.72 has contrast ratio over 4.6
|
|
|
|
// to color with luminance of gray 96, so this value is chosen for
|
|
|
|
// this range. It is the luminance of gray 221.
|
|
|
|
if (luminance >= 0.72) {
|
|
|
|
// ComputeRelativeLuminanceFromComponents(96). That function cannot
|
|
|
|
// be constexpr because of std::pow.
|
|
|
|
const float GRAY96_LUMINANCE = 0.117f;
|
|
|
|
return RelativeLuminanceUtils::Adjust(aButtonColor, GRAY96_LUMINANCE);
|
|
|
|
}
|
|
|
|
// The contrast ratio of a color to black equals that to white when its
|
|
|
|
// luminance is around 0.18, with a contrast ratio ~4.6 to both sides,
|
|
|
|
// thus the value below. It's the lumanince of gray 118.
|
|
|
|
if (luminance >= 0.18) {
|
|
|
|
return NS_RGBA(0, 0, 0, NS_GET_A(aButtonColor));
|
|
|
|
}
|
|
|
|
return NS_RGBA(255, 255, 255, NS_GET_A(aButtonColor));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::ShouldUseDarkScrollbar(nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle) {
|
|
|
|
if (StaticPrefs::widget_disable_dark_scrollbar()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (aStyle.StyleUI()->mScrollbarColor.IsColors()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return nsNativeTheme::IsDarkBackground(aFrame);
|
|
|
|
}
|
|
|
|
|
2021-01-21 00:33:34 +03:00
|
|
|
sRGBColor nsNativeBasicTheme::ComputeScrollbarThumbColor(
|
|
|
|
nsIFrame* aFrame, const ComputedStyle& aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aElementState, const EventStates& aDocumentState,
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (!bool(aUseSystemColors) && ShouldUseDarkScrollbar(aFrame, aStyle)) {
|
|
|
|
return sRGBColor::FromABGR(AdjustUnthemedScrollbarThumbColor(
|
|
|
|
NS_RGBA(249, 249, 250, 102), aElementState));
|
|
|
|
}
|
2020-11-17 23:53:01 +03:00
|
|
|
const nsStyleUI* ui = aStyle.StyleUI();
|
|
|
|
nscolor color;
|
|
|
|
if (ui->mScrollbarColor.IsColors()) {
|
2021-03-12 17:44:13 +03:00
|
|
|
return sRGBColor::FromABGR(AdjustUnthemedScrollbarThumbColor(
|
|
|
|
ui->mScrollbarColor.AsColors().thumb.CalcColor(aStyle), aElementState));
|
|
|
|
}
|
|
|
|
|
|
|
|
auto systemColor = [&] {
|
|
|
|
if (aDocumentState.HasState(NS_DOCUMENT_STATE_WINDOW_INACTIVE)) {
|
|
|
|
return StyleSystemColor::ThemedScrollbarThumbInactive;
|
|
|
|
}
|
|
|
|
if (aElementState.HasState(NS_EVENT_STATE_ACTIVE)) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return StyleSystemColor::Highlight;
|
|
|
|
}
|
|
|
|
return StyleSystemColor::ThemedScrollbarThumbActive;
|
|
|
|
}
|
|
|
|
if (aElementState.HasState(NS_EVENT_STATE_HOVER)) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return StyleSystemColor::Highlight;
|
|
|
|
}
|
|
|
|
return StyleSystemColor::ThemedScrollbarThumbHover;
|
|
|
|
}
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
return StyleSystemColor::TextForeground;
|
|
|
|
}
|
|
|
|
return StyleSystemColor::ThemedScrollbarThumb;
|
|
|
|
}();
|
|
|
|
|
|
|
|
if (NS_FAILED(LookAndFeel::GetColor(systemColor, &color))) {
|
|
|
|
color = AdjustUnthemedScrollbarThumbColor(sScrollbarThumbColor.ToABGR(),
|
|
|
|
aElementState);
|
2020-11-17 23:53:01 +03:00
|
|
|
}
|
|
|
|
return gfx::sRGBColor::FromABGR(color);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
std::pair<sRGBColor, sRGBColor>
|
|
|
|
nsNativeBasicTheme::ComputeScrollbarButtonColors(
|
2021-01-21 00:33:34 +03:00
|
|
|
nsIFrame* aFrame, StyleAppearance aAppearance, const ComputedStyle& aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aElementState, const EventStates& aDocumentState,
|
|
|
|
UseSystemColors aUseSystemColors) {
|
|
|
|
if (bool(aUseSystemColors)) {
|
|
|
|
if (aElementState.HasAtLeastOneOfStates(NS_EVENT_STATE_ACTIVE |
|
|
|
|
NS_EVENT_STATE_HOVER)) {
|
|
|
|
return SystemColorPair(StyleSystemColor::Highlight,
|
|
|
|
StyleSystemColor::Buttonface);
|
2021-01-21 00:33:34 +03:00
|
|
|
}
|
2021-03-12 17:44:13 +03:00
|
|
|
return SystemColorPair(StyleSystemColor::TextBackground,
|
|
|
|
StyleSystemColor::TextForeground);
|
2021-01-21 00:33:34 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
auto trackColor =
|
|
|
|
ComputeScrollbarColor(aFrame, aStyle, aDocumentState, aUseSystemColors);
|
|
|
|
nscolor buttonColor =
|
|
|
|
GetScrollbarButtonColor(trackColor.ToABGR(), aElementState);
|
|
|
|
nscolor arrowColor = GetScrollbarArrowColor(buttonColor);
|
|
|
|
return {sRGBColor::FromABGR(buttonColor), sRGBColor::FromABGR(arrowColor)};
|
2021-01-21 00:33:34 +03:00
|
|
|
}
|
|
|
|
|
2021-02-08 19:25:16 +03:00
|
|
|
static const CSSCoord kInnerFocusOutlineWidth = 2.0f;
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintRoundedFocusRect(PaintBackendData& aBackendData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio,
|
2020-07-30 20:02:02 +03:00
|
|
|
CSSCoord aRadius,
|
2021-02-08 19:25:16 +03:00
|
|
|
CSSCoord aOffset) {
|
2021-01-29 01:11:54 +03:00
|
|
|
// NOTE(emilio): If the widths or offsets here change, make sure to tweak
|
|
|
|
// the GetWidgetOverflow path for FocusOutline.
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [innerColor, middleColor, outerColor] =
|
|
|
|
ComputeFocusRectColors(aUseSystemColors);
|
2021-01-22 01:12:14 +03:00
|
|
|
|
2020-11-30 01:19:10 +03:00
|
|
|
LayoutDeviceRect focusRect(aRect);
|
2021-01-22 01:12:14 +03:00
|
|
|
|
|
|
|
// The focus rect is painted outside of the border area (aRect), see:
|
|
|
|
//
|
|
|
|
// data:text/html,<div style="border: 1px solid; outline: 2px solid
|
|
|
|
// red">Foobar</div>
|
|
|
|
//
|
|
|
|
// But some controls might provide a negative offset to cover the border, if
|
|
|
|
// necessary.
|
2021-02-23 13:49:37 +03:00
|
|
|
CSSCoord strokeWidth = kInnerFocusOutlineWidth;
|
2021-03-05 04:35:17 +03:00
|
|
|
auto strokeWidthDevPx =
|
|
|
|
LayoutDeviceCoord(SnapBorderWidth(strokeWidth, aDpiRatio));
|
2021-02-23 13:49:37 +03:00
|
|
|
CSSCoord strokeRadius = aRadius;
|
2021-03-05 04:35:17 +03:00
|
|
|
focusRect.Inflate(aOffset * aDpiRatio + strokeWidthDevPx);
|
2021-02-23 13:49:37 +03:00
|
|
|
|
2021-03-05 04:35:17 +03:00
|
|
|
PaintRoundedRectWithRadius(aBackendData, focusRect, sTransparent, innerColor,
|
2021-02-23 13:49:37 +03:00
|
|
|
strokeWidth, strokeRadius, aDpiRatio);
|
|
|
|
|
|
|
|
strokeWidth = CSSCoord(1.0f);
|
2021-03-05 04:35:17 +03:00
|
|
|
strokeWidthDevPx = LayoutDeviceCoord(SnapBorderWidth(strokeWidth, aDpiRatio));
|
2021-02-23 13:49:37 +03:00
|
|
|
strokeRadius += strokeWidth;
|
2021-03-05 04:35:17 +03:00
|
|
|
focusRect.Inflate(strokeWidthDevPx);
|
2021-02-23 13:49:37 +03:00
|
|
|
|
2021-03-05 04:35:17 +03:00
|
|
|
PaintRoundedRectWithRadius(aBackendData, focusRect, sTransparent, middleColor,
|
2021-02-23 13:49:37 +03:00
|
|
|
strokeWidth, strokeRadius, aDpiRatio);
|
|
|
|
|
|
|
|
strokeWidth = CSSCoord(2.0f);
|
2021-03-05 04:35:17 +03:00
|
|
|
strokeWidthDevPx = LayoutDeviceCoord(SnapBorderWidth(strokeWidth, aDpiRatio));
|
2021-02-23 13:49:37 +03:00
|
|
|
strokeRadius += strokeWidth;
|
2021-03-05 04:35:17 +03:00
|
|
|
focusRect.Inflate(strokeWidthDevPx);
|
2021-02-23 13:49:37 +03:00
|
|
|
|
2021-03-05 04:35:17 +03:00
|
|
|
PaintRoundedRectWithRadius(aBackendData, focusRect, sTransparent, outerColor,
|
2021-02-23 13:49:37 +03:00
|
|
|
strokeWidth, strokeRadius, aDpiRatio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::PaintRoundedRectWithRadius(
|
|
|
|
WebRenderBackendData& aWrData, const LayoutDeviceRect& aRect,
|
|
|
|
const LayoutDeviceRect& aClipRect, const sRGBColor& aBackgroundColor,
|
|
|
|
const sRGBColor& aBorderColor, CSSCoord aBorderWidth, CSSCoord aRadius,
|
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
const bool kBackfaceIsVisible = true;
|
|
|
|
const LayoutDeviceCoord borderWidth(SnapBorderWidth(aBorderWidth, aDpiRatio));
|
|
|
|
const LayoutDeviceCoord radius(aRadius * aDpiRatio);
|
|
|
|
const wr::LayoutRect dest = wr::ToLayoutRect(aRect);
|
|
|
|
const wr::LayoutRect clip = wr::ToLayoutRect(aClipRect);
|
|
|
|
|
|
|
|
// Push the background.
|
|
|
|
if (aBackgroundColor.a) {
|
|
|
|
auto backgroundColor = wr::ToColorF(ToDeviceColor(aBackgroundColor));
|
|
|
|
wr::LayoutRect backgroundRect = [&] {
|
|
|
|
LayoutDeviceRect bg = aRect;
|
|
|
|
bg.Deflate(borderWidth);
|
|
|
|
return wr::ToLayoutRect(bg);
|
|
|
|
}();
|
|
|
|
if (!radius) {
|
|
|
|
aWrData.mBuilder.PushRect(backgroundRect, clip, kBackfaceIsVisible,
|
|
|
|
backgroundColor);
|
|
|
|
} else {
|
|
|
|
// NOTE(emilio): This follows DisplayListBuilder::PushRoundedRect and
|
|
|
|
// draws the rounded fill as an extra thick rounded border instead of a
|
|
|
|
// rectangle that's clipped to a rounded clip. Refer to that method for a
|
|
|
|
// justification. See bug 1694269.
|
|
|
|
LayoutDeviceCoord backgroundRadius =
|
|
|
|
std::max(0.0f, float(radius) - float(borderWidth));
|
|
|
|
wr::BorderSide side = {backgroundColor, wr::BorderStyle::Solid};
|
|
|
|
const wr::BorderSide sides[4] = {side, side, side, side};
|
|
|
|
float h = backgroundRect.size.width * 0.6f;
|
|
|
|
float v = backgroundRect.size.height * 0.6f;
|
|
|
|
wr::LayoutSideOffsets widths = {v, h, v, h};
|
|
|
|
wr::BorderRadius radii = {{backgroundRadius, backgroundRadius},
|
|
|
|
{backgroundRadius, backgroundRadius},
|
|
|
|
{backgroundRadius, backgroundRadius},
|
|
|
|
{backgroundRadius, backgroundRadius}};
|
|
|
|
aWrData.mBuilder.PushBorder(backgroundRect, clip, kBackfaceIsVisible,
|
|
|
|
widths, {sides, 4}, radii);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-05 04:35:17 +03:00
|
|
|
if (borderWidth && aBorderColor.a) {
|
|
|
|
// Push the border.
|
|
|
|
const auto borderColor = ToDeviceColor(aBorderColor);
|
|
|
|
const auto side = wr::ToBorderSide(borderColor, StyleBorderStyle::Solid);
|
|
|
|
const wr::BorderSide sides[4] = {side, side, side, side};
|
|
|
|
const LayoutDeviceSize sideRadius(radius, radius);
|
|
|
|
const auto widths =
|
|
|
|
wr::ToBorderWidths(borderWidth, borderWidth, borderWidth, borderWidth);
|
|
|
|
const auto wrRadius =
|
|
|
|
wr::ToBorderRadius(sideRadius, sideRadius, sideRadius, sideRadius);
|
|
|
|
aWrData.mBuilder.PushBorder(dest, clip, kBackfaceIsVisible, widths,
|
|
|
|
{sides, 4}, wrRadius);
|
|
|
|
}
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::FillRect(DrawTarget& aDt,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
const sRGBColor& aColor) {
|
|
|
|
aDt.FillRect(aRect.ToUnknownRect(), ColorPattern(ToDeviceColor(aColor)));
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::FillRect(WebRenderBackendData& aWrData,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
const sRGBColor& aColor) {
|
|
|
|
const bool kBackfaceIsVisible = true;
|
|
|
|
auto dest = wr::ToLayoutRect(aRect);
|
|
|
|
aWrData.mBuilder.PushRect(dest, dest, kBackfaceIsVisible,
|
|
|
|
wr::ToColorF(ToDeviceColor(aColor)));
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-07-30 02:58:03 +03:00
|
|
|
|
2021-01-28 23:58:39 +03:00
|
|
|
void nsNativeBasicTheme::PaintRoundedRectWithRadius(
|
2021-02-22 19:18:33 +03:00
|
|
|
DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect,
|
2021-02-23 13:49:37 +03:00
|
|
|
const LayoutDeviceRect& aClipRect, const sRGBColor& aBackgroundColor,
|
|
|
|
const sRGBColor& aBorderColor, CSSCoord aBorderWidth, CSSCoord aRadius,
|
|
|
|
DPIRatio aDpiRatio) {
|
2021-01-27 01:12:03 +03:00
|
|
|
const LayoutDeviceCoord borderWidth(SnapBorderWidth(aBorderWidth, aDpiRatio));
|
2021-02-23 13:49:37 +03:00
|
|
|
const bool needsClip = !(aRect == aClipRect);
|
|
|
|
if (needsClip) {
|
|
|
|
aDrawTarget.PushClipRect(aClipRect.ToUnknownRect());
|
|
|
|
}
|
2020-03-05 03:25:31 +03:00
|
|
|
|
2020-11-30 01:19:10 +03:00
|
|
|
LayoutDeviceRect rect(aRect);
|
2021-01-29 01:11:54 +03:00
|
|
|
// Deflate the rect by half the border width, so that the middle of the
|
|
|
|
// stroke fills exactly the area we want to fill and not more.
|
2020-03-05 03:25:31 +03:00
|
|
|
rect.Deflate(borderWidth * 0.5f);
|
|
|
|
|
2021-01-28 16:14:34 +03:00
|
|
|
LayoutDeviceCoord radius(aRadius * aDpiRatio);
|
|
|
|
// Fix up the radius if it's too large with the rect we're going to paint.
|
|
|
|
{
|
|
|
|
LayoutDeviceCoord min = std::min(rect.width, rect.height);
|
|
|
|
if (radius * 2.0f > min) {
|
|
|
|
radius = min * 0.5f;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
Maybe<ColorPattern> backgroundPattern;
|
|
|
|
if (aBackgroundColor.a) {
|
|
|
|
backgroundPattern.emplace(ToDeviceColor(aBackgroundColor));
|
|
|
|
}
|
2021-03-05 04:35:17 +03:00
|
|
|
Maybe<ColorPattern> borderPattern;
|
|
|
|
if (borderWidth && aBorderColor.a) {
|
|
|
|
borderPattern.emplace(ToDeviceColor(aBorderColor));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (borderPattern || backgroundPattern) {
|
|
|
|
if (radius) {
|
|
|
|
RectCornerRadii radii(radius, radius, radius, radius);
|
|
|
|
RefPtr<Path> roundedRect =
|
|
|
|
MakePathForRoundedRect(aDrawTarget, rect.ToUnknownRect(), radii);
|
|
|
|
|
|
|
|
if (backgroundPattern) {
|
|
|
|
aDrawTarget.Fill(roundedRect, *backgroundPattern);
|
|
|
|
}
|
|
|
|
if (borderPattern) {
|
|
|
|
aDrawTarget.Stroke(roundedRect, *borderPattern,
|
2021-03-05 04:15:14 +03:00
|
|
|
StrokeOptions(borderWidth));
|
2021-03-05 04:35:17 +03:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (backgroundPattern) {
|
|
|
|
aDrawTarget.FillRect(rect.ToUnknownRect(), *backgroundPattern);
|
|
|
|
}
|
|
|
|
if (borderPattern) {
|
|
|
|
aDrawTarget.StrokeRect(rect.ToUnknownRect(), *borderPattern,
|
|
|
|
StrokeOptions(borderWidth));
|
|
|
|
}
|
|
|
|
}
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
2020-03-05 03:25:31 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
if (needsClip) {
|
|
|
|
aDrawTarget.PopClip();
|
|
|
|
}
|
2020-03-05 03:25:31 +03:00
|
|
|
}
|
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
void nsNativeBasicTheme::PaintCheckboxControl(DrawTarget& aDrawTarget,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [backgroundColor, borderColor] = ComputeCheckboxColors(
|
|
|
|
aState, StyleAppearance::Checkbox, aUseSystemColors);
|
2021-03-12 15:28:44 +03:00
|
|
|
{
|
|
|
|
const CSSCoord radius = 2.0f;
|
|
|
|
CSSCoord borderWidth = kCheckboxRadioBorderWidth;
|
|
|
|
if (backgroundColor == borderColor) {
|
|
|
|
borderWidth = 0.0f;
|
|
|
|
}
|
|
|
|
PaintRoundedRectWithRadius(aDrawTarget, aRect, backgroundColor, borderColor,
|
|
|
|
borderWidth, radius, aDpiRatio);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aState.HasState(NS_EVENT_STATE_INDETERMINATE)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintIndeterminateMark(aDrawTarget, aRect, aState, aUseSystemColors);
|
2021-03-12 15:28:44 +03:00
|
|
|
} else if (aState.HasState(NS_EVENT_STATE_CHECKED)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintCheckMark(aDrawTarget, aRect, aState, aUseSystemColors);
|
2021-03-12 15:28:44 +03:00
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aDrawTarget, aRect, aUseSystemColors, aDpiRatio, 5.0f,
|
|
|
|
1.0f);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-02 01:55:37 +03:00
|
|
|
constexpr CSSCoord kCheckboxRadioContentBoxSize = 10.0f;
|
|
|
|
constexpr CSSCoord kCheckboxRadioBorderBoxSize =
|
|
|
|
kCheckboxRadioContentBoxSize + kCheckboxRadioBorderWidth * 2.0f;
|
|
|
|
|
|
|
|
// Returns the right scale for points in a aSize x aSize sized box, centered at
|
|
|
|
// 0x0 to fill aRect in the smaller dimension.
|
|
|
|
static float ScaleToFillRect(const LayoutDeviceRect& aRect, const float aSize) {
|
|
|
|
return std::min(aRect.width, aRect.height) / aSize;
|
2020-11-30 07:48:07 +03:00
|
|
|
}
|
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
void nsNativeBasicTheme::PaintCheckMark(DrawTarget& aDrawTarget,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aState,
|
|
|
|
UseSystemColors aUseSystemColors) {
|
2021-03-02 01:55:37 +03:00
|
|
|
// Points come from the coordinates on a 14X14 (kCheckboxRadioBorderBoxSize)
|
|
|
|
// unit box centered at 0,0
|
2020-07-30 20:02:02 +03:00
|
|
|
const float checkPolygonX[] = {-4.5f, -1.5f, -0.5f, 5.0f, 4.75f,
|
|
|
|
3.5f, -0.5f, -1.5f, -3.5f};
|
|
|
|
const float checkPolygonY[] = {0.5f, 4.0f, 4.0f, -2.5f, -4.0f,
|
|
|
|
-4.0f, 1.0f, 1.25f, -1.0f};
|
2020-02-10 22:26:01 +03:00
|
|
|
const int32_t checkNumPoints = sizeof(checkPolygonX) / sizeof(float);
|
2021-03-02 01:55:37 +03:00
|
|
|
const float scale = ScaleToFillRect(aRect, kCheckboxRadioBorderBoxSize);
|
2020-11-30 01:19:10 +03:00
|
|
|
auto center = aRect.Center().ToUnknownPoint();
|
2020-02-16 19:04:31 +03:00
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
RefPtr<PathBuilder> builder = aDrawTarget.CreatePathBuilder();
|
2020-07-30 20:02:02 +03:00
|
|
|
Point p = center + Point(checkPolygonX[0] * scale, checkPolygonY[0] * scale);
|
2020-02-10 22:26:01 +03:00
|
|
|
builder->MoveTo(p);
|
2020-07-30 20:02:02 +03:00
|
|
|
for (int32_t i = 1; i < checkNumPoints; i++) {
|
|
|
|
p = center + Point(checkPolygonX[i] * scale, checkPolygonY[i] * scale);
|
2020-02-10 22:26:01 +03:00
|
|
|
builder->LineTo(p);
|
|
|
|
}
|
|
|
|
RefPtr<Path> path = builder->Finish();
|
2020-07-30 01:16:06 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor fillColor = ComputeCheckmarkColor(aState, aUseSystemColors);
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.Fill(path, ColorPattern(ToDeviceColor(fillColor)));
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
void nsNativeBasicTheme::PaintIndeterminateMark(
|
|
|
|
DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect,
|
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord borderWidth = 2.0f;
|
2021-03-02 01:55:37 +03:00
|
|
|
const float scale = ScaleToFillRect(aRect, kCheckboxRadioBorderBoxSize);
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2020-11-30 01:19:10 +03:00
|
|
|
Rect rect = aRect.ToUnknownRect();
|
2020-07-30 20:02:02 +03:00
|
|
|
rect.y += (rect.height / 2) - (borderWidth * scale / 2);
|
|
|
|
rect.height = borderWidth * scale;
|
|
|
|
rect.x += (borderWidth * scale) + (borderWidth * scale / 8);
|
|
|
|
rect.width -= ((borderWidth * scale) + (borderWidth * scale / 8)) * 2;
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor fillColor = ComputeCheckmarkColor(aState, aUseSystemColors);
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.FillRect(rect, ColorPattern(ToDeviceColor(fillColor)));
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintStrokedCircle(PaintBackendData& aPaintData,
|
2021-02-23 15:25:35 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2021-02-24 02:22:19 +03:00
|
|
|
const sRGBColor& aBackgroundColor,
|
|
|
|
const sRGBColor& aBorderColor,
|
|
|
|
const CSSCoord aBorderWidth,
|
2021-02-23 15:25:35 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2021-02-24 02:22:19 +03:00
|
|
|
auto radius = LayoutDeviceCoord(aRect.Size().width) / aDpiRatio;
|
|
|
|
PaintRoundedRectWithRadius(aPaintData, aRect, aBackgroundColor, aBorderColor,
|
|
|
|
aBorderWidth, radius, aDpiRatio);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::PaintCircleShadow(WebRenderBackendData& aWrData,
|
|
|
|
const LayoutDeviceRect& aBoxRect,
|
|
|
|
const LayoutDeviceRect& aClipRect,
|
|
|
|
float aShadowAlpha,
|
|
|
|
const CSSPoint& aShadowOffset,
|
|
|
|
CSSCoord aShadowBlurStdDev,
|
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
const bool kBackfaceIsVisible = true;
|
|
|
|
const LayoutDeviceCoord stdDev = aShadowBlurStdDev * aDpiRatio;
|
|
|
|
const LayoutDevicePoint shadowOffset = aShadowOffset * aDpiRatio;
|
|
|
|
const IntSize inflation =
|
|
|
|
gfxAlphaBoxBlur::CalculateBlurRadius(gfxPoint(stdDev, stdDev));
|
|
|
|
LayoutDeviceRect shadowRect = aBoxRect;
|
|
|
|
shadowRect.MoveBy(shadowOffset);
|
|
|
|
shadowRect.Inflate(inflation.width, inflation.height);
|
|
|
|
const auto boxRect = wr::ToLayoutRect(aBoxRect);
|
|
|
|
aWrData.mBuilder.PushBoxShadow(
|
|
|
|
wr::ToLayoutRect(shadowRect), wr::ToLayoutRect(aClipRect),
|
|
|
|
kBackfaceIsVisible, boxRect,
|
|
|
|
wr::ToLayoutVector2D(aShadowOffset * aDpiRatio),
|
|
|
|
wr::ToColorF(DeviceColor(0.0f, 0.0f, 0.0f, aShadowAlpha)), stdDev,
|
|
|
|
/* aSpread = */ 0.0f,
|
|
|
|
wr::ToBorderRadius(gfx::RectCornerRadii(aBoxRect.Size().width)),
|
|
|
|
wr::BoxShadowClipMode::Outset);
|
|
|
|
}
|
|
|
|
|
|
|
|
void nsNativeBasicTheme::PaintCircleShadow(DrawTarget& aDrawTarget,
|
|
|
|
const LayoutDeviceRect& aBoxRect,
|
|
|
|
const LayoutDeviceRect& aClipRect,
|
|
|
|
float aShadowAlpha,
|
|
|
|
const CSSPoint& aShadowOffset,
|
|
|
|
CSSCoord aShadowBlurStdDev,
|
|
|
|
DPIRatio aDpiRatio) {
|
2020-11-02 20:09:05 +03:00
|
|
|
Float stdDev = aShadowBlurStdDev * aDpiRatio;
|
2020-11-30 07:48:07 +03:00
|
|
|
Point offset = (aShadowOffset * aDpiRatio).ToUnknownPoint();
|
2020-11-02 20:09:05 +03:00
|
|
|
|
|
|
|
RefPtr<FilterNode> blurFilter =
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.CreateFilter(FilterType::GAUSSIAN_BLUR);
|
2020-11-02 20:09:05 +03:00
|
|
|
if (!blurFilter) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
blurFilter->SetAttribute(ATT_GAUSSIAN_BLUR_STD_DEVIATION, stdDev);
|
|
|
|
|
|
|
|
IntSize inflation =
|
|
|
|
gfxAlphaBoxBlur::CalculateBlurRadius(gfxPoint(stdDev, stdDev));
|
2021-02-24 02:22:19 +03:00
|
|
|
Rect inflatedRect = aBoxRect.ToUnknownRect();
|
2020-11-02 20:09:05 +03:00
|
|
|
inflatedRect.Inflate(inflation.width, inflation.height);
|
2020-11-30 01:19:10 +03:00
|
|
|
Rect sourceRectInFilterSpace =
|
2021-02-24 02:22:19 +03:00
|
|
|
inflatedRect - aBoxRect.TopLeft().ToUnknownPoint();
|
2020-11-02 20:09:05 +03:00
|
|
|
Point destinationPointOfSourceRect = inflatedRect.TopLeft() + offset;
|
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
IntSize dtSize = RoundedToInt(aBoxRect.Size().ToUnknownSize());
|
2021-02-22 19:18:33 +03:00
|
|
|
RefPtr<DrawTarget> ellipseDT = aDrawTarget.CreateSimilarDrawTargetForFilter(
|
2020-11-02 20:09:05 +03:00
|
|
|
dtSize, SurfaceFormat::A8, blurFilter, blurFilter,
|
|
|
|
sourceRectInFilterSpace, destinationPointOfSourceRect);
|
|
|
|
if (!ellipseDT) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
AutoClipRect clipRect(aDrawTarget, aClipRect);
|
|
|
|
|
2020-11-02 20:09:05 +03:00
|
|
|
RefPtr<Path> ellipse = MakePathForEllipse(
|
2021-02-24 02:22:19 +03:00
|
|
|
*ellipseDT, (aBoxRect - aBoxRect.TopLeft()).Center().ToUnknownPoint(),
|
|
|
|
aBoxRect.Size().ToUnknownSize());
|
2020-11-02 20:09:05 +03:00
|
|
|
ellipseDT->Fill(ellipse,
|
|
|
|
ColorPattern(DeviceColor(0.0f, 0.0f, 0.0f, aShadowAlpha)));
|
|
|
|
RefPtr<SourceSurface> ellipseSurface = ellipseDT->Snapshot();
|
|
|
|
|
|
|
|
blurFilter->SetInput(IN_GAUSSIAN_BLUR_IN, ellipseSurface);
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.DrawFilter(blurFilter, sourceRectInFilterSpace,
|
|
|
|
destinationPointOfSourceRect);
|
2020-11-02 20:09:05 +03:00
|
|
|
}
|
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintRadioControl(PaintBackendData& aPaintData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2021-01-05 15:45:48 +03:00
|
|
|
auto [backgroundColor, borderColor] =
|
2021-03-12 17:44:13 +03:00
|
|
|
ComputeCheckboxColors(aState, StyleAppearance::Radio, aUseSystemColors);
|
2021-03-12 15:28:44 +03:00
|
|
|
{
|
|
|
|
CSSCoord borderWidth = kCheckboxRadioBorderWidth;
|
|
|
|
if (backgroundColor == borderColor) {
|
|
|
|
borderWidth = 0.0f;
|
|
|
|
}
|
|
|
|
PaintStrokedCircle(aPaintData, aRect, backgroundColor, borderColor,
|
|
|
|
borderWidth, aDpiRatio);
|
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2021-03-12 14:25:49 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_CHECKED)) {
|
|
|
|
LayoutDeviceRect rect(aRect);
|
2021-03-12 15:28:44 +03:00
|
|
|
rect.Deflate(SnapBorderWidth(kCheckboxRadioBorderWidth, aDpiRatio));
|
2021-03-12 14:25:49 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
auto checkColor = ComputeCheckmarkColor(aState, aUseSystemColors);
|
2021-03-12 14:25:49 +03:00
|
|
|
PaintStrokedCircle(aPaintData, rect, backgroundColor, checkColor,
|
2021-03-12 15:28:44 +03:00
|
|
|
kCheckboxRadioBorderWidth, aDpiRatio);
|
2021-03-12 14:25:49 +03:00
|
|
|
}
|
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aPaintData, aRect, aUseSystemColors, aDpiRatio, 5.0f,
|
|
|
|
1.0f);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintTextField(PaintBackendData& aPaintData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [backgroundColor, borderColor] =
|
|
|
|
ComputeTextfieldColors(aState, aUseSystemColors);
|
2020-03-05 03:25:31 +03:00
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord radius = 2.0f;
|
2020-03-05 03:25:31 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintRoundedRectWithRadius(aPaintData, aRect, backgroundColor, borderColor,
|
2020-07-30 20:02:02 +03:00
|
|
|
kTextFieldBorderWidth, radius, aDpiRatio);
|
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aPaintData, aRect, aUseSystemColors, aDpiRatio,
|
2021-03-05 04:35:17 +03:00
|
|
|
radius + kTextFieldBorderWidth,
|
2021-01-22 01:12:14 +03:00
|
|
|
-kTextFieldBorderWidth);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintListbox(PaintBackendData& aPaintData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord radius = 2.0f;
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [backgroundColor, borderColor] =
|
|
|
|
ComputeTextfieldColors(aState, aUseSystemColors);
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintRoundedRectWithRadius(aPaintData, aRect, backgroundColor, borderColor,
|
2020-07-30 20:02:02 +03:00
|
|
|
kMenulistBorderWidth, radius, aDpiRatio);
|
2020-03-06 20:54:04 +03:00
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aPaintData, aRect, aUseSystemColors, aDpiRatio,
|
2021-03-05 04:35:17 +03:00
|
|
|
radius + kMenulistBorderWidth, -kMenulistBorderWidth);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintMenulist(PaintBackendData& aDrawTarget,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord radius = 4.0f;
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [backgroundColor, borderColor] =
|
|
|
|
ComputeButtonColors(aState, aUseSystemColors);
|
2020-07-30 20:02:02 +03:00
|
|
|
|
|
|
|
PaintRoundedRectWithRadius(aDrawTarget, aRect, backgroundColor, borderColor,
|
|
|
|
kMenulistBorderWidth, radius, aDpiRatio);
|
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aDrawTarget, aRect, aUseSystemColors, aDpiRatio,
|
2021-03-05 04:35:17 +03:00
|
|
|
radius + kMenulistBorderWidth, -kMenulistBorderWidth);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
void nsNativeBasicTheme::PaintArrow(DrawTarget& aDrawTarget,
|
2021-01-21 00:54:58 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
const float aArrowPolygonX[],
|
|
|
|
const float aArrowPolygonY[],
|
2021-03-02 01:55:37 +03:00
|
|
|
const float aArrowPolygonSize,
|
2021-01-21 00:54:58 +03:00
|
|
|
const int32_t aArrowNumPoints,
|
|
|
|
const sRGBColor aFillColor) {
|
2021-03-02 01:55:37 +03:00
|
|
|
const float scale = ScaleToFillRect(aRect, aArrowPolygonSize);
|
2021-01-21 00:54:58 +03:00
|
|
|
|
2020-11-30 01:19:10 +03:00
|
|
|
auto center = aRect.Center().ToUnknownPoint();
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
RefPtr<PathBuilder> builder = aDrawTarget.CreatePathBuilder();
|
2021-01-21 00:54:58 +03:00
|
|
|
Point p =
|
|
|
|
center + Point(aArrowPolygonX[0] * scale, aArrowPolygonY[0] * scale);
|
2020-02-10 22:26:01 +03:00
|
|
|
builder->MoveTo(p);
|
2021-01-21 00:54:58 +03:00
|
|
|
for (int32_t i = 1; i < aArrowNumPoints; i++) {
|
|
|
|
p = center + Point(aArrowPolygonX[i] * scale, aArrowPolygonY[i] * scale);
|
2020-02-10 22:26:01 +03:00
|
|
|
builder->LineTo(p);
|
|
|
|
}
|
|
|
|
RefPtr<Path> path = builder->Finish();
|
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.Fill(path, ColorPattern(ToDeviceColor(aFillColor)));
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
void nsNativeBasicTheme::PaintMenulistArrowButton(
|
|
|
|
nsIFrame* aFrame, DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect,
|
|
|
|
const EventStates& aState, UseSystemColors aUseSystemColors) {
|
2021-03-02 19:14:46 +03:00
|
|
|
const float kPolygonX[] = {-4.0f, -0.5f, 0.5f, 4.0f, 4.0f,
|
2021-03-02 03:48:36 +03:00
|
|
|
3.0f, 0.0f, 0.0f, -3.0f, -4.0f};
|
2021-03-02 19:14:46 +03:00
|
|
|
const float kPolygonY[] = {-1, 3.0f, 3.0f, -1.0f, -2.0f,
|
2021-03-02 03:48:36 +03:00
|
|
|
-2.0f, 1.5f, 1.5f, -2.0f, -2.0f};
|
2021-03-02 01:55:37 +03:00
|
|
|
|
2021-03-02 03:48:36 +03:00
|
|
|
const float kPolygonSize = kMinimumDropdownArrowButtonWidth;
|
2021-03-02 01:55:37 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
sRGBColor arrowColor =
|
|
|
|
ComputeMenulistArrowButtonColor(aState, aUseSystemColors);
|
2021-03-02 01:55:37 +03:00
|
|
|
PaintArrow(aDrawTarget, aRect, kPolygonX, kPolygonY, kPolygonSize,
|
|
|
|
ArrayLength(kPolygonX), arrowColor);
|
2020-07-30 02:58:03 +03:00
|
|
|
}
|
2020-07-30 01:16:06 +03:00
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
void nsNativeBasicTheme::PaintSpinnerButton(
|
|
|
|
nsIFrame* aFrame, DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect,
|
|
|
|
const EventStates& aState, StyleAppearance aAppearance,
|
|
|
|
UseSystemColors aUseSystemColors, DPIRatio aDpiRatio) {
|
|
|
|
auto [backgroundColor, borderColor] =
|
|
|
|
ComputeButtonColors(aState, aUseSystemColors);
|
2020-07-30 02:58:03 +03:00
|
|
|
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.FillRect(aRect.ToUnknownRect(),
|
|
|
|
ColorPattern(ToDeviceColor(backgroundColor)));
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2021-03-02 19:14:46 +03:00
|
|
|
const float kPolygonX[] = {-3.5f, -0.5f, 0.5f, 3.5f, 3.5f,
|
2021-03-02 03:48:36 +03:00
|
|
|
2.5f, 0.0f, 0.0f, -2.5f, -3.5f};
|
|
|
|
float polygonY[] = {-1.5f, 1.5f, 1.5f, -1.5f, -2.5f,
|
|
|
|
-2.5f, 0.0f, 0.0f, -2.5f, -2.5f};
|
|
|
|
|
|
|
|
const float kPolygonSize = kMinimumSpinnerButtonHeight;
|
|
|
|
if (aAppearance == StyleAppearance::SpinnerUpbutton) {
|
|
|
|
for (auto& coord : polygonY) {
|
|
|
|
coord = -coord;
|
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2021-03-02 03:48:36 +03:00
|
|
|
|
|
|
|
PaintArrow(aDrawTarget, aRect, kPolygonX, polygonY, kPolygonSize,
|
|
|
|
ArrayLength(kPolygonX), borderColor);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintRange(nsIFrame* aFrame,
|
|
|
|
PaintBackendData& aPaintData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-10-27 02:17:57 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio, bool aHorizontal) {
|
2020-07-30 20:02:02 +03:00
|
|
|
nsRangeFrame* rangeFrame = do_QueryFrame(aFrame);
|
|
|
|
if (!rangeFrame) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-27 02:17:57 +03:00
|
|
|
double progress = rangeFrame->GetValueAsFractionOfRange();
|
2020-11-30 01:19:10 +03:00
|
|
|
auto rect = aRect;
|
|
|
|
LayoutDeviceRect thumbRect(0, 0, kMinimumRangeThumbSize * aDpiRatio,
|
|
|
|
kMinimumRangeThumbSize * aDpiRatio);
|
2021-02-24 02:22:19 +03:00
|
|
|
LayoutDeviceRect progressClipRect(aRect);
|
|
|
|
LayoutDeviceRect trackClipRect(aRect);
|
2020-11-30 07:48:07 +03:00
|
|
|
const LayoutDeviceCoord verticalSize = kRangeHeight * aDpiRatio;
|
2020-07-30 20:02:02 +03:00
|
|
|
if (aHorizontal) {
|
|
|
|
rect.height = verticalSize;
|
2020-10-27 02:17:57 +03:00
|
|
|
rect.y = aRect.y + (aRect.height - rect.height) / 2;
|
|
|
|
thumbRect.y = aRect.y + (aRect.height - thumbRect.height) / 2;
|
2020-03-07 12:58:30 +03:00
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
if (IsFrameRTL(aFrame)) {
|
2020-10-27 02:17:57 +03:00
|
|
|
thumbRect.x =
|
|
|
|
aRect.x + (aRect.width - thumbRect.width) * (1.0 - progress);
|
2020-11-02 20:09:05 +03:00
|
|
|
float midPoint = thumbRect.Center().X();
|
2021-02-24 02:22:19 +03:00
|
|
|
trackClipRect.SetBoxX(aRect.X(), midPoint);
|
|
|
|
progressClipRect.SetBoxX(midPoint, aRect.XMost());
|
2020-07-30 20:02:02 +03:00
|
|
|
} else {
|
2020-10-27 02:17:57 +03:00
|
|
|
thumbRect.x = aRect.x + (aRect.width - thumbRect.width) * progress;
|
2020-11-02 20:09:05 +03:00
|
|
|
float midPoint = thumbRect.Center().X();
|
2021-02-24 02:22:19 +03:00
|
|
|
progressClipRect.SetBoxX(aRect.X(), midPoint);
|
|
|
|
trackClipRect.SetBoxX(midPoint, aRect.XMost());
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-03-07 12:58:30 +03:00
|
|
|
} else {
|
2020-10-27 02:17:57 +03:00
|
|
|
rect.width = verticalSize;
|
|
|
|
rect.x = aRect.x + (aRect.width - rect.width) / 2;
|
|
|
|
thumbRect.x = aRect.x + (aRect.width - thumbRect.width) / 2;
|
|
|
|
|
2021-03-08 00:44:37 +03:00
|
|
|
thumbRect.y =
|
|
|
|
aRect.y + (aRect.height - thumbRect.height) * (1.0 - progress);
|
2020-11-02 20:09:05 +03:00
|
|
|
float midPoint = thumbRect.Center().Y();
|
2021-02-24 02:22:19 +03:00
|
|
|
trackClipRect.SetBoxY(aRect.Y(), midPoint);
|
|
|
|
progressClipRect.SetBoxY(midPoint, aRect.YMost());
|
2020-07-30 01:16:06 +03:00
|
|
|
}
|
|
|
|
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord borderWidth = 1.0f;
|
|
|
|
const CSSCoord radius = 2.0f;
|
|
|
|
|
2020-11-17 23:53:01 +03:00
|
|
|
auto [progressColor, progressBorderColor] =
|
2021-03-12 17:44:13 +03:00
|
|
|
ComputeRangeProgressColors(aState, aUseSystemColors);
|
|
|
|
auto [trackColor, trackBorderColor] =
|
|
|
|
ComputeRangeTrackColors(aState, aUseSystemColors);
|
2020-10-27 02:17:50 +03:00
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
PaintRoundedRectWithRadius(aPaintData, rect, progressClipRect, progressColor,
|
|
|
|
progressBorderColor, borderWidth, radius,
|
|
|
|
aDpiRatio);
|
|
|
|
|
|
|
|
PaintRoundedRectWithRadius(aPaintData, rect, trackClipRect, trackColor,
|
|
|
|
trackBorderColor, borderWidth, radius, aDpiRatio);
|
|
|
|
|
|
|
|
if (!aState.HasState(NS_EVENT_STATE_DISABLED)) {
|
|
|
|
// Ensure the shadow doesn't expand outside of our overflow rect declared in
|
|
|
|
// GetWidgetOverflow().
|
|
|
|
auto overflowRect = aRect;
|
|
|
|
overflowRect.Inflate(CSSCoord(6.0f) * aDpiRatio);
|
|
|
|
// Thumb shadow
|
|
|
|
PaintCircleShadow(aPaintData, thumbRect, overflowRect, 0.3f,
|
|
|
|
CSSPoint(0.0f, 2.0f), 2.0f, aDpiRatio);
|
2020-10-27 02:18:00 +03:00
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2020-10-27 02:18:00 +03:00
|
|
|
// Draw the thumb on top.
|
|
|
|
const CSSCoord thumbBorderWidth = 2.0f;
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [thumbColor, thumbBorderColor] =
|
|
|
|
ComputeRangeThumbColors(aState, aUseSystemColors);
|
2020-10-27 02:18:00 +03:00
|
|
|
|
2021-02-24 02:22:19 +03:00
|
|
|
PaintStrokedCircle(aPaintData, thumbRect, thumbColor, thumbBorderColor,
|
|
|
|
thumbBorderWidth, aDpiRatio);
|
2020-10-27 02:18:00 +03:00
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aPaintData, aRect, aUseSystemColors, aDpiRatio,
|
|
|
|
radius, 1.0f);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
2020-07-30 01:16:06 +03:00
|
|
|
}
|
|
|
|
|
2021-01-28 23:58:39 +03:00
|
|
|
// TODO: Indeterminate state.
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintProgress(nsIFrame* aFrame,
|
|
|
|
PaintBackendData& aPaintData,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2021-02-23 13:49:37 +03:00
|
|
|
DPIRatio aDpiRatio, bool aIsMeter,
|
|
|
|
bool aBar) {
|
2021-01-28 23:58:39 +03:00
|
|
|
auto [backgroundColor, borderColor] = [&] {
|
|
|
|
if (aIsMeter) {
|
2021-03-12 17:44:13 +03:00
|
|
|
return aBar ? ComputeMeterTrackColors(aUseSystemColors)
|
|
|
|
: ComputeMeterchunkColors(aState, aUseSystemColors);
|
2021-01-28 23:58:39 +03:00
|
|
|
}
|
2021-03-12 17:44:13 +03:00
|
|
|
return aBar ? ComputeProgressTrackColors(aUseSystemColors)
|
|
|
|
: ComputeProgressColors(aUseSystemColors);
|
2021-01-28 23:58:39 +03:00
|
|
|
}();
|
2020-07-30 20:02:02 +03:00
|
|
|
|
|
|
|
const CSSCoord borderWidth = 1.0f;
|
2021-01-28 23:58:39 +03:00
|
|
|
const CSSCoord radius = aIsMeter ? 5.0f : 2.0f;
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2020-11-30 01:19:10 +03:00
|
|
|
LayoutDeviceRect rect(aRect);
|
2021-02-18 09:12:54 +03:00
|
|
|
const LayoutDeviceCoord thickness =
|
2021-01-28 23:58:39 +03:00
|
|
|
(aIsMeter ? kMeterHeight : kProgressbarHeight) * aDpiRatio;
|
2021-02-18 09:12:54 +03:00
|
|
|
|
|
|
|
const bool isHorizontal = !nsNativeTheme::IsVerticalProgress(aFrame);
|
|
|
|
if (isHorizontal) {
|
|
|
|
// Center it vertically.
|
|
|
|
rect.y += (rect.height - thickness) / 2;
|
|
|
|
rect.height = thickness;
|
|
|
|
} else {
|
|
|
|
// Center it horizontally.
|
|
|
|
rect.x += (rect.width - thickness) / 2;
|
|
|
|
rect.width = thickness;
|
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2021-01-28 23:58:39 +03:00
|
|
|
// This is the progress chunk, clip it to the right amount.
|
2021-02-23 13:49:37 +03:00
|
|
|
LayoutDeviceRect clipRect = rect;
|
2021-01-28 23:58:39 +03:00
|
|
|
if (!aBar) {
|
|
|
|
double position = [&] {
|
|
|
|
if (aIsMeter) {
|
|
|
|
auto* meter = dom::HTMLMeterElement::FromNode(aFrame->GetContent());
|
|
|
|
if (!meter) {
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
return meter->Value() / meter->Max();
|
|
|
|
}
|
|
|
|
auto* progress = dom::HTMLProgressElement::FromNode(aFrame->GetContent());
|
|
|
|
if (!progress) {
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
return progress->Value() / progress->Max();
|
|
|
|
}();
|
2021-02-18 09:12:54 +03:00
|
|
|
if (isHorizontal) {
|
|
|
|
double clipWidth = rect.width * position;
|
|
|
|
clipRect.width = clipWidth;
|
|
|
|
if (IsFrameRTL(aFrame)) {
|
|
|
|
clipRect.x += rect.width - clipWidth;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
double clipHeight = rect.height * position;
|
|
|
|
clipRect.height = clipHeight;
|
|
|
|
clipRect.y += rect.height - clipHeight;
|
2021-01-28 23:58:39 +03:00
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintRoundedRectWithRadius(aPaintData, rect, clipRect, backgroundColor,
|
|
|
|
borderColor, borderWidth, radius, aDpiRatio);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
void nsNativeBasicTheme::PaintButton(nsIFrame* aFrame,
|
|
|
|
PaintBackendData& aPaintData,
|
2020-11-30 01:19:10 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2020-07-30 20:02:02 +03:00
|
|
|
const EventStates& aState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2020-11-30 07:48:07 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2020-07-30 20:02:02 +03:00
|
|
|
const CSSCoord radius = 4.0f;
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [backgroundColor, borderColor] =
|
|
|
|
ComputeButtonColors(aState, aUseSystemColors, aFrame);
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintRoundedRectWithRadius(aPaintData, aRect, backgroundColor, borderColor,
|
2020-07-30 20:02:02 +03:00
|
|
|
kButtonBorderWidth, radius, aDpiRatio);
|
|
|
|
|
2020-11-19 05:15:44 +03:00
|
|
|
if (aState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRoundedFocusRect(aPaintData, aRect, aUseSystemColors, aDpiRatio,
|
2021-03-05 04:35:17 +03:00
|
|
|
radius + kButtonBorderWidth, -kButtonBorderWidth);
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
bool nsNativeBasicTheme::DoPaintDefaultScrollbarThumb(
|
|
|
|
PaintBackendData& aPaintData, const LayoutDeviceRect& aRect,
|
|
|
|
bool aHorizontal, nsIFrame* aFrame, const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aElementState, const EventStates& aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors, DPIRatio aDpiRatio) {
|
|
|
|
sRGBColor thumbColor = ComputeScrollbarThumbColor(
|
|
|
|
aFrame, aStyle, aElementState, aDocumentState, aUseSystemColors);
|
2021-02-23 13:49:37 +03:00
|
|
|
FillRect(aPaintData, aRect, thumbColor);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
bool nsNativeBasicTheme::PaintScrollbarThumb(
|
|
|
|
DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect, bool aHorizontal,
|
|
|
|
nsIFrame* aFrame, const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aElementState, const EventStates& aDocumentState,
|
|
|
|
UseSystemColors aUseSystemColors, DPIRatio aDpiRatio) {
|
2021-02-23 13:49:37 +03:00
|
|
|
return DoPaintDefaultScrollbarThumb(aDrawTarget, aRect, aHorizontal, aFrame,
|
|
|
|
aStyle, aElementState, aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
aUseSystemColors, aDpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
bool nsNativeBasicTheme::PaintScrollbarThumb(
|
|
|
|
WebRenderBackendData& aWrData, const LayoutDeviceRect& aRect,
|
|
|
|
bool aHorizontal, nsIFrame* aFrame, const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aElementState, const EventStates& aDocumentState,
|
|
|
|
UseSystemColors aUseSystemColors, DPIRatio aDpiRatio) {
|
2021-02-23 13:49:37 +03:00
|
|
|
return DoPaintDefaultScrollbarThumb(aWrData, aRect, aHorizontal, aFrame,
|
|
|
|
aStyle, aElementState, aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
aUseSystemColors, aDpiRatio);
|
2021-02-23 04:10:22 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
bool nsNativeBasicTheme::DoPaintDefaultScrollbar(
|
|
|
|
PaintBackendData& aPaintData, const LayoutDeviceRect& aRect,
|
|
|
|
bool aHorizontal, nsIFrame* aFrame, const ComputedStyle& aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aDocumentState, UseSystemColors aUseSystemColors,
|
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
auto scrollbarColor =
|
|
|
|
ComputeScrollbarColor(aFrame, aStyle, aDocumentState, aUseSystemColors);
|
2021-02-23 13:49:37 +03:00
|
|
|
FillRect(aPaintData, aRect, scrollbarColor);
|
|
|
|
return true;
|
2021-02-23 05:58:47 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
bool nsNativeBasicTheme::PaintScrollbar(DrawTarget& aDrawTarget,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
bool aHorizontal, nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2021-02-23 13:49:37 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
return DoPaintDefaultScrollbar(aDrawTarget, aRect, aHorizontal, aFrame,
|
2021-03-12 17:44:13 +03:00
|
|
|
aStyle, aDocumentState, aUseSystemColors,
|
|
|
|
aDpiRatio);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::PaintScrollbar(WebRenderBackendData& aWrData,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
bool aHorizontal, nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2021-02-23 13:49:37 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
return DoPaintDefaultScrollbar(aWrData, aRect, aHorizontal, aFrame, aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
aDocumentState, aUseSystemColors, aDpiRatio);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename PaintBackendData>
|
|
|
|
bool nsNativeBasicTheme::DoPaintDefaultScrollCorner(
|
|
|
|
PaintBackendData& aPaintData, const LayoutDeviceRect& aRect,
|
|
|
|
nsIFrame* aFrame, const ComputedStyle& aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aDocumentState, UseSystemColors aUseSystemColors,
|
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
auto scrollbarColor =
|
|
|
|
ComputeScrollbarColor(aFrame, aStyle, aDocumentState, aUseSystemColors);
|
2021-02-23 13:49:37 +03:00
|
|
|
FillRect(aPaintData, aRect, scrollbarColor);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
bool nsNativeBasicTheme::PaintScrollCorner(
|
|
|
|
DrawTarget& aDrawTarget, const LayoutDeviceRect& aRect, nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle, const EventStates& aDocumentState,
|
|
|
|
UseSystemColors aUseSystemColors, DPIRatio aDpiRatio) {
|
2021-02-23 13:49:37 +03:00
|
|
|
return DoPaintDefaultScrollCorner(aDrawTarget, aRect, aFrame, aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
aDocumentState, aUseSystemColors,
|
|
|
|
aDpiRatio);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::PaintScrollCorner(WebRenderBackendData& aWrData,
|
|
|
|
const LayoutDeviceRect& aRect,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle,
|
|
|
|
const EventStates& aDocumentState,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2021-02-23 13:49:37 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
return DoPaintDefaultScrollCorner(aWrData, aRect, aFrame, aStyle,
|
2021-03-12 17:44:13 +03:00
|
|
|
aDocumentState, aUseSystemColors,
|
|
|
|
aDpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-01-21 00:33:34 +03:00
|
|
|
void nsNativeBasicTheme::PaintScrollbarButton(
|
2021-02-22 19:18:33 +03:00
|
|
|
DrawTarget& aDrawTarget, StyleAppearance aAppearance,
|
2021-01-21 00:33:34 +03:00
|
|
|
const LayoutDeviceRect& aRect, nsIFrame* aFrame,
|
|
|
|
const ComputedStyle& aStyle, const EventStates& aElementState,
|
2021-03-12 17:44:13 +03:00
|
|
|
const EventStates& aDocumentState, UseSystemColors aUseSystemColors,
|
|
|
|
DPIRatio aDpiRatio) {
|
|
|
|
auto [buttonColor, arrowColor] =
|
|
|
|
ComputeScrollbarButtonColors(aFrame, aAppearance, aStyle, aElementState,
|
|
|
|
aDocumentState, aUseSystemColors);
|
2021-02-22 19:18:33 +03:00
|
|
|
aDrawTarget.FillRect(aRect.ToUnknownRect(),
|
|
|
|
ColorPattern(ToDeviceColor(buttonColor)));
|
2020-02-10 22:26:01 +03:00
|
|
|
|
|
|
|
// Start with Up arrow.
|
2021-03-02 01:55:37 +03:00
|
|
|
float arrowPolygonX[] = {-4.0f, 0.0f, 4.0f, 4.0f, 0.0f, -4.0f};
|
|
|
|
float arrowPolygonY[] = {0.0f, -4.0f, 0.0f, 3.0f, -1.0f, 3.0f};
|
|
|
|
|
|
|
|
const float kPolygonSize = kMinimumScrollbarSize;
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2021-01-21 19:46:33 +03:00
|
|
|
const int32_t arrowNumPoints = ArrayLength(arrowPolygonX);
|
2020-02-10 22:26:01 +03:00
|
|
|
switch (aAppearance) {
|
|
|
|
case StyleAppearance::ScrollbarbuttonUp:
|
|
|
|
break;
|
|
|
|
case StyleAppearance::ScrollbarbuttonDown:
|
|
|
|
for (int32_t i = 0; i < arrowNumPoints; i++) {
|
|
|
|
arrowPolygonY[i] *= -1;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case StyleAppearance::ScrollbarbuttonLeft:
|
|
|
|
for (int32_t i = 0; i < arrowNumPoints; i++) {
|
|
|
|
int32_t temp = arrowPolygonX[i];
|
|
|
|
arrowPolygonX[i] = arrowPolygonY[i];
|
|
|
|
arrowPolygonY[i] = temp;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case StyleAppearance::ScrollbarbuttonRight:
|
|
|
|
for (int32_t i = 0; i < arrowNumPoints; i++) {
|
|
|
|
int32_t temp = arrowPolygonX[i];
|
|
|
|
arrowPolygonX[i] = arrowPolygonY[i] * -1;
|
|
|
|
arrowPolygonY[i] = temp;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2021-03-02 01:55:37 +03:00
|
|
|
PaintArrow(aDrawTarget, aRect, arrowPolygonX, arrowPolygonY, kPolygonSize,
|
|
|
|
arrowNumPoints, arrowColor);
|
2020-03-06 20:54:04 +03:00
|
|
|
}
|
|
|
|
|
2020-02-10 22:26:01 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeBasicTheme::DrawWidgetBackground(gfxContext* aContext, nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
|
|
|
const nsRect& aRect,
|
2020-03-05 03:25:31 +03:00
|
|
|
const nsRect& /* aDirtyRect */) {
|
2021-02-23 13:49:37 +03:00
|
|
|
if (!DoDrawWidgetBackground(*aContext->GetDrawTarget(), aFrame, aAppearance,
|
|
|
|
aRect)) {
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
2021-02-23 07:41:58 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
bool nsNativeBasicTheme::CreateWebRenderCommandsForWidget(
|
|
|
|
mozilla::wr::DisplayListBuilder& aBuilder,
|
|
|
|
mozilla::wr::IpcResourceUpdateQueue& aResources,
|
|
|
|
const mozilla::layers::StackingContextHelper& aSc,
|
|
|
|
mozilla::layers::RenderRootStateManager* aManager, nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance, const nsRect& aRect) {
|
|
|
|
if (!StaticPrefs::widget_non_native_theme_webrender()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
WebRenderBackendData data{aBuilder, aResources, aSc, aManager};
|
|
|
|
return DoDrawWidgetBackground(data, aFrame, aAppearance, aRect);
|
|
|
|
}
|
|
|
|
|
|
|
|
static LayoutDeviceRect ToSnappedRect(const nsRect& aRect,
|
|
|
|
nscoord aTwipsPerPixel, DrawTarget& aDt) {
|
|
|
|
return LayoutDeviceRect::FromUnknownRect(
|
|
|
|
NSRectToSnappedRect(aRect, aTwipsPerPixel, aDt));
|
|
|
|
}
|
|
|
|
|
|
|
|
static LayoutDeviceRect ToSnappedRect(
|
|
|
|
const nsRect& aRect, nscoord aTwipsPerPixel,
|
|
|
|
nsNativeBasicTheme::WebRenderBackendData& aDt) {
|
|
|
|
// TODO: Do we need to do any more snapping here?
|
|
|
|
return LayoutDeviceRect::FromAppUnits(aRect, aTwipsPerPixel);
|
|
|
|
}
|
|
|
|
|
2021-03-12 17:44:13 +03:00
|
|
|
auto nsNativeBasicTheme::ShouldUseSystemColors(const dom::Document& aDoc)
|
|
|
|
-> UseSystemColors {
|
|
|
|
// TODO: Do we really want to use system colors even when the page can
|
|
|
|
// override the high contrast theme? (mUseDocumentColors = true?).
|
|
|
|
return UseSystemColors(
|
|
|
|
PreferenceSheet::PrefsFor(aDoc).mUseAccessibilityTheme);
|
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
|
|
|
bool nsNativeBasicTheme::DoDrawWidgetBackground(PaintBackendData& aPaintData,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
|
|
|
const nsRect& aRect) {
|
|
|
|
static_assert(std::is_same_v<PaintBackendData, DrawTarget> ||
|
|
|
|
std::is_same_v<PaintBackendData, WebRenderBackendData>);
|
|
|
|
|
|
|
|
const nsPresContext* pc = aFrame->PresContext();
|
|
|
|
const nscoord twipsPerPixel = pc->AppUnitsPerDevPixel();
|
|
|
|
const auto devPxRect = ToSnappedRect(aRect, twipsPerPixel, aPaintData);
|
|
|
|
|
|
|
|
const EventStates docState = pc->Document()->GetDocumentState();
|
2021-03-12 17:44:13 +03:00
|
|
|
const auto useSystemColors = ShouldUseSystemColors(*pc->Document());
|
2021-02-23 13:49:37 +03:00
|
|
|
EventStates eventState = GetContentState(aFrame, aAppearance);
|
2020-03-06 00:13:46 +03:00
|
|
|
if (aAppearance == StyleAppearance::MozMenulistArrowButton) {
|
2020-02-10 22:26:01 +03:00
|
|
|
bool isHTML = IsHTMLContent(aFrame);
|
|
|
|
nsIFrame* parentFrame = aFrame->GetParent();
|
|
|
|
bool isMenulist = !isHTML && parentFrame->IsMenuFrame();
|
|
|
|
// HTML select and XUL menulist dropdown buttons get state from the
|
|
|
|
// parent.
|
|
|
|
if (isHTML || isMenulist) {
|
|
|
|
aFrame = parentFrame;
|
|
|
|
eventState = GetContentState(parentFrame, aAppearance);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-23 22:31:33 +03:00
|
|
|
// Hack to avoid skia fuzziness: Add a dummy clip if the widget doesn't
|
|
|
|
// overflow devPxRect.
|
|
|
|
Maybe<AutoClipRect> maybeClipRect;
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, DrawTarget>) {
|
|
|
|
if (aAppearance != StyleAppearance::FocusOutline &&
|
|
|
|
aAppearance != StyleAppearance::Range &&
|
|
|
|
!eventState.HasState(NS_EVENT_STATE_FOCUSRING)) {
|
|
|
|
maybeClipRect.emplace(aPaintData, devPxRect);
|
|
|
|
}
|
2021-01-23 22:31:33 +03:00
|
|
|
}
|
|
|
|
|
2021-01-27 00:34:35 +03:00
|
|
|
DPIRatio dpiRatio = GetDPIRatio(aFrame, aAppearance);
|
2020-02-10 22:26:01 +03:00
|
|
|
|
|
|
|
switch (aAppearance) {
|
2020-02-16 19:04:31 +03:00
|
|
|
case StyleAppearance::Radio: {
|
2021-03-12 14:25:49 +03:00
|
|
|
auto rect = CheckBoxRadioRect(devPxRect);
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRadioControl(aPaintData, rect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
2020-02-16 19:04:31 +03:00
|
|
|
}
|
|
|
|
case StyleAppearance::Checkbox: {
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, WebRenderBackendData>) {
|
|
|
|
// TODO: Need to figure out how to best draw this using WR.
|
|
|
|
return false;
|
|
|
|
} else {
|
2021-03-12 14:25:49 +03:00
|
|
|
auto rect = CheckBoxRadioRect(devPxRect);
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintCheckboxControl(aPaintData, rect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
break;
|
2020-02-16 19:04:31 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::Textarea:
|
|
|
|
case StyleAppearance::Textfield:
|
|
|
|
case StyleAppearance::NumberInput:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintTextField(aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Listbox:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintListbox(aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
2020-07-30 02:58:03 +03:00
|
|
|
case StyleAppearance::MenulistButton:
|
2020-07-30 20:02:02 +03:00
|
|
|
case StyleAppearance::Menulist:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintMenulist(aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
2020-03-06 00:13:46 +03:00
|
|
|
case StyleAppearance::MozMenulistArrowButton:
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, WebRenderBackendData>) {
|
|
|
|
// TODO: Need to figure out how to best draw this using WR.
|
|
|
|
return false;
|
|
|
|
} else {
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintMenulistArrowButton(aFrame, aPaintData, devPxRect, eventState,
|
|
|
|
useSystemColors);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::SpinnerUpbutton:
|
|
|
|
case StyleAppearance::SpinnerDownbutton:
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, WebRenderBackendData>) {
|
|
|
|
// TODO: Need to figure out how to best draw this using WR.
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
PaintSpinnerButton(aFrame, aPaintData, devPxRect, eventState,
|
2021-03-12 17:44:13 +03:00
|
|
|
aAppearance, useSystemColors, dpiRatio);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Range:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintRange(aFrame, aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio, IsRangeHorizontal(aFrame));
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::RangeThumb:
|
2020-10-27 02:17:57 +03:00
|
|
|
// Painted as part of StyleAppearance::Range.
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::ProgressBar:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintProgress(aFrame, aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio,
|
2021-02-23 13:49:37 +03:00
|
|
|
/* aIsMeter = */ false, /* aBar = */ true);
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Progresschunk:
|
2021-01-28 23:58:39 +03:00
|
|
|
if (nsProgressFrame* f = do_QueryFrame(aFrame->GetParent())) {
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintProgress(f, aPaintData, devPxRect,
|
2021-03-12 17:44:13 +03:00
|
|
|
f->GetContent()->AsElement()->State(), useSystemColors,
|
|
|
|
dpiRatio,
|
2021-02-23 13:49:37 +03:00
|
|
|
/* aIsMeter = */ false, /* aBar = */ false);
|
2021-01-28 23:58:39 +03:00
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Meter:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintProgress(aFrame, aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio,
|
2021-02-23 13:49:37 +03:00
|
|
|
/* aIsMeter = */ true, /* aBar = */ true);
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Meterchunk:
|
2021-01-28 23:58:39 +03:00
|
|
|
if (nsMeterFrame* f = do_QueryFrame(aFrame->GetParent())) {
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintProgress(f, aPaintData, devPxRect,
|
2021-03-12 17:44:13 +03:00
|
|
|
f->GetContent()->AsElement()->State(), useSystemColors,
|
|
|
|
dpiRatio,
|
2021-02-23 13:49:37 +03:00
|
|
|
/* aIsMeter = */ true, /* aBar = */ false);
|
2021-01-28 23:58:39 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::ScrollbarthumbHorizontal:
|
2020-10-27 18:27:31 +03:00
|
|
|
case StyleAppearance::ScrollbarthumbVertical: {
|
|
|
|
bool isHorizontal =
|
|
|
|
aAppearance == StyleAppearance::ScrollbarthumbHorizontal;
|
2021-02-23 13:49:37 +03:00
|
|
|
return PaintScrollbarThumb(aPaintData, devPxRect, isHorizontal, aFrame,
|
|
|
|
*nsLayoutUtils::StyleForScrollbar(aFrame),
|
2021-03-12 17:44:13 +03:00
|
|
|
eventState, docState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-10-27 18:27:31 +03:00
|
|
|
}
|
2020-11-02 20:09:00 +03:00
|
|
|
case StyleAppearance::ScrollbartrackHorizontal:
|
|
|
|
case StyleAppearance::ScrollbartrackVertical: {
|
|
|
|
bool isHorizontal =
|
|
|
|
aAppearance == StyleAppearance::ScrollbartrackHorizontal;
|
2021-02-23 13:49:37 +03:00
|
|
|
return PaintScrollbarTrack(aPaintData, devPxRect, isHorizontal, aFrame,
|
|
|
|
*nsLayoutUtils::StyleForScrollbar(aFrame),
|
2021-03-12 17:44:13 +03:00
|
|
|
docState, useSystemColors, dpiRatio);
|
2020-11-02 20:09:00 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::ScrollbarHorizontal:
|
2020-10-27 18:27:31 +03:00
|
|
|
case StyleAppearance::ScrollbarVertical: {
|
|
|
|
bool isHorizontal = aAppearance == StyleAppearance::ScrollbarHorizontal;
|
2021-02-23 13:49:37 +03:00
|
|
|
return PaintScrollbar(aPaintData, devPxRect, isHorizontal, aFrame,
|
|
|
|
*nsLayoutUtils::StyleForScrollbar(aFrame), docState,
|
2021-03-12 17:44:13 +03:00
|
|
|
useSystemColors, dpiRatio);
|
2020-10-27 18:27:31 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::Scrollcorner:
|
2021-02-23 13:49:37 +03:00
|
|
|
return PaintScrollCorner(aPaintData, devPxRect, aFrame,
|
|
|
|
*nsLayoutUtils::StyleForScrollbar(aFrame),
|
2021-03-12 17:44:13 +03:00
|
|
|
docState, useSystemColors, dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::ScrollbarbuttonUp:
|
|
|
|
case StyleAppearance::ScrollbarbuttonDown:
|
|
|
|
case StyleAppearance::ScrollbarbuttonLeft:
|
|
|
|
case StyleAppearance::ScrollbarbuttonRight:
|
2021-01-21 00:54:58 +03:00
|
|
|
// For scrollbar-width:thin, we don't display the buttons.
|
|
|
|
if (!IsScrollbarWidthThin(aFrame)) {
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, WebRenderBackendData>) {
|
|
|
|
// TODO: Need to figure out how to best draw this using WR.
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
PaintScrollbarButton(aPaintData, aAppearance, devPxRect, aFrame,
|
|
|
|
*nsLayoutUtils::StyleForScrollbar(aFrame),
|
2021-03-12 17:44:13 +03:00
|
|
|
eventState, docState, useSystemColors, dpiRatio);
|
2021-02-23 13:49:37 +03:00
|
|
|
}
|
2021-01-21 00:54:58 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::Button:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintButton(aFrame, aPaintData, devPxRect, eventState, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-02-10 22:26:01 +03:00
|
|
|
break;
|
2020-11-16 19:53:23 +03:00
|
|
|
case StyleAppearance::FocusOutline:
|
2021-03-12 17:44:13 +03:00
|
|
|
PaintAutoStyleOutline(aFrame, aPaintData, devPxRect, useSystemColors,
|
|
|
|
dpiRatio);
|
2020-11-16 19:53:23 +03:00
|
|
|
break;
|
2020-02-10 22:26:01 +03:00
|
|
|
default:
|
2021-01-11 01:25:07 +03:00
|
|
|
// Various appearance values are used for XUL elements. Normally these
|
|
|
|
// will not be available in content documents (and thus in the content
|
2021-01-29 01:11:54 +03:00
|
|
|
// processes where the native basic theme can be used), but tests are
|
|
|
|
// run with the remote XUL pref enabled and so we can get in here. So
|
|
|
|
// we just return an error rather than assert.
|
2021-02-23 13:49:37 +03:00
|
|
|
return false;
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
return true;
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
template <typename PaintBackendData>
|
2021-02-08 19:25:16 +03:00
|
|
|
void nsNativeBasicTheme::PaintAutoStyleOutline(nsIFrame* aFrame,
|
2021-02-23 13:49:37 +03:00
|
|
|
PaintBackendData& aPaintData,
|
2021-02-08 19:25:16 +03:00
|
|
|
const LayoutDeviceRect& aRect,
|
2021-03-12 17:44:13 +03:00
|
|
|
UseSystemColors aUseSystemColors,
|
2021-02-08 19:25:16 +03:00
|
|
|
DPIRatio aDpiRatio) {
|
2021-03-12 17:44:13 +03:00
|
|
|
auto [innerColor, middleColor, outerColor] =
|
|
|
|
ComputeFocusRectColors(aUseSystemColors);
|
2021-02-08 19:25:16 +03:00
|
|
|
Unused << middleColor;
|
|
|
|
Unused << outerColor;
|
|
|
|
|
2021-02-23 07:41:58 +03:00
|
|
|
LayoutDeviceRect rect(aRect);
|
2021-03-05 04:35:17 +03:00
|
|
|
auto width =
|
|
|
|
LayoutDeviceCoord(SnapBorderWidth(kInnerFocusOutlineWidth, aDpiRatio));
|
2021-02-23 13:49:37 +03:00
|
|
|
rect.Inflate(width);
|
2021-02-08 19:25:16 +03:00
|
|
|
|
|
|
|
nscoord cssRadii[8];
|
|
|
|
if (!aFrame->GetBorderRadii(cssRadii)) {
|
2021-03-06 04:53:38 +03:00
|
|
|
return PaintRoundedRectWithRadius(aPaintData, rect, sRGBColor::White(0.0f),
|
2021-02-23 13:49:37 +03:00
|
|
|
innerColor, kInnerFocusOutlineWidth,
|
|
|
|
/* aRadius = */ 0.0f, aDpiRatio);
|
2021-02-08 19:25:16 +03:00
|
|
|
}
|
|
|
|
|
2021-02-16 13:25:32 +03:00
|
|
|
nsPresContext* pc = aFrame->PresContext();
|
|
|
|
const nscoord offset = aFrame->StyleOutline()->mOutlineOffset.ToAppUnits();
|
|
|
|
const Float devPixelOffset = pc->AppUnitsToFloatDevPixels(offset);
|
|
|
|
|
2021-02-08 19:25:16 +03:00
|
|
|
RectCornerRadii innerRadii;
|
2021-02-16 13:25:32 +03:00
|
|
|
nsCSSRendering::ComputePixelRadii(cssRadii, pc->AppUnitsPerDevPixel(),
|
|
|
|
&innerRadii);
|
2021-02-08 19:25:16 +03:00
|
|
|
|
2021-02-23 13:49:37 +03:00
|
|
|
const auto borderColor = ToDeviceColor(innerColor);
|
|
|
|
// NOTE(emilio): This doesn't use PaintRoundedRectWithRadius because we need
|
|
|
|
// to support arbitrary radii.
|
2021-02-08 19:25:16 +03:00
|
|
|
RectCornerRadii outerRadii;
|
2021-02-23 13:49:37 +03:00
|
|
|
if constexpr (std::is_same_v<PaintBackendData, WebRenderBackendData>) {
|
|
|
|
const Float widths[4] = {devPixelOffset, devPixelOffset, devPixelOffset,
|
|
|
|
devPixelOffset};
|
|
|
|
nsCSSBorderRenderer::ComputeOuterRadii(innerRadii, widths, &outerRadii);
|
|
|
|
|
|
|
|
const auto dest = wr::ToLayoutRect(rect);
|
|
|
|
const auto side = wr::ToBorderSide(borderColor, StyleBorderStyle::Solid);
|
|
|
|
const wr::BorderSide sides[4] = {side, side, side, side};
|
|
|
|
const bool kBackfaceIsVisible = true;
|
|
|
|
const auto wrWidths = wr::ToBorderWidths(width, width, width, width);
|
|
|
|
const auto wrRadius = wr::ToBorderRadius(outerRadii);
|
|
|
|
aPaintData.mBuilder.PushBorder(dest, dest, kBackfaceIsVisible, wrWidths,
|
|
|
|
{sides, 4}, wrRadius);
|
|
|
|
} else {
|
|
|
|
const LayoutDeviceCoord halfWidth = width * 0.5f;
|
|
|
|
rect.Deflate(halfWidth);
|
|
|
|
const Float widths[4] = {
|
|
|
|
halfWidth + devPixelOffset, halfWidth + devPixelOffset,
|
|
|
|
halfWidth + devPixelOffset, halfWidth + devPixelOffset};
|
|
|
|
nsCSSBorderRenderer::ComputeOuterRadii(innerRadii, widths, &outerRadii);
|
|
|
|
RefPtr<Path> path =
|
|
|
|
MakePathForRoundedRect(aPaintData, rect.ToUnknownRect(), outerRadii);
|
|
|
|
aPaintData.Stroke(path, ColorPattern(borderColor), StrokeOptions(width));
|
|
|
|
}
|
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
|
2020-12-03 02:11:32 +03:00
|
|
|
LayoutDeviceIntMargin nsNativeBasicTheme::GetWidgetBorder(
|
2020-02-10 22:26:01 +03:00
|
|
|
nsDeviceContext* aContext, nsIFrame* aFrame, StyleAppearance aAppearance) {
|
2020-03-11 04:52:51 +03:00
|
|
|
switch (aAppearance) {
|
|
|
|
case StyleAppearance::Textfield:
|
|
|
|
case StyleAppearance::Textarea:
|
2021-01-30 00:18:54 +03:00
|
|
|
case StyleAppearance::NumberInput:
|
2020-03-11 04:52:51 +03:00
|
|
|
case StyleAppearance::Listbox:
|
|
|
|
case StyleAppearance::Menulist:
|
2021-01-30 00:18:54 +03:00
|
|
|
case StyleAppearance::MenulistButton:
|
|
|
|
case StyleAppearance::Button:
|
|
|
|
// Return the border size from the UA sheet, even though what we paint
|
|
|
|
// doesn't actually match that. We know this is the UA sheet border
|
|
|
|
// because we disable native theming when different border widths are
|
|
|
|
// specified by authors, see nsNativeBasicTheme::IsWidgetStyled.
|
|
|
|
//
|
|
|
|
// The Rounded() bit is technically redundant, but needed to appease the
|
|
|
|
// type system, we should always end up with full device pixels due to
|
|
|
|
// round_border_to_device_pixels at style time.
|
|
|
|
return LayoutDeviceIntMargin::FromAppUnits(
|
|
|
|
aFrame->StyleBorder()->GetComputedBorder(),
|
|
|
|
aFrame->PresContext()->AppUnitsPerDevPixel())
|
|
|
|
.Rounded();
|
2021-01-20 23:08:35 +03:00
|
|
|
case StyleAppearance::Checkbox:
|
|
|
|
case StyleAppearance::Radio: {
|
2021-01-30 00:18:54 +03:00
|
|
|
DPIRatio dpiRatio = GetDPIRatio(aFrame, aAppearance);
|
2021-01-27 01:12:03 +03:00
|
|
|
LayoutDeviceIntCoord w =
|
|
|
|
SnapBorderWidth(kCheckboxRadioBorderWidth, dpiRatio);
|
2021-01-20 23:08:35 +03:00
|
|
|
return LayoutDeviceIntMargin(w, w, w, w);
|
|
|
|
}
|
2020-03-11 04:52:51 +03:00
|
|
|
default:
|
2020-12-03 02:11:32 +03:00
|
|
|
return LayoutDeviceIntMargin();
|
2020-03-11 04:52:51 +03:00
|
|
|
}
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::GetWidgetPadding(nsDeviceContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
2020-12-03 02:11:32 +03:00
|
|
|
LayoutDeviceIntMargin* aResult) {
|
2020-02-10 22:26:01 +03:00
|
|
|
switch (aAppearance) {
|
|
|
|
// Radios and checkboxes return a fixed size in GetMinimumWidgetSize
|
|
|
|
// and have a meaningful baseline, so they can't have
|
|
|
|
// author-specified padding.
|
|
|
|
case StyleAppearance::Radio:
|
|
|
|
case StyleAppearance::Checkbox:
|
|
|
|
aResult->SizeTo(0, 0, 0, 0);
|
|
|
|
return true;
|
2020-03-25 01:51:26 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2021-01-22 00:38:33 +03:00
|
|
|
return false;
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::GetWidgetOverflow(nsDeviceContext* aContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
|
|
|
nsRect* aOverflowRect) {
|
2020-07-30 20:02:02 +03:00
|
|
|
nsIntMargin overflow;
|
|
|
|
switch (aAppearance) {
|
2020-11-16 19:53:23 +03:00
|
|
|
case StyleAppearance::FocusOutline:
|
2021-02-05 19:25:57 +03:00
|
|
|
// 2px * one segment
|
|
|
|
overflow.SizeTo(2, 2, 2, 2);
|
2020-11-16 19:53:23 +03:00
|
|
|
break;
|
2020-07-30 20:02:02 +03:00
|
|
|
case StyleAppearance::Radio:
|
|
|
|
case StyleAppearance::Checkbox:
|
|
|
|
case StyleAppearance::Range:
|
2021-02-24 02:22:19 +03:00
|
|
|
// 2px for each outline segment, plus 1px separation, plus we paint with a
|
|
|
|
// 1px extra offset, so 6px.
|
2020-07-30 20:02:02 +03:00
|
|
|
overflow.SizeTo(6, 6, 6, 6);
|
|
|
|
break;
|
2020-07-31 18:16:34 +03:00
|
|
|
case StyleAppearance::Textarea:
|
|
|
|
case StyleAppearance::Textfield:
|
|
|
|
case StyleAppearance::NumberInput:
|
|
|
|
case StyleAppearance::Listbox:
|
|
|
|
case StyleAppearance::MenulistButton:
|
|
|
|
case StyleAppearance::Menulist:
|
|
|
|
case StyleAppearance::Button:
|
2021-01-29 01:11:54 +03:00
|
|
|
// 2px for each segment, plus 1px separation, but we paint 1px inside
|
|
|
|
// the border area so 4px overflow.
|
2020-07-30 20:02:02 +03:00
|
|
|
overflow.SizeTo(4, 4, 4, 4);
|
|
|
|
break;
|
2020-07-31 18:16:34 +03:00
|
|
|
default:
|
|
|
|
return false;
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
|
2020-11-02 20:09:05 +03:00
|
|
|
// TODO: This should convert from device pixels to app units, not from CSS
|
|
|
|
// pixels. And it should take the dpi ratio into account.
|
|
|
|
// Using CSS pixels can cause the overflow to be too small if the page is
|
|
|
|
// zoomed out.
|
2020-07-30 20:02:02 +03:00
|
|
|
aOverflowRect->Inflate(nsMargin(CSSPixel::ToAppUnits(overflow.top),
|
|
|
|
CSSPixel::ToAppUnits(overflow.right),
|
|
|
|
CSSPixel::ToAppUnits(overflow.bottom),
|
|
|
|
CSSPixel::ToAppUnits(overflow.left)));
|
|
|
|
|
|
|
|
return true;
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
2021-01-29 01:11:54 +03:00
|
|
|
auto nsNativeBasicTheme::GetScrollbarSizes(nsPresContext* aPresContext,
|
|
|
|
StyleScrollbarWidth aWidth, Overlay)
|
|
|
|
-> ScrollbarSizes {
|
|
|
|
CSSCoord size = aWidth == StyleScrollbarWidth::Thin
|
|
|
|
? kMinimumThinScrollbarSize
|
|
|
|
: kMinimumScrollbarSize;
|
|
|
|
LayoutDeviceIntCoord s =
|
|
|
|
(size * GetDPIRatioForScrollbarPart(aPresContext)).Rounded();
|
|
|
|
return {s, s};
|
|
|
|
}
|
|
|
|
|
2021-02-20 03:13:10 +03:00
|
|
|
nscoord nsNativeBasicTheme::GetCheckboxRadioPrefSize() {
|
2021-03-02 01:55:37 +03:00
|
|
|
return CSSPixel::ToAppUnits(kCheckboxRadioContentBoxSize);
|
2021-02-20 03:13:10 +03:00
|
|
|
}
|
|
|
|
|
2020-02-10 22:26:01 +03:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeBasicTheme::GetMinimumWidgetSize(nsPresContext* aPresContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
2020-12-03 02:11:32 +03:00
|
|
|
LayoutDeviceIntSize* aResult,
|
2020-02-10 22:26:01 +03:00
|
|
|
bool* aIsOverridable) {
|
2021-01-27 00:34:35 +03:00
|
|
|
DPIRatio dpiRatio = GetDPIRatio(aFrame, aAppearance);
|
2020-07-30 20:02:02 +03:00
|
|
|
|
2021-02-20 03:13:10 +03:00
|
|
|
aResult->width = aResult->height = 0;
|
|
|
|
*aIsOverridable = true;
|
2020-07-30 20:02:02 +03:00
|
|
|
|
|
|
|
switch (aAppearance) {
|
|
|
|
case StyleAppearance::Button:
|
|
|
|
if (IsColorPickerButton(aFrame)) {
|
2020-12-03 02:11:32 +03:00
|
|
|
aResult->height = (kMinimumColorPickerHeight * dpiRatio).Rounded();
|
2020-07-30 20:02:02 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case StyleAppearance::RangeThumb:
|
2020-12-03 02:11:32 +03:00
|
|
|
aResult->SizeTo((kMinimumRangeThumbSize * dpiRatio).Rounded(),
|
|
|
|
(kMinimumRangeThumbSize * dpiRatio).Rounded());
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::MozMenulistArrowButton:
|
2020-12-03 02:11:32 +03:00
|
|
|
aResult->width = (kMinimumDropdownArrowButtonWidth * dpiRatio).Rounded();
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
|
|
|
case StyleAppearance::SpinnerUpbutton:
|
|
|
|
case StyleAppearance::SpinnerDownbutton:
|
2020-12-03 02:11:32 +03:00
|
|
|
aResult->width = (kMinimumSpinnerButtonWidth * dpiRatio).Rounded();
|
2021-01-22 19:09:35 +03:00
|
|
|
aResult->height = (kMinimumSpinnerButtonHeight * dpiRatio).Rounded();
|
2020-07-30 20:02:02 +03:00
|
|
|
break;
|
2020-10-15 07:54:41 +03:00
|
|
|
case StyleAppearance::ScrollbarbuttonUp:
|
|
|
|
case StyleAppearance::ScrollbarbuttonDown:
|
|
|
|
case StyleAppearance::ScrollbarbuttonLeft:
|
|
|
|
case StyleAppearance::ScrollbarbuttonRight:
|
2021-01-21 00:54:58 +03:00
|
|
|
// For scrollbar-width:thin, we don't display the buttons.
|
|
|
|
if (IsScrollbarWidthThin(aFrame)) {
|
|
|
|
aResult->SizeTo(0, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
[[fallthrough]];
|
2020-10-15 07:54:41 +03:00
|
|
|
case StyleAppearance::ScrollbarthumbVertical:
|
2021-03-02 01:55:32 +03:00
|
|
|
case StyleAppearance::ScrollbarthumbHorizontal: {
|
2021-01-29 01:11:54 +03:00
|
|
|
auto* style = nsLayoutUtils::StyleForScrollbar(aFrame);
|
|
|
|
auto width = style->StyleUIReset()->mScrollbarWidth;
|
|
|
|
auto sizes = GetScrollbarSizes(aPresContext, width, Overlay::No);
|
|
|
|
MOZ_ASSERT(sizes.mHorizontal == sizes.mVertical);
|
2021-03-02 01:55:32 +03:00
|
|
|
// TODO: for short scrollbars it could be nice if the thumb could shrink
|
|
|
|
// under this size.
|
2021-01-29 01:11:54 +03:00
|
|
|
aResult->SizeTo(sizes.mHorizontal, sizes.mHorizontal);
|
2020-10-15 07:54:41 +03:00
|
|
|
break;
|
|
|
|
}
|
2020-07-30 20:02:02 +03:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-02-10 22:26:01 +03:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsITheme::Transparency nsNativeBasicTheme::GetWidgetTransparency(
|
|
|
|
nsIFrame* aFrame, StyleAppearance aAppearance) {
|
|
|
|
return eUnknownTransparency;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeBasicTheme::WidgetStateChanged(nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance,
|
|
|
|
nsAtom* aAttribute, bool* aShouldRepaint,
|
|
|
|
const nsAttrValue* aOldValue) {
|
|
|
|
if (!aAttribute) {
|
|
|
|
// Hover/focus/active changed. Always repaint.
|
|
|
|
*aShouldRepaint = true;
|
|
|
|
} else {
|
|
|
|
// Check the attribute to see if it's relevant.
|
|
|
|
// disabled, checked, dlgtype, default, etc.
|
|
|
|
*aShouldRepaint = false;
|
|
|
|
if ((aAttribute == nsGkAtoms::disabled) ||
|
|
|
|
(aAttribute == nsGkAtoms::checked) ||
|
|
|
|
(aAttribute == nsGkAtoms::selected) ||
|
|
|
|
(aAttribute == nsGkAtoms::visuallyselected) ||
|
|
|
|
(aAttribute == nsGkAtoms::menuactive) ||
|
|
|
|
(aAttribute == nsGkAtoms::sortDirection) ||
|
|
|
|
(aAttribute == nsGkAtoms::focused) ||
|
|
|
|
(aAttribute == nsGkAtoms::_default) ||
|
|
|
|
(aAttribute == nsGkAtoms::open) || (aAttribute == nsGkAtoms::hover)) {
|
|
|
|
*aShouldRepaint = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsNativeBasicTheme::ThemeChanged() { return NS_OK; }
|
|
|
|
|
2020-10-15 07:54:41 +03:00
|
|
|
bool nsNativeBasicTheme::WidgetAppearanceDependsOnWindowFocus(
|
|
|
|
StyleAppearance aAppearance) {
|
|
|
|
return IsWidgetScrollbarPart(aAppearance);
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
nsITheme::ThemeGeometryType nsNativeBasicTheme::ThemeGeometryTypeForWidget(
|
|
|
|
nsIFrame* aFrame, StyleAppearance aAppearance) {
|
|
|
|
return eThemeGeometryTypeUnknown;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::ThemeSupportsWidget(nsPresContext* aPresContext,
|
|
|
|
nsIFrame* aFrame,
|
|
|
|
StyleAppearance aAppearance) {
|
|
|
|
switch (aAppearance) {
|
|
|
|
case StyleAppearance::Radio:
|
|
|
|
case StyleAppearance::Checkbox:
|
2020-11-16 19:53:23 +03:00
|
|
|
case StyleAppearance::FocusOutline:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::Textarea:
|
|
|
|
case StyleAppearance::Textfield:
|
|
|
|
case StyleAppearance::Range:
|
2020-03-06 20:54:04 +03:00
|
|
|
case StyleAppearance::RangeThumb:
|
2020-07-30 20:02:02 +03:00
|
|
|
case StyleAppearance::ProgressBar:
|
|
|
|
case StyleAppearance::Progresschunk:
|
|
|
|
case StyleAppearance::Meter:
|
|
|
|
case StyleAppearance::Meterchunk:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::ScrollbarbuttonUp:
|
|
|
|
case StyleAppearance::ScrollbarbuttonDown:
|
|
|
|
case StyleAppearance::ScrollbarbuttonLeft:
|
|
|
|
case StyleAppearance::ScrollbarbuttonRight:
|
|
|
|
case StyleAppearance::ScrollbarthumbHorizontal:
|
|
|
|
case StyleAppearance::ScrollbarthumbVertical:
|
2020-11-02 20:09:00 +03:00
|
|
|
case StyleAppearance::ScrollbartrackHorizontal:
|
|
|
|
case StyleAppearance::ScrollbartrackVertical:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::ScrollbarHorizontal:
|
|
|
|
case StyleAppearance::ScrollbarVertical:
|
|
|
|
case StyleAppearance::Scrollcorner:
|
|
|
|
case StyleAppearance::Button:
|
|
|
|
case StyleAppearance::Listbox:
|
|
|
|
case StyleAppearance::Menulist:
|
2020-02-19 17:48:43 +03:00
|
|
|
case StyleAppearance::MenulistButton:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::NumberInput:
|
2020-03-06 00:13:46 +03:00
|
|
|
case StyleAppearance::MozMenulistArrowButton:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::SpinnerUpbutton:
|
|
|
|
case StyleAppearance::SpinnerDownbutton:
|
|
|
|
return !IsWidgetStyled(aPresContext, aFrame, aAppearance);
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::WidgetIsContainer(StyleAppearance aAppearance) {
|
|
|
|
switch (aAppearance) {
|
2020-03-06 00:13:46 +03:00
|
|
|
case StyleAppearance::MozMenulistArrowButton:
|
2020-02-10 22:26:01 +03:00
|
|
|
case StyleAppearance::Radio:
|
|
|
|
case StyleAppearance::Checkbox:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::ThemeDrawsFocusForWidget(StyleAppearance aAppearance) {
|
2020-07-30 20:02:02 +03:00
|
|
|
return true;
|
2020-02-10 22:26:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool nsNativeBasicTheme::ThemeNeedsComboboxDropmarker() { return true; }
|