Remove generic calcHeight() and calcWidth()
This commit is contained in:
parent
a6f48ed9fb
commit
36a37059ec
|
@ -24,7 +24,7 @@ displayDialogBox() {
|
||||||
}
|
}
|
||||||
|
|
||||||
useDialog() {
|
useDialog() {
|
||||||
str="${@: -1}"
|
str="${@: -1}"; inputbox=false
|
||||||
if [ "$str" = "VALUES" ]; then
|
if [ "$str" = "VALUES" ]; then
|
||||||
argc="$#"; i=1
|
argc="$#"; i=1
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
|
@ -32,14 +32,15 @@ useDialog() {
|
||||||
str="$item"
|
str="$item"
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
[ "$item" = "--inputbox" ] && inputbox=true
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
width=$(calcWidth "$str")
|
width=$(calcWidthDialog "$str")
|
||||||
height=$(calcHeight "$str")
|
height=$(calcHeightDialog "$str")
|
||||||
|
[ $inputbox = true ] && height=$((${height}+2))
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
height=10; width=60
|
|
||||||
dialog "$@" ${height} ${width}
|
dialog "$@" ${height} ${width}
|
||||||
else
|
else
|
||||||
dialog "${options[@]}"
|
dialog "${options[@]}"
|
||||||
|
@ -58,8 +59,8 @@ useWhiptail() {
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
width=$(calcWidth "$str")
|
width=$(calcWidthWhiptail "$str")
|
||||||
height=$(calcHeight "$str")
|
height=$(calcHeightWhiptail "$str")
|
||||||
formatOptions "$@"
|
formatOptions "$@"
|
||||||
if [ $found = false ]; then
|
if [ $found = false ]; then
|
||||||
height=0; width=0
|
height=0; width=0
|
||||||
|
@ -95,12 +96,32 @@ useDialogMenu() {
|
||||||
dialog "${options[@]}"
|
dialog "${options[@]}"
|
||||||
}
|
}
|
||||||
|
|
||||||
calcWidth() {
|
calcWidthWhiptail() {
|
||||||
width=$(echo "$1" | wc -c)
|
width=$(echo "$1" | wc -c)
|
||||||
echo $((${width}+8))
|
echo $((${width}+8))
|
||||||
}
|
}
|
||||||
|
|
||||||
calcHeight() {
|
calcWidthDialog() {
|
||||||
|
str=$1; count=1; found=false; option=1
|
||||||
|
for (( i = 0; i < ${#str}; i++ )); do
|
||||||
|
if [ "${str:$i:1}" = '\' ] && [ "${str:$((i+1)):1}" = 'n' ]; then
|
||||||
|
if [ $count -ge $option ]; then
|
||||||
|
option=$count
|
||||||
|
fi
|
||||||
|
found=true
|
||||||
|
count=-1
|
||||||
|
fi
|
||||||
|
((count++))
|
||||||
|
done
|
||||||
|
|
||||||
|
if [ $found = false ]; then
|
||||||
|
echo $(($count+8))
|
||||||
|
else
|
||||||
|
echo $option
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
calcHeightWhiptail() {
|
||||||
newlines=$(printf "$1" | grep -c $'\n')
|
newlines=$(printf "$1" | grep -c $'\n')
|
||||||
chars=$(echo "$1" | wc -c)
|
chars=$(echo "$1" | wc -c)
|
||||||
height=$(echo "$chars" "$newlines" | awk '{
|
height=$(echo "$chars" "$newlines" | awk '{
|
||||||
|
@ -110,6 +131,16 @@ calcHeight() {
|
||||||
echo $((6+${height}))
|
echo $((6+${height}))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
calcHeightDialog() {
|
||||||
|
newlines=$(printf "$1" | grep -c $'\n')
|
||||||
|
chars=$(echo "$1" | wc -c)
|
||||||
|
height=$(echo "$chars" "$newlines" | awk '{
|
||||||
|
x = (($1 - $2 + ($2 * 60)) / 60)
|
||||||
|
printf "%d", (x == int(x)) ? x : int(x) + 1
|
||||||
|
}')
|
||||||
|
echo $((4+${height}))
|
||||||
|
}
|
||||||
|
|
||||||
setDialogBox() {
|
setDialogBox() {
|
||||||
export dialogBox=${1}
|
export dialogBox=${1}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue