From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- examples/sound/sound.cpp | 102 ++++++++++++++++++++++++++++++++++++++++++++ examples/sound/sound.doc | 24 +++++++++++ examples/sound/sound.h | 33 ++++++++++++++ examples/sound/sound.pro | 11 +++++ examples/sound/sounds/1.wav | Bin 0 -> 8624 bytes examples/sound/sounds/2.wav | Bin 0 -> 7266 bytes examples/sound/sounds/3.wav | Bin 0 -> 4709 bytes examples/sound/sounds/4.wav | Bin 0 -> 5538 bytes 8 files changed, 170 insertions(+) create mode 100644 examples/sound/sound.cpp create mode 100644 examples/sound/sound.doc create mode 100644 examples/sound/sound.h create mode 100644 examples/sound/sound.pro create mode 100644 examples/sound/sounds/1.wav create mode 100644 examples/sound/sounds/2.wav create mode 100644 examples/sound/sounds/3.wav create mode 100644 examples/sound/sounds/4.wav (limited to 'examples/sound') diff --git a/examples/sound/sound.cpp b/examples/sound/sound.cpp new file mode 100644 index 00000000..45ce6156 --- /dev/null +++ b/examples/sound/sound.cpp @@ -0,0 +1,102 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ +// +// Very simple example of TQSound::play(filename) +// +// 99% of this program is just boilerplate TQt code to put up a nice +// window so you think something special is happening. +// + +#include "sound.h" +#include +#include +#include + +SoundPlayer::SoundPlayer() : + TQMainWindow(), + bucket3("sounds/3.wav"), + bucket4("sounds/4.wav") +{ + if (!TQSound::isAvailable()) { + // Bail out. Programs in which sound is not critical + // could just silently (hehe) ignore the lack of a server. + // + TQMessageBox::warning(this,"No Sound", + "

Sorry, you are not running the Network Audio System." + "

If you have the `au' command, run it in the background before this program. " + "The latest release of the Network Audio System can be obtained from:" + "

\n"
+		"  \n"
+		"   ftp.ncd.com:/pub/ncd/technology/src/nas\n"
+		"   ftp.x.org:/contrib/audio/nas\n"
+		"
" + "

Release 1.2 of NAS is also included with the X11R6" + "contrib distribution." + "

After installing NAS, you will then need to reconfigure TQt with NAS sound support"); + } + + TQPopupMenu *file = new TQPopupMenu; + file->insertItem("Play &1", this, SLOT(doPlay1()), CTRL+Key_1); + file->insertItem("Play &2", this, SLOT(doPlay2()), CTRL+Key_2); + file->insertItem("Play from bucket &3", this, SLOT(doPlay3()), CTRL+Key_3); + file->insertItem("Play from bucket &4", this, SLOT(doPlay4()), CTRL+Key_4); + file->insertSeparator(); + file->insertItem("Play 3 and 4 together", this, SLOT(doPlay34())); + file->insertItem("Play all together", this, SLOT(doPlay1234())); + file->insertSeparator(); + file->insertItem("E&xit", qApp, SLOT(tquit())); + menuBar()->insertItem("&File", file); +} + +void SoundPlayer::doPlay1() +{ + TQSound::play("sounds/1.wav"); +} + +void SoundPlayer::doPlay2() +{ + TQSound::play("sounds/2.wav"); +} + +void SoundPlayer::doPlay3() +{ + bucket3.play(); +} + +void SoundPlayer::doPlay4() +{ + bucket4.play(); +} + +void SoundPlayer::doPlay34() +{ + // Some sound platforms will only play one sound at a time + bucket3.play(); + bucket4.play(); +} + +void SoundPlayer::doPlay1234() +{ + // Some sound platforms will only play one sound at a time + TQSound::play("sounds/1.wav"); + TQSound::play("sounds/2.wav"); + bucket3.play(); + bucket4.play(); +} + +int main(int argc, char** argv) +{ + TQApplication app(argc,argv); + SoundPlayer sp; + app.setMainWidget(&sp); + sp.setCaption("TQt Example - Sounds"); + sp.show(); + return app.exec(); +} + diff --git a/examples/sound/sound.doc b/examples/sound/sound.doc new file mode 100644 index 00000000..031c97e6 --- /dev/null +++ b/examples/sound/sound.doc @@ -0,0 +1,24 @@ +/*! \page sound-example.html + + \ingroup examples + \title Sound Example + + This example shows how easy it is to play sounds, e.g. .WAV files, + if your machine is set up to play audio. + +


+ + Header file: + + \include sound/sound.h + +
+ + Implementation: + + \include sound/sound.cpp + + +*/ + + diff --git a/examples/sound/sound.h b/examples/sound/sound.h new file mode 100644 index 00000000..9c3e5d7b --- /dev/null +++ b/examples/sound/sound.h @@ -0,0 +1,33 @@ +/**************************************************************************** +** +** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ +#ifndef PLAY_H +#define PLAY_H + +#include "qsound.h" +#include + +class SoundPlayer : public TQMainWindow { + Q_OBJECT +public: + SoundPlayer(); + +public slots: + void doPlay1(); + void doPlay2(); + void doPlay3(); + void doPlay4(); + void doPlay34(); + void doPlay1234(); + +private: + TQSound bucket3; + TQSound bucket4; +}; + +#endif diff --git a/examples/sound/sound.pro b/examples/sound/sound.pro new file mode 100644 index 00000000..38ab30a8 --- /dev/null +++ b/examples/sound/sound.pro @@ -0,0 +1,11 @@ +TEMPLATE = app +TARGET = sound + +CONFIG += qt warn_on release +DEPENDPATH = ../../include + +REQUIRES = full-config +x11:REQUIRES = nas + +HEADERS = sound.h +SOURCES = sound.cpp diff --git a/examples/sound/sounds/1.wav b/examples/sound/sounds/1.wav new file mode 100644 index 00000000..30b84e30 Binary files /dev/null and b/examples/sound/sounds/1.wav differ diff --git a/examples/sound/sounds/2.wav b/examples/sound/sounds/2.wav new file mode 100644 index 00000000..dd32e345 Binary files /dev/null and b/examples/sound/sounds/2.wav differ diff --git a/examples/sound/sounds/3.wav b/examples/sound/sounds/3.wav new file mode 100644 index 00000000..5213eb55 Binary files /dev/null and b/examples/sound/sounds/3.wav differ diff --git a/examples/sound/sounds/4.wav b/examples/sound/sounds/4.wav new file mode 100644 index 00000000..e31b0609 Binary files /dev/null and b/examples/sound/sounds/4.wav differ -- cgit v1.2.1