
LayoutReplaced objects can now participate in inline layout. It's very hackish, but basically LayoutReplaced will just add itself to the last line in the containing block. This patch gets rid of the idea that only LayoutInline subclasses can be split into lines, by moving the split_into_lines() virtual up to LayoutNode and overriding it in LayoutReplaced.
22 lines
623 B
C++
22 lines
623 B
C++
#pragma once
|
|
|
|
#include <LibHTML/DOM/HTMLImageElement.h>
|
|
#include <LibHTML/Layout/LayoutReplaced.h>
|
|
|
|
class HTMLImageElement;
|
|
|
|
class LayoutImage : public LayoutReplaced {
|
|
public:
|
|
LayoutImage(const HTMLImageElement&, NonnullRefPtr<StyleProperties>);
|
|
virtual ~LayoutImage() override;
|
|
|
|
virtual void layout() override;
|
|
virtual void render(RenderingContext&) override;
|
|
|
|
const HTMLImageElement& node() const { return static_cast<const HTMLImageElement&>(LayoutReplaced::node()); }
|
|
|
|
bool renders_as_alt_text() const;
|
|
|
|
private:
|
|
virtual const char* class_name() const override { return "LayoutImage"; }
|
|
};
|