Previously we were inconsistent by generating code for enum definitions but not generating code for dictionaries. With future changes to the IDL generator to expose helpers to convert to and from IDL values this produced circular depdendencies. To solve this problem, also generate the dictionary definitions in bindings headers.
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2021, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/DOM/Event.h>
|
|
#include <LibWeb/WebIDL/Types.h>
|
|
|
|
namespace Web::XHR {
|
|
|
|
class ProgressEvent final : public DOM::Event {
|
|
WEB_PLATFORM_OBJECT(ProgressEvent, DOM::Event);
|
|
GC_DECLARE_ALLOCATOR(ProgressEvent);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<ProgressEvent> create(JS::Realm&, FlyString const& event_name, Bindings::ProgressEventInit const&);
|
|
static WebIDL::ExceptionOr<GC::Ref<ProgressEvent>> construct_impl(JS::Realm&, FlyString const& event_name, Bindings::ProgressEventInit const&);
|
|
|
|
virtual ~ProgressEvent() override;
|
|
|
|
bool length_computable() const { return m_length_computable; }
|
|
WebIDL::Double loaded() const { return m_loaded; }
|
|
WebIDL::Double total() const { return m_total; }
|
|
|
|
private:
|
|
ProgressEvent(JS::Realm&, FlyString const& event_name, Bindings::ProgressEventInit const&);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
bool m_length_computable { false };
|
|
WebIDL::Double m_loaded { 0 };
|
|
WebIDL::Double m_total { 0 };
|
|
};
|
|
|
|
}
|