Update displayDialogBox()

This commit is contained in:
Santiago Lo Coco 2022-02-16 12:48:04 -03:00
parent 20d22fd8aa
commit c2c5dcd12a
1 changed files with 17 additions and 26 deletions

View File

@ -2,36 +2,18 @@
displayDialogBox() { displayDialogBox() {
case $dialogBox in case $dialogBox in
whiptail) whiptail) useWhiptail "$@" ;;
if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then dialog) useDialog "$@" ;;
useWhiptailListOrMenu "$@" plain) usePlainText "$@" ;;
else ?) echo "Unknown dialogBox variable" >&2 && exit 1 ;;
[ "$1" = "--infobox" ] && tty | grep -q "/dev/pts" && local TERM=ansi
useWhiptail "$@"
fi
;;
dialog)
if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then
useDialogListOrMenu "$@"
else
useDialog "$@"
fi
;;
plain)
if [ "$1" = "--menu" ]; then
usePlainTextMenu "$@"
else
usePlainText "$@"
fi
;;
?)
echo "Unknown dialogBox variable" >&2
exit 1
;;
esac esac
} }
useDialog() { useDialog() {
if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then
useDialogListOrMenu "$@"
exit
fi
inputbox=false; passwordbox=false; infobox=false; threebuttons=false; yesno=false inputbox=false; passwordbox=false; infobox=false; threebuttons=false; yesno=false
str=$(getLastArgument "$@") str=$(getLastArgument "$@")
if [ "$str" = "VALUES" ]; then if [ "$str" = "VALUES" ]; then
@ -68,6 +50,11 @@ useDialog() {
} }
useWhiptail() { useWhiptail() {
if [[ "$1" == "--checklist" || "$1" == "--menu" ]]; then
useWhiptailListOrMenu "$@"
exit
fi
[ "$1" = "--infobox" ] && tty | grep -q "/dev/pts" && local TERM=ansi
inputbox=false; infobox=false; threebuttons=false; yesno=false inputbox=false; infobox=false; threebuttons=false; yesno=false
str=$(getLastArgument "$@") str=$(getLastArgument "$@")
if [ "$str" = "VALUES" ]; then if [ "$str" = "VALUES" ]; then
@ -110,6 +97,10 @@ printLine() {
} }
usePlainText() { usePlainText() {
if [ "$1" = "--menu" ]; then
usePlainTextMenu "$@"
exit
fi
clear clear
inputbox=false; infobox=false; msgbox=false; passwordbox=false; yesno=false inputbox=false; infobox=false; msgbox=false; passwordbox=false; yesno=false
for item in "$@"; do for item in "$@"; do