Codebase list ruby-fxruby / 02c14550-2050-494d-bc12-813e7e8e09b7/main examples / hello.rb
02c14550-2050-494d-bc12-813e7e8e09b7/main

Tree @02c14550-2050-494d-bc12-813e7e8e09b7/main (Download .tar.gz)

hello.rb @02c14550-2050-494d-bc12-813e7e8e09b7/mainraw · history · blame

#!/usr/bin/env ruby

require 'fox16'

include Fox

application = FXApp.new("Hello", "FoxTest")
main = FXMainWindow.new(application, "Hello", nil, nil, DECOR_ALL)
FXButton.new(main, "&Hello, World!", nil, application, FXApp::ID_QUIT)
application.create()
main.show(PLACEMENT_SCREEN)
application.run()