Output error diagnostics, if occurse.

Add radiolist test.
This commit is contained in:
Andrey A. Chernov 1994-10-11 23:52:16 +00:00
parent 52bc859d7c
commit 52f2c9a10a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=3522
4 changed files with 36 additions and 0 deletions

View File

@ -28,5 +28,6 @@ case $retval in
1)
echo "Cancel pressed.";;
255)
[ -z "$choice" ] || echo $choice ;
echo "ESC pressed.";;
esac

View File

@ -23,5 +23,6 @@ case $retval in
1)
echo "Cancel pressed.";;
255)
[ -z "$input" ] || echo $input ;
echo "ESC pressed.";;
esac

View File

@ -29,5 +29,6 @@ case $retval in
1)
echo "Cancel pressed.";;
255)
[ -z "$choice" ] || echo $choice ;
echo "ESC pressed.";;
esac

View File

@ -0,0 +1,33 @@
#!/bin/sh
DIALOG=${DIALOG=/usr/bin/dialog}
$DIALOG --title "RADIOLIST BOX" --clear \
--radiolist "Hi, this is a radiolist box. You can use this to \n\
present a list of choices, one of them can be turned \n\
on or off. If there are more items than can fit on the \n\
screen, the list will be scrolled. You can use the \n\
UP/DOWN arrow keys, the first letter of the choice as a \n\
hot key, or the number keys 1-9 to choose an option. \n\
Press SPACE to toggle an option on/off. \n\n\
Which of the following are fruits?" 20 61 5 \
"Apple" "It's an apple." off \
"Dog" "No, that's not my dog." ON \
"Orange" "Yeah, that's juicy." off \
"Cat" "No, never put a dog and a cat together!" oFF \
"Fish" "Cats like fish." OFF \
"Lemon" "You know how it tastes." oFF 2> /tmp/radiolist.tmp.$$
retval=$?
choice=`cat /tmp/radiolist.tmp.$$`
rm -f /tmp/radiolist.tmp.$$
case $retval in
0)
echo "'$choice' chosen.";;
1)
echo "Cancel pressed.";;
255)
[ -z "$choice" ] || echo $choice ;
echo "ESC pressed.";;
esac