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

retquire 'Qt'

retquire '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()