Sha256: 2e2455357e17d3b0597f925dea06bbb0f17e61839ff1dce935a1154ce1386d6b
Contents?: true
Size: 617 Bytes
Versions: 35
Compression:
Stored size: 617 Bytes
Contents
#!/usr/bin/env ruby =begin button2.rb - Ruby/GTK2 sample script. Copyright (c) 2002-2020 Ruby-GNOME2 Project Team This program is licenced under the same licence as Ruby-GNOME. =end require "gtk3" window = Gtk::Window.new("Gtk::Button sample") button1 = Gtk::Button.new(:mnemonic => "_HELLO") button2 = Gtk::Button.new(:label => "_HELLO") button3 = Gtk::Button.new(:stock_id => Gtk::Stock::QUIT) button3.signal_connect("clicked"){ Gtk.main_quit } box = Gtk::Box.new(:vertical) box.add(button1) box.add(button2) box.add(button3) window.add(box) window.set_default_size(100, 100) window.show_all Gtk.main
Version data entries
35 entries across 35 versions & 1 rubygems