| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- /*
- * This source file is part of RmlUi, the HTML/CSS Interface Middleware
- *
- * For the latest information, see http://github.com/mikke89/RmlUi
- *
- * Copyright (c) 2008-2010 CodePoint Ltd, Shift Technology Ltd
- * Copyright (c) 2019 The RmlUi Team, and contributors
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy
- * of this software and associated documentation files (the "Software"), to deal
- * in the Software without restriction, including without limitation the rights
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- * copies of the Software, and to permit persons to whom the Software is
- * furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- * THE SOFTWARE.
- *
- */
- #include "LayoutInlineBoxText.h"
- #include "LayoutEngine.h"
- #include "LayoutLineBox.h"
- #include "../../Include/RmlUi/Core/Core.h"
- #include "../../Include/RmlUi/Core/ElementText.h"
- #include "../../Include/RmlUi/Core/ElementUtilities.h"
- #include "../../Include/RmlUi/Core/FontEngineInterface.h"
- #include "../../Include/RmlUi/Core/Log.h"
- #include "../../Include/RmlUi/Core/Property.h"
- #include "../../Include/RmlUi/Core/Profiling.h"
- namespace Rml {
- namespace Core {
- LayoutInlineBoxText::LayoutInlineBoxText(Element* element, int _line_begin) : LayoutInlineBox(element, Box())
- {
- line_begin = _line_begin;
- // Build the box to represent the dimensions of the first word.
- BuildWordBox();
- }
- LayoutInlineBoxText::~LayoutInlineBoxText()
- {
- }
- // Returns true if this box is capable of overflowing, or if it must be rendered on a single line.
- bool LayoutInlineBoxText::CanOverflow() const
- {
- return line_segmented;
- }
- // Flows the inline box's content into its parent line.
- LayoutInlineBox* LayoutInlineBoxText::FlowContent(bool first_box, float available_width, float right_spacing_width)
- {
- ElementText* text_element = GetTextElement();
- RMLUI_ASSERT(text_element != nullptr);
- int line_length;
- float line_width;
- bool overflow = !text_element->GenerateLine(line_contents, line_length, line_width, line_begin, available_width, right_spacing_width, first_box, true);
- Vector2f content_area;
- content_area.x = line_width;
- content_area.y = box.GetSize().y;
- box.SetContent(content_area);
- // Call the base-class's FlowContent() to increment the width of our parent's box.
- LayoutInlineBox::FlowContent(first_box, available_width, right_spacing_width);
- if (overflow)
- return new LayoutInlineBoxText(element, line_begin + line_length);
- return nullptr;
- }
- // Computes and sets the vertical position of this element, relative to its parent inline box (or block box, for an un-nested inline box).
- void LayoutInlineBoxText::CalculateBaseline(float& ascender, float& descender)
- {
- ascender = height - baseline;
- descender = height - ascender;
- }
- // Offsets the baseline of this box, and all of its children, by the ascender of the parent line box.
- void LayoutInlineBoxText::OffsetBaseline(float ascender)
- {
- // Offset by the ascender.
- position.y += (ascender - (height - baseline));
- // Calculate the leading (the difference between font height and line height).
- float leading = 0;
- FontFaceHandle font_face_handle = element->GetFontFaceHandle();
- if (font_face_handle != 0)
- leading = height - GetFontEngineInterface()->GetLineHeight(font_face_handle);
- // Offset by the half-leading.
- position.y += leading * 0.5f;
- }
- // Positions the inline box's element.
- void LayoutInlineBoxText::PositionElement()
- {
- if (line_begin == 0)
- {
- LayoutInlineBox::PositionElement();
- GetTextElement()->ClearLines();
- GetTextElement()->AddLine(Vector2f(0, 0), line_contents);
- }
- else
- {
- GetTextElement()->AddLine(line->GetRelativePosition() + position - element->GetRelativeOffset(Box::BORDER), line_contents);
- }
- }
- // Sizes the inline box's element.
- void LayoutInlineBoxText::SizeElement(bool RMLUI_UNUSED_PARAMETER(split))
- {
- RMLUI_UNUSED(split);
- }
- void* LayoutInlineBoxText::operator new(size_t size)
- {
- return LayoutEngine::AllocateLayoutChunk(size);
- }
- void LayoutInlineBoxText::operator delete(void* chunk)
- {
- LayoutEngine::DeallocateLayoutChunk(chunk);
- }
- // Returns the box's element as a text element.
- ElementText* LayoutInlineBoxText::GetTextElement()
- {
- return rmlui_dynamic_cast< ElementText* >(element);
- }
- // Builds a box for the first word of the element.
- void LayoutInlineBoxText::BuildWordBox()
- {
- RMLUI_ZoneScoped;
- ElementText* text_element = GetTextElement();
- RMLUI_ASSERT(text_element != nullptr);
- FontFaceHandle font_face_handle = text_element->GetFontFaceHandle();
- if (font_face_handle == 0)
- {
- height = 0;
- baseline = 0;
- Log::Message(Log::LT_WARNING, "No font face defined on element %s. Please specify a font-family in your RCSS, otherwise make sure Context::Update is run after new elements are constructed, before Context::Render.", text_element->GetAddress().c_str());
- return;
- }
- Vector2f content_area;
- line_segmented = !text_element->GenerateToken(content_area.x, line_begin);
- content_area.y = element->GetLineHeight();
- box.SetContent(content_area);
- }
- }
- }
|