1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
#!/bin/sh
# $Id: fselect.sh,v 1.6 2022/10/19 00:21:44 tom Exp $
#
# Description:
# This demonstrates the CDK command line
# interface to the file selection widget.
#
#
# Create some global variables.
#
CDK_FSELECT="${CDK_BINDIR=..}/cdkfselect"
CDK_LABEL="${CDK_BINDIR=..}/cdklabel"
directory="."
label="File: "
title="<C>Select a file"
buttons=" OK
Cancel "
xpos="CENTER"
ypos="CENTER"
width=0
height=-5
tmp="${TMPDIR=/tmp}/tmp.$$"
file="${TMPDIR=/tmp}/fs.$$"
#
# Chop up the command line.
#
if set -- `getopt d:L:T:X:Y:W:H: "$@"`
then
for c in "$@"
do
case $c in
-d) directory=$2; shift 2;;
-T) title=$2; shift 2;;
-L) label=$2; shift 2;;
-X) xpos=$2; shift 2;;
-Y) ypos=$2; shift 2;;
-W) width=$2; shift 2;;
-H) height=$2; shift 2;;
--) shift; break;;
esac
done
else
echo "Usage: $0 [-d dir] [-L label] [-T title] [-X xpos] [-Y ypos] [-W width] [-H height]"
exit 1
fi
#
# Create the CDK file selector.
#
${CDK_FSELECT} -d "${directory}" -T "${title}" -L "${label}" -X "${xpos}" -Y "${ypos}" -W "${width}" -H "${height}" -B "${buttons}" 2> "${file}"
selected=$?
test $selected = 255 && exit 1
answer=`cat "${file}"`
#
# Display the file the user selected.
#
cat >"${tmp}" <<EOF
<C>You selected the following file
<C><#HL(10)>
<C></B>${answer}
<C><#HL(10)>
<C>You chose button #${selected}
<C>Press </R>space<!R> to continue.
EOF
${CDK_LABEL} -f "${tmp}" -p " "
#
# Clean up.
#
rm -f "${tmp}" "${file}"
|