mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 07:08:10 +00:00

This wasn't worth the headache of trying to make SVG boxes work together with BFC right now. Let's just make it a block container once again, and have its corresponding SVGPaintable inherit from PaintableWithLines. We'll have to revisit this as SVG support improves.
38 lines
933 B
C++
38 lines
933 B
C++
/*
|
|
* Copyright (c) 2018-2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Layout/ImageBox.h>
|
|
#include <LibWeb/Painting/SVGPaintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
SVGPaintable::SVGPaintable(Layout::SVGBox const& layout_box)
|
|
: PaintableWithLines(layout_box)
|
|
{
|
|
}
|
|
|
|
Layout::SVGBox const& SVGPaintable::layout_box() const
|
|
{
|
|
return static_cast<Layout::SVGBox const&>(layout_node());
|
|
}
|
|
|
|
void SVGPaintable::before_children_paint(PaintContext& context, PaintPhase phase) const
|
|
{
|
|
PaintableBox::before_children_paint(context, phase);
|
|
if (phase != PaintPhase::Foreground)
|
|
return;
|
|
context.svg_context().save();
|
|
}
|
|
|
|
void SVGPaintable::after_children_paint(PaintContext& context, PaintPhase phase) const
|
|
{
|
|
PaintableBox::after_children_paint(context, phase);
|
|
if (phase != PaintPhase::Foreground)
|
|
return;
|
|
context.svg_context().restore();
|
|
}
|
|
|
|
}
|