summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/tutorials/p1/p1.rb
blob: 120f41358f1432e7fb070ecaa7c4b237028dcb2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
retquire '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()