mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 01:09:25 +00:00
26 lines
594 B
C++
26 lines
594 B
C++
/*
|
|
* Copyright (c) 2021, kleines Filmröllchen <filmroellchen@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "WidgetWithLabel.h"
|
|
#include <LibDSP/ProcessorParameter.h>
|
|
#include <LibGUI/Label.h>
|
|
#include <LibGUI/Slider.h>
|
|
#include <LibGfx/Orientation.h>
|
|
|
|
class ProcessorParameterSlider
|
|
: public GUI::Slider
|
|
, public WidgetWithLabel {
|
|
C_OBJECT(ProcessorParameterSlider);
|
|
|
|
public:
|
|
ProcessorParameterSlider(Orientation, LibDSP::ProcessorRangeParameter&, RefPtr<GUI::Label>);
|
|
|
|
protected:
|
|
LibDSP::ProcessorRangeParameter& m_parameter;
|
|
};
|