mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
100 lines
2.7 KiB
C++
100 lines
2.7 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2012 RetroShare Team
|
|
*
|
|
* 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 Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
****************************************************************/
|
|
|
|
#ifndef SOUNDMANAGER_H
|
|
#define SOUNDMANAGER_H
|
|
|
|
#include <QObject>
|
|
#include <QMap>
|
|
|
|
#define SOUND_NEW_CHAT_MESSAGE "NewChatMessage"
|
|
#define SOUND_USER_ONLINE "User_go_Online"
|
|
#define SOUND_MESSAGE_ARRIVED "MessageArrived"
|
|
#define SOUND_DOWNLOAD_COMPLETE "DownloadComplete"
|
|
#define SOUND_NEW_LOBBY_MESSAGE "NewLobbyMessage"
|
|
|
|
class SoundEvents
|
|
{
|
|
public:
|
|
class SoundEventInfo
|
|
{
|
|
public:
|
|
SoundEventInfo() {}
|
|
|
|
public:
|
|
QString mGroupName;
|
|
QString mEventName;
|
|
QString mDefaultFilename;
|
|
};
|
|
|
|
public:
|
|
SoundEvents();
|
|
|
|
void addEvent(const QString &groupName, const QString &eventName, const QString &event, const QString &defaultFilename);
|
|
|
|
public:
|
|
QString mDefaultPath;
|
|
QMap<QString, SoundEventInfo> mEventInfos;
|
|
};
|
|
|
|
class SoundManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public slots:
|
|
void setMute(bool m);
|
|
|
|
signals:
|
|
void mute(bool isMute);
|
|
|
|
public:
|
|
static void create();
|
|
|
|
#ifdef Q_OS_LINUX
|
|
static QString soundDetectPlayer();
|
|
#endif
|
|
|
|
static void initDefault();
|
|
static QString defaultFilename(const QString &event, bool check);
|
|
static QString convertFilename(const QString &filename);
|
|
static QString realFilename(const QString &filename);
|
|
|
|
static void soundEvents(SoundEvents &events);
|
|
|
|
static bool isMute();
|
|
|
|
static void play(const QString &event);
|
|
static void playFile(const QString &filename);
|
|
|
|
static bool eventEnabled(const QString &event);
|
|
static void setEventEnabled(const QString &event, bool enabled);
|
|
|
|
static QString eventFilename(const QString &event);
|
|
static void setEventFilename(const QString &event, const QString &filename);
|
|
|
|
private:
|
|
SoundManager();
|
|
};
|
|
|
|
extern SoundManager *soundManager;
|
|
|
|
#endif //SOUNDMANAGER_H
|