mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 11:37:16 +02:00
Where we paint the selection is obviously paint-related information, so let's keep it in the paint tree.
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Painting/PaintableBox.h>
|
|
|
|
namespace Web::Painting {
|
|
|
|
class ViewportPaintable final : public PaintableWithLines {
|
|
JS_CELL(ViewportPaintable, PaintableWithLines);
|
|
|
|
public:
|
|
static JS::NonnullGCPtr<ViewportPaintable> create(Layout::Viewport const&);
|
|
virtual ~ViewportPaintable() override;
|
|
|
|
void paint_all_phases(PaintContext&);
|
|
void build_stacking_context_tree_if_needed();
|
|
|
|
HashMap<PaintableBox const*, RefPtr<ScrollFrame>> scroll_state;
|
|
void assign_scroll_frames();
|
|
void refresh_scroll_state();
|
|
|
|
HashMap<PaintableBox const*, RefPtr<ClipFrame>> clip_state;
|
|
void assign_clip_frames();
|
|
void refresh_clip_state();
|
|
|
|
void resolve_paint_only_properties();
|
|
|
|
JS::GCPtr<Selection::Selection> selection() const;
|
|
void recompute_selection_states();
|
|
|
|
private:
|
|
void build_stacking_context_tree();
|
|
|
|
explicit ViewportPaintable(Layout::Viewport const&);
|
|
};
|
|
|
|
}
|