ladybird/Userland/Libraries/LibWeb/HTML/PageTransitionEvent.h
Andreas Kling 831fdcaabc LibWeb: Add the PageTransitionEvent interface and fire "pageshow" events
We now fire "pageshow" events at the appropriate time during document
loading (done by the parser.)

Note that there are no corresponding "pagehide" events yet.
2021-09-26 12:47:51 +02:00

36 lines
794 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 {
class PageTransitionEvent final : public DOM::Event {
public:
using WrapperType = Bindings::PageTransitionEventWrapper;
static NonnullRefPtr<PageTransitionEvent> create(FlyString event_name, bool persisted)
{
return adopt_ref(*new PageTransitionEvent(move(event_name), persisted));
}
virtual ~PageTransitionEvent() override = default;
bool persisted() const { return m_persisted; }
protected:
PageTransitionEvent(FlyString event_name, bool persisted)
: DOM::Event(move(event_name))
, m_persisted(persisted)
{
}
bool m_persisted { false };
};
}