2023-09-28 15:18:14 +01:00
|
|
|
/*
|
2025-05-16 20:02:16 +01:00
|
|
|
* Copyright (c) 2023-2025, Sam Atkins <sam@ladybird.org>
|
2023-09-28 15:18:14 +01:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2025-05-16 20:02:16 +01:00
|
|
|
#include <LibWeb/CSS/Flex.h>
|
2023-09-28 15:18:14 +01:00
|
|
|
#include <LibWeb/CSS/Percentage.h>
|
2025-08-18 13:02:44 +01:00
|
|
|
#include <LibWeb/CSS/Serialize.h>
|
2023-09-28 15:18:14 +01:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
2025-09-02 13:48:49 +01:00
|
|
|
Flex::Flex(double value, FlexUnit unit)
|
|
|
|
: m_unit(unit)
|
2023-09-28 15:18:14 +01:00
|
|
|
, m_value(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Flex Flex::make_fr(double value)
|
|
|
|
{
|
2025-09-02 13:48:49 +01:00
|
|
|
return { value, FlexUnit::Fr };
|
2023-09-28 15:18:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Flex Flex::percentage_of(Percentage const& percentage) const
|
|
|
|
{
|
2025-09-02 13:48:49 +01:00
|
|
|
return Flex { percentage.as_fraction() * m_value, m_unit };
|
2023-09-28 15:18:14 +01:00
|
|
|
}
|
|
|
|
|
2025-05-16 20:02:16 +01:00
|
|
|
String Flex::to_string(SerializationMode serialization_mode) const
|
2023-09-28 15:18:14 +01:00
|
|
|
{
|
2025-08-18 13:02:44 +01:00
|
|
|
// https://drafts.csswg.org/cssom/#serialize-a-css-value
|
|
|
|
// AD-HOC: No spec definition, so copy the other <dimension> definitions
|
|
|
|
if (serialization_mode == SerializationMode::ResolvedValue) {
|
|
|
|
StringBuilder builder;
|
|
|
|
serialize_a_number(builder, to_fr());
|
|
|
|
builder.append("fr"sv);
|
|
|
|
return builder.to_string_without_validation();
|
|
|
|
}
|
|
|
|
StringBuilder builder;
|
|
|
|
serialize_a_number(builder, raw_value());
|
|
|
|
builder.append(unit_name());
|
|
|
|
return builder.to_string_without_validation();
|
2023-09-28 15:18:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
double Flex::to_fr() const
|
|
|
|
{
|
2025-09-02 13:48:49 +01:00
|
|
|
switch (m_unit) {
|
|
|
|
case FlexUnit::Fr:
|
2023-09-28 15:18:14 +01:00
|
|
|
return m_value;
|
|
|
|
}
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|