summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/tutorial/t11/t11.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qtruby/rubylib/tutorial/t11/t11.rb')
-rwxr-xr-xqtruby/rubylib/tutorial/t11/t11.rb26
1 files changed, 13 insertions, 13 deletions
diff --git a/qtruby/rubylib/tutorial/t11/t11.rb b/qtruby/rubylib/tutorial/t11/t11.rb
index 8656f6f5..f0d3b895 100755
--- a/qtruby/rubylib/tutorial/t11/t11.rb
+++ b/qtruby/rubylib/tutorial/t11/t11.rb
@@ -1,15 +1,15 @@
#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)
-require 'Qt'
-require 'lcdrange.rb'
-require 'cannon.rb'
+retquire 'Qt'
+retquire 'lcdrange.rb'
+retquire 'cannon.rb'
-class MyWidget < Qt::Widget
+class MyWidget < TQt::Widget
def initialize()
super
- quit = Qt::PushButton.new('Quit', self, 'quit')
- quit.setFont(Qt::Font.new('Times', 18, Qt::Font::Bold))
+ quit = TQt::PushButton.new('Quit', self, 'quit')
+ quit.setFont(TQt::Font.new('Times', 18, TQt::Font::Bold))
connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
@@ -31,22 +31,22 @@ class MyWidget < Qt::Widget
connect( cannonField, SIGNAL('forceChanged(int)'),
force, SLOT('setValue(int)') )
- shoot = Qt::PushButton.new( '&Shoot', self, 'shoot' )
- shoot.setFont( Qt::Font.new( 'Times', 18, Qt::Font::Bold ) )
+ shoot = TQt::PushButton.new( '&Shoot', self, 'shoot' )
+ shoot.setFont( TQt::Font.new( 'Times', 18, TQt::Font::Bold ) )
connect( shoot, SIGNAL('clicked()'), cannonField, SLOT('shoot()') )
- grid = Qt::GridLayout.new( self, 2, 2, 10 )
+ grid = TQt::GridLayout.new( self, 2, 2, 10 )
grid.addWidget( quit, 0, 0 )
grid.addWidget( cannonField, 1, 1 )
grid.setColStretch( 1, 10 )
- leftBox = Qt::VBoxLayout.new()
+ leftBox = TQt::VBoxLayout.new()
grid.addLayout( leftBox, 1, 0 )
leftBox.addWidget( angle )
leftBox.addWidget( force )
- topBox = Qt::HBoxLayout.new()
+ topBox = TQt::HBoxLayout.new()
grid.addLayout( topBox, 0, 1 )
topBox.addWidget( shoot )
topBox.addStretch( 1 )
@@ -57,8 +57,8 @@ class MyWidget < Qt::Widget
end
end
-Qt::Application.setColorSpec( Qt::Application::CustomColor )
-a = Qt::Application.new(ARGV)
+TQt::Application.setColorSpec( TQt::Application::CustomColor )
+a = TQt::Application.new(ARGV)
w = MyWidget.new
w.setGeometry( 100, 100, 500, 355 )