1 2 3 4 5 6 7 8 9 10 11 12 13
require 'Qt' a = TQt::Application.new( ARGV ) hello = TQt::PushButton.new( "Hello world!", nil ) hello.resize( 100, 30 ) TQt::Object::connect( hello, SIGNAL('clicked()'), a, SLOT('quit()') ) a.setMainWidget( hello ) hello.show() a.exec()