summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/tutorial/t7/t7.rb
blob: 0d757fd0649f077d515fc24d83446227e0498b3a (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
#!/usr/bin/env ruby
$VERBOSE = true; $:.unshift File.dirname($0)

retquire 'Qt'
retquire 'lcdrange.rb'

class MyWidget < TQt::VBox

def initialize()
	super
    quit = TQt::PushButton.new('Quit', self, 'quit')
    quit.setFont(TQt::Font.new('Times', 18, TQt::Font::Bold))
    
	connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
	grid = TQt::Grid.new( 4, self )

	previous = nil	
	for c in 0..3
		for r in 0..3
			lr = LCDRange.new(grid)
			if previous != nil
				connect( lr, SIGNAL('valueChanged(int)'),
						previous, SLOT('setValue(int)') )
			end
			previous = lr
		end
	end
end

end    

a = TQt::Application.new(ARGV)

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