2020-01-18 05:38:21 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 05:38:21 -03:00
|
|
|
*/
|
|
|
|
|
|
2019-10-05 17:07:45 -03:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-02-14 17:41:10 -03:00
|
|
|
#include <AK/ByteBuffer.h>
|
2020-06-13 17:22:54 -03:00
|
|
|
#include <AK/OwnPtr.h>
|
2020-02-14 19:28:42 -03:00
|
|
|
#include <LibGfx/Forward.h>
|
2023-04-01 10:15:23 -03:00
|
|
|
#include <LibWeb/DOM/DocumentLoadEventDelayer.h>
|
2021-10-14 12:18:49 -03:00
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
2022-03-23 19:55:54 -03:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2020-06-13 17:22:54 -03:00
|
|
|
#include <LibWeb/Loader/ImageLoader.h>
|
2019-10-05 17:07:45 -03:00
|
|
|
|
2020-07-28 13:20:36 -03:00
|
|
|
namespace Web::HTML {
|
2019-12-18 16:57:18 -03:00
|
|
|
|
2022-03-23 19:55:54 -03:00
|
|
|
class HTMLImageElement final
|
|
|
|
|
: public HTMLElement
|
|
|
|
|
, public FormAssociatedElement {
|
2022-08-28 08:42:07 -03:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLImageElement, HTMLElement);
|
2022-03-23 19:55:54 -03:00
|
|
|
FORM_ASSOCIATED_ELEMENT(HTMLElement, HTMLImageElement)
|
|
|
|
|
|
2019-10-05 17:07:45 -03:00
|
|
|
public:
|
|
|
|
|
virtual ~HTMLImageElement() override;
|
|
|
|
|
|
2023-01-08 21:23:00 -03:00
|
|
|
virtual void parse_attribute(DeprecatedFlyString const& name, DeprecatedString const& value) override;
|
2019-10-06 09:03:51 -03:00
|
|
|
|
2022-12-04 15:02:33 -03:00
|
|
|
DeprecatedString alt() const { return attribute(HTML::AttributeNames::alt); }
|
|
|
|
|
DeprecatedString src() const { return attribute(HTML::AttributeNames::src); }
|
2019-10-05 18:20:35 -03:00
|
|
|
|
2022-04-01 14:58:27 -03:00
|
|
|
Gfx::Bitmap const* bitmap() const;
|
2019-10-05 18:41:14 -03:00
|
|
|
|
2022-02-25 14:42:37 -03:00
|
|
|
unsigned width() const;
|
|
|
|
|
void set_width(unsigned);
|
|
|
|
|
|
|
|
|
|
unsigned height() const;
|
|
|
|
|
void set_height(unsigned);
|
|
|
|
|
|
2022-04-12 13:20:43 -03:00
|
|
|
unsigned natural_width() const;
|
|
|
|
|
unsigned natural_height() const;
|
|
|
|
|
|
2022-10-03 09:54:27 -03:00
|
|
|
// https://html.spec.whatwg.org/multipage/embedded-content.html#dom-img-complete
|
|
|
|
|
bool complete() const;
|
|
|
|
|
|
2023-01-28 19:23:16 -03:00
|
|
|
virtual Optional<ARIA::Role> default_role() const override;
|
2022-11-28 20:58:13 -03:00
|
|
|
|
2019-10-05 18:20:35 -03:00
|
|
|
private:
|
2022-08-28 08:42:07 -03:00
|
|
|
HTMLImageElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
|
|
2023-01-28 14:33:35 -03:00
|
|
|
virtual JS::ThrowCompletionOr<void> initialize(JS::Realm&) override;
|
2020-07-26 15:01:35 -03:00
|
|
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
2020-07-21 20:16:27 -03:00
|
|
|
|
2022-10-17 09:41:50 -03:00
|
|
|
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
2019-10-05 18:41:14 -03:00
|
|
|
|
2020-06-13 17:22:54 -03:00
|
|
|
ImageLoader m_image_loader;
|
2023-04-01 10:15:23 -03:00
|
|
|
|
|
|
|
|
Optional<DOM::DocumentLoadEventDelayer> m_load_event_delayer;
|
2019-10-05 17:07:45 -03:00
|
|
|
};
|
2020-03-07 06:27:02 -03:00
|
|
|
|
2020-04-14 15:35:49 -03:00
|
|
|
}
|