1#! /bin/sh 2# $Id: form1-extra,v 1.8 2020/11/26 00:34:05 tom Exp $ 3 4. ./setup-vars 5 6backtitle="An Example for the use of --form:" 7 8ids=`id|sed -e 's/([^)]*)//g'` 9uid=`echo "$ids" | sed -e 's/^uid=//' -e 's/ .*//'` 10gid=`echo "$ids" | sed -e 's/^.* gid=//' -e 's/ .*//'` 11 12user="$USER" 13home="$HOME" 14 15returncode=0 16while test $returncode != 1 && test $returncode != 250 17do 18exec 3>&1 19returntext=`$DIALOG --ok-label "Submit" \ 20 --extra-button \ 21 --backtitle "$backtitle" "$@" \ 22 --form "Here is a possible piece of a configuration program." \ 2320 50 0 \ 24 "Username:" 1 1 "$user" 1 10 10 0 \ 25 "UID:" 2 1 "$uid" 2 10 8 0 \ 26 "GID:" 3 1 "$gid" 3 10 8 0 \ 27 "HOME:" 4 1 "$home" 4 10 40 0 \ 282>&1 1>&3` 29returncode=$? 30exec 3>&- 31 32show=`echo "$returntext" |sed -e 's/^/ /'` 33 34 case $returncode in 35 $DIALOG_CANCEL) 36 "$DIALOG" \ 37 --clear \ 38 --backtitle "$backtitle" \ 39 --yesno "Really quit?" 10 30 40 case $? in 41 $DIALOG_OK) 42 break 43 ;; 44 $DIALOG_CANCEL) 45 returncode=99 46 ;; 47 esac 48 ;; 49 $DIALOG_OK) 50 "$DIALOG" \ 51 --clear \ 52 --backtitle "$backtitle" --no-collapse --cr-wrap \ 53 --msgbox "Resulting data:\n\ 54$show" 10 40 55 ;; 56 *) 57 . ./report-button 58 exit 59 ;; 60 esac 61done 62