#!/usr/bin/env ruby
# widget --
# This script demonstrates the various widgets provided by Tk,
# along with many of the features of the Tk toolkit. This file
# only contains code to generate the main window for the
# application, which invokes individual demonstrations. The
# code for the actual demonstrations is contained in separate
# ".rb" files is this directory, which are sourced by this script
# as needed.
require 'tk'
# require 'tkafter'
### $DEBUG=1 ##########
$RubyTk_WidgetDemo = true
#----------------------------------------------------------------
# The code below create the main window, consisting o
|