Add max values, fix bugs

This commit is contained in:
Santiago Lo Coco 2022-02-01 14:43:28 -03:00
parent e486cb0ca4
commit 74b104fe18
1 changed files with 12 additions and 19 deletions

View File

@ -76,8 +76,8 @@ useWhiptail() {
fi fi
width=$(calcWidthWhiptail "$str") width=$(calcWidthWhiptail "$str")
height=$(calcHeightWhiptail "$str") height=$(calcHeightWhiptail "$str")
if [ $inputbox = true ]; then if [ $inputbox = true ] && [ $width -lt 30 ]; then
width=$((width+15)) width=$((width+5))
fi fi
if [ $infobox = true ]; then if [ $infobox = true ]; then
height=$((height-1)) height=$((height-1))
@ -190,33 +190,26 @@ useDialogMenu() {
calcWidthWhiptail() { calcWidthWhiptail() {
width=$(echo "$1" | wc -c) width=$(echo "$1" | wc -c)
echo $((width+8)) [ $count -gt 60 ] && echo 60 || echo $((count+2))
} }
calcWidthDialog() { calcWidthDialog() {
str=$1; count=1; found=false; option=1 count=1; found=false; option=1
for (( i = 0; i < ${#str}; i++ )); do while IFS= read -r -N 1 c; do
if [ "${str:$i:1}" = "\\" ] && [ "${str:$((i+1)):1}" = "n" ]; then if [[ "$c" == $'\n' ]]; then
if [ $count -ge $option ]; then [ $count -ge $option ] && option=$count
option=$count
fi
found=true found=true
count=-1 count=-1
fi fi
((count++)) ((count++))
done done < <(echo -ne "$1")
[ $option -ge "$count" ] && count=option
if [ $found = false ]; then [ $count -gt 60 ] && echo 60 || echo $((count+4))
echo $((count+8))
else
echo $option
fi
} }
calcHeight() { calcHeight() {
newlines=$(printf "$1" | grep -c $'\n') newlines=$(echo -ne "$1" | grep -c $'\n')
chars=$(echo "$1" | wc -c) height=$(echo "${#1}" "$newlines" | awk '{
height=$(echo "$chars" "$newlines" | awk '{
x = (($1 - $2 + ($2 * 60)) / 60) x = (($1 - $2 + ($2 * 60)) / 60)
printf "%d", (x == int(x)) ? x : int(x) + 1 printf "%d", (x == int(x)) ? x : int(x) + 1
}') }')