ladybird/Userland/Applications/Piano/ProcessorParameterWidget/ParameterWidget.h
kleines Filmröllchen 196841fd3a Piano: Add a generic processor parameter widget
This automatically creates the correct collection of name label, value
label and "editor" (knob, checkbox, dropdown) depending on the processor
type and layouts them vertically.
2022-07-25 15:25:13 +02:00

28 lines
717 B
C++

/*
* Copyright (c) 2022, kleines Filmröllchen <filmroellchen@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/NonnullRefPtr.h>
#include <AK/StdLibExtraDetails.h>
#include <LibCore/Object.h>
#include <LibDSP/ProcessorParameter.h>
#include <LibGUI/Label.h>
#include <LibGUI/Widget.h>
class ProcessorParameterWidget : public GUI::Widget {
C_OBJECT(ProcessorParameterWidget)
public:
ProcessorParameterWidget(DSP::ProcessorParameter& parameter);
virtual ~ProcessorParameterWidget() = default;
private:
DSP::ProcessorParameter& m_parameter;
RefPtr<GUI::Widget> m_parameter_modifier;
RefPtr<GUI::Label> m_label;
RefPtr<GUI::Label> m_value_label;
};