xref: /freebsd/contrib/dialog/samples/checklist-utf8 (revision ea43014585ec4131d1d7a7f027110f12781c99cc)
1#! /bin/sh
2# $Id: checklist-utf8,v 1.12 2010/01/13 10:20:03 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8. ./setup-utf8
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	"APPLE"	 "It's an APPLE." off \
21	"DOG"	 "No, that's not my DOG." ON \
22	"ORANGE"	 "Yeah, that's JUICY." off \
23	"CHICKEN" "Normally not a PET." off \
24	"CAT"	 "No, never put a DOG and a CAT together!" oN \
25	"FISH"	 "Cats like FISH." On \
26	"LEMON"	 "You KNOW how it TASTES." on 2> $tempfile
27
28retval=$?
29
30. ./report-tempfile
31