mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-12 22:22:55 +00:00
This macro will soon go away, but let's start by replacing all the hand-coded versions of wrap() with this macro that expands to the same exact thing.
36 lines
970 B
C++
36 lines
970 B
C++
/*
|
|
* Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/DOM/Event.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
struct PageTransitionEventInit : public DOM::EventInit {
|
|
bool persisted { false };
|
|
};
|
|
|
|
class PageTransitionEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(PageTransitionEvent, DOM::Event);
|
|
|
|
public:
|
|
static PageTransitionEvent* create(HTML::Window&, FlyString const& event_name, PageTransitionEventInit const& event_init);
|
|
static PageTransitionEvent* create_with_global_object(HTML::Window&, FlyString const& event_name, PageTransitionEventInit const& event_init);
|
|
|
|
PageTransitionEvent(HTML::Window&, FlyString const& event_name, PageTransitionEventInit const& event_init);
|
|
|
|
virtual ~PageTransitionEvent() override;
|
|
|
|
bool persisted() const { return m_persisted; }
|
|
|
|
private:
|
|
bool m_persisted { false };
|
|
};
|
|
|
|
}
|
|
|
|
WRAPPER_HACK(PageTransitionEvent, Web::HTML)
|