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
|
/* +-------------------------------------------------------------------+ */
/* | Copyright 1992, 1993, David Koblas (koblas@netcom.com) | */
/* | | */
/* | Permission to use, copy, modify, and to distribute this software | */
/* | and its documentation for any purpose is hereby granted without | */
/* | fee, provided that the above copyright notice appear in all | */
/* | copies and that both that copyright notice and this permission | */
/* | notice appear in supporting documentation. There is no | */
/* | representations about the suitability of this software for | */
/* | any purpose. this software is provided "as is" without express | */
/* | or implied warranty. | */
/* | | */
/* +-------------------------------------------------------------------+ */
/* $Id: text.h,v 1.2 1996/04/15 14:15:09 torsten Exp $ */
typedef struct {
char *title;
int nprompt;
struct textPromptInfo {
char *prompt; /* displayed prompt */
int len; /* maximum string length */
char *str; /* displayed initial string */
char *rstr; /* returned string value */
Widget w; /* internal -- don't use */
} *prompts;
} TextPromptInfo;
void TextPrompt(Widget w, char *name, TextPromptInfo * prompt,
XtCallbackProc okProc, XtCallbackProc nokProc, void *data);
void TextPromptPixmap(Widget w, char *name, TextPromptInfo * prompt,
XtCallbackProc okProc, XtCallbackProc nokProc, void *data,
Pixmap pix);
|