1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#!/usr/bin/env ruby
=begin
misc_button.rb - Ruby/GTK sample script.
Copyright (c) 2004-2006 Ruby-GNOME2 Project Team
This program is licenced under the same licence as Ruby-GNOME2.
$Id: misc_button.rb,v 1.2 2006/06/17 13:18:12 mutoh Exp $
=end
require 'gtk2'
if str = Gtk.check_version(2, 4, 0)
puts "This sample requires GTK+ 2.4.0 or later"
puts str
exit
end
box = Gtk::VBox.new
#Gtk::ColorButton
colorbutton = Gtk::ColorButton.new
colorbutton.signal_connect("color-set") do
p colorbutton.color.to_a
end
box.add(colorbutton)
#Gtk::FontButton
fontbutton = Gtk::FontButton.new
fontbutton.signal_connect("font-set") do
p fontbutton.font_name
end
box.add(fontbutton)
#Gtk::FileChooserButton(GTK+-2.6.0 or later)
if str = Gtk.check_version(2, 6, 0)
puts "Gtk::FileChooserButton requires GTK+ 2.6.0 or later"
else
filebutton = Gtk::FileChooserButton.new("Gtk::FileChooserButton",
Gtk::FileChooser::ACTION_OPEN)
filebutton.filename = GLib.home_dir
filebutton.signal_connect("current-folder-changed") do |w, e|
p filebutton.filename
end
box.add(filebutton)
end
#Quit
quitbutton = Gtk::Button.new("Quit")
quitbutton.signal_connect("clicked") do
Gtk.main_quit
end
box.add(quitbutton)
Gtk::Window.new.add(box).set_default_size(200, 100).show_all
Gtk.main
|