2023-08-17 20:25:18 +02:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2023, Andreas Kling <andreas@ladybird.org>
|
2023-08-17 20:25:18 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2024-08-14 11:10:54 +01:00
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
2023-08-17 20:25:18 +02:00
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
class GridAutoFlowStyleValue final : public StyleValueWithDefaultOperators<GridAutoFlowStyleValue> {
|
|
|
|
public:
|
|
|
|
enum Axis {
|
|
|
|
Row,
|
|
|
|
Column,
|
|
|
|
};
|
|
|
|
enum Dense {
|
|
|
|
No,
|
|
|
|
Yes,
|
|
|
|
};
|
2025-04-15 15:18:27 -06:00
|
|
|
static ValueComparingNonnullRefPtr<GridAutoFlowStyleValue const> create(Axis, Dense);
|
2023-08-17 20:25:18 +02:00
|
|
|
virtual ~GridAutoFlowStyleValue() override = default;
|
|
|
|
|
|
|
|
[[nodiscard]] bool is_row() const { return m_row; }
|
|
|
|
[[nodiscard]] bool is_column() const { return !m_row; }
|
|
|
|
[[nodiscard]] bool is_dense() const { return m_dense; }
|
|
|
|
|
2024-12-07 00:59:49 +01:00
|
|
|
virtual String to_string(SerializationMode) const override;
|
2023-08-17 20:25:18 +02:00
|
|
|
bool properties_equal(GridAutoFlowStyleValue const& other) const { return m_row == other.m_row && m_dense == other.m_dense; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit GridAutoFlowStyleValue(Axis axis, Dense dense)
|
|
|
|
: StyleValueWithDefaultOperators(Type::GridAutoFlow)
|
|
|
|
, m_row(axis == Axis::Row)
|
|
|
|
, m_dense(dense == Dense::Yes)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool m_row { false };
|
|
|
|
bool m_dense { false };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|