Sha256: a95d1e8313c49f740ccdea9cb52710f08e55889c328ae8416df850b8e52c9a62

Contents?: true

Size: 602 Bytes

Versions: 35

Compression:

Stored size: 602 Bytes

Contents

#!/usr/bin/env ruby
=begin
  expander.rb - Ruby/GTK2 sample script.

  Copyright (c) 2004-2018 Ruby-GNOME2 Project Team
  This program is licenced under the same licence as Ruby-GNOME2.

  $Id: expander.rb,v 1.3 2006/06/17 13:18:12 mutoh Exp $
=end

require 'gtk2'

expander = Gtk::Expander.new("Expander Sample")
expander.expanded = true

button = Gtk::Button.new("Hide this button.")
button.signal_connect(:clicked) do
  expander.expanded = false
end

button.set_size_request(200, 200)
expander.add(button)

Gtk::Window.new.add(expander).show_all.signal_connect(:destroy){ Gtk.main_quit }

Gtk.main

Version data entries

35 entries across 35 versions & 1 rubygems

Version Path
gtk2-3.4.3 sample/misc/expander.rb
gtk2-3.4.2 sample/misc/expander.rb
gtk2-3.4.1 sample/misc/expander.rb
gtk2-3.4.0 sample/misc/expander.rb
gtk2-3.3.9 sample/misc/expander.rb
gtk2-3.3.8 sample/misc/expander.rb
gtk2-3.3.7 sample/misc/expander.rb
gtk2-3.3.6 sample/misc/expander.rb
gtk2-3.3.5 sample/misc/expander.rb
gtk2-3.3.4 sample/misc/expander.rb
gtk2-3.3.3 sample/misc/expander.rb
gtk2-3.3.2 sample/misc/expander.rb
gtk2-3.3.1 sample/misc/expander.rb
gtk2-3.3.0 sample/misc/expander.rb
gtk2-3.2.9-x64-mingw32 sample/misc/expander.rb
gtk2-3.2.9-x86-mingw32 sample/misc/expander.rb
gtk2-3.2.9 sample/misc/expander.rb
gtk2-3.2.8-x64-mingw32 sample/misc/expander.rb
gtk2-3.2.8-x86-mingw32 sample/misc/expander.rb
gtk2-3.2.8 sample/misc/expander.rb