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/qtruby/rubylib/examples/qt-examples/fonts/simple-qfont-demo/main.rb

15 lines
234 B

#!/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()