mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-28 14:02:51 +00:00
This patch adds a bunch of Paintable subclasses, each corresponding to the Layout::Node subclasses that had a paint() override. All painting logic is moved from layout nodes into their corresponding paintables. Paintables are now created by asking a Layout::Box to produce one: static NonnullOwnPtr<Paintable> Layout::Box::create_paintable() Note that inline nodes still have their painting logic. Since they are not boxes, and all paintables have a corresponding box, we'll need to come up with some other solution for them.
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Layout/ImageBox.h>
|
|
#include <LibWeb/Painting/SVGGraphicsPaintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
SVGGraphicsPaintable::SVGGraphicsPaintable(Layout::SVGGraphicsBox const& layout_box)
|
|
: SVGPaintable(layout_box)
|
|
{
|
|
}
|
|
|
|
Layout::SVGGraphicsBox const& SVGGraphicsPaintable::layout_box() const
|
|
{
|
|
return static_cast<Layout::SVGGraphicsBox const&>(m_layout_box);
|
|
}
|
|
|
|
void SVGGraphicsPaintable::before_children_paint(PaintContext& context, PaintPhase phase) const
|
|
{
|
|
SVGPaintable::before_children_paint(context, phase);
|
|
if (phase != PaintPhase::Foreground)
|
|
return;
|
|
|
|
auto& graphics_element = verify_cast<SVG::SVGGraphicsElement>(layout_box().dom_node());
|
|
|
|
if (graphics_element.fill_color().has_value())
|
|
context.svg_context().set_fill_color(graphics_element.fill_color().value());
|
|
if (graphics_element.stroke_color().has_value())
|
|
context.svg_context().set_stroke_color(graphics_element.stroke_color().value());
|
|
if (graphics_element.stroke_width().has_value())
|
|
context.svg_context().set_stroke_width(graphics_element.stroke_width().value());
|
|
}
|
|
|
|
}
|