/* * Copyright (c) 2021, Dex♪ * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include namespace Web::HTML { struct CloseEventInit : public DOM::EventInit { bool was_clean { false }; u16 code { 0 }; String reason { "" }; }; class CloseEvent : public DOM::Event { JS_OBJECT(CloseEvent, DOM::Event); public: static CloseEvent* create(Bindings::WindowObject&, FlyString const& event_name, CloseEventInit const& event_init = {}); static CloseEvent* create_with_global_object(Bindings::WindowObject&, FlyString const& event_name, CloseEventInit const& event_init); CloseEvent(Bindings::WindowObject&, FlyString const& event_name, CloseEventInit const& event_init); virtual ~CloseEvent() override; CloseEvent& impl() { return *this; } bool was_clean() const { return m_was_clean; } u16 code() const { return m_code; } String reason() const { return m_reason; } private: bool m_was_clean { false }; u16 m_code { 0 }; String m_reason; }; } namespace Web::Bindings { inline JS::Object* wrap(JS::Realm&, Web::HTML::CloseEvent& object) { return &object; } using CloseEventWrapper = Web::HTML::CloseEvent; }