mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-18 09:50:27 +00:00
Instead, compute them on demand. This affects ReplacedBox and its subclasses. This commit is centered around a new Box::auto_content_box_size method. It returns a SizeWithAspectRatio representing the natural size of a replaced element, or the size derived from attributes for text input and textarea. These values are used when the corresponding axis is auto or indefinite. Although introducing this API choke-point for sizing replaced and replaced-like elements was the main goal, it's notable that layout becomes more robust in the face of dynamic changes due to reduced potential for stale size values (at the cost of extra calculations and allocations).
40 lines
1 KiB
C++
40 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/HTML/HTMLImageElement.h>
|
|
#include <LibWeb/Layout/ReplacedBox.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class ImageBox final : public ReplacedBox {
|
|
GC_CELL(ImageBox, ReplacedBox);
|
|
GC_DECLARE_ALLOCATOR(ImageBox);
|
|
|
|
public:
|
|
ImageBox(DOM::Document&, GC::Ptr<DOM::Element>, GC::Ref<CSS::ComputedProperties>, ImageProvider const&);
|
|
virtual ~ImageBox() override;
|
|
|
|
bool renders_as_alt_text() const;
|
|
|
|
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
|
|
|
|
auto const& image_provider() const { return m_image_provider; }
|
|
auto& image_provider() { return m_image_provider; }
|
|
|
|
void dom_node_did_update_alt_text(Badge<ImageProvider>);
|
|
|
|
private:
|
|
virtual void visit_edges(Visitor&) override;
|
|
virtual CSS::SizeWithAspectRatio natural_size() const override;
|
|
|
|
ImageProvider const& m_image_provider;
|
|
|
|
mutable Optional<CSSPixels> m_cached_alt_text_width;
|
|
};
|
|
|
|
}
|