blob: d6554416aa5115029f5d53f6a0471bedd1ee115e [file] [log] [blame]
/*
* Copyright (C) 2018 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 "InlineRunProvider.h"
#include "LayoutUnit.h"
namespace WebCore {
namespace Layout {
struct InlineRun {
InlineRun(Display::Box::Rect logicalRect, const InlineItem&);
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(); }
bool overlapsMultipleInlineItems() const;
void setLogicalWidth(LayoutUnit width) { m_logicalRect.setWidth(width); }
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); }
struct ExpansionOpportunity {
unsigned count { 0 };
ExpansionBehavior behavior { ForbidLeadingExpansion | ForbidTrailingExpansion };
LayoutUnit expansion;
};
ExpansionOpportunity& expansionOpportunity() { return m_expansionOpportunity; }
struct TextContext {
public:
TextContext(ItemPosition, unsigned length);
void setStart(ItemPosition start) { m_start = start; }
void setLength(unsigned length) { m_length = length; }
ItemPosition start() const { return m_start; }
unsigned length() const { return m_length; }
private:
ItemPosition m_start;
unsigned m_length;
};
void setTextContext(TextContext textContext) { m_textContext.emplace(textContext); }
Optional<TextContext>& textContext() { return m_textContext; }
Optional<TextContext> textContext() const { return m_textContext; }
const InlineItem& inlineItem() const { return m_inlineItem; }
private:
Display::Box::Rect m_logicalRect;
ExpansionOpportunity m_expansionOpportunity;
const InlineItem& m_inlineItem;
Optional<TextContext> m_textContext;
};
using InlineRuns = Vector<InlineRun>;
inline InlineRun::InlineRun(Display::Box::Rect logicalRect, const InlineItem& inlineItem)
: m_logicalRect(logicalRect)
, m_inlineItem(inlineItem)
{
}
inline InlineRun::TextContext::TextContext(ItemPosition start, unsigned length)
: m_start(start)
, m_length(length)
{
}
inline bool InlineRun::overlapsMultipleInlineItems() const
{
// Only text content can overlap multiple inline elements.
if (!m_textContext)
return false;
auto endPosition = m_textContext->start() + m_textContext->length();
return endPosition > m_inlineItem.textContent().length();
}
}
}
#endif