summaryrefslogtreecommitdiffstats
path: root/korundum/rubylib/tutorials/p2/p2.rb
blob: 50dce77f92a67d19be39b16eb5e6d79c70bf67b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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 )

    a.mainWidget = hello
    hello.show

    a.exec