Sha256: 4d9eb7011a2c5fa815ccb8a23fa03570172ea66354a5a5b8616cc5904e7fa879

Contents?: true

Size: 469 Bytes

Versions: 154

Compression:

Stored size: 469 Bytes

Contents

#!/usr/bin/env ruby
=begin
  window.rb - Gtk::Window sample.

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

require "gtk3"

window = Gtk::Window.new("Gtk::Window sample")
window.signal_connect("destroy"){Gtk.main_quit}

button = Gtk::Button.new(:label => "Hello World")
button.signal_connect("clicked") do
  puts "hello world"
  Gtk.main_quit
end
window.add(button)
window.show_all

Gtk.main

Version data entries

154 entries across 146 versions & 2 rubygems

Version Path
gtk3-3.1.9-x64-mingw32 sample/misc/window.rb
gtk3-3.1.9-x86-mingw32 sample/misc/window.rb
gtk3-3.1.9 sample/misc/window.rb
gtk3-3.1.8-x64-mingw32 sample/misc/window.rb
gtk3-3.1.8-x86-mingw32 sample/misc/window.rb
gtk3-3.1.8 sample/misc/window.rb
gtk3-3.1.7-x64-mingw32 sample/misc/window.rb
gtk3-3.1.7-x86-mingw32 sample/misc/window.rb
gtk3-3.1.7 sample/misc/window.rb
gtk3-3.1.6-x64-mingw32 sample/misc/window.rb
gtk3-3.1.6-x86-mingw32 sample/misc/window.rb
gtk3-3.1.6 sample/misc/window.rb
gtk3-3.1.5-x64-mingw32 sample/misc/window.rb
gtk3-3.1.5-x86-mingw32 sample/misc/window.rb
gtk3-3.1.4-x64-mingw32 sample/misc/window.rb
gtk3-3.1.4-x86-mingw32 sample/misc/window.rb
gtk3-3.1.4 sample/misc/window.rb
gtk3-3.1.3-x64-mingw32 sample/misc/window.rb
gtk3-3.1.3-x86-mingw32 sample/misc/window.rb
gtk3-3.1.3 sample/misc/window.rb