mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 10:52:53 +00:00
67 lines
2.2 KiB
C++
67 lines
2.2 KiB
C++
//-*-C++-*-
|
|
/*
|
|
* KMix -- KDE's full featured mini mixer
|
|
*
|
|
* Copyright Christian Esken <esken@kde.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this program; if not, write to the Free
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
#ifndef MIXERTOOLBOX_H
|
|
#define MIXERTOOLBOX_H
|
|
|
|
#include <qobject.h>
|
|
#include <qlist.h>
|
|
#include <QMap>
|
|
#include <QRegExp>
|
|
#include <QString>
|
|
|
|
class Mixer;
|
|
|
|
/**
|
|
* This toolbox contains various static methods that are shared throughout KMix.
|
|
* It only contains no-GUI code. The shared with-GUI code is in KMixToolBox
|
|
* The reason, why it is not put in a common base class is, that the classes are
|
|
* very different and cannot be changed (e.g. KPanelApplet) without major headache.
|
|
*/
|
|
class MixerToolBox : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
enum MultiDriverMode { SINGLE, SINGLE_PLUS_MPRIS2, MULTI };
|
|
|
|
public:
|
|
static MixerToolBox* instance();
|
|
void initMixer(bool, QList<QString> backendList, QString&);
|
|
void initMixer(MultiDriverMode, QList<QString> backendList, QString&);
|
|
void initMixerInternal(MultiDriverMode, QList<QString> backendList, QString&);
|
|
void deinitMixer();
|
|
bool possiblyAddMixer(Mixer *mixer);
|
|
void removeMixer(Mixer *mixer);
|
|
void setMixerIgnoreExpression(const QString& ignoreExpr);
|
|
QString mixerIgnoreExpression() const;
|
|
|
|
//static KLocale* whatsthisControlLocale();
|
|
|
|
signals:
|
|
void mixerAdded(QString mixerID);
|
|
|
|
private:
|
|
static MixerToolBox* s_instance;
|
|
static QRegExp s_ignoreMixerExpression;
|
|
|
|
//static KLocale* s_whatsthisLocale;
|
|
};
|
|
|
|
#endif
|