xref: /freebsd/contrib/dialog/samples/checklist11 (revision e67e85659c0de33e617e5fbf1028c6e8b49eee53)
1#! /bin/sh
2# $Id: checklist11,v 1.2 2020/11/26 00:03:58 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8$DIALOG --backtitle "No Such Organization" \
9	--title "CHECKLIST BOX" "$@" \
10        --checklist "Hi, this is a checklist box. You can use this to \n\
11present a list of choices which can be turned on or \n\
12off. If there are more items than can fit on the \n\
13screen, the list will be scrolled. You can use the \n\
14UP/DOWN arrow keys, the first letter of the choice as a \n\
15hot key, or the number keys 1-9 to choose an option. \n\
16Press SPACE to toggle an option on/off. \n\n\
17  Which of the following are fruits?" 20 61 5 \
18        "" "It's an apple." off \
19        "Dog"    "No1, that's not my dog." ON \
20        "Dog2"   "No2, that's not my dog." OFF \
21        "Dog3"   "No3, that's not my dog." OFF \
22        "Dog4"   "No4, that's not my dog." OFF \
23        "Dog5"   "No5, that's not my dog." OFF \
24        "Dog6"   "No6, that's not my dog." OFF \
25        "Orange" "Yeah, that's juicy." off \
26        "Chicken"    "" off \
27        "Cat"    "No, never put a dog and a cat together!" oN \
28        "Fish"   "Cats like fish." On \
29        "Lemon"  "You know how it tastes." on 2> $tempfile
30
31returncode=$?
32
33. ./report-tempfile
34