/*************************************************************************** * Copyright (C) 2005 by Albert Astals Cid * * * * 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 SOUNDSPLAYER_H #define SOUNDSPLAYER_H #include #include #include #include #include "blinkengame.h" class soundsPlayer : public QObject { Q_OBJECT public: soundsPlayer(); ~soundsPlayer(); void play(blinkenGame::color c); signals: void ended(); private slots: void playEnded(); private: QString m_greenSound, m_redSound, m_blueSound, m_yellowSound, m_allSound; Phonon::MediaObject m_mediaObject; Phonon::AudioOutput m_audioOutput; QTimer m_warnTimer; }; #endif