xref: /freebsd/contrib/dialog/samples/checklist5 (revision 1492c8c0d825d1dcd8a2b2975fe35e4269b0b7de)
1#! /bin/sh
2# $Id: checklist5,v 1.12 2020/11/26 00:03:58 tom Exp $
3
4. ./setup-vars
5
6. ./setup-tempfile
7
8$DIALOG --help-button --item-help --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        "Apple"      "It's an apple. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                          off "fruit" \
19        "Dog"        "No, that's not my dog. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                  ON  "not a fruit" \
20        "Orange"     "Yeah, that's juicy. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                     off "fruit" \
21        "Chicken"    "Normally not a pet. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                     off "not a fruit" \
22        ""           "No such pet. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                            off "not anything" \
23        "Cat"        "No, never put a dog and a cat together! xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" oN  "not a fruit" \
24        "Fish"       "Cats like fish. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                         On  "not a fruit" \
25        "Lemon"      "You know how it tastes. xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"                 on  "the only one you wouldn't eat" 2> $tempfile
26
27returncode=$?
28
29. ./report-tempfile
30