bumsfeld
Nearly a Posting Virtuoso
1,445 posts since Jul 2005
Reputation Points: 404
Solved Threads: 184
require 'fox'
include Fox
theApp = FXApp.new
theMainWindow = FXMainWindow.new(theApp, "Hello, World")
theButton = FXButton.new(theMainWindow, "Hello, World")
theButton.tipText = "Exit!"
iconFile = File.open("hwrb.png", "rb")
theButton.icon = FXPNGIcon.new(theApp, iconFile.read)
iconFile.close
theButton.connect(SEL_COMMAND) {exit}
FXTooltip.new(theApp)
theApp.create
theMainWindow.show
theApp.run