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.
43 lines
1.2 KiB
C++
43 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Painting/CanvasPaintable.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
NonnullOwnPtr<CanvasPaintable> CanvasPaintable::create(Layout::CanvasBox const& layout_box)
|
|
{
|
|
return adopt_own(*new CanvasPaintable(layout_box));
|
|
}
|
|
|
|
CanvasPaintable::CanvasPaintable(Layout::CanvasBox const& layout_box)
|
|
: Paintable(layout_box)
|
|
{
|
|
}
|
|
|
|
Layout::CanvasBox const& CanvasPaintable::layout_box() const
|
|
{
|
|
return static_cast<Layout::CanvasBox const&>(m_layout_box);
|
|
}
|
|
|
|
void CanvasPaintable::paint(PaintContext& context, PaintPhase phase) const
|
|
{
|
|
if (!layout_box().is_visible())
|
|
return;
|
|
|
|
Paintable::paint(context, phase);
|
|
|
|
if (phase == PaintPhase::Foreground) {
|
|
// FIXME: This should be done at a different level. Also rect() does not include padding etc!
|
|
if (!context.viewport_rect().intersects(enclosing_int_rect(absolute_rect())))
|
|
return;
|
|
|
|
if (layout_box().dom_node().bitmap())
|
|
context.painter().draw_scaled_bitmap(rounded_int_rect(absolute_rect()), *layout_box().dom_node().bitmap(), layout_box().dom_node().bitmap()->rect(), 1.0f, to_gfx_scaling_mode(computed_values().image_rendering()));
|
|
}
|
|
}
|
|
|
|
}
|