/*************************************************************************** * Copyright (C) 2005 by Markus Brueffer * * * * This program 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 2 of the License, or * * (at your option) any later version. * * * * This program 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 this program; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin Steet, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #ifndef AMAROK_EQUALIZERPRESETMANAGER_H #define AMAROK_EQUALIZERPRESETMANAGER_H #include "equalizersetup.h" #include //baseclass class TQPushButton; class TQStringList; class KListView; class EqualizerPresetManager : public KDialogBase { Q_OBJECT TQ_OBJECT public: EqualizerPresetManager( TQWidget *parent = 0, const char *name = 0 ); virtual ~EqualizerPresetManager(); void setPresets(TQMap< TQString, TQValueList > presets); TQMap< TQString, TQValueList > presets(); private slots: void slotRename(); void slotDelete(); void slotDefault(); void updateButtonState(); private: TQMap< TQString, TQValueList > m_presets; KListView* m_presetsView; //TQPushButton* m_addBtn; TQPushButton* m_renameBtn; TQPushButton* m_deleteBtn; }; #endif /* AMAROK_EQUALIZERPRESETMANAGER_H */