summaryrefslogtreecommitdiffstats
path: root/doc/html/t14-gamebrd-cpp.html
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-01-26 23:32:43 -0600
commitea318d1431c89e647598c510c4245c6571aa5f46 (patch)
tree996d29b80c30d453dda86d1a23162d441628f169 /doc/html/t14-gamebrd-cpp.html
parentaaf89d4b48f69c9293feb187db26362e550b5561 (diff)
downloadtqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz
tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/t14-gamebrd-cpp.html')
-rw-r--r--doc/html/t14-gamebrd-cpp.html88
1 files changed, 44 insertions, 44 deletions
diff --git a/doc/html/t14-gamebrd-cpp.html b/doc/html/t14-gamebrd-cpp.html
index 5130978de..4f677049f 100644
--- a/doc/html/t14-gamebrd-cpp.html
+++ b/doc/html/t14-gamebrd-cpp.html
@@ -40,25 +40,25 @@ body { background: #ffffff; color: black; }
#include "gamebrd.h"
-#include &lt;<a href="qfont-h.html">qfont.h</a>&gt;
-#include &lt;<a href="qapplication-h.html">qapplication.h</a>&gt;
-#include &lt;<a href="qlabel-h.html">qlabel.h</a>&gt;
-#include &lt;<a href="qaccel-h.html">qaccel.h</a>&gt;
-#include &lt;<a href="qpushbutton-h.html">qpushbutton.h</a>&gt;
-#include &lt;<a href="qlcdnumber-h.html">qlcdnumber.h</a>&gt;
-#include &lt;<a href="qlayout-h.html">qlayout.h</a>&gt;
-#include &lt;<a href="qvbox-h.html">qvbox.h</a>&gt;
+#include &lt;<a href="qfont-h.html">ntqfont.h</a>&gt;
+#include &lt;<a href="qapplication-h.html">ntqapplication.h</a>&gt;
+#include &lt;<a href="qlabel-h.html">ntqlabel.h</a>&gt;
+#include &lt;<a href="qaccel-h.html">ntqaccel.h</a>&gt;
+#include &lt;<a href="qpushbutton-h.html">ntqpushbutton.h</a>&gt;
+#include &lt;<a href="qlcdnumber-h.html">ntqlcdnumber.h</a>&gt;
+#include &lt;<a href="qlayout-h.html">ntqlayout.h</a>&gt;
+#include &lt;<a href="qvbox-h.html">ntqvbox.h</a>&gt;
#include "lcdrange.h"
#include "cannon.h"
-<a name="f139"></a>GameBoard::GameBoard( <a href="qwidget.html">TQWidget</a> *parent, const char *name )
- : <a href="qwidget.html">TQWidget</a>( parent, name )
+<a name="f139"></a>GameBoard::GameBoard( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name )
+ : <a href="ntqwidget.html">TQWidget</a>( parent, name )
{
- <a href="qpushbutton.html">TQPushButton</a> *quit = new <a href="qpushbutton.html">TQPushButton</a>( "&amp;Quit", this, "quit" );
- quit-&gt;<a href="qwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
+ <a href="ntqpushbutton.html">TQPushButton</a> *quit = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;Quit", this, "quit" );
+ quit-&gt;<a href="ntqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="qobject.html#connect">connect</a>( quit, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) );
+ <a href="ntqobject.html#connect">connect</a>( quit, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
LCDRange *angle = new LCDRange( "ANGLE", this, "angle" );
angle-&gt;setRange( 5, 70 );
@@ -66,53 +66,53 @@ body { background: #ffffff; color: black; }
LCDRange *force = new LCDRange( "FORCE", this, "force" );
force-&gt;setRange( 10, 50 );
- <a href="qvbox.html">TQVBox</a> *box = new <a href="qvbox.html">TQVBox</a>( this, "cannonFrame" );
- box-&gt;<a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken );
+ <a href="ntqvbox.html">TQVBox</a> *box = new <a href="ntqvbox.html">TQVBox</a>( this, "cannonFrame" );
+ box-&gt;<a href="ntqframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::WinPanel | TQFrame::Sunken );
cannonField = new CannonField( box, "cannonField" );
- <a href="qobject.html#connect">connect</a>( angle, SIGNAL(valueChanged(int)),
+ <a href="ntqobject.html#connect">connect</a>( angle, SIGNAL(valueChanged(int)),
cannonField, SLOT(setAngle(int)) );
- <a href="qobject.html#connect">connect</a>( cannonField, SIGNAL(angleChanged(int)),
+ <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(angleChanged(int)),
angle, SLOT(setValue(int)) );
- <a href="qobject.html#connect">connect</a>( force, SIGNAL(valueChanged(int)),
+ <a href="ntqobject.html#connect">connect</a>( force, SIGNAL(valueChanged(int)),
cannonField, SLOT(setForce(int)) );
- <a href="qobject.html#connect">connect</a>( cannonField, SIGNAL(forceChanged(int)),
+ <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(forceChanged(int)),
force, SLOT(setValue(int)) );
- <a href="qobject.html#connect">connect</a>( cannonField, SIGNAL(hit()),
+ <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(hit()),
this, SLOT(hit()) );
- <a href="qobject.html#connect">connect</a>( cannonField, SIGNAL(missed()),
+ <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(missed()),
this, SLOT(missed()) );
- <a href="qpushbutton.html">TQPushButton</a> *shoot = new <a href="qpushbutton.html">TQPushButton</a>( "&amp;Shoot", this, "shoot" );
- shoot-&gt;<a href="qwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
+ <a href="ntqpushbutton.html">TQPushButton</a> *shoot = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;Shoot", this, "shoot" );
+ shoot-&gt;<a href="ntqwidget.html#setFont">setFont</a>( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="qobject.html#connect">connect</a>( shoot, SIGNAL(<a href="qbutton.html#clicked">clicked</a>()), SLOT(fire()) );
+ <a href="ntqobject.html#connect">connect</a>( shoot, SIGNAL(<a href="ntqbutton.html#clicked">clicked</a>()), SLOT(fire()) );
- <a href="qobject.html#connect">connect</a>( cannonField, SIGNAL(canShoot(bool)),
- shoot, SLOT(<a href="qwidget.html#setEnabled">setEnabled</a>(bool)) );
+ <a href="ntqobject.html#connect">connect</a>( cannonField, SIGNAL(canShoot(bool)),
+ shoot, SLOT(<a href="ntqwidget.html#setEnabled">setEnabled</a>(bool)) );
TQPushButton *restart
- = new <a href="qpushbutton.html">TQPushButton</a>( "&amp;New Game", this, "newgame" );
+ = new <a href="ntqpushbutton.html">TQPushButton</a>( "&amp;New Game", this, "newgame" );
restart-&gt;setFont( TQFont( "Times", 18, TQFont::Bold ) );
- <a href="qobject.html#connect">connect</a>( restart, SIGNAL(clicked()), this, SLOT(newGame()) );
+ <a href="ntqobject.html#connect">connect</a>( restart, SIGNAL(clicked()), this, SLOT(newGame()) );
- hits = new <a href="qlcdnumber.html">TQLCDNumber</a>( 2, this, "hits" );
- shotsLeft = new <a href="qlcdnumber.html">TQLCDNumber</a>( 2, this, "shotsleft" );
- <a href="qlabel.html">TQLabel</a> *hitsL = new <a href="qlabel.html">TQLabel</a>( "HITS", this, "hitsLabel" );
+ hits = new <a href="ntqlcdnumber.html">TQLCDNumber</a>( 2, this, "hits" );
+ shotsLeft = new <a href="ntqlcdnumber.html">TQLCDNumber</a>( 2, this, "shotsleft" );
+ <a href="ntqlabel.html">TQLabel</a> *hitsL = new <a href="ntqlabel.html">TQLabel</a>( "HITS", this, "hitsLabel" );
TQLabel *shotsLeftL
- = new <a href="qlabel.html">TQLabel</a>( "SHOTS LEFT", this, "shotsleftLabel" );
+ = new <a href="ntqlabel.html">TQLabel</a>( "SHOTS LEFT", this, "shotsleftLabel" );
- <a href="qaccel.html">TQAccel</a> *accel = new <a href="qaccel.html">TQAccel</a>( this );
- accel-&gt;<a href="qaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="qaccel.html#insertItem">insertItem</a>( Key_Enter ),
+ <a href="ntqaccel.html">TQAccel</a> *accel = new <a href="ntqaccel.html">TQAccel</a>( this );
+ accel-&gt;<a href="ntqaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="ntqaccel.html#insertItem">insertItem</a>( Key_Enter ),
this, SLOT(fire()) );
- accel-&gt;<a href="qaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="qaccel.html#insertItem">insertItem</a>( Key_Return ),
+ accel-&gt;<a href="ntqaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="ntqaccel.html#insertItem">insertItem</a>( Key_Return ),
this, SLOT(fire()) );
- accel-&gt;<a href="qaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="qaccel.html#insertItem">insertItem</a>( CTRL+Key_Q ),
- qApp, SLOT(<a href="qapplication.html#quit">quit</a>()) );
+ accel-&gt;<a href="ntqaccel.html#connectItem">connectItem</a>( accel-&gt;<a href="ntqaccel.html#insertItem">insertItem</a>( CTRL+Key_Q ),
+ qApp, SLOT(<a href="ntqapplication.html#quit">quit</a>()) );
<a href="qgridlayout.html">TQGridLayout</a> *grid = new <a href="qgridlayout.html">TQGridLayout</a>( this, 2, 2, 10 );
grid-&gt;<a href="qgridlayout.html#addWidget">addWidget</a>( quit, 0, 0 );
@@ -136,7 +136,7 @@ body { background: #ffffff; color: black; }
angle-&gt;setValue( 60 );
force-&gt;setValue( 25 );
- angle-&gt;<a href="qwidget.html#setFocus">setFocus</a>();
+ angle-&gt;<a href="ntqwidget.html#setFocus">setFocus</a>();
newGame();
}
@@ -146,15 +146,15 @@ void <a name="f140"></a>GameBoard::fire()
{
if ( cannonField-&gt;gameOver() || cannonField-&gt;isShooting() )
return;
- shotsLeft-&gt;<a href="qlcdnumber.html#display">display</a>( shotsLeft-&gt;<a href="qlcdnumber.html#intValue">intValue</a>() - 1 );
+ shotsLeft-&gt;<a href="ntqlcdnumber.html#display">display</a>( shotsLeft-&gt;<a href="ntqlcdnumber.html#intValue">intValue</a>() - 1 );
cannonField-&gt;shoot();
}
void <a name="f141"></a>GameBoard::hit()
{
- hits-&gt;<a href="qlcdnumber.html#display">display</a>( hits-&gt;<a href="qlcdnumber.html#intValue">intValue</a>() + 1 );
- if ( shotsLeft-&gt;<a href="qlcdnumber.html#intValue">intValue</a>() == 0 )
+ hits-&gt;<a href="ntqlcdnumber.html#display">display</a>( hits-&gt;<a href="ntqlcdnumber.html#intValue">intValue</a>() + 1 );
+ if ( shotsLeft-&gt;<a href="ntqlcdnumber.html#intValue">intValue</a>() == 0 )
cannonField-&gt;setGameOver();
else
cannonField-&gt;newTarget();
@@ -163,15 +163,15 @@ void <a name="f141"></a>GameBoard::hit()
void <a name="f142"></a>GameBoard::missed()
{
- if ( shotsLeft-&gt;<a href="qlcdnumber.html#intValue">intValue</a>() == 0 )
+ if ( shotsLeft-&gt;<a href="ntqlcdnumber.html#intValue">intValue</a>() == 0 )
cannonField-&gt;setGameOver();
}
void <a name="f143"></a>GameBoard::newGame()
{
- shotsLeft-&gt;<a href="qlcdnumber.html#display">display</a>( 15 );
- hits-&gt;<a href="qlcdnumber.html#display">display</a>( 0 );
+ shotsLeft-&gt;<a href="ntqlcdnumber.html#display">display</a>( 15 );
+ hits-&gt;<a href="ntqlcdnumber.html#display">display</a>( 0 );
cannonField-&gt;restartGame();
cannonField-&gt;newTarget();
}