blob: 4f6f30b46b14bbf646613b8a8721136b32861d5e [file] [log] [blame]
/*
* Copyright (C) 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#if ENABLE(LAYOUT_FORMATTING_CONTEXT)
#include "DisplayRun.h"
#include "InlineItem.h"
#include "InlineTextItem.h"
#include <wtf/IsoMalloc.h>
namespace WebCore {
namespace Layout {
class Line {
WTF_MAKE_ISO_ALLOCATED(Line);
public:
struct InitialConstraints {
LayoutPoint topLeft;
LayoutUnit availableWidth;
struct HeightAndBaseline {
LayoutUnit height;
LayoutUnit baselineOffset;
Optional<LineBox::Baseline> strut;
};
HeightAndBaseline heightAndBaseline;
};
enum class SkipVerticalAligment { No, Yes };
Line(const LayoutState&, const InitialConstraints&, SkipVerticalAligment);
class Content {
public:
struct Run {
struct TextContext {
unsigned start { 0 };
unsigned length { 0 };
bool isCollapsed { false };
bool isWhitespace { false };
bool canBeExtended { false };
};
Run(const InlineItem&, const Display::Rect&);
Run(const InlineItem&, const TextContext&, const Display::Rect&);
const Box& layoutBox() const { return m_layoutBox; }
const Display::Rect& logicalRect() const { return m_logicalRect; }
const Optional<TextContext> textContext() const { return m_textContext; }
InlineItem::Type type() const { return m_type; }
bool isText() const { return m_type == InlineItem::Type::Text; }
bool isBox() const { return m_type == InlineItem::Type::Box; }
bool isLineBreak() const { return m_type == InlineItem::Type::HardLineBreak; }
bool isContainerStart() const { return m_type == InlineItem::Type::ContainerStart; }
bool isContainerEnd() const { return m_type == InlineItem::Type::ContainerEnd; }
private:
friend class Line;
void adjustLogicalTop(LayoutUnit logicalTop) { m_logicalRect.setTop(logicalTop); }
void moveVertically(LayoutUnit offset) { m_logicalRect.moveVertically(offset); }
void moveHorizontally(LayoutUnit offset) { m_logicalRect.moveHorizontally(offset); }
void setTextIsCollapsed() { m_textContext->isCollapsed = true; }
const Box& m_layoutBox;
const InlineItem::Type m_type;
Display::Rect m_logicalRect;
Optional<TextContext> m_textContext;
};
using Runs = Vector<std::unique_ptr<Run>>;
const Runs& runs() const { return m_runs; }
bool isEmpty() const { return m_runs.isEmpty(); }
LayoutUnit logicalTop() const { return m_logicalRect.top(); }
LayoutUnit logicalLeft() const { return m_logicalRect.left(); }
LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
LayoutUnit logicalWidth() const { return m_logicalRect.width(); }
LayoutUnit logicalHeight() const { return m_logicalRect.height(); }
LineBox::Baseline baseline() const { return m_baseline; }
LayoutUnit baselineOffset() const { return m_baselineOffset; }
private:
friend class Line;
void setLogicalRect(const Display::Rect& logicalRect) { m_logicalRect = logicalRect; }
void setBaseline(LineBox::Baseline baseline) { m_baseline = baseline; }
void setBaselineOffset(LayoutUnit baselineOffset) { m_baselineOffset = baselineOffset; }
Runs& runs() { return m_runs; }
Display::Rect m_logicalRect;
LineBox::Baseline m_baseline;
LayoutUnit m_baselineOffset;
Runs m_runs;
};
std::unique_ptr<Content> close();
void append(const InlineItem&, LayoutUnit logicalWidth);
bool hasContent() const { return !isVisuallyEmpty(); }
LayoutUnit trailingTrimmableWidth() const;
void moveLogicalLeft(LayoutUnit);
void moveLogicalRight(LayoutUnit);
LayoutUnit availableWidth() const { return logicalWidth() - contentLogicalWidth(); }
LayoutUnit contentLogicalRight() const { return logicalLeft() + contentLogicalWidth(); }
LayoutUnit logicalTop() const { return m_logicalTopLeft.y(); }
LayoutUnit logicalBottom() const { return logicalTop() + logicalHeight(); }
static LineBox::Baseline halfLeadingMetrics(const FontMetrics&, LayoutUnit lineLogicalHeight);
private:
LayoutUnit logicalLeft() const { return m_logicalTopLeft.x(); }
LayoutUnit logicalRight() const { return logicalLeft() + logicalWidth(); }
LayoutUnit logicalWidth() const { return m_lineLogicalWidth; }
LayoutUnit logicalHeight() const { return m_lineLogicalHeight; }
LayoutUnit contentLogicalWidth() const { return m_contentLogicalWidth; }
LayoutUnit baselineOffset() const { return m_baseline.ascent + m_baselineTop; }
void appendNonBreakableSpace(const InlineItem&, const Display::Rect& logicalRect);
void appendTextContent(const InlineTextItem&, LayoutUnit logicalWidth);
void appendNonReplacedInlineBox(const InlineItem&, LayoutUnit logicalWidth);
void appendReplacedInlineBox(const InlineItem&, LayoutUnit logicalWidth);
void appendInlineContainerStart(const InlineItem&, LayoutUnit logicalWidth);
void appendInlineContainerEnd(const InlineItem&, LayoutUnit logicalWidth);
void appendHardLineBreak(const InlineItem&);
void removeTrailingTrimmableContent();
void adjustBaselineAndLineHeight(const InlineItem&, LayoutUnit runHeight);
LayoutUnit inlineItemContentHeight(const InlineItem&) const;
bool isVisuallyEmpty() const;
const LayoutState& m_layoutState;
std::unique_ptr<Content> m_content;
ListHashSet<Content::Run*> m_trimmableContent;
LayoutPoint m_logicalTopLeft;
LayoutUnit m_contentLogicalWidth;
LineBox::Baseline m_baseline;
LayoutUnit m_baselineTop;
Optional<LineBox::Baseline> m_initialStrut;
LayoutUnit m_lineLogicalHeight;
LayoutUnit m_lineLogicalWidth;
bool m_skipVerticalAligment { false };
};
}
}
#endif