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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EQUALISERSLIDER_H
|
|
|
|
#define EQUALISERSLIDER_H
|
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
2010-05-10 23:50:31 +02:00
|
|
|
class Ui_EqualizerSlider;
|
2010-04-07 18:26:04 +02:00
|
|
|
|
2010-04-11 15:29:27 +02:00
|
|
|
// Contains the slider and the label
|
2010-04-07 18:26:04 +02:00
|
|
|
class EqualizerSlider : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
EqualizerSlider(const QString& label, QWidget *parent = 0);
|
2010-05-10 23:50:31 +02:00
|
|
|
~EqualizerSlider();
|
2010-04-07 18:26:04 +02:00
|
|
|
|
|
|
|
int value() const;
|
|
|
|
void set_value(int value);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void ValueChanged(int value);
|
|
|
|
|
|
|
|
private:
|
2010-05-10 23:50:31 +02:00
|
|
|
Ui_EqualizerSlider* ui_;
|
2010-04-07 18:26:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EQUALISERSLIDER_H
|