2020-06-13 22:24:49 +02:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
|
2020-06-13 22:24:49 +02:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-06-13 22:24:49 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <LibCore/Forward.h>
|
|
|
|
#include <LibGfx/Forward.h>
|
2021-10-14 16:18:49 +01:00
|
|
|
#include <LibWeb/HTML/FormAssociatedElement.h>
|
2022-03-23 18:55:54 -04:00
|
|
|
#include <LibWeb/HTML/HTMLElement.h>
|
2022-12-12 12:20:02 +01:00
|
|
|
#include <LibWeb/HTML/NavigableContainer.h>
|
2023-05-12 07:17:01 +02:00
|
|
|
#include <LibWeb/Layout/ImageProvider.h>
|
2023-06-11 16:02:37 +02:00
|
|
|
#include <LibWeb/Loader/Resource.h>
|
2020-06-13 22:24:49 +02:00
|
|
|
|
2020-07-28 18:20:36 +02:00
|
|
|
namespace Web::HTML {
|
2020-06-13 22:24:49 +02:00
|
|
|
|
2022-03-23 08:24:11 -04:00
|
|
|
class HTMLObjectElement final
|
2022-12-12 12:20:02 +01:00
|
|
|
: public NavigableContainer
|
2022-03-23 18:55:54 -04:00
|
|
|
, public FormAssociatedElement
|
2023-05-12 07:17:01 +02:00
|
|
|
, public ResourceClient
|
|
|
|
, public Layout::ImageProvider {
|
2022-12-12 12:20:02 +01:00
|
|
|
WEB_PLATFORM_OBJECT(HTMLObjectElement, NavigableContainer)
|
2023-11-19 19:47:52 +01:00
|
|
|
JS_DECLARE_ALLOCATOR(HTMLObjectElement);
|
2022-12-12 12:20:02 +01:00
|
|
|
FORM_ASSOCIATED_ELEMENT(NavigableContainer, HTMLObjectElement)
|
2022-03-23 20:15:56 -04:00
|
|
|
|
|
|
|
enum class Representation {
|
|
|
|
Unknown,
|
|
|
|
Image,
|
|
|
|
NestedBrowsingContext,
|
|
|
|
Children,
|
|
|
|
};
|
2022-03-23 18:55:54 -04:00
|
|
|
|
2020-06-13 22:24:49 +02:00
|
|
|
public:
|
|
|
|
virtual ~HTMLObjectElement() override;
|
|
|
|
|
2024-02-03 09:33:33 -05:00
|
|
|
virtual void form_associated_element_attribute_changed(FlyString const& name, Optional<String> const& value) override;
|
2024-04-17 13:56:55 +02:00
|
|
|
virtual void form_associated_element_was_removed(DOM::Node*) override;
|
2020-06-13 22:24:49 +02:00
|
|
|
|
2023-09-03 15:39:01 +12:00
|
|
|
String data() const;
|
|
|
|
void set_data(String const& data) { MUST(set_attribute(HTML::AttributeNames::data, data)); }
|
2022-03-23 08:24:11 -04:00
|
|
|
|
2024-01-16 19:04:45 +01:00
|
|
|
String type() const { return get_attribute_value(HTML::AttributeNames::type); }
|
2020-06-13 22:24:49 +02:00
|
|
|
|
2022-03-01 21:03:30 +00:00
|
|
|
// ^FormAssociatedElement
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#category-listed
|
|
|
|
virtual bool is_listed() const override { return true; }
|
|
|
|
|
2023-08-18 14:11:55 +02:00
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2020-06-13 22:24:49 +02:00
|
|
|
private:
|
2022-08-28 13:42:07 +02:00
|
|
|
HTMLObjectElement(DOM::Document&, DOM::QualifiedName);
|
|
|
|
|
2023-12-24 14:41:33 +01:00
|
|
|
virtual bool is_html_object_element() const override { return true; }
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
virtual void initialize(JS::Realm&) override;
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2024-10-01 17:26:01 +01:00
|
|
|
virtual void apply_presentational_hints(CSS::StyleProperties&) const override;
|
|
|
|
|
2022-10-17 14:41:50 +02:00
|
|
|
virtual JS::GCPtr<Layout::Node> create_layout_node(NonnullRefPtr<CSS::StyleProperties>) override;
|
2020-06-13 22:24:49 +02:00
|
|
|
|
2022-03-24 11:14:19 -04:00
|
|
|
bool has_ancestor_media_element_or_object_element_not_showing_fallback_content() const;
|
|
|
|
|
2022-03-23 08:24:11 -04:00
|
|
|
void queue_element_task_to_run_object_representation_steps();
|
2023-12-16 17:49:34 +03:30
|
|
|
void run_object_representation_handler_steps(Optional<ByteString> resource_type);
|
2022-03-24 11:09:45 -04:00
|
|
|
void run_object_representation_completed_steps(Representation);
|
2022-03-23 08:24:11 -04:00
|
|
|
void run_object_representation_fallback_steps();
|
|
|
|
|
2023-06-11 16:02:37 +02:00
|
|
|
void load_image();
|
2022-03-24 11:09:45 -04:00
|
|
|
void update_layout_and_child_objects(Representation);
|
2022-03-23 08:24:11 -04:00
|
|
|
|
|
|
|
// ^ResourceClient
|
|
|
|
virtual void resource_did_load() override;
|
|
|
|
virtual void resource_did_fail() override;
|
|
|
|
|
2022-11-05 03:58:14 +00:00
|
|
|
// ^DOM::Element
|
|
|
|
virtual i32 default_tab_index_value() const override;
|
|
|
|
|
2023-05-12 07:17:01 +02:00
|
|
|
// ^Layout::ImageProvider
|
2024-02-18 20:10:37 -05:00
|
|
|
virtual bool is_image_available() const override;
|
2023-05-20 16:27:31 +02:00
|
|
|
virtual Optional<CSSPixels> intrinsic_width() const override;
|
|
|
|
virtual Optional<CSSPixels> intrinsic_height() const override;
|
2023-09-03 17:33:58 -05:00
|
|
|
virtual Optional<CSSPixelFraction> intrinsic_aspect_ratio() const override;
|
2023-11-24 14:45:45 +01:00
|
|
|
virtual RefPtr<Gfx::ImmutableBitmap> current_image_bitmap(Gfx::IntSize = {}) const override;
|
2023-05-12 07:17:01 +02:00
|
|
|
virtual void set_visible_in_viewport(bool) override;
|
2024-02-26 17:36:48 +01:00
|
|
|
virtual JS::NonnullGCPtr<DOM::Element const> to_html_element() const override { return *this; }
|
2023-05-12 07:17:01 +02:00
|
|
|
|
2022-03-23 20:15:56 -04:00
|
|
|
Representation m_representation { Representation::Unknown };
|
2023-06-11 16:02:37 +02:00
|
|
|
|
2023-12-12 20:07:19 +01:00
|
|
|
JS::GCPtr<DecodedImageData> image_data() const;
|
2023-06-11 16:02:37 +02:00
|
|
|
|
2024-08-03 15:27:08 +12:00
|
|
|
JS::GCPtr<SharedResourceRequest> m_resource_request;
|
2020-06-13 22:24:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
2023-12-24 14:41:33 +01:00
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
template<>
|
|
|
|
inline bool Node::fast_is<HTML::HTMLObjectElement>() const { return is_html_object_element(); }
|
|
|
|
}
|