summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/tutorials/p1/p1.rb
blob: f06c6b3ee487ef6b9d98b2e6fcd8cf3bb48cc5e6 (plain)
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()