summaryrefslogtreecommitdiff
path: root/Build/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf8
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf8')
-rwxr-xr-xBuild/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf835
1 files changed, 35 insertions, 0 deletions
diff --git a/Build/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf8 b/Build/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf8
new file mode 100755
index 00000000000..94f2fab69d2
--- /dev/null
+++ b/Build/source/utils/dialog/dialog-1.1-20110302/samples/editbox-utf8
@@ -0,0 +1,35 @@
+#!/bin/sh
+# $Id: editbox-utf8,v 1.9 2010/01/13 10:20:03 tom Exp $
+
+. ./setup-vars
+
+. ./setup-tempfile
+
+. ./setup-utf8
+
+. ./setup-edit
+
+cat << EOF > $input
+Hi, this is a edit box. You can use this to
+allow the user to enter or modify free-form text.
+
+Try it now!
+
+ ----------- --------------------------------
+ Choose Description of the OS you like
+ ----------- --------------------------------
+ Linux The Great Unix Clone for 386/486
+ NetBSD Another free Unix Clone for 386/486
+ OS/2 IBM OS/2
+ WIN NT Microsoft Windows NT
+ PCDOS IBM PC DOS
+ MSDOS Microsoft DOS
+ ----------- --------------------------------
+ ----------- --------------------------------
+EOF
+
+$DIALOG --title "EDIT BOX" \
+ --fixed-font "$@" --editbox $input 0 0 2>$output
+retval=$?
+
+. ./report-edit