mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 21:25:07 +00:00

Similar to create() in LibJS, wrap() et al. are on a low enough level to warrant passing a Realm directly instead of relying on the current realm from the VM, as a wrapper may need to be allocated while no JS is being executed.
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/Bindings/EventTargetWrapperFactory.h>
|
|
#include <LibWeb/DOM/EventDispatcher.h>
|
|
#include <LibWeb/DOM/EventTarget.h>
|
|
|
|
namespace Web::XHR {
|
|
|
|
#define ENUMERATE_XML_HTTP_REQUEST_EVENT_TARGET_EVENT_HANDLERS(E) \
|
|
E(onloadstart, XHR::EventNames::loadstart) \
|
|
E(onprogress, XHR::EventNames::progress) \
|
|
E(onabort, XHR::EventNames::abort) \
|
|
E(onerror, XHR::EventNames::error) \
|
|
E(onload, XHR::EventNames::load) \
|
|
E(ontimeout, XHR::EventNames::timeout) \
|
|
E(onloadend, XHR::EventNames::loadend)
|
|
|
|
class XMLHttpRequestEventTarget
|
|
: public DOM::EventTarget
|
|
, public Bindings::Wrappable {
|
|
public:
|
|
using WrapperType = Bindings::XMLHttpRequestEventTargetWrapper;
|
|
|
|
virtual ~XMLHttpRequestEventTarget() override {};
|
|
|
|
#undef __ENUMERATE
|
|
#define __ENUMERATE(attribute_name, event_name) \
|
|
void set_##attribute_name(Optional<Bindings::CallbackType>); \
|
|
Bindings::CallbackType* attribute_name();
|
|
ENUMERATE_XML_HTTP_REQUEST_EVENT_TARGET_EVENT_HANDLERS(__ENUMERATE)
|
|
#undef __ENUMERATE
|
|
|
|
protected:
|
|
XMLHttpRequestEventTarget()
|
|
: DOM::EventTarget()
|
|
{
|
|
}
|
|
|
|
private:
|
|
virtual JS::Object* create_wrapper(JS::Realm& realm) override
|
|
{
|
|
return wrap(realm, *this);
|
|
}
|
|
};
|
|
|
|
}
|