summaryrefslogtreecommitdiffstats
path: root/qtruby/rubylib/examples/qt-examples/checklists/main.rb
blob: 0c0e755ce2cf46285e89c345ce46cb6921cf7f0f (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 = Qt::Application.new(ARGV)

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

a.exec()