mirror of
https://github.com/LMMS/lmms.git
synced 2026-01-17 19:08:08 -05:00
61 lines
2.1 KiB
C++
61 lines
2.1 KiB
C++
/*
|
|
* AmplifierControlDialog.cpp - control dialog for amplifier effect
|
|
*
|
|
* Copyright (c) 2014 Vesa Kivimäki <contact/dot/diizy/at/nbl/dot/fi>
|
|
* Copyright (c) 2006-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of LMMS - https://lmms.io
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include "AmplifierControlDialog.h"
|
|
#include "AmplifierControls.h"
|
|
#include "embed.h"
|
|
#include "Knob.h"
|
|
|
|
namespace lmms::gui
|
|
{
|
|
|
|
AmplifierControlDialog::AmplifierControlDialog(AmplifierControls* controls) :
|
|
EffectControlDialog(controls)
|
|
{
|
|
setAutoFillBackground(true);
|
|
QPalette pal;
|
|
pal.setBrush(backgroundRole(), PLUGIN_NAME::getIconPixmap("artwork"));
|
|
setPalette(pal);
|
|
setFixedSize(100, 110);
|
|
|
|
auto makeKnob = [this](int x, int y, const QString& label, const QString& hintText, const QString& unit, FloatModel* model, bool isVolume)
|
|
{
|
|
Knob* newKnob = new Knob(KnobType::Bright26, this);
|
|
newKnob->move(x, y);
|
|
newKnob->setModel(model);
|
|
newKnob->setLabel(label);
|
|
newKnob->setHintText(hintText, unit);
|
|
newKnob->setVolumeKnob(isVolume);
|
|
return newKnob;
|
|
};
|
|
|
|
makeKnob(16, 10, tr("VOL"), tr("Volume:"), "%", &controls->m_volumeModel, true);
|
|
makeKnob(57, 10, tr("PAN"), tr("Panning:"), "%", &controls->m_panModel, false);
|
|
makeKnob(16, 65, tr("LEFT"), tr("Left gain:"), "%", &controls->m_leftModel, true);
|
|
makeKnob(57, 65, tr("RIGHT"), tr("Right gain:"), "%", &controls->m_rightModel, true);
|
|
}
|
|
|
|
} // namespace lmms::gui
|