mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:27:35 +00:00
LibWeb: Add support for parsing grid-auto-flow
CSS property
Co-Authored-By: Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
This commit is contained in:
parent
1a5533e528
commit
703c2bb06e
13 changed files with 168 additions and 0 deletions
|
@ -0,0 +1,45 @@
|
|||
/*
|
||||
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/CSS/StyleValue.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
class GridAutoFlowStyleValue final : public StyleValueWithDefaultOperators<GridAutoFlowStyleValue> {
|
||||
public:
|
||||
enum Axis {
|
||||
Row,
|
||||
Column,
|
||||
};
|
||||
enum Dense {
|
||||
No,
|
||||
Yes,
|
||||
};
|
||||
static ValueComparingNonnullRefPtr<GridAutoFlowStyleValue> create(Axis, Dense);
|
||||
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; }
|
||||
|
||||
virtual ErrorOr<String> to_string() const override;
|
||||
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 };
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue