diff options
author | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-26 23:32:43 -0600 |
commit | ea318d1431c89e647598c510c4245c6571aa5f46 (patch) | |
tree | 996d29b80c30d453dda86d1a23162d441628f169 /doc/html/t10-cannon-cpp.html | |
parent | aaf89d4b48f69c9293feb187db26362e550b5561 (diff) | |
download | tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.tar.gz tqt3-ea318d1431c89e647598c510c4245c6571aa5f46.zip |
Update to latest tqt3 automated conversion
Diffstat (limited to 'doc/html/t10-cannon-cpp.html')
-rw-r--r-- | doc/html/t10-cannon-cpp.html | 50 |
1 files changed, 25 insertions, 25 deletions
diff --git a/doc/html/t10-cannon-cpp.html b/doc/html/t10-cannon-cpp.html index 74b446bfd..dfcd661aa 100644 --- a/doc/html/t10-cannon-cpp.html +++ b/doc/html/t10-cannon-cpp.html @@ -39,16 +39,16 @@ body { background: #ffffff; color: black; } ****************************************************************/ #include "cannon.h" -#include <<a href="qpainter-h.html">qpainter.h</a>> -#include <<a href="qpixmap-h.html">qpixmap.h</a>> +#include <<a href="qpainter-h.html">ntqpainter.h</a>> +#include <<a href="qpixmap-h.html">ntqpixmap.h</a>> -<a name="f48"></a>CannonField::CannonField( <a href="qwidget.html">TQWidget</a> *parent, const char *name ) - : <a href="qwidget.html">TQWidget</a>( parent, name ) +<a name="f48"></a>CannonField::CannonField( <a href="ntqwidget.html">TQWidget</a> *parent, const char *name ) + : <a href="ntqwidget.html">TQWidget</a>( parent, name ) { ang = 45; f = 0; - <a href="qwidget.html#setPalette">setPalette</a>( TQPalette( TQColor( 250, 250, 200) ) ); + <a href="ntqwidget.html#setPalette">setPalette</a>( TQPalette( TQColor( 250, 250, 200) ) ); } @@ -61,7 +61,7 @@ void <a name="f49"></a>CannonField::setAngle( int degrees ) if ( ang == degrees ) return; ang = degrees; - <a href="qwidget.html#repaint">repaint</a>( cannonRect(), FALSE ); + <a href="ntqwidget.html#repaint">repaint</a>( cannonRect(), FALSE ); emit angleChanged( ang ); } @@ -77,38 +77,38 @@ void <a name="f50"></a>CannonField::setForce( int newton ) } -void CannonField::<a href="qwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> *e ) +void CannonField::<a href="ntqwidget.html#paintEvent">paintEvent</a>( <a href="qpaintevent.html">TQPaintEvent</a> *e ) { if ( !e-><a href="qpaintevent.html#rect">rect</a>().intersects( cannonRect() ) ) return; - <a href="qrect.html">TQRect</a> cr = cannonRect(); - <a href="qpixmap.html">TQPixmap</a> pix( cr.<a href="qrect.html#size">size</a>() ); - pix.<a href="qpixmap.html#fill">fill</a>( this, cr.<a href="qrect.html#topLeft">topLeft</a>() ); - - <a href="qpainter.html">TQPainter</a> p( &pix ); - p.<a href="qpainter.html#setBrush">setBrush</a>( blue ); - p.<a href="qpainter.html#setPen">setPen</a>( NoPen ); - p.<a href="qpainter.html#translate">translate</a>( 0, pix.<a href="qpixmap.html#height">height</a>() - 1 ); - p.<a href="qpainter.html#drawPie">drawPie</a>( TQRect( -35,-35, 70, 70 ), 0, 90*16 ); - p.<a href="qpainter.html#rotate">rotate</a>( -ang ); - p.<a href="qpainter.html#drawRect">drawRect</a>( TQRect(33, -4, 15, 8) ); - p.<a href="qpainter.html#end">end</a>(); - - p.<a href="qpainter.html#begin">begin</a>( this ); - p.<a href="qpainter.html#drawPixmap">drawPixmap</a>( cr.<a href="qrect.html#topLeft">topLeft</a>(), pix ); + <a href="ntqrect.html">TQRect</a> cr = cannonRect(); + <a href="ntqpixmap.html">TQPixmap</a> pix( cr.<a href="ntqrect.html#size">size</a>() ); + pix.<a href="ntqpixmap.html#fill">fill</a>( this, cr.<a href="ntqrect.html#topLeft">topLeft</a>() ); + + <a href="ntqpainter.html">TQPainter</a> p( &pix ); + p.<a href="ntqpainter.html#setBrush">setBrush</a>( blue ); + p.<a href="ntqpainter.html#setPen">setPen</a>( NoPen ); + p.<a href="ntqpainter.html#translate">translate</a>( 0, pix.<a href="ntqpixmap.html#height">height</a>() - 1 ); + p.<a href="ntqpainter.html#drawPie">drawPie</a>( TQRect( -35,-35, 70, 70 ), 0, 90*16 ); + p.<a href="ntqpainter.html#rotate">rotate</a>( -ang ); + p.<a href="ntqpainter.html#drawRect">drawRect</a>( TQRect(33, -4, 15, 8) ); + p.<a href="ntqpainter.html#end">end</a>(); + + p.<a href="ntqpainter.html#begin">begin</a>( this ); + p.<a href="ntqpainter.html#drawPixmap">drawPixmap</a>( cr.<a href="ntqrect.html#topLeft">topLeft</a>(), pix ); } TQRect <a name="f51"></a>CannonField::cannonRect() const { - <a href="qrect.html">TQRect</a> r( 0, 0, 50, 50 ); - r.<a href="qrect.html#moveBottomLeft">moveBottomLeft</a>( <a href="qwidget.html#rect">rect</a>().bottomLeft() ); + <a href="ntqrect.html">TQRect</a> r( 0, 0, 50, 50 ); + r.<a href="ntqrect.html#moveBottomLeft">moveBottomLeft</a>( <a href="ntqwidget.html#rect">rect</a>().bottomLeft() ); return r; } -TQSizePolicy CannonField::<a href="qwidget.html#sizePolicy">sizePolicy</a>() const +TQSizePolicy CannonField::<a href="ntqwidget.html#sizePolicy">sizePolicy</a>() const { return TQSizePolicy( TQSizePolicy::Expanding, TQSizePolicy::Expanding ); } |