summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/tutorial/t6/t6.rb
blob: d89203d0b1212fd1f62435b144b2071a8246d630 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)

require 'Qt'

class LCDRange < Qt::VBox

def initialize(grid)
   super
	lcd = Qt::LCDNumber.new(2, self, 'lcd')

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

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

end

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()'))
	grid = Qt::Grid.new( 4, self )
	
	for c in 0..3
		for r in 0..3
			LCDRange.new(grid)
		end
	end
end

end    

a = Qt::Application.new(ARGV)

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