mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
|
* Copyright (c) 2024, Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/PlatformObject.h>
|
|
#include <LibWeb/ResizeObserver/ResizeObservation.h>
|
|
#include <LibWeb/ResizeObserver/ResizeObserverEntry.h>
|
|
|
|
namespace Web::ResizeObserver {
|
|
|
|
struct ResizeObserverOptions {
|
|
Bindings::ResizeObserverBoxOptions box;
|
|
};
|
|
|
|
// https://drafts.csswg.org/resize-observer-1/#resize-observer-interface
|
|
class ResizeObserver : public Bindings::PlatformObject {
|
|
WEB_PLATFORM_OBJECT(ResizeObserver, Bindings::PlatformObject);
|
|
GC_DECLARE_ALLOCATOR(ResizeObserver);
|
|
|
|
public:
|
|
static WebIDL::ExceptionOr<GC::Ref<ResizeObserver>> construct_impl(JS::Realm&, WebIDL::CallbackType* callback);
|
|
|
|
virtual ~ResizeObserver() override;
|
|
|
|
void observe(DOM::Element& target, ResizeObserverOptions);
|
|
void unobserve(DOM::Element& target);
|
|
void disconnect();
|
|
|
|
void invoke_callback(ReadonlySpan<GC::Ref<ResizeObserverEntry>> entries) const;
|
|
|
|
Vector<GC::Ref<ResizeObservation>>& observation_targets() { return m_observation_targets; }
|
|
Vector<GC::Ref<ResizeObservation>>& active_targets() { return m_active_targets; }
|
|
Vector<GC::Ref<ResizeObservation>>& skipped_targets() { return m_skipped_targets; }
|
|
|
|
private:
|
|
explicit ResizeObserver(JS::Realm&, WebIDL::CallbackType* callback);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
virtual void visit_edges(JS::Cell::Visitor&) override;
|
|
virtual void finalize() override;
|
|
|
|
GC::Ptr<WebIDL::CallbackType> m_callback;
|
|
Vector<GC::Ref<ResizeObservation>> m_observation_targets;
|
|
Vector<GC::Ref<ResizeObservation>> m_active_targets;
|
|
Vector<GC::Ref<ResizeObservation>> m_skipped_targets;
|
|
|
|
// AD-HOC: This is the document where we've registered the observer.
|
|
WeakPtr<DOM::Document> m_document;
|
|
};
|
|
|
|
}
|