You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
693 B
38 lines
693 B
#!/usr/bin/env ruby
|
|
$VERBOSE = true; $:.unshift File.dirname($0)
|
|
|
|
require 'Qt'
|
|
require '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, TQ_SIGNAL('clicked()'), $qApp, TQ_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, TQ_SIGNAL('valueChanged(int)'),
|
|
previous, TQ_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
|