1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-02 11:21:42 +00:00
emacs/lwlib/lwlib-utils.h

19 lines
556 B
C
Raw Normal View History

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