mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-18 07:43:37 +00:00
The resolution is always absolutized at style computation time so we can just use `Resolution::from_style_value` and select the image once in `load_any_resources` since the layout node won't change the result.
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/*
|
|
* Copyright (c) 2026-present, the Ladybird developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Optional.h>
|
|
#include <AK/String.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibWeb/CSS/StyleValues/AbstractImageStyleValue.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class ImageSetStyleValue final : public AbstractImageStyleValue {
|
|
using Base = AbstractImageStyleValue;
|
|
|
|
public:
|
|
struct Option {
|
|
NonnullRefPtr<AbstractImageStyleValue const> image;
|
|
NonnullRefPtr<StyleValue const> resolution;
|
|
Optional<String> type;
|
|
};
|
|
|
|
static ValueComparingNonnullRefPtr<ImageSetStyleValue const> create(Vector<Option>);
|
|
virtual ~ImageSetStyleValue() override = default;
|
|
|
|
virtual void visit_edges(JS::Cell::Visitor&) const override;
|
|
|
|
virtual void serialize(StringBuilder&, SerializationMode) const override;
|
|
virtual bool equals(StyleValue const& other) const override;
|
|
virtual bool is_computationally_independent() const override;
|
|
|
|
virtual void load_any_resources(DOM::Document&) override;
|
|
|
|
virtual Optional<CSSPixels> natural_width() const override;
|
|
virtual Optional<CSSPixels> natural_height() const override;
|
|
virtual Optional<CSSPixelFraction> natural_aspect_ratio() const override;
|
|
|
|
virtual void resolve_for_size(Layout::NodeWithStyle const&, CSSPixelSize) const override;
|
|
virtual bool is_paintable() const override;
|
|
virtual void paint(DisplayListRecordingContext&, DevicePixelRect const&, ImageRendering) const override;
|
|
virtual Optional<Gfx::Color> color_if_single_pixel_bitmap() const override;
|
|
|
|
AbstractImageStyleValue const* selected_image() const { return m_selected_image; }
|
|
|
|
private:
|
|
explicit ImageSetStyleValue(Vector<Option>);
|
|
|
|
virtual void set_style_sheet(GC::Ptr<CSSStyleSheet>) override;
|
|
virtual ValueComparingNonnullRefPtr<StyleValue const> absolutized(ComputationContext const&) const override;
|
|
|
|
AbstractImageStyleValue const* select_image(double device_pixels_per_css_pixel) const;
|
|
|
|
Vector<Option> m_options;
|
|
GC::Ptr<CSSStyleSheet> m_style_sheet;
|
|
mutable AbstractImageStyleValue const* m_selected_image { nullptr };
|
|
};
|
|
|
|
}
|