Files
ladybird/Libraries/LibWeb/WebAudio/DynamicsCompressorNode.h
Shannon Booth 5adfd1c43a LibWeb/Bindings: Generate struct definitions from IDL dictionaries
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.
2026-05-09 10:49:49 +02:00

65 lines
2.5 KiB
C++

/*
* Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibWeb/Bindings/DynamicsCompressorNode.h>
#include <LibWeb/WebAudio/AudioNode.h>
namespace Web::WebAudio {
// https://webaudio.github.io/web-audio-api/#DynamicsCompressorNode
class DynamicsCompressorNode : public AudioNode {
WEB_PLATFORM_OBJECT(DynamicsCompressorNode, AudioNode);
GC_DECLARE_ALLOCATOR(DynamicsCompressorNode);
public:
virtual ~DynamicsCompressorNode() override;
static WebIDL::ExceptionOr<GC::Ref<DynamicsCompressorNode>> create(JS::Realm&, GC::Ref<BaseAudioContext>, Bindings::DynamicsCompressorOptions const& = {});
static WebIDL::ExceptionOr<GC::Ref<DynamicsCompressorNode>> construct_impl(JS::Realm&, GC::Ref<BaseAudioContext>, Bindings::DynamicsCompressorOptions const& = {});
WebIDL::UnsignedLong number_of_inputs() override { return 1; }
WebIDL::UnsignedLong number_of_outputs() override { return 1; }
GC::Ref<AudioParam const> threshold() const { return m_threshold; }
GC::Ref<AudioParam const> knee() const { return m_knee; }
GC::Ref<AudioParam const> ratio() const { return m_ratio; }
GC::Ref<AudioParam const> attack() const { return m_attack; }
GC::Ref<AudioParam const> release() const { return m_release; }
float reduction() const { return m_reduction; }
WebIDL::ExceptionOr<void> set_channel_count_mode(Bindings::ChannelCountMode) override;
WebIDL::ExceptionOr<void> set_channel_count(WebIDL::UnsignedLong) override;
protected:
DynamicsCompressorNode(JS::Realm&, GC::Ref<BaseAudioContext>, Bindings::DynamicsCompressorOptions const& = {});
virtual void initialize(JS::Realm&) override;
virtual void visit_edges(Cell::Visitor&) override;
private:
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-threshold
GC::Ref<AudioParam> m_threshold;
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-knee
GC::Ref<AudioParam> m_knee;
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-ratio
GC::Ref<AudioParam> m_ratio;
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-attack
GC::Ref<AudioParam> m_attack;
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-release
GC::Ref<AudioParam> m_release;
// https://webaudio.github.io/web-audio-api/#dom-dynamicscompressornode-internal-reduction-slot
float m_reduction { 0 }; // [[internal reduction]]
};
}