Sha256: 8dd2b97a8010f884a69be8e182295f7b95e1e1f99cdae3d3843fe276d2f08cc9

Contents?: true

Size: 525 Bytes

Versions: 38

Compression:

Stored size: 525 Bytes

Contents

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

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

  $Id: window.rb,v 1.9 2006/10/21 16:58:00 mutoh Exp $
=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

38 entries across 38 versions & 1 rubygems

Version Path
gtk3-2.2.5-x64-mingw32 sample/misc/window.rb
gtk3-2.2.5-x86-mingw32 sample/misc/window.rb
gtk3-2.2.5 sample/misc/window.rb
gtk3-2.2.4-x64-mingw32 sample/misc/window.rb
gtk3-2.2.4-x86-mingw32 sample/misc/window.rb
gtk3-2.2.4 sample/misc/window.rb
gtk3-2.2.3-x86-mingw32 sample/misc/window.rb
gtk3-2.2.3 sample/misc/window.rb
gtk3-2.2.2-x86-mingw32 sample/misc/window.rb
gtk3-2.2.2 sample/misc/window.rb
gtk3-2.2.1-x86-mingw32 sample/misc/window.rb
gtk3-2.2.1 sample/misc/window.rb
gtk3-2.2.0-x86-mingw32 sample/misc/window.rb
gtk3-2.2.0 sample/misc/window.rb
gtk3-2.1.0-x86-mingw32 sample/misc/window.rb
gtk3-2.1.0 sample/misc/window.rb
gtk3-2.0.3-x86-mingw32 sample/misc/window.rb
gtk3-2.0.3 sample/misc/window.rb
gtk3-2.0.2-x86-mingw32 sample/misc/window.rb
gtk3-2.0.2 sample/misc/window.rb