summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Painting/SVGGraphicsPaintable.h
blob: 56b1a2e48807f10c918a2941c4e249c697ddcb0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibWeb/Layout/SVGGraphicsBox.h>
#include <LibWeb/Painting/SVGPaintable.h>

namespace Web::Painting {

class SVGGraphicsPaintable : public SVGPaintable {
public:
    virtual void before_children_paint(PaintContext&, PaintPhase) const override;

    Layout::SVGGraphicsBox const& layout_box() const;

protected:
    SVGGraphicsPaintable(Layout::SVGGraphicsBox const&);
};

}