Sha256: dde193291e6cdf38e504222a7824808965e522bd00508aac46ea58b721e3f728
Contents?: true
Size: 656 Bytes
Versions: 86
Compression:
Stored size: 656 Bytes
Contents
# Copyright (c) 2015 Ruby-GNOME2 Project Team # This program is licenced under the same licence as Ruby-GNOME2. # =begin = Stack GtkStack is a container that shows a single child at a time, with nice transitions when the visible child changes. GtkStackSwitcher adds buttons to control which child is visible. =end class StackDemo def initialize(main_window) builder = Gtk::Builder.new(:resource => "/stack/stack.ui") builder.connect_signals {} @window = builder["window1"] @window.screen = main_window.screen end def run if !@window.visible? @window.show_all else @window.destroy end @window end end
Version data entries
86 entries across 86 versions & 1 rubygems