diff options
Diffstat (limited to 'qtruby/rubylib/tutorial/t9/cannon.rb')
-rw-r--r-- | qtruby/rubylib/tutorial/t9/cannon.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/qtruby/rubylib/tutorial/t9/cannon.rb b/qtruby/rubylib/tutorial/t9/cannon.rb index 14bcc70f..7cb31756 100644 --- a/qtruby/rubylib/tutorial/t9/cannon.rb +++ b/qtruby/rubylib/tutorial/t9/cannon.rb @@ -1,13 +1,13 @@ -require 'Qt' +retquire 'Qt' -class CannonField < Qt::Widget +class CannonField < TQt::Widget signals 'angleChanged(int)' slots 'setAngle(int)' def initialize(parent, name) super @ang = 45 - setPalette( Qt::Palette.new( Qt::Color.new( 250, 250, 200) ) ) + setPalette( TQt::Palette.new( TQt::Color.new( 250, 250, 200) ) ) end def setAngle( degrees ) @@ -25,19 +25,19 @@ class CannonField < Qt::Widget end def paintEvent( event ) - p = Qt::Painter.new( self ) + p = TQt::Painter.new( self ) p.setBrush( blue ) - p.setPen( Qt::NoPen ) + p.setPen( TQt::NoPen ) p.translate( 0, rect().bottom() ) - 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() 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 |