2024-06-21 21:53:05 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2024, the Ladybird developers.
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Forward.h>
|
|
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
|
|
|
// https://html.spec.whatwg.org/multipage/interaction.html#close-watcher-manager
|
|
|
|
class CloseWatcherManager final : public Bindings::PlatformObject {
|
|
|
|
WEB_PLATFORM_OBJECT(CloseWatcherManager, Bindings::PlatformObject);
|
2024-11-14 15:01:23 +00:00
|
|
|
GC_DECLARE_ALLOCATOR(CloseWatcherManager);
|
2024-06-21 21:53:05 +00:00
|
|
|
|
|
|
|
public:
|
2024-11-14 15:01:23 +00:00
|
|
|
[[nodiscard]] static GC::Ref<CloseWatcherManager> create(JS::Realm&);
|
2024-06-21 21:53:05 +00:00
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
void add(GC::Ref<CloseWatcher>);
|
2024-06-21 21:53:05 +00:00
|
|
|
void remove(CloseWatcher const&);
|
|
|
|
|
|
|
|
bool process_close_watchers();
|
|
|
|
|
|
|
|
void notify_about_user_activation();
|
|
|
|
bool can_prevent_close();
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit CloseWatcherManager(JS::Realm&);
|
|
|
|
|
|
|
|
virtual void visit_edges(Cell::Visitor&) override;
|
|
|
|
|
2024-11-14 15:01:23 +00:00
|
|
|
Vector<Vector<GC::Ref<CloseWatcher>>> m_groups;
|
2024-06-21 21:53:05 +00:00
|
|
|
uint32_t m_allowed_number_of_groups { 1 };
|
|
|
|
bool m_next_user_interaction_allows_a_new_group { true };
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|