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