26 lines
690 B
C++
26 lines
690 B
C++
/*
|
|
* 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(FormattingState&, BlockContainer const&, FormattingContext* parent);
|
|
~TableFormattingContext();
|
|
|
|
virtual void run(Box const&, LayoutMode) override;
|
|
|
|
private:
|
|
void calculate_column_widths(Box const& row, CSS::Length const& table_width, Vector<float>& column_widths);
|
|
void layout_row(Box const& row, Vector<float>& column_widths);
|
|
};
|
|
|
|
}
|