mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 17:18:11 +00:00

That's the standard naming convention, but I didn't follow it when originally creating LibDSP and nobody corrected me, so here I am one year later :^)
32 lines
847 B
C++
32 lines
847 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>
|
|
|
|
constexpr int slider_steps = 256;
|
|
|
|
class ProcessorParameterSlider
|
|
: public GUI::Slider
|
|
, public WidgetWithLabel {
|
|
C_OBJECT(ProcessorParameterSlider);
|
|
|
|
public:
|
|
ProcessorParameterSlider(Orientation, DSP::ProcessorRangeParameter&, RefPtr<GUI::Label>);
|
|
constexpr bool is_logarithmic() const { return m_parameter.is_logarithmic() == DSP::Logarithmic::Yes; }
|
|
|
|
protected:
|
|
DSP::ProcessorRangeParameter& m_parameter;
|
|
|
|
private:
|
|
// Converts based on processor parameter boundaries.
|
|
int linear_to_logarithmic(int linear_value);
|
|
};
|