Sha256: de8c34511cc16506dab65573ec0483484eb997d7932290f20e81941464c0ff2a

Contents?: true

Size: 627 Bytes

Versions: 38

Compression:

Stored size: 627 Bytes

Contents

#!/usr/bin/env ruby
=begin
  entry.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: entry.rb,v 1.9 2006/06/17 13:18:12 mutoh Exp $
=end

require 'gtk3'

window = Gtk::Window.new("entry")
window.border_width = 0

box1 = Gtk::Box.new(:vertical, 10)
window.add(box1)

entry = Gtk::Entry.new

box1.add(entry)
box1.add(Gtk::Separator.new(:horizontal))

button = Gtk::Button.new(:label => "close")
button.signal_connect("clicked") do
  Gtk.main_quit
end
box1.add(button)

window.show_all

entry.text = "hello world"

Gtk.main

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
gtk3-2.2.5-x64-mingw32 sample/misc/entry.rb
gtk3-2.2.5-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.5 sample/misc/entry.rb
gtk3-2.2.4-x64-mingw32 sample/misc/entry.rb
gtk3-2.2.4-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.4 sample/misc/entry.rb
gtk3-2.2.3-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.3 sample/misc/entry.rb
gtk3-2.2.2-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.2 sample/misc/entry.rb
gtk3-2.2.1-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.1 sample/misc/entry.rb
gtk3-2.2.0-x86-mingw32 sample/misc/entry.rb
gtk3-2.2.0 sample/misc/entry.rb
gtk3-2.1.0-x86-mingw32 sample/misc/entry.rb
gtk3-2.1.0 sample/misc/entry.rb
gtk3-2.0.3-x86-mingw32 sample/misc/entry.rb
gtk3-2.0.3 sample/misc/entry.rb
gtk3-2.0.2-x86-mingw32 sample/misc/entry.rb
gtk3-2.0.2 sample/misc/entry.rb