xref: /freebsd/contrib/dialog/samples/checklist10 (revision a96ef4501919d7ac08e94e98dc34b0bdd744802b)
14c8945a0SNathan Whitehorn#! /bin/sh
2*a96ef450SBaptiste Daroussin# $Id: checklist10,v 1.10 2020/11/26 00:03:58 tom Exp $
34c8945a0SNathan Whitehorn# zero-width column
44c8945a0SNathan Whitehorn
54c8945a0SNathan Whitehorn. ./setup-vars
64c8945a0SNathan Whitehorn
74c8945a0SNathan Whitehorn. ./setup-tempfile
84c8945a0SNathan Whitehorn
94c8945a0SNathan Whitehorn$DIALOG \
104c8945a0SNathan Whitehorn	--backtitle "No such organization" \
114c8945a0SNathan Whitehorn	--title "CHECKLIST BOX" "$@" \
124c8945a0SNathan Whitehorn        --checklist "Hi, this is a checklist box. You can use this to \n\
134c8945a0SNathan Whitehornpresent a list of choices which can be turned on or \n\
144c8945a0SNathan Whitehornoff. If there are more items than can fit on the \n\
154c8945a0SNathan Whitehornscreen, the list will be scrolled. You can use the \n\
164c8945a0SNathan WhitehornUP/DOWN arrow keys, the first letter of the choice as a \n\
174c8945a0SNathan Whitehornhot key, or the number keys 1-9 to choose an option. \n\
184c8945a0SNathan WhitehornPress SPACE to toggle an option on/off. \n\n\
194c8945a0SNathan Whitehorn  Which of the following are fruits?" 20 61 5 \
204c8945a0SNathan Whitehorn	Dialog		"" on \
214c8945a0SNathan Whitehorn	Readline	"" off \
224c8945a0SNathan Whitehorn	Gnome		"" off \
234c8945a0SNathan Whitehorn	Kde		"" off \
244c8945a0SNathan Whitehorn	Editor		"" off \
254c8945a0SNathan Whitehorn	Noninteractive	"" on \
264c8945a0SNathan Whitehorn        2> $tempfile
274c8945a0SNathan Whitehorn
28*a96ef450SBaptiste Daroussinreturncode=$?
294c8945a0SNathan Whitehorn
304c8945a0SNathan Whitehorn. ./report-tempfile
31