/* * Copyright (c) 2022, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include namespace Web { /// DevicePixels: A position or length on the physical display. AK_TYPEDEF_DISTINCT_NUMERIC_GENERAL(int, DevicePixels, Arithmetic, CastToUnderlying, Comparison, Increment); template constexpr bool operator==(DevicePixels left, T right) { return left.value() == right; } template constexpr bool operator!=(DevicePixels left, T right) { return left.value() != right; } template constexpr bool operator>(DevicePixels left, T right) { return left.value() > right; } template constexpr bool operator<(DevicePixels left, T right) { return left.value() < right; } template constexpr bool operator>=(DevicePixels left, T right) { return left.value() >= right; } template constexpr bool operator<=(DevicePixels left, T right) { return left.value() <= right; } template constexpr DevicePixels operator*(DevicePixels left, T right) { return left.value() * right; } template constexpr DevicePixels operator*(T left, DevicePixels right) { return right * left; } template constexpr DevicePixels operator/(DevicePixels left, T right) { return left.value() / right; } template constexpr DevicePixels operator%(DevicePixels left, T right) { return left.value() % right; } /// CSSPixels: A position or length in CSS "reference pixels", independent of zoom or screen DPI. /// See https://www.w3.org/TR/css-values-3/#reference-pixel AK_TYPEDEF_DISTINCT_NUMERIC_GENERAL(double, CSSPixels, Arithmetic, CastToUnderlying, Comparison, Increment); template constexpr bool operator==(CSSPixels left, T right) { return left.value() == right; } template constexpr bool operator!=(CSSPixels left, T right) { return left.value() != right; } template constexpr bool operator>(CSSPixels left, T right) { return left.value() > right; } template constexpr bool operator<(CSSPixels left, T right) { return left.value() < right; } template constexpr bool operator>=(CSSPixels left, T right) { return left.value() >= right; } template constexpr bool operator<=(CSSPixels left, T right) { return left.value() <= right; } template constexpr CSSPixels operator*(CSSPixels left, T right) { return left.value() * right; } template constexpr CSSPixels operator*(T left, CSSPixels right) { return right * left; } template constexpr CSSPixels operator/(CSSPixels left, T right) { return left.value() / right; } template constexpr CSSPixels operator%(CSSPixels left, T right) { return left.value() % right; } using CSSPixelLine = Gfx::Line; using CSSPixelPoint = Gfx::Point; using CSSPixelRect = Gfx::Rect; using CSSPixelSize = Gfx::Size; using DevicePixelLine = Gfx::Line; using DevicePixelPoint = Gfx::Point; using DevicePixelRect = Gfx::Rect; using DevicePixelSize = Gfx::Size; } constexpr Web::CSSPixels floor(Web::CSSPixels const& value) { return ::floorf(value.value()); } constexpr Web::CSSPixels ceil(Web::CSSPixels const& value) { return ::ceilf(value.value()); } constexpr Web::CSSPixels round(Web::CSSPixels const& value) { return ::roundf(value.value()); } constexpr Web::CSSPixels fmod(Web::CSSPixels const& x, Web::CSSPixels const& y) { return ::fmodf(x.value(), y.value()); } constexpr Web::CSSPixels abs(Web::CSSPixels const& value) { return AK::abs(value.value()); } constexpr Web::DevicePixels abs(Web::DevicePixels const& value) { return AK::abs(value.value()); } namespace AK { template<> struct Traits : public GenericTraits { static unsigned hash(Web::CSSPixels const& key) { VERIFY(isfinite(key.value())); return Traits::hash(key.value()); } static bool equals(Web::CSSPixels const& a, Web::CSSPixels const& b) { return a == b; } }; template<> struct Traits : public GenericTraits { static unsigned hash(Web::DevicePixels const& key) { return Traits::hash(key.value()); } static bool equals(Web::DevicePixels const& a, Web::DevicePixels const& b) { return a == b; } }; template<> struct Formatter : Formatter { ErrorOr format(FormatBuilder& builder, Web::CSSPixels const& value) { return Formatter::format(builder, value.value()); } }; template<> struct Formatter : Formatter { ErrorOr format(FormatBuilder& builder, Web::DevicePixels const& value) { return Formatter::format(builder, value.value()); } }; }