add mp3 and ogg torrent url info to JamendoAlbum
[amarok.git] / src / equalizerpresetmanager.h
blob6104c3eb5dd2dcf03fe9d6f82ae9061c11c5cbc9
1 /***************************************************************************
2 * Copyright (C) 2005 by Markus Brueffer <markus@brueffer.de> *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef AMAROK_EQUALIZERPRESETMANAGER_H
21 #define AMAROK_EQUALIZERPRESETMANAGER_H
23 #include "equalizersetup.h"
25 #include <KDialog> //baseclass
27 class QPushButton;
28 class K3ListView;
30 class EqualizerPresetManager : public KDialog
32 Q_OBJECT
34 public:
35 explicit EqualizerPresetManager( QWidget *parent = 0, const char *name = 0 );
36 virtual ~EqualizerPresetManager();
38 void setPresets(QMap< QString, QList<int> > presets);
39 QMap< QString, QList<int> > presets();
41 private slots:
42 void slotRename();
43 void slotDelete();
44 void slotDefault();
46 void updateButtonState();
48 private:
49 QMap< QString, QList<int> > m_presets;
50 K3ListView* m_presetsView;
52 //QPushButton* m_addBtn;
53 QPushButton* m_renameBtn;
54 QPushButton* m_deleteBtn;
58 #endif /* AMAROK_EQUALIZERPRESETMANAGER_H */