36 lines
729 B
C++
36 lines
729 B
C++
#ifndef SOUNDENGINE_H
|
|
#define SOUNDENGINE_H
|
|
|
|
#include <QObject>
|
|
#include <QMap>
|
|
#include <QDir>
|
|
#include <QString>
|
|
|
|
class QAudioOutput;
|
|
class QBuffer;
|
|
|
|
typedef QMap<QString, QString> QStringMap;
|
|
|
|
class SoundEngine : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
SoundEngine(QObject *parent = 0);
|
|
~SoundEngine();
|
|
void playSound(QString fileName);
|
|
QStringMap &getAvailableThemes();
|
|
private:
|
|
QMap<QString, QByteArray> audioData;
|
|
QBuffer *inputBuffer;
|
|
QAudioOutput * player;
|
|
QStringMap availableThemes;
|
|
protected:
|
|
void ensureThemeDirectoryExists();
|
|
private slots:
|
|
void soundEnabledChanged();
|
|
void themeChangedSlot();
|
|
public slots:
|
|
void testSound();
|
|
};
|
|
|
|
extern SoundEngine *soundEngine;
|
|
#endif
|