2007-02-05 00:49:40 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2007 by Pino Toscano <pino@kde.org> *
|
|
|
|
* *
|
|
|
|
* 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. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _OKULAR_AUDIOPLAYER_H_
|
|
|
|
#define _OKULAR_AUDIOPLAYER_H_
|
|
|
|
|
2007-04-22 10:39:31 +00:00
|
|
|
#include <okular/core/okular_export.h>
|
2007-02-05 00:49:40 +00:00
|
|
|
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
|
|
|
|
namespace Okular {
|
|
|
|
|
|
|
|
class Sound;
|
2007-05-02 22:50:27 +00:00
|
|
|
class SoundAction;
|
2007-02-05 00:49:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @short An audio player.
|
|
|
|
*
|
|
|
|
* Singleton utility class to play sounds in documents using the KDE sound
|
|
|
|
* system.
|
|
|
|
*/
|
|
|
|
class OKULAR_EXPORT AudioPlayer : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
~AudioPlayer();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the instance of the audio player.
|
|
|
|
*/
|
|
|
|
static AudioPlayer * instance();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Enqueue the specified @p sound for playing, optionally taking more
|
|
|
|
* information about the playing from the @p soundlink .
|
|
|
|
*/
|
2007-05-02 22:50:27 +00:00
|
|
|
void playSound( const Sound * sound, const SoundAction * linksound = 0 );
|
2007-02-05 00:49:40 +00:00
|
|
|
|
2007-02-05 15:26:05 +00:00
|
|
|
/**
|
|
|
|
* Tell the AudioPlayer to stop all the playbacks.
|
|
|
|
*/
|
|
|
|
void stopPlaybacks();
|
|
|
|
|
2007-02-05 00:49:40 +00:00
|
|
|
private:
|
|
|
|
AudioPlayer();
|
|
|
|
|
|
|
|
class Private;
|
|
|
|
Private * const d;
|
|
|
|
|
|
|
|
Q_DISABLE_COPY( AudioPlayer )
|
|
|
|
Q_PRIVATE_SLOT( d, void finished( int ) )
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|