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
|
|
|
*/
|
|
|
|
|
2019-10-05 22:07:45 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-14 21:41:10 +01:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-06-13 22:22:54 +02:00
|
|
|
#include <AK/OwnPtr.h>
|
2020-02-14 23:28:42 +01:00
|
|
|
#include <LibGfx/Forward.h>
|
2020-07-26 15:08:16 +02:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2020-06-13 22:22:54 +02:00
|
|
|
#include <LibWeb/Loader/ImageLoader.h>
|
2019-10-05 22:07:45 +02:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2019-12-18 20:57:18 +01:00
|
|
|
|
2020-06-13 22:22:54 +02:00
|
|
|
class HTMLImageElement final : public HTMLElement {
|
2019-10-05 22:07:45 +02:00
|
|
|
public:
|
2020-04-14 20:37:01 +02:00
|
|
|
using WrapperType = Bindings::HTMLImageElementWrapper;
|
|
|
|
|
2021-02-07 11:20:15 +01:00
|
|
|
HTMLImageElement(DOM::Document&, QualifiedName);
|
2019-10-05 22:07:45 +02:00
|
|
|
virtual ~HTMLImageElement() override;
|
|
|
|
|
2020-03-22 13:10:04 +01:00
|
|
|
virtual void parse_attribute(const FlyString& name, const String& value) override;
|
2019-10-06 23:03:51 +11:00
|
|
|
|
2020-06-03 20:51:28 +02:00
|
|
|
String alt() const { return attribute(HTML::AttributeNames::alt); }
|
|
|
|
String src() const { return attribute(HTML::AttributeNames::src); }
|
2019-10-05 23:20:35 +02:00
|
|
|
|
2020-02-06 11:56:38 +01:00
|
|
|
const Gfx::Bitmap* bitmap() const;
|
2019-10-05 23:41:14 +02:00
|
|
|
|
2019-10-05 23:20:35 +02:00
|
|
|
private:
|
2020-07-26 20:01:35 +02:00
|
|
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
2020-07-22 01:16:27 +02:00
|
|
|
|
2020-05-03 17:57:13 +01:00
|
|
|
void animate();
|
|
|
|
|
2021-01-06 14:27:40 +01:00
|
|
|
virtual RefPtr<Layout::Node> create_layout_node() override;
|
2019-10-05 23:41:14 +02:00
|
|
|
|
2020-06-13 22:22:54 +02:00
|
|
|
ImageLoader m_image_loader;
|
2019-10-05 22:07:45 +02:00
|
|
|
};
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2020-04-14 20:35:49 +02:00
|
|
|
}
|