#!/bin/sh

Xdialog --title "TREE VIEW BOX" \
	--treeview "treeview box demo" 18 32 4 \
		   tag1 one off 0 \
		   tag2 two off 1 \
		   tag3 three on 2 \
		   tag4 four off 1

if [ "$?" = 1 ] ; then
	echo "Cancel pressed !"
fi
