mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +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).
27 lines
718 B
C++
27 lines
718 B
C++
/*
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Layout/FormAssociatedLabelableNode.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class CheckBox final : public FormAssociatedLabelableNode {
|
|
GC_CELL(CheckBox, FormAssociatedLabelableNode);
|
|
GC_DECLARE_ALLOCATOR(CheckBox);
|
|
|
|
public:
|
|
CheckBox(DOM::Document&, HTML::HTMLInputElement&, GC::Ref<CSS::ComputedProperties>);
|
|
virtual ~CheckBox() override;
|
|
|
|
private:
|
|
virtual CSS::SizeWithAspectRatio compute_auto_content_box_size() const override { return { 13, 13, {} }; }
|
|
virtual GC::Ptr<Painting::Paintable> create_paintable() const override;
|
|
};
|
|
|
|
}
|