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
 ***************************************************************************/
19
20
#ifndef AMAROK_EQUALIZERPRESETMANAGER_H
21
#define AMAROK_EQUALIZERPRESETMANAGER_H
22
23
#include "equalizersetup.h"
24
25
#include <KDialog>      //baseclass
26
27
class QPushButton;
28
class K3ListView;
29
30
class EqualizerPresetManager : public KDialog
31
{
32
    Q_OBJECT
33
34
    public:
35
        explicit EqualizerPresetManager( QWidget *parent = 0 );
36
        virtual ~EqualizerPresetManager();
37
38
        void setPresets(QMap< QString, QList<int> > presets);
39
        QMap< QString, QList<int> > presets();
40
41
    private slots:
42
        void slotRename();
43
        void slotDelete();
44
        void slotDefault();
45
46
        void updateButtonState();
47
48
    private:
49
        QMap< QString, QList<int> > m_presets;
50
        K3ListView* m_presetsView;
51
52
        //QPushButton* m_addBtn;
53
        QPushButton* m_renameBtn;
54
        QPushButton* m_deleteBtn;
55
};
56
57
58
#endif /* AMAROK_EQUALIZERPRESETMANAGER_H */