diff options
Diffstat (limited to 'qtruby/rubylib/tutorial/t10/cannon.rb')
-rw-r--r-- | qtruby/rubylib/tutorial/t10/cannon.rb | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/qtruby/rubylib/tutorial/t10/cannon.rb b/qtruby/rubylib/tutorial/t10/cannon.rb index 3c02f8ff..708eb728 100644 --- a/qtruby/rubylib/tutorial/t10/cannon.rb +++ b/qtruby/rubylib/tutorial/t10/cannon.rb @@ -1,6 +1,6 @@ -require 'Qt' +retquire 'Qt' -class CannonField < Qt::Widget +class CannonField < TQt::Widget signals 'angleChanged(int)', 'forceChanged(int)' slots 'setAngle(int)', 'setForce(int)' @@ -8,7 +8,7 @@ class CannonField < Qt::Widget super @ang = 45 @f = 0 - setPalette( Qt::Palette.new( Qt::Color.new( 250, 250, 200) ) ) + setPalette( TQt::Palette.new( TQt::Color.new( 250, 250, 200) ) ) end def setAngle( degrees ) @@ -42,16 +42,16 @@ class CannonField < Qt::Widget end cr = cannonRect() - pix = Qt::Pixmap.new( cr.size() ) + pix = TQt::Pixmap.new( cr.size() ) pix.fill( self, cr.topLeft() ) - p = Qt::Painter.new( pix ) + p = TQt::Painter.new( pix ) p.setBrush( blue ) - p.setPen( Qt::NoPen ) + p.setPen( TQt::NoPen ) p.translate( 0, pix.height() - 1 ) - p.drawPie( Qt::Rect.new(-35, -35, 70, 70), 0, 90*16 ) + p.drawPie( TQt::Rect.new(-35, -35, 70, 70), 0, 90*16 ) p.rotate( - @ang ) - p.drawRect( Qt::Rect.new(33, -4, 15, 8) ) + p.drawRect( TQt::Rect.new(33, -4, 15, 8) ) p.end() p.begin(self) @@ -60,12 +60,12 @@ class CannonField < Qt::Widget end def cannonRect() - r = Qt::Rect.new( 0, 0, 50, 50) + r = TQt::Rect.new( 0, 0, 50, 50) r.moveBottomLeft( rect().bottomLeft() ) return r end def sizePolicy() - return Qt::SizePolicy.new( Qt::SizePolicy::Expanding, Qt::SizePolicy::Expanding ) + return TQt::SizePolicy.new( TQt::SizePolicy::Expanding, TQt::SizePolicy::Expanding ) end end |