summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/tutorial/t5/t5.rb
blob: 6eb7f8085aefc5a09447be749d20530c77fdb40b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)

require 'Qt'

class MyWidget < Qt::VBox

def initialize()
   super
    quit = Qt::PushButton.new('Quit', self, 'quit')
    quit.setFont(Qt::Font.new('Times', 18, Qt::Font::Bold))
    
	connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
    
	lcd = Qt::LCDNumber.new(2, self, 'lcd')

    slider = Qt::Slider.new(Horizontal, self, 'slider')
    slider.setRange(0, 99)
    slider.setValue(0)

    connect(slider, SIGNAL('valueChanged(int)'), lcd, SLOT('display(int)'))
end

end

a = Qt::Application.new(ARGV)

w = MyWidget.new
a.setMainWidget(w)
w.show
a.exec