/* * Copyright (c) 2021, kleines Filmröllchen * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include "WidgetWithLabel.h" #include #include #include #include class ProcessorParameterSlider : public GUI::Slider , public WidgetWithLabel { C_OBJECT(ProcessorParameterSlider); public: ProcessorParameterSlider(Orientation, LibDSP::ProcessorRangeParameter&, RefPtr); protected: LibDSP::ProcessorRangeParameter& m_parameter; };