blob: a6d3447fdb48994f475a29a46b2ac61d47fe26bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env ruby
require 'Qt'
require 'hello'
a = Qt::Application.new(ARGV)
s = ''
s = ARGV[0..ARGV.size-1].join(' ') if ARGV.length
if (s.empty?)
s = 'Hello, World'
end
h = Hello.new(s)
h.setCaption('QtRuby says hello')
h.connect(h, SIGNAL('clicked()'), a, SLOT('quit()'))
h.setFont(Qt::Font.new('times', 32, Qt::Font.Bold)) # default font
h.setBackgroundColor(Qt::white) # default bg color
a.setMainWidget(h)
h.show
a.exec
|