mirror of
https://github.com/RGBCube/serenity
synced 2025-07-07 16:17:36 +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.
25 lines
556 B
C++
25 lines
556 B
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Layout/SVGBox.h>
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class SVGPaintable : public PaintableWithLines {
|
|
public:
|
|
virtual void before_children_paint(PaintContext&, PaintPhase) const override;
|
|
virtual void after_children_paint(PaintContext&, PaintPhase) const override;
|
|
|
|
Layout::SVGBox const& layout_box() const;
|
|
|
|
protected:
|
|
SVGPaintable(Layout::SVGBox const&);
|
|
};
|
|
|
|
}
|