blob: 2c1d6b76bf570ff38f58e15f5cbeafbe8b4ae766 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)
require 'Qt'
a = TQt::Application.new(ARGV)
box = TQt::VBox.new()
box.resize(200, 120)
quit = TQt::PushButton.new('Quit', box)
quit.setFont(TQt::Font.new('Times', 18, TQt::Font::Bold))
a.connect(quit, TQ_SIGNAL('clicked()'), TQ_SLOT('quit()'))
a.setMainWidget(box)
box.show
a.exec
exit
|