1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 13:28:11 +00:00

LibHTML: Use floating point numbers throughout the layout tree

This commit is contained in:
Andreas Kling 2019-11-18 16:25:38 +01:00
parent da23864c8d
commit c628ebda0f
15 changed files with 59 additions and 52 deletions

View file

@ -15,21 +15,26 @@ public:
, m_value(value)
{
}
Length(float value, Type type)
: m_type(type)
, m_value(value)
{
}
~Length() {}
bool is_auto() const { return m_type == Type::Auto; }
bool is_absolute() const { return m_type == Type::Absolute; }
int value() const { return m_value; }
float value() const { return m_value; }
String to_string() const
{
if (is_auto())
return "[Length/auto]";
return String::format("%d [Length/px]", m_value);
return String::format("%g [Length/px]", m_value);
}
int to_px() const
float to_px() const
{
if (is_auto())
return 0;
@ -38,7 +43,7 @@ public:
private:
Type m_type { Type::Auto };
int m_value { 0 };
float m_value { 0 };
};
inline const LogStream& operator<<(const LogStream& stream, const Length& value)