// Copyright 2007-2022 David Robillard // SPDX-License-Identifier: ISC #include "jalv_internal.h" #include "state.h" #include "lilv/lilv.h" #include #include #include #include #include #include class QDial; class QLabel; class QWidget; class PresetAction : public QAction { Q_OBJECT // NOLINT public: PresetAction(QObject* parent, Jalv* jalv, LilvNode* preset) : QAction(parent) , _jalv(jalv) , _preset(preset) { connect(this, SIGNAL(triggered()), this, SLOT(presetChosen())); } Q_SLOT void presetChosen() { jalv_apply_preset(_jalv, _preset); } private: Jalv* _jalv; LilvNode* _preset; }; struct PortContainer { Jalv* jalv; struct Port* port; }; class Control : public QGroupBox { Q_OBJECT // NOLINT public: explicit Control(PortContainer portContainer, QWidget* parent); Q_SLOT void dialChanged(int value); void setValue(float value); private: void setRange(float min, float max); QString getValueLabel(float value); float getValue(); int stringWidth(const QString& str); QDial* dial; const LilvPlugin* plugin; struct Port* port; QLabel* label; QString name; int steps; float max; float min; bool isInteger; bool isEnum; bool isLogarithmic; std::vector scalePoints; std::map scaleMap; };