xref: /freebsd/contrib/dialog/samples/msgbox4-utf8 (revision a96ef4501919d7ac08e94e98dc34b0bdd744802b)
14c8945a0SNathan Whitehorn#!/bin/sh
2*a96ef450SBaptiste Daroussin# $Id: msgbox4-utf8,v 1.13 2020/11/26 00:25:37 tom Exp $
34c8945a0SNathan Whitehorn
44c8945a0SNathan Whitehorn. ./setup-vars
54c8945a0SNathan Whitehorn
64c8945a0SNathan Whitehorn. ./setup-utf8
74c8945a0SNathan Whitehorn
84c8945a0SNathan Whitehornwidth=30
94c8945a0SNathan Whitehornwhile test $width != 61
104c8945a0SNathan Whitehorndo
114c8945a0SNathan Whitehorn$DIALOG --title "MESSAGE BOX (width $width)" --no-collapse "$@" \
124c8945a0SNathan Whitehorn        --msgbox "\
134c8945a0SNathan WhitehornThis sample is written in UTF-8.
144c8945a0SNathan WhitehornThere are several checking points:
154c8945a0SNathan Whitehorn(1) whether the fullwidth characters are displayed well or not,
164c8945a0SNathan Whitehorn(2) whether the width of characters are evaluated properly, and
174c8945a0SNathan Whitehorn(3) whether the character at line-folding is lost or not.
184c8945a0SNathan Whitehorn
194c8945a0SNathan Whitehornあいうえおかきくけこさしすせそたちつてとなにぬねの
204c8945a0SNathan Whitehorn1234567890123456789012345
214c8945a0SNathan WhitehornABCDEFGHIJKLMNOPQRSTUVWXY
224c8945a0SNathan Whitehorn
234c8945a0SNathan WhitehornHi, this is a simple message box.  You can use this to \
244c8945a0SNathan Whitehorndisplay any message you like.  The box will remain until \
254c8945a0SNathan Whitehornyou press the ENTER key." 22 $width
26*a96ef450SBaptiste Daroussinreturncode=$?
274c8945a0SNathan Whitehorn
28*a96ef450SBaptiste Daroussincase $returncode in
29*a96ef450SBaptiste Daroussin  $DIALOG_OK)
30*a96ef450SBaptiste Daroussin    ;;
31*a96ef450SBaptiste Daroussin  *)
32*a96ef450SBaptiste Daroussin    . ./report-button;
33*a96ef450SBaptiste Daroussin    exit
34*a96ef450SBaptiste Daroussin    ;;
354c8945a0SNathan Whitehornesac
364c8945a0SNathan Whitehorn
374c8945a0SNathan Whitehornwidth=`expr $width + 1`
384c8945a0SNathan Whitehorn
394c8945a0SNathan Whitehorndone
40