2022-02-21 17:51:01 +00:00
|
|
|
/*
|
2025-05-16 20:02:16 +01:00
|
|
|
* Copyright (c) 2022-2025, Sam Atkins <sam@ladybird.org>
|
2022-02-21 17:51:01 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-06 19:02:26 +01:00
|
|
|
#include <AK/String.h>
|
2025-05-16 20:02:16 +01:00
|
|
|
#include <LibWeb/CSS/SerializationMode.h>
|
2025-09-02 13:48:49 +01:00
|
|
|
#include <LibWeb/CSS/Units.h>
|
2022-02-21 17:51:01 +00:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class Resolution {
|
|
|
|
public:
|
2025-09-02 13:48:49 +01:00
|
|
|
Resolution(double value, ResolutionUnit unit);
|
2023-12-30 17:05:23 +00:00
|
|
|
static Resolution make_dots_per_pixel(double);
|
2022-02-21 17:51:01 +00:00
|
|
|
|
2025-05-16 20:02:16 +01:00
|
|
|
String to_string(SerializationMode = SerializationMode::Normal) const;
|
2023-08-20 13:02:41 +01:00
|
|
|
double to_dots_per_pixel() const;
|
2022-02-21 17:51:01 +00:00
|
|
|
|
2023-12-30 17:05:23 +00:00
|
|
|
double raw_value() const { return m_value; }
|
2025-09-02 13:48:49 +01:00
|
|
|
ResolutionUnit unit() const { return m_unit; }
|
2025-09-11 11:50:59 +01:00
|
|
|
FlyString unit_name() const { return CSS::to_string(m_unit); }
|
2023-12-30 17:05:23 +00:00
|
|
|
|
2022-02-21 17:51:01 +00:00
|
|
|
bool operator==(Resolution const& other) const
|
|
|
|
{
|
2025-09-02 13:48:49 +01:00
|
|
|
return m_unit == other.m_unit && m_value == other.m_value;
|
2022-02-21 17:51:01 +00:00
|
|
|
}
|
|
|
|
|
2023-05-31 14:55:18 +01:00
|
|
|
int operator<=>(Resolution const& other) const
|
|
|
|
{
|
|
|
|
auto this_dots_per_pixel = to_dots_per_pixel();
|
|
|
|
auto other_dots_per_pixel = other.to_dots_per_pixel();
|
|
|
|
|
|
|
|
if (this_dots_per_pixel < other_dots_per_pixel)
|
|
|
|
return -1;
|
|
|
|
if (this_dots_per_pixel > other_dots_per_pixel)
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-02-21 17:51:01 +00:00
|
|
|
private:
|
2025-09-02 13:48:49 +01:00
|
|
|
ResolutionUnit m_unit;
|
2023-08-20 13:02:41 +01:00
|
|
|
double m_value { 0 };
|
2022-02-21 17:51:01 +00:00
|
|
|
};
|
2025-05-13 07:06:33 -04:00
|
|
|
|
2022-02-21 17:51:01 +00:00
|
|
|
}
|