mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:15:08 +00:00

This simplifies some code and allows us to use tighter types for the parent context everywhere.
42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Layout/BlockContainer.h>
|
|
#include <LibWeb/Layout/FormattingContext.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class InlineFormattingContext final : public FormattingContext {
|
|
public:
|
|
InlineFormattingContext(BlockContainer& containing_block, BlockFormattingContext& parent);
|
|
~InlineFormattingContext();
|
|
|
|
BlockFormattingContext& parent();
|
|
BlockFormattingContext const& parent() const;
|
|
|
|
BlockContainer& containing_block() { return static_cast<BlockContainer&>(context_box()); }
|
|
BlockContainer const& containing_block() const { return static_cast<BlockContainer const&>(context_box()); }
|
|
|
|
virtual void run(Box&, LayoutMode) override;
|
|
|
|
void dimension_box_on_line(Box&, LayoutMode);
|
|
|
|
struct AvailableSpaceForLineInfo {
|
|
float left { 0 };
|
|
float right { 0 };
|
|
};
|
|
|
|
AvailableSpaceForLineInfo available_space_for_line(float y) const;
|
|
|
|
private:
|
|
void generate_line_boxes(LayoutMode);
|
|
};
|
|
|
|
}
|