2022-02-21 19:29:43 +00:00
|
|
|
/*
|
2023-03-30 15:55:02 +01:00
|
|
|
* Copyright (c) 2022-2023, Sam Atkins <atkinssj@serenityos.org>
|
2022-02-21 19:29:43 +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 19:29:43 +00:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class Time {
|
|
|
|
public:
|
|
|
|
enum class Type {
|
|
|
|
S,
|
|
|
|
Ms,
|
|
|
|
};
|
|
|
|
|
|
|
|
static Optional<Type> unit_from_name(StringView);
|
|
|
|
|
|
|
|
Time(int value, Type type);
|
|
|
|
Time(float value, Type type);
|
|
|
|
static Time make_seconds(float);
|
|
|
|
Time percentage_of(Percentage const&) const;
|
|
|
|
|
2023-01-06 19:02:26 +01:00
|
|
|
ErrorOr<String> to_string() const;
|
2022-02-21 19:29:43 +00:00
|
|
|
float to_seconds() const;
|
2023-05-26 23:30:11 +03:30
|
|
|
double to_milliseconds() const;
|
2022-02-21 19:29:43 +00:00
|
|
|
|
2023-04-11 12:57:32 +01:00
|
|
|
Type type() const { return m_type; }
|
|
|
|
float raw_value() const { return m_value; }
|
|
|
|
|
2022-02-21 19:29:43 +00:00
|
|
|
bool operator==(Time 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::Time> : Formatter<StringView> {
|
|
|
|
ErrorOr<void> format(FormatBuilder& builder, Web::CSS::Time const& time)
|
|
|
|
{
|
2023-01-06 19:02:26 +01:00
|
|
|
return Formatter<StringView>::format(builder, TRY(time.to_string()));
|
2022-07-27 11:41:31 +01:00
|
|
|
}
|
|
|
|
};
|