-rw-r--r-- | library/sound.cpp | 40 |
1 files changed, 30 insertions, 10 deletions
diff --git a/library/sound.cpp b/library/sound.cpp index 373fd4c..602fcf0 100644 --- a/library/sound.cpp +++ b/library/sound.cpp @@ -26,4 +26,11 @@ #include <qfile.h> +#include <unistd.h> +#include <fcntl.h> +#include <sys/ioctl.h> +#include <sys/soundcard.h> + +#include "config.h" +#include <qmessagebox.h> #ifndef QT_NO_SOUND static int WAVsoundDuration(const QString& filename) @@ -100,9 +107,11 @@ public: filename(Resource::findSound(name)) { + loopsleft=0; } - void playLoop() + void playLoop(int loopcnt = -1) { // needs server support + loopsleft = loopcnt; int ms = WAVsoundDuration(filename); @@ -112,11 +121,22 @@ public: } - void timerEvent(QTimerEvent*) + void timerEvent ( QTimerEvent *e ) { + if (loopsleft >= 0) { + if (--loopsleft <= 0) + killTimer (e->timerId()); + return; + } play(); } + + bool isFinished ( ) const + { + return ( loopsleft == 0 ); + } private: QString filename; + int loopsleft; }; #endif @@ -140,5 +160,5 @@ void Sound::play() #ifndef QT_NO_SOUND d->killTimers(); - d->play(); + d->playLoop(1); #endif } @@ -159,15 +179,15 @@ void Sound::stop() } +bool Sound::isFinished() const +{ +#ifndef QT_NO_SOUND + return d->isFinished(); +#endif +} void Sound::soundAlarm() { -#ifdef QT_QWS_CUSTOM -# ifndef QT_NO_COP +#ifndef QT_NO_COP QCopEnvelope( "QPE/TaskBar", "soundAlarm()" ); -# endif -#else -# ifndef QT_NO_SOUND - QSound::play(Resource::findSound("alarm")); -# endif #endif } |