RetroShare/retroshare-gui/src/gui/SoundManager.h
2012-10-26 13:01:58 +00:00

86 lines
2.2 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>
#define SOUND_NEW_CHAT_MESSAGE "NewChatMessage"
#define SOUND_USER_ONLINE "User_go_Online"
#define SOUND_MESSAGE_ARRIVED "MessageArrived"
#define SOUND_DOWNLOAD_COMPLETE "DownloadComplete"
class SoundEvents
{
public:
class SoundEventInfo
{
public:
SoundEventInfo() {}
public:
QString mGroupName;
QString mEventName;
QString mEvent;
};
public:
SoundEvents();
void addEvent(const QString &groupName, const QString &eventName, const QString &event);
public:
QList<SoundEventInfo> mEventInfos;
};
class SoundManager : public QObject
{
Q_OBJECT
public slots:
void setMute(bool mute);
signals:
void mute(bool isMute);
public:
static void create();
bool isMute();
void play(const QString &event);
void playFile(const QString &filename);
bool eventEnabled(const QString &event);
void setEventEnabled(const QString &event, bool enabled);
QString eventFilename(const QString &event);
void setEventFilename(const QString &event, const QString &filename);
private:
SoundManager();
};
extern SoundManager *soundManager;
#endif //SOUNDMANAGER_H