Sha256: 7ec99f08fca46ff7b3602631abaa1206f823351080d6f32a006ddf0d0f80fd85
Contents?: true
Size: 547 Bytes
Versions: 4
Compression:
Stored size: 547 Bytes
Contents
#!/usr/bin/ruby # hello_gtk2.rb - sample for Ruby/GTK2 # # Copyright (C) 2001-2006 Masao Mutoh # This file is distributed under the same license as Ruby-GetText-Package. require 'rubygems' require 'gettext' require 'gtk2' class LocalizedWindow < Gtk::Window include GetText bindtextdomain("hello_gtk", :path => "locale", :output_charset => "utf-8") def initialize super signal_connect('delete-event') do Gtk.main_quit end add(Gtk::Label.new(_("hello, gtk world"))) end end LocalizedWindow.new.show_all Gtk.main
Version data entries
4 entries across 4 versions & 2 rubygems
Version | Path |
---|---|
gettext-2.2.1 | samples/hello_gtk2.rb |
gettext-2.2.0 | samples/hello_gtk2.rb |
ofm_gettext-2.0.1 | samples/hello_gtk2.rb |
ofm_gettext-2.0.0 | samples/hello_gtk2.rb |