1994-01-18 23:47:41 +00:00
|
|
|
#ifndef _LWLIB_UTILS_H_
|
|
|
|
#define _LWLIB_UTILS_H_
|
|
|
|
|
2000-06-06 14:12:10 +00:00
|
|
|
void XtNoClearRefreshWidget __P ((Widget));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2000-06-06 14:12:10 +00:00
|
|
|
typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer));
|
|
|
|
typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2000-06-06 14:12:10 +00:00
|
|
|
void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer));
|
|
|
|
void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2000-06-06 14:12:10 +00:00
|
|
|
Widget *XtCompositeChildren __P ((Widget, unsigned int *));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
/* returns True is the widget is being destroyed, False otherwise */
|
|
|
|
Boolean
|
2000-06-06 14:12:10 +00:00
|
|
|
XtWidgetBeingDestroyedP __P ((Widget widget));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2000-06-06 14:12:10 +00:00
|
|
|
void XtSafelyDestroyWidget __P ((Widget));
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
#endif /* _LWLIB_UTILS_H_ */
|