2010-04-07 18:26:04 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-04-07 18:26:04 +02:00
|
|
|
|
|
|
|
Clementine 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine 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 Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "equalizerslider.h"
|
2010-05-10 23:50:31 +02:00
|
|
|
#include "ui_equalizerslider.h"
|
2010-04-07 18:26:04 +02:00
|
|
|
|
|
|
|
EqualizerSlider::EqualizerSlider(const QString& label, QWidget *parent)
|
2010-05-11 00:09:16 +02:00
|
|
|
: QWidget(parent),
|
|
|
|
ui_(new Ui_EqualizerSlider)
|
2010-04-07 18:26:04 +02:00
|
|
|
{
|
2010-05-10 23:50:31 +02:00
|
|
|
ui_->setupUi(this);
|
|
|
|
ui_->label->setText(label);
|
2010-04-07 18:26:04 +02:00
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
connect(ui_->slider, SIGNAL(valueChanged(int)), SIGNAL(ValueChanged(int)));
|
|
|
|
}
|
|
|
|
|
|
|
|
EqualizerSlider::~EqualizerSlider() {
|
|
|
|
delete ui_;
|
2010-04-07 18:26:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int EqualizerSlider::value() const {
|
2010-05-10 23:50:31 +02:00
|
|
|
return ui_->slider->value();
|
2010-04-07 18:26:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void EqualizerSlider::set_value(int value) {
|
2010-05-10 23:50:31 +02:00
|
|
|
ui_->slider->setValue(value);
|
2010-04-07 18:26:04 +02:00
|
|
|
}
|