1 /***************************************************************************
2 * Copyright (C) 2005 by Markus Brueffer <markus@brueffer.de> *
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. *
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. *
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
30 class EqualizerPresetManager
: public KDialog
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();
46 void updateButtonState();
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 */