2019-10-08 20:37:15 +03:00
|
|
|
#include <LibDraw/PNGLoader.h>
|
2019-10-06 00:20:35 +03:00
|
|
|
#include <LibHTML/CSS/StyleResolver.h>
|
2019-10-06 00:41:14 +03:00
|
|
|
#include <LibHTML/DOM/Document.h>
|
2019-10-05 23:07:45 +03:00
|
|
|
#include <LibHTML/DOM/HTMLImageElement.h>
|
2019-10-06 00:20:35 +03:00
|
|
|
#include <LibHTML/Layout/LayoutImage.h>
|
2019-10-08 20:37:15 +03:00
|
|
|
#include <LibHTML/ResourceLoader.h>
|
2019-10-05 23:07:45 +03:00
|
|
|
|
|
|
|
HTMLImageElement::HTMLImageElement(Document& document, const String& tag_name)
|
|
|
|
: HTMLElement(document, tag_name)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
HTMLImageElement::~HTMLImageElement()
|
|
|
|
{
|
|
|
|
}
|
2019-10-06 00:20:35 +03:00
|
|
|
|
2019-10-06 15:03:51 +03:00
|
|
|
void HTMLImageElement::parse_attribute(const String& name, const String& value)
|
|
|
|
{
|
|
|
|
if (name == "src")
|
|
|
|
load_image(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HTMLImageElement::load_image(const String& src)
|
|
|
|
{
|
|
|
|
URL src_url = document().complete_url(src);
|
2019-10-08 20:37:15 +03:00
|
|
|
ResourceLoader::the().load(src_url, [this](auto data) {
|
|
|
|
if (data.is_null()) {
|
|
|
|
dbg() << "HTMLImageElement: Failed to load " << this->src();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_bitmap = load_png_from_memory(data.data(), data.size());
|
|
|
|
document().invalidate_layout();
|
|
|
|
});
|
2019-10-06 15:03:51 +03:00
|
|
|
}
|
|
|
|
|
2019-10-06 15:15:30 +03:00
|
|
|
int HTMLImageElement::preferred_width() const
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int width = attribute("width").to_int(ok);
|
|
|
|
if (ok)
|
|
|
|
return width;
|
|
|
|
|
|
|
|
if (m_bitmap)
|
|
|
|
return m_bitmap->width();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HTMLImageElement::preferred_height() const
|
|
|
|
{
|
|
|
|
bool ok = false;
|
|
|
|
int height = attribute("height").to_int(ok);
|
|
|
|
if (ok)
|
|
|
|
return height;
|
|
|
|
|
|
|
|
if (m_bitmap)
|
|
|
|
return m_bitmap->height();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-10-06 00:20:35 +03:00
|
|
|
RefPtr<LayoutNode> HTMLImageElement::create_layout_node(const StyleResolver& resolver, const StyleProperties* parent_style) const
|
|
|
|
{
|
|
|
|
auto style = resolver.resolve_style(*this, parent_style);
|
|
|
|
|
2019-10-08 16:34:19 +03:00
|
|
|
auto display_property = style->property(CSS::PropertyID::Display);
|
2019-10-06 00:20:35 +03:00
|
|
|
String display = display_property.has_value() ? display_property.release_value()->to_string() : "inline";
|
|
|
|
|
|
|
|
if (display == "none")
|
|
|
|
return nullptr;
|
|
|
|
return adopt(*new LayoutImage(*this, move(style)));
|
|
|
|
}
|
2019-10-06 00:41:14 +03:00
|
|
|
|
|
|
|
const GraphicsBitmap* HTMLImageElement::bitmap() const
|
|
|
|
{
|
|
|
|
return m_bitmap;
|
|
|
|
}
|