Sha256: ffdfcaef5d3fccfc0c39155fcec7a5e019483b510642b84902b8f7f5c8f90e79

Contents?: true

Size: 580 Bytes

Versions: 22

Compression:

Stored size: 580 Bytes

Contents

#!/usr/bin/env ruby
# hello_glade2.rb - sample for Ruby/Libglade2
#
# Copyright (C) 2004-2008 Masao Mutoh
# This file is distributed under the same license as Ruby-GetText-Package.

require 'rubygems'
require 'libglade2'

class HelloLibglade2
  def initialize(path, appname)
    @glade = GladeXML.new(path, nil, appname, "locale") {|handler| method(handler)}
  end
  def on_quit
    puts "Hello world"
    Gtk.main_quit
  end
end

if __FILE__ == $0
  APPNAME = "hello_glade2"
  Gnome::Program.new(APPNAME, "1.0")
  HelloLibglade2.new("hello_glade2.glade", APPNAME)
  Gtk.main
end

Version data entries

22 entries across 22 versions & 5 rubygems

Version Path
experteer-gettext-2.0.4.1 samples/hello_glade2.rb
experteer-gettext-2.0.4.2 samples/hello_glade2.rb
experteer-gettext-2.0.4 samples/hello_glade2.rb
grosser-gettext-2.0.0 samples/hello_glade2.rb
gettext-2.2.1 samples/hello_glade2.rb
gettext-2.2.0 samples/hello_glade2.rb
ofm_gettext-2.0.1 samples/hello_glade2.rb
ofm_gettext-2.0.0 samples/hello_glade2.rb
fair-gettext-2.0.7 samples/hello_glade2.rb
fair-gettext-2.0.6 samples/hello_glade2.rb
fair-gettext-2.0.5 samples/hello_glade2.rb
fair-gettext-2.0.4 samples/hello_glade2.rb
fair-gettext-2.0.3 samples/hello_glade2.rb
fair-gettext-2.0.2 samples/hello_glade2.rb
fair-gettext-2.0.1 samples/hello_glade2.rb
fair-gettext-2.0.0 samples/hello_glade2.rb
gettext-2.1.0 samples/hello_glade2.rb
gettext-2.0.0 samples/hello_glade2.rb
gettext-2.0.2 samples/hello_glade2.rb
gettext-2.0.1 samples/hello_glade2.rb