This repository has been archived on 2021-09-15 . You can view files and clone it, but cannot push or open issues or pull requests.
34 lines
1.0 KiB
Ruby
34 lines
1.0 KiB
Ruby
#!/usr/bin/env ruby
|
|||
=begin
|
|||
label.rb - Ruby/GTK2 sample script.
|
|||
|
|||
Copyright (c) 2002-2006 Ruby-GNOME2 Project Team
|
|||
This program is licenced under the same licence as Ruby-GNOME2.
|
|||
|
|||
$Id: label.rb,v 1.8 2006/06/17 13:18:12 mutoh Exp $
|
|||
=end
|
|||
|
|||
require 'gtk2'
|
|||
|
|||
win = Gtk::Window.new("Gtk::Label sample")
|
|||
win.signal_connect("destroy"){Gtk.main_quit}
|
|||
label1 = Gtk::Label.new("_Not Use Mnemonic")
|
|||
label1.selectable = true
|
|||
label2 = Gtk::Label.new("_Use Mnemonic", true)
|
|||
label3 = Gtk::Label.new.set_markup(%Q[<markup><span size="xx-large" weight="bold" foreground="blue"><u>Ruby-GNOME2</u></span> is <span foreground="red" size="x-large"><i>cool</i></span>!</markup>], true)
|
|||
label4 = Gtk::Label.new.set_markup(%Q[<span foreground="#999900">_Not Use Mnemonic</span>])
|
|||
label5 = Gtk::Label.new.set_markup(%Q[<span foreground="#009999">_Use Mnemonic</span>], true)
|
|||
|
|||
box = Gtk::VBox.new
|
|||
box.add(label1)
|
|||
box.add(label2)
|
|||
box.add(label3)
|
|||
box.add(label4)
|
|||
box.add(label5)
|
|||
win.add(box).show_all
|
|||
|
|||
# This can be called after realized only.
|
|||
label1.select_region(3, 8)
|
|||
|
|||
Gtk.main
|