You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
amarok/amarok/src/equalizerpresetmanager.h

61 lines
2.3 KiB

/***************************************************************************
* Copyright (C) 2005 by Markus Brueffer <markus@brueffer.de> *
* *
* 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 <kdialogbase.h> //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<int> > presets);
TQMap< TQString, TQValueList<int> > presets();
private slots:
void slotRename();
void slotDelete();
void slotDefault();
void updateButtonState();
private:
TQMap< TQString, TQValueList<int> > m_presets;
KListView* m_presetsView;
//TQPushButton* m_addBtn;
TQPushButton* m_renameBtn;
TQPushButton* m_deleteBtn;
};
#endif /* AMAROK_EQUALIZERPRESETMANAGER_H */