summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/checklists/main.rb
blob: 364f5cb7e2f8c186cc15cfdbf35deb0485290f0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env ruby

require 'Qt'

require 'checklists'

a = TQt::Application.new(ARGV)

checklists = CheckLists.new
checklists.resize(650, 350)
checklists.setCaption('QtRuby Example - CheckLists')
a.setMainWidget(checklists)
checklists.show

a.exec()