Lines Matching refs:value
69 * After we have set the string in the value widget we set the
70 * string to a magic value. So that when a SetValues request is made
71 * on the dialog value we will notice it, and reset the string.
82 XtOffsetOf(DialogRec, dialog.value), XtRString, NULL},
187 if (dw->dialog.value != NULL)
289 if ( w->dialog.value != old->dialog.value ) {
290 if (w->dialog.value == NULL) /* only get here if it
293 else if (old->dialog.value == NULL) { /* create a new value widget. */
313 XtSetArg(args[0], XtNstring, w->dialog.value);
315 w->dialog.value = MAGIC_VALUE;
345 *((char **) args[i].value) = s;
351 * Description: Creates the dialog widgets value widget.
355 * must be called only when w->dialog.value is non-nil.
370 XtSetArg(arglist[num_args], XtNstring, dw->dialog.value); num_args++;
378 dw->dialog.valueW = XtCreateWidget("value", asciiTextWidgetClass,
381 /* if the value widget is being added after buttons,
405 dw->dialog.value = MAGIC_VALUE;
443 char * value;
445 XtSetArg(args[0], XtNstring, &value);
447 return(value);