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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
/*
* 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: TextField3.c /main/8 1995/07/13 19:35:15 drk $"
#endif
#endif
/*
* (c) Copyright 1987, 1988, 1989 HEWLETT-PACKARD COMPANY */
#include <testlib.h>
Arg args[MAX_ARGS];
static char string1[] = "This line is exactly 40 characters long.";
static void ModifyVerifyCB(Widget w, XtPointer client_data,
XtPointer call_data)
{
XmTextVerifyCallbackStruct *modify_verify;
static char c = 'A';
static int position = 12;
modify_verify = (XmTextVerifyCallbackStruct *)call_data;
if (modify_verify->event == NULL)
printf("Null event in ModifyVerify callback\n");
if (modify_verify->text->ptr != NULL)
{ /* Make sure that it is not a BS */
modify_verify->startPos = position++;
modify_verify->endPos = modify_verify->startPos;
modify_verify->text->ptr[0] = c;
modify_verify->text->length = 1;
}
c += 1;
if (c > 'Z')
c = 'A';
}
static void ChangeString(Widget w, XtPointer client_data,
XtPointer call_data)
{
int n = 0;
char *value;
value = XmTextFieldGetString(w);
XmTextFieldSetInsertionPosition(w, strlen(value));
XtFree(value);
XtSetArg(args[n], XmNfontList, CommonGetFontList("8x13bold")); n++;
XtSetArg(args[n], XmNmarginWidth, 10); n++;
XtSetArg(args[n], XmNmarginHeight, 10); n++;
XtSetArg(args[n], XmNforeground, CommonGetColor("navy")); n++;
XtSetArg(args[n], XmNvalue, "Fenway !!!"); n++;
XtSetValues(w, args, n);
}
/* test case for PIR 2492
* Type in a string as per bug report;
* hit return;
* note that the new string is drawn properly (not off-screen).
* On even activates, change string with set string; on odd, use setvalues
*/
static void ChangeString2(Widget w, XtPointer client_data,
XtPointer call_data)
{
static Boolean toggle = False;
int n = 0;
if (!toggle)
{
XmTextFieldSetString((Widget)client_data,
"This is a much longer string which overflows the display");
}
else
{
n = 0;
XtSetArg(args[0],XmNvalue,"Now is the time"); n++;
XtSetValues((Widget)client_data, args, n);
}
toggle = !toggle;
}
void main (argc, argv)
int argc;
char **argv;
{
Widget Text1 = NULL;
String str;
int n = 0;
/* initialize toolkit */
CommonTestInit(argc, argv);
/* test case for PIR 4031 */
n = 0;
XtSetArg(args[n], XmNwidth, 10); n++;
XtSetArg(args[n], XmNheight, 10); n++;
XtSetValues(Shell1, args, n);
XtRealizeWidget(Shell1);
/* end of test case for PIR 4031 */
n = 0;
XtSetArg(args[n], XmNfontList, CommonGetFontList("fixed")); n++;
XtSetArg(args[n], XmNcursorPosition, 12); n++;
XtSetArg(args[n], XmNvalue, "Sample Text "); n++;
XtSetArg(args[n], XmNforeground, CommonGetColor("Red")); n++;
XtSetArg(args[n], XmNbackground, CommonGetColor("White")); n++;
Text1 = XmCreateTextField(Shell1, "Text1", args, n);
XtManageChild(Text1);
XtRealizeWidget(Shell1);
n = 0;
XtSetArg(args[n], XmNresizeWidth, False); n++;
XtSetArg(args[n], XmNcolumns, 40); n++;
XtSetValues(Text1, args, n);
CommonPause();
/* Begin test for PIR 2959 */
XtAddCallback(Text1, XmNmodifyVerifyCallback, ModifyVerifyCB, NULL);
CommonPause();
/* End test for PIR 2959 *
/* Begin Test for PIR 2663 */
XtRemoveAllCallbacks (Text1, XmNmodifyVerifyCallback);
XtAddCallback(Text1, XmNactivateCallback, ChangeString, NULL);
CommonPause();
/* End Test for PIR 2663 */
/* Begin Test for PIR 2942, 4077 */
XtRemoveAllCallbacks(Text1, XmNactivateCallback);
XtAddCallback(Text1, XmNactivateCallback, ChangeString2, Text1);
CommonPause();
/* End Test for PIR 2942, 4077 */
/* Begin test case for CR 4803 */
/* Turn bell on for Shell. */
n = 0;
XtSetArg(args[0], XmNaudibleWarning, XmBELL); n++;
XtSetValues(Shell1, args, n);
XtDestroyWidget(Text1);
n = 0;
XtSetArg(args[n], XmNmaxLength, 40); n++;
XtSetArg(args[n], XmNfontList, CommonGetFontList("fixed")); n++;
XtSetArg(args[n], XmNcursorPosition, 12); n++;
XtSetArg(args[n], XmNvalue, "Sample Text "); n++;
XtSetArg(args[n], XmNforeground, CommonGetColor("Red")); n++;
XtSetArg(args[n], XmNbackground, CommonGetColor("White")); n++;
XtSetArg(args[n], XmNvalue, string1); n++;
XtSetArg(args[n], XmNeditable, True); n++;
Text1 = XmCreateTextField(Shell1, "Text1", args, n);
XtManageChild(Text1);
CommonPause();
/* Turn bell off for Shell. */
XtSetArg(args[0], XmNaudibleWarning, XmNONE);
XtSetValues(Shell1, args, 1);
XtDestroyWidget(Text1);
n = 0;
XtSetArg(args[n], XmNfontList, CommonGetFontList("fixed")); n++;
XtSetArg(args[n], XmNcursorPosition, 12); n++;
XtSetArg(args[n], XmNvalue, "Sample Text "); n++;
XtSetArg(args[n], XmNforeground, CommonGetColor("Red")); n++;
XtSetArg(args[n], XmNbackground, CommonGetColor("White")); n++;
XtSetArg(args[n], XmNmaxLength, 40); n++;
XtSetArg(args[n], XmNvalue, string1); n++;
XtSetArg(args[n], XmNeditable, True); n++;
Text1 = XmCreateTextField(Shell1, "Text1", args, n);
XtManageChild(Text1);
CommonPause();
/* End test for OSF 4803 */
XtDestroyWidget (Text1);
/* begin test for CR 5258 */
str = "The cursor should be here. If not, an error occurred.";
n = 0;
XtSetArg (args[n], XmNcursorPosition, 26);n++;
XtSetArg (args[n], XmNcolumns, 60); n++;
XtSetArg (args[n], XmNeditable, False); n++;
XtSetArg (args[n], XmNresizeWidth, True); n++;
XtSetArg (args[n], XmNvalue, str); n++;
Text1 = XmCreateTextField(Shell1, "Text1", args, n);
XtManageChild(Text1);
/* end test for CR 5258 */
CommonPause();
CommonPause();
XtAppMainLoop(app_context);
}
|