#!/bin/sh # $Id: slider.sh,v 1.4 2005/12/27 15:53:06 tom Exp $ # # Description: # This demonstrates the CDK command line # interface to the slider widget. # # # Create some global variables. # CDK_SLIDER="${CDK_BINDIR=..}/cdkslider" CDK_LABEL="${CDK_BINDIR=..}/cdklabel" output="${TMPDIR=/tmp}/slider_output.$$" tmp="${TMPDIR=/tmp}/tmp.$$" # # Create the title. # title="Enter a value using the cursor keys" label="Value: " buttons=" OK Cancel " # # Create the slider box. # ${CDK_SLIDER} -f 20 -l 0 -h 100 -i 5 -L "${label}" -T "${title}" -F "*" -B "${buttons}" -O ${output} selected=$? test $selected = 255 && exit 1 answer=`cat ${output}` # # Create the message for the label widget. # echo "Here is the value you selected" > ${tmp} echo " " >> ${tmp} echo "${answer}" >> ${tmp} echo " " >> ${tmp} echo "You chose button #${selected}" >> ${tmp} echo " " >> ${tmp} echo "Hit space to continue." >> ${tmp} # # Create the label widget to display the information. # ${CDK_LABEL} -f ${tmp} -p " " # # Clean up. # rm -f ${tmp} ${output}