blob: f5eae985f4f03851bb24593dbe4927726a41954b (
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
|
/*
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Forward.h>
#include <LibWeb/Layout/BlockFormattingContext.h>
namespace Web::Layout {
class TableFormattingContext final : public BlockFormattingContext {
public:
explicit TableFormattingContext(Box&, FormattingContext* parent);
~TableFormattingContext();
virtual void run(Box&, LayoutMode) override;
private:
void calculate_column_widths(Box& row, Vector<float>& column_widths);
void layout_row(Box& row, Vector<float>& column_widths);
};
}
|