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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*/
/*
* HISTORY
*/
#ifdef REV_INFO
#ifndef lint
static char rcsid[] = "$XConsortium: TextFWcs2.c /main/7 1995/07/13 19:33:20 drk $"
#endif
#endif
/*
* (c) Copyright 1987, 1988, 1989 HEWLETT-PACKARD COMPANY */
#include <testlib.h>
#ifndef MOTIF1_1
Arg args[MAX_ARGS];
static char starting_string[] = "Sample Text ";
static void ModifyVerifyCB (Widget w, XtPointer client_data,
XtPointer call_data)
{
XmTextVerifyCallbackStructWcs *modify_verify;
static char c = 'A';
static wchar_t wc;
static int position = 12;
static int nbytes;
modify_verify = (XmTextVerifyCallbackStructWcs *)call_data;
if (modify_verify->event == NULL)
printf("Null event in ModifyVerify callback\n");
if (modify_verify->text->wcsptr != NULL)
{
/* Make sure that it is not a BS */
nbytes = mbtowc(&wc, &c, 1);
modify_verify->startPos = position++;
modify_verify->endPos = modify_verify->startPos;
modify_verify->text->wcsptr[0] = wc;
modify_verify->text->length = nbytes;
}
c += 1;
if (c > 'Z')
c = 'A';
}
#endif /* MOTIF1_1 */
void main (argc, argv)
int argc;
char **argv;
{
Widget Text1 = NULL;
int n = 0;
wchar_t *starting_wchar;
int num_chars;
#ifndef MOTIF1_1
/* initialize toolkit */
CommonTestInit(argc, argv);
n = 0;
XtSetArg(args[n], XmNwidth, 10); n++;
XtSetArg(args[n], XmNheight, 10); n++;
XtSetValues(Shell1, args, n);
XtRealizeWidget(Shell1);
num_chars = strlen(starting_string);
starting_wchar =
(wchar_t *)XtMalloc((unsigned)
(num_chars + 1) * sizeof(wchar_t));
mbstowcs(starting_wchar, starting_string, num_chars + 1);
n = 0;
XtSetArg(args[n], XmNfontList, CommonGetFontList("fixed")); n++;
XtSetArg(args[n], XmNcursorPosition, 12); n++;
XtSetArg(args[n], XmNvalueWcs, starting_wchar); n++;
XtSetArg(args[n], XmNforeground, CommonGetColor("Red")); n++;
XtSetArg(args[n], XmNbackground, CommonGetColor("White")); n++;
Text1 = XmCreateTextField(Shell1, "Text1", args, n);
XtFree((char *)starting_wchar);
XtManageChild(Text1);
XtRealizeWidget(Shell1);
n = 0;
XtSetArg(args[n], XmNresizeWidth, False); n++;
XtSetArg(args[n], XmNcolumns, 40); n++;
XtSetValues(Text1, args, n);
XtAddCallback(Text1, XmNmodifyVerifyCallbackWcs, ModifyVerifyCB, NULL);
CommonPause();
XtAppMainLoop(app_context);
#else /* MOTIF1_1 */
printf("This is not a Motif 1.1 test.\n");
exit(0);
#endif /* MOTIF1_1 */
}
|