2022-02-21 17:43:30 +00:00
|
|
|
/*
|
2023-03-30 15:33:37 +01:00
|
|
|
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
|
2022-02-21 17:43:30 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2023-01-06 19:02:26 +01:00
|
|
|
#include <AK/String.h>
|
2022-02-21 17:43:30 +00:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class Angle {
|
|
|
|
public:
|
|
|
|
enum class Type {
|
|
|
|
Deg,
|
|
|
|
Grad,
|
|
|
|
Rad,
|
|
|
|
Turn,
|
|
|
|
};
|
|
|
|
|
|
|
|
static Optional<Type> unit_from_name(StringView);
|
|
|
|
|
|
|
|
Angle(int value, Type type);
|
|
|
|
Angle(float value, Type type);
|
|
|
|
static Angle make_degrees(float);
|
|
|
|
Angle percentage_of(Percentage const&) const;
|
|
|
|
|
2023-01-06 19:02:26 +01:00
|
|
|
ErrorOr<String> to_string() const;
|
2022-02-21 17:43:30 +00:00
|
|
|
float to_degrees() const;
|
|
|
|
|
2023-04-11 12:57:32 +01:00
|
|
|
Type type() const { return m_type; }
|
|
|
|
float raw_value() const { return m_value; }
|
|
|
|
|
2022-02-21 17:43:30 +00:00
|
|
|
bool operator==(Angle const& other) const
|
|
|
|
{
|
|
|
|
return m_type == other.m_type && m_value == other.m_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
StringView unit_name() const;
|
|
|
|
|
|
|
|
Type m_type;
|
|
|
|
float m_value { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2022-07-27 11:41:31 +01:00
|
|
|
|
|
|
|
template<>
|
|
|
|
struct AK::Formatter<Web::CSS::Angle> : Formatter<StringView> {
|
|
|
|
ErrorOr<void> format(FormatBuilder& builder, Web::CSS::Angle const& angle)
|
|
|
|
{
|
2023-01-06 19:02:26 +01:00
|
|
|
return Formatter<StringView>::format(builder, TRY(angle.to_string()));
|
2022-07-27 11:41:31 +01:00
|
|
|
}
|
|
|
|
};
|