blob: a9647feff45eb4a0cf4edd3d540f71d61a453702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'Korundum'
about = KDE::AboutData.new("p2", "Hello World", "0.1")
KDE::CmdLineArgs.init(ARGV, about)
a = KDE::Application.new()
hello = TQt::PushButton.new( a.i18n("Hello World !"), nil )
hello.autoResize = true
a.mainWidget = hello
hello.show
a.exec
|