summaryrefslogtreecommitdiffstats
path: root/doc/html/sound-example.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/html/sound-example.html')
-rw-r--r--doc/html/sound-example.html60
1 files changed, 30 insertions, 30 deletions
diff --git a/doc/html/sound-example.html b/doc/html/sound-example.html
index 8fe39cee..c2ba5b42 100644
--- a/doc/html/sound-example.html
+++ b/doc/html/sound-example.html
@@ -49,10 +49,10 @@ if your machine is set up to play audio.
#ifndef PLAY_H
#define PLAY_H
-#include "qsound.h"
-#include &lt;<a href="qmainwindow-h.html">qmainwindow.h</a>&gt;
+#include "ntqsound.h"
+#include &lt;<a href="qmainwindow-h.html">ntqmainwindow.h</a>&gt;
-class SoundPlayer : public <a href="qmainwindow.html">TQMainWindow</a> {
+class SoundPlayer : public <a href="ntqmainwindow.html">TQMainWindow</a> {
<a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a>
public:
SoundPlayer();
@@ -66,8 +66,8 @@ public slots:
void doPlay1234();
private:
- <a href="qsound.html">TQSound</a> bucket3;
- <a href="qsound.html">TQSound</a> bucket4;
+ <a href="ntqsound.html">TQSound</a> bucket3;
+ <a href="ntqsound.html">TQSound</a> bucket4;
};
#endif
@@ -92,12 +92,12 @@ private:
//
#include "sound.h"
-#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
-#include &lt;<a href="qmessagebox-h.html">qmessagebox.h</a>&gt;
-#include &lt;<a href="qmenubar-h.html">qmenubar.h</a>&gt;
+#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="qmessagebox-h.html">ntqmessagebox.h</a>&gt;
+#include &lt;<a href="qmenubar-h.html">ntqmenubar.h</a>&gt;
<a name="f581"></a>SoundPlayer::SoundPlayer() :
- <a href="qmainwindow.html">TQMainWindow</a>(),
+ <a href="ntqmainwindow.html">TQMainWindow</a>(),
bucket3("sounds/3.wav"),
bucket4("sounds/4.wav")
{
@@ -105,7 +105,7 @@ private:
// Bail out. Programs in which sound is not critical
// could just silently (hehe) ignore the lack of a server.
//
-<a name="x2812"></a> TQMessageBox::<a href="qmessagebox.html#warning">warning</a>(this,"No Sound",
+<a name="x2812"></a> TQMessageBox::<a href="ntqmessagebox.html#warning">warning</a>(this,"No Sound",
"&lt;p&gt;&lt;b&gt;Sorry, you are not running the Network Audio System.&lt;/b&gt;"
"&lt;p&gt;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:"
@@ -119,27 +119,27 @@ private:
"&lt;p&gt;After installing NAS, you will then need to reconfigure TQt with NAS sound support");
}
- <a href="qpopupmenu.html">TQPopupMenu</a> *file = new <a href="qpopupmenu.html">TQPopupMenu</a>;
-<a name="x2810"></a> file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play &amp;1", this, SLOT(doPlay1()), CTRL+Key_1);
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play &amp;2", this, SLOT(doPlay2()), CTRL+Key_2);
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play from bucket &amp;3", this, SLOT(doPlay3()), CTRL+Key_3);
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play from bucket &amp;4", this, SLOT(doPlay4()), CTRL+Key_4);
-<a name="x2811"></a> file-&gt;<a href="qmenudata.html#insertSeparator">insertSeparator</a>();
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play 3 and 4 together", this, SLOT(doPlay34()));
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("Play all together", this, SLOT(doPlay1234()));
- file-&gt;<a href="qmenudata.html#insertSeparator">insertSeparator</a>();
- file-&gt;<a href="qmenudata.html#insertItem">insertItem</a>("E&amp;xit", qApp, SLOT(<a href="qapplication.html#quit">quit</a>()));
- <a href="qmainwindow.html#menuBar">menuBar</a>()-&gt;insertItem("&amp;File", file);
+ <a href="ntqpopupmenu.html">TQPopupMenu</a> *file = new <a href="ntqpopupmenu.html">TQPopupMenu</a>;
+<a name="x2810"></a> file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play &amp;1", this, SLOT(doPlay1()), CTRL+Key_1);
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play &amp;2", this, SLOT(doPlay2()), CTRL+Key_2);
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play from bucket &amp;3", this, SLOT(doPlay3()), CTRL+Key_3);
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play from bucket &amp;4", this, SLOT(doPlay4()), CTRL+Key_4);
+<a name="x2811"></a> file-&gt;<a href="ntqmenudata.html#insertSeparator">insertSeparator</a>();
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play 3 and 4 together", this, SLOT(doPlay34()));
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("Play all together", this, SLOT(doPlay1234()));
+ file-&gt;<a href="ntqmenudata.html#insertSeparator">insertSeparator</a>();
+ file-&gt;<a href="ntqmenudata.html#insertItem">insertItem</a>("E&amp;xit", qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()));
+ <a href="ntqmainwindow.html#menuBar">menuBar</a>()-&gt;insertItem("&amp;File", file);
}
void <a name="f582"></a>SoundPlayer::doPlay1()
{
-<a name="x2813"></a> TQSound::<a href="qsound.html#play">play</a>("sounds/1.wav");
+<a name="x2813"></a> TQSound::<a href="ntqsound.html#play">play</a>("sounds/1.wav");
}
void <a name="f583"></a>SoundPlayer::doPlay2()
{
- TQSound::<a href="qsound.html#play">play</a>("sounds/2.wav");
+ TQSound::<a href="ntqsound.html#play">play</a>("sounds/2.wav");
}
void <a name="f584"></a>SoundPlayer::doPlay3()
@@ -162,20 +162,20 @@ void <a name="f586"></a>SoundPlayer::doPlay34()
void <a name="f587"></a>SoundPlayer::doPlay1234()
{
// Some sound platforms will only play one sound at a time
- TQSound::<a href="qsound.html#play">play</a>("sounds/1.wav");
- TQSound::<a href="qsound.html#play">play</a>("sounds/2.wav");
+ TQSound::<a href="ntqsound.html#play">play</a>("sounds/1.wav");
+ TQSound::<a href="ntqsound.html#play">play</a>("sounds/2.wav");
bucket3.play();
bucket4.play();
}
int main(int argc, char** argv)
{
- <a href="qapplication.html">TQApplication</a> app(argc,argv);
+ <a href="ntqapplication.html">TQApplication</a> app(argc,argv);
SoundPlayer sp;
- app.<a href="qapplication.html#setMainWidget">setMainWidget</a>(&amp;sp);
- sp.<a href="qwidget.html#setCaption">setCaption</a>("TQt Example - Sounds");
- sp.<a href="qwidget.html#show">show</a>();
- return app.<a href="qapplication.html#exec">exec</a>();
+ app.<a href="ntqapplication.html#setMainWidget">setMainWidget</a>(&amp;sp);
+ sp.<a href="ntqwidget.html#setCaption">setCaption</a>("TQt Example - Sounds");
+ sp.<a href="ntqwidget.html#show">show</a>();
+ return app.<a href="ntqapplication.html#exec">exec</a>();
}
</pre>