summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Layout/ListItemBox.cpp
blob: 38c27373c62136a11c7930631e8870c577adfb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 * Copyright (c) 2021, Tobias Christiansen <tobi@tobyase.de>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibWeb/Layout/ListItemBox.h>
#include <LibWeb/Layout/ListItemMarkerBox.h>

namespace Web::Layout {

ListItemBox::ListItemBox(DOM::Document& document, DOM::Element& element, NonnullRefPtr<CSS::StyleProperties> style)
    : Layout::BlockBox(document, &element, move(style))
{
}

ListItemBox::~ListItemBox()
{
}

void ListItemBox::layout_marker()
{
    if (m_marker) {
        remove_child(*m_marker);
        m_marker = nullptr;
    }

    if (computed_values().list_style_type() == CSS::ListStyleType::None)
        return;

    if (!m_marker) {
        int child_index = parent()->index_of_child<ListItemBox>(*this).value();
        m_marker = adopt_ref(*new ListItemMarkerBox(document(), computed_values().list_style_type(), child_index + 1));
        if (first_child())
            m_marker->set_inline(first_child()->is_inline());
        append_child(*m_marker);
    }

    m_marker->set_offset(-8, 0);
    m_marker->set_size(4, line_height());
}

}