blob: 44881188c1883010aed6f00d3bb6b97b4e9b307d [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 "DisplayRect.h"
#include "LayoutBox.h"
#include "LayoutUnit.h"
#include "RenderStyle.h"
#include "TextFlags.h"
namespace WebCore {
class CachedImage;
namespace Display {
struct Run {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
struct TextContext {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
public:
struct ExpansionContext;
TextContext(unsigned position, unsigned length, const String&, Optional<ExpansionContext> = { });
unsigned start() const { return m_start; }
unsigned end() const { return start() + length(); }
unsigned length() const { return m_length; }
StringView content() const { return StringView(m_contentString).substring(m_start, m_length); }
struct ExpansionContext {
ExpansionBehavior behavior;
LayoutUnit horizontalExpansion;
};
void setExpansion(ExpansionContext expansionContext) { m_expansionContext = expansionContext; }
Optional<ExpansionContext> expansion() const { return m_expansionContext; }
void expand(unsigned expandedLength);
private:
unsigned m_start { 0 };
unsigned m_length { 0 };
String m_contentString;
Optional<ExpansionContext> m_expansionContext;
};
Run(size_t lineIndex, const Layout::Box&, const Rect& logicalRect, Optional<TextContext> = WTF::nullopt);
size_t lineIndex() const { return m_lineIndex; }
const Rect& logicalRect() const { return m_logicalRect; }
LayoutPoint logicalTopLeft() const { return m_logicalRect.topLeft(); }
LayoutUnit logicalLeft() const { return m_logicalRect.left(); }
LayoutUnit logicalRight() const { return m_logicalRect.right(); }
LayoutUnit logicalTop() const { return m_logicalRect.top(); }
LayoutUnit logicalBottom() const { return m_logicalRect.bottom(); }
LayoutUnit logicalWidth() const { return m_logicalRect.width(); }
LayoutUnit logicalHeight() const { return m_logicalRect.height(); }
void setLogicalWidth(LayoutUnit width) { m_logicalRect.setWidth(width); }
void setLogicalTop(LayoutUnit logicalTop) { m_logicalRect.setTop(logicalTop); }
void setLogicalLeft(LayoutUnit logicalLeft) { m_logicalRect.setLeft(logicalLeft); }
void setLogicalRight(LayoutUnit logicalRight) { m_logicalRect.shiftRightTo(logicalRight); }
void moveVertically(LayoutUnit delta) { m_logicalRect.moveVertically(delta); }
void moveHorizontally(LayoutUnit delta) { m_logicalRect.moveHorizontally(delta); }
void expandVertically(LayoutUnit delta) { m_logicalRect.expandVertically(delta); }
void expandHorizontally(LayoutUnit delta) { m_logicalRect.expandHorizontally(delta); }
void setTextContext(const TextContext&& textContext) { m_textContext.emplace(textContext); }
const Optional<TextContext>& textContext() const { return m_textContext; }
void setImage(CachedImage& image) { m_cachedImage = &image; }
CachedImage* image() const { return m_cachedImage; }
bool isLineBreak() const { return layoutBox().isLineBreakBox() || (textContext() && textContext()->content() == "\n" && style().preserveNewline()); }
const Layout::Box& layoutBox() const { return *m_layoutBox; }
const RenderStyle& style() const { return m_layoutBox->style(); }
private:
// FIXME: Find out the Display::Run <-> paint style setup.
const size_t m_lineIndex;
WeakPtr<const Layout::Box> m_layoutBox;
CachedImage* m_cachedImage { nullptr };
Rect m_logicalRect;
Optional<TextContext> m_textContext;
};
inline Run::Run(size_t lineIndex, const Layout::Box& layoutBox, const Rect& logicalRect, Optional<TextContext> textContext)
: m_lineIndex(lineIndex)
, m_layoutBox(makeWeakPtr(layoutBox))
, m_logicalRect(logicalRect)
, m_textContext(textContext)
{
}
inline Run::TextContext::TextContext(unsigned start, unsigned length, const String& contentString, Optional<ExpansionContext> expansionContext)
: m_start(start)
, m_length(length)
, m_contentString(contentString)
, m_expansionContext(expansionContext)
{
}
inline void Run::TextContext::expand(unsigned expandedLength)
{
m_length = expandedLength;
}
}
}
#endif