diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/style/StyleColorInlines.h | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/style/StyleColorInlines.h')
-rw-r--r-- | layout/style/StyleColorInlines.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/style/StyleColorInlines.h b/layout/style/StyleColorInlines.h new file mode 100644 index 0000000000..51633f118a --- /dev/null +++ b/layout/style/StyleColorInlines.h @@ -0,0 +1,62 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* vim: set ts=8 sts=2 et sw=2 tw=80: */ +/* 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/. */ + +/* Inline functions for StyleColor (aka values::computed::Color) */ + +#ifndef mozilla_StyleColorInlines_h_ +#define mozilla_StyleColorInlines_h_ + +#include "nsColor.h" +#include "mozilla/ServoStyleConsts.h" + +namespace mozilla { + +inline StyleRGBA StyleRGBA::FromColor(nscolor aColor) { + return {NS_GET_R(aColor), NS_GET_G(aColor), NS_GET_B(aColor), + NS_GET_A(aColor)}; +} + +inline nscolor StyleRGBA::ToColor() const { + return NS_RGBA(red, green, blue, alpha); +} + +inline StyleRGBA StyleRGBA::Transparent() { return {0, 0, 0, 0}; } + +template <> +inline StyleColor StyleColor::FromColor(nscolor aColor) { + return StyleColor::Numeric(StyleRGBA::FromColor(aColor)); +} + +template <> +inline StyleColor StyleColor::Black() { + return FromColor(NS_RGB(0, 0, 0)); +} + +template <> +inline StyleColor StyleColor::White() { + return FromColor(NS_RGB(255, 255, 255)); +} + +template <> +inline StyleColor StyleColor::Transparent() { + return FromColor(NS_RGBA(0, 0, 0, 0)); +} + +template <> +nscolor StyleColor::CalcColor(const StyleRGBA&) const; + +template <> +nscolor StyleColor::CalcColor(nscolor) const; + +template <> +nscolor StyleColor::CalcColor(const ComputedStyle&) const; + +template <> +nscolor StyleColor::CalcColor(const nsIFrame*) const; + +} // namespace mozilla + +#endif // mozilla_StyleColor_h_ |