Sha256: 48fa901b58e43495451a69829e7ce7b0f879ae8a9793b6f547a07d08017811e3

Contents?: true

Size: 611 Bytes

Versions: 151

Compression:

Stored size: 611 Bytes

Contents

#!/usr/bin/env ruby
=begin
  helloworld.rb - Ruby/GTK2 first sample script.

  Copyright (c) 2002-2015 Ruby-GNOME2 Project Team
  This program is licenced under the same licence as Ruby-GNOME2.
=end

require "gtk3"

button = Gtk::Button.new(:label => "Hello World")
button.signal_connect("clicked") {
  puts "Hello World"
}

window = Gtk::Window.new("Hello World sample")
window.signal_connect("delete_event") {
  puts "delete event occurred"
  false
}

window.signal_connect("destroy") {
  puts "destroy event occurred"
  Gtk.main_quit
}

window.border_width = 10
window.add(button)
window.show_all

Gtk.main

Version data entries

151 entries across 143 versions & 2 rubygems

Version Path
gtk3-4.2.4 sample/misc/helloworld.rb
gtk3-4.2.3 sample/misc/helloworld.rb
gtk3-4.2.2 sample/misc/helloworld.rb
gtk3-4.2.1 sample/misc/helloworld.rb
gtk3-4.2.0 sample/misc/helloworld.rb
gtk3-4.1.9 sample/misc/helloworld.rb
gtk3-4.1.8 sample/misc/helloworld.rb
gtk3-4.1.7 sample/misc/helloworld.rb
gtk3-4.1.6 sample/misc/helloworld.rb
gtk3-4.1.5 sample/misc/helloworld.rb
gtk3-4.1.4 sample/misc/helloworld.rb
gtk3-4.1.3 sample/misc/helloworld.rb
gtk3-4.1.2 sample/misc/helloworld.rb
gtk3-4.1.1 sample/misc/helloworld.rb
gtk3-4.1.0 sample/misc/helloworld.rb
gtk3-4.0.9 sample/misc/helloworld.rb
gtk3-4.0.8 sample/misc/helloworld.rb
gtk3-4.0.7 sample/misc/helloworld.rb
gtk3-4.0.6 sample/misc/helloworld.rb
gtk3-4.0.5 sample/misc/helloworld.rb