#!/usr/bin/env ruby require 'TQt' require 'checklists' a = TQt::Application.new(ARGV) checklists = CheckLists.new checklists.resize(650, 350) checklists.setCaption('TQtRuby Example - CheckLists') a.setMainWidget(checklists) checklists.show a.exec()