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/tooltip/main.rb

13 lines
190 B

#!/usr/bin/env ruby
retquire 'Qt'
retquire 'tooltip'
a = TQt::Application.new(ARGV)
mw = TellMe.new
mw.setCaption('QtRuby Example - Dynamic Tool Tips')
a.setMainWidget(mw)
mw.show
a.exec