2020-01-18 09:38:21 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2020-02-14 23:28:42 +01:00
|
|
|
#include <LibGfx/Bitmap.h>
|
2021-03-09 17:22:35 +01:00
|
|
|
#include <LibWeb/CSS/Parser/DeprecatedCSSParser.h>
|
2020-03-07 10:32:51 +01:00
|
|
|
#include <LibWeb/CSS/StyleResolver.h>
|
|
|
|
#include <LibWeb/DOM/Document.h>
|
2020-04-14 20:10:48 +02:00
|
|
|
#include <LibWeb/DOM/Event.h>
|
2020-11-21 19:15:57 +00:00
|
|
|
#include <LibWeb/HTML/EventNames.h>
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLImageElement.h>
|
2020-11-22 15:53:01 +01:00
|
|
|
#include <LibWeb/Layout/ImageBox.h>
|
2020-06-01 20:42:50 +02:00
|
|
|
#include <LibWeb/Loader/ResourceLoader.h>
|
2019-10-05 22:07:45 +02:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
HTMLImageElement::HTMLImageElement(DOM::Document& document, QualifiedName qualified_name)
|
|
|
|
: HTMLElement(document, move(qualified_name))
|
2021-04-14 10:39:12 -04:00
|
|
|
, m_image_loader(*this)
|
2019-10-05 22:07:45 +02:00
|
|
|
{
|
2020-06-13 22:22:54 +02:00
|
|
|
m_image_loader.on_load = [this] {
|
|
|
|
this->document().update_layout();
|
2020-11-21 19:15:57 +00:00
|
|
|
dispatch_event(DOM::Event::create(EventNames::load));
|
2020-06-13 22:22:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
m_image_loader.on_fail = [this] {
|
2021-01-09 14:02:45 +01:00
|
|
|
dbgln("HTMLImageElement: Resource did fail: {}", src());
|
2020-06-13 22:22:54 +02:00
|
|
|
this->document().update_layout();
|
2020-11-21 19:15:57 +00:00
|
|
|
dispatch_event(DOM::Event::create(EventNames::error));
|
2020-06-13 22:22:54 +02:00
|
|
|
};
|
2020-06-14 19:26:25 +02:00
|
|
|
|
|
|
|
m_image_loader.on_animate = [this] {
|
|
|
|
if (layout_node())
|
|
|
|
layout_node()->set_needs_display();
|
|
|
|
};
|
2019-10-05 22:07:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
HTMLImageElement::~HTMLImageElement()
|
|
|
|
{
|
|
|
|
}
|
2019-10-05 23:20:35 +02:00
|
|
|
|
2020-07-26 20:01:35 +02:00
|
|
|
void HTMLImageElement::apply_presentational_hints(CSS::StyleProperties& style) const
|
2020-07-22 01:16:27 +02:00
|
|
|
{
|
|
|
|
for_each_attribute([&](auto& name, auto& value) {
|
|
|
|
if (name == HTML::AttributeNames::width) {
|
|
|
|
if (auto parsed_value = parse_html_length(document(), value)) {
|
|
|
|
style.set_property(CSS::PropertyID::Width, parsed_value.release_nonnull());
|
|
|
|
}
|
|
|
|
} else if (name == HTML::AttributeNames::height) {
|
|
|
|
if (auto parsed_value = parse_html_length(document(), value)) {
|
|
|
|
style.set_property(CSS::PropertyID::Height, parsed_value.release_nonnull());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-03-22 13:10:04 +01:00
|
|
|
void HTMLImageElement::parse_attribute(const FlyString& name, const String& value)
|
2019-10-06 23:03:51 +11:00
|
|
|
{
|
2020-06-04 16:04:52 +02:00
|
|
|
HTMLElement::parse_attribute(name, value);
|
2019-10-06 23:03:51 +11:00
|
|
|
|
2020-06-13 22:22:54 +02:00
|
|
|
if (name == HTML::AttributeNames::src)
|
|
|
|
m_image_loader.load(document().complete_url(value));
|
2020-06-02 20:27:26 +02:00
|
|
|
}
|
|
|
|
|
2021-01-06 14:27:40 +01:00
|
|
|
RefPtr<Layout::Node> HTMLImageElement::create_layout_node()
|
2019-10-05 23:20:35 +02:00
|
|
|
{
|
2021-01-06 14:27:40 +01:00
|
|
|
auto style = document().style_resolver().resolve_style(*this);
|
2020-06-24 16:22:16 +02:00
|
|
|
if (style->display() == CSS::Display::None)
|
2019-10-05 23:20:35 +02:00
|
|
|
return nullptr;
|
2020-11-22 15:53:01 +01:00
|
|
|
return adopt(*new Layout::ImageBox(document(), *this, move(style), m_image_loader));
|
2020-06-13 22:22:54 +02:00
|
|
|
}
|
|
|
|
|
2020-02-06 11:56:38 +01:00
|
|
|
const Gfx::Bitmap* HTMLImageElement::bitmap() const
|
2019-10-05 23:41:14 +02:00
|
|
|
{
|
2021-01-29 22:30:48 +01:00
|
|
|
return m_image_loader.bitmap(m_image_loader.current_frame_index());
|
2019-10-05 23:41:14 +02:00
|
|
|
}
|
2019-12-18 20:57:18 +01:00
|
|
|
|
2020-03-07 10:27:02 +01:00
|
|
|
}
|