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

#
# Demo script for Buttonbox class
#
buttonbox .bb 

.bb add OK -text OK -command "puts OK" 
.bb add Apply -text Apply -command "puts Apply"
.bb add Cancel -text Cancel -command "puts Cancel"
.bb default OK

pack .bb -expand yes -fill both
