#!/bin/sh
# \
	exec itkwish -f "$0" ${1+"$@"} 

#
# Demo script for the Labeledwidget class
#
labeledwidget .lw -labeltext "Canvas Widget" -labelpos s 
pack .lw -fill both -expand yes -padx 10 -pady 10

set cw [canvas [.lw childsite].c -relief raised -width 50 \
	-height 50 -borderwidth 2]
pack $cw -padx 10 -pady 10 -expand yes -fill both

