ladybird/Userland/Applications/Piano/ProcessorParameterWidget/WidgetWithLabel.h
kleines Filmröllchen 8f8ae5eb53 Piano: Create controller widgets for processor parameters
These widgets attach to a processor parameter and keep the two sides in
sync. They will become very useful for smart processor interfaces.
2021-11-16 00:09:58 +00:00

23 lines
442 B
C++

/*
* Copyright (c) 2021, kleines Filmröllchen <malu.bertsch@gmail.com>.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/RefPtr.h>
#include <LibGUI/Label.h>
class WidgetWithLabel {
public:
WidgetWithLabel(RefPtr<GUI::Label> value_label)
: m_value_label(move(value_label))
{
}
RefPtr<GUI::Label> value_label() { return m_value_label; }
protected:
RefPtr<GUI::Label> m_value_label;
};