Update displayDialogBox()
This commit is contained in:
parent
20d22fd8aa
commit
c2c5dcd12a
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue