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.
tdebindings/tqtruby/rubylib/examples/tqt-examples/checklists/main.rb

16 lines
254 B

#!/usr/bin/env ruby
require 'TQt'
require 'checklists'
a = TQt::Application.new(ARGV)
checklists = CheckLists.new
checklists.resize(650, 350)
checklists.setCaption('TQtRuby Example - CheckLists')
a.setMainWidget(checklists)
checklists.show
a.exec()