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