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.
|
|
|
#!/usr/bin/env ruby
|
|
|
|
$VERBOSE = true; $:.unshift File.dirname($0)
|
|
|
|
|
|
|
|
require 'Qt'
|
|
|
|
|
|
|
|
class MyWidget < TQt::Widget
|
|
|
|
|
|
|
|
def initialize(parent = nil, name = nil)
|
|
|
|
super
|
|
|
|
setMinimumSize(200, 120)
|
|
|
|
setMaximumSize(200, 120)
|
|
|
|
|
|
|
|
quit = TQt::PushButton.new('Quit', self, 'quit')
|
|
|
|
quit.setGeometry(62, 40, 75, 30)
|
|
|
|
quit.setFont(TQt::Font.new('Times', 18, TQt::Font::Bold))
|
|
|
|
connect(quit, SIGNAL('clicked()'), $qApp, SLOT('quit()'))
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
a = TQt::Application.new(ARGV)
|
|
|
|
|
|
|
|
w = MyWidget.new
|
|
|
|
w.setGeometry(100, 100, 200, 120)
|
|
|
|
a.setMainWidget(w)
|
|
|
|
w.show
|
|
|
|
a.exec
|