xref: /freebsd/contrib/dialog/samples/checklist-8bit (revision 1a13f2e6b444dd8048aebd2ac1f0b8fae9e3088f)
1#! /bin/sh
2# $Id: checklist-8bit,v 1.8 2010/01/13 10:20:03 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8. ./testdata-8bit
9
10$DIALOG --backtitle "No Such Organization" \
11	--title "CHECKLIST BOX" "$@" \
12        --checklist "Hi, this is a checklist box. You can use this to \n\
13present a list of choices which can be turned on or \n\
14off. If there are more items than can fit on the \n\
15screen, the list will be scrolled. You can use the \n\
16UP/DOWN arrow keys, the first letter of the choice as a \n\
17hot key, or the number keys 1-9 to choose an option. \n\
18Press SPACE to toggle an option on/off. \n\n\
19  Which of the following are fruits?" 20 61 5 \
20        "`./rotated-data 0 $SAMPLE`"  "It's an `./rotated-data 0 $SAMPLE`." off \
21        "`./rotated-data 1 $SAMPLE`"    "No, that's not my `./rotated-data 1 $SAMPLE`." ON \
22        "`./rotated-data 2 $SAMPLE`" "Yeah, that's `./rotated-data 2 $SAMPLE`." off \
23        "`./rotated-data 3 $SAMPLE`"    "Normally not a `./rotated-data 3 $SAMPLE`." off \
24        "`./rotated-data 4 $SAMPLE`"    "No, never put a `./rotated-data 4 $SAMPLE` there!" oN \
25        "`./rotated-data 5 $SAMPLE`"   "Cats like `./rotated-data 5 $SAMPLE`." On \
26        "`./rotated-data 6 $SAMPLE`"  "You `./rotated-data 6 $SAMPLE` how it is." on 2> $tempfile
27
28retval=$?
29
30. ./report-tempfile
31