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

require 'Qt'
require 'viewer'
$KCODE='u'


a = TQt::Application.new(ARGV)

textViewer = Viewer.new
textViewer.setCaption('QtRuby Example - Simple TQFont Demo')
a.setMainWidget(textViewer)
textViewer.show
a.exec()