1994-01-18 23:47:41 +00:00
|
|
|
#ifndef _LWLIB_UTILS_H_
|
|
|
|
#define _LWLIB_UTILS_H_
|
|
|
|
|
2010-07-02 11:26:33 +02:00
|
|
|
void XtNoClearRefreshWidget (Widget);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2010-07-02 11:26:33 +02:00
|
|
|
typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
|
|
|
|
typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2010-07-02 11:26:33 +02:00
|
|
|
void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
|
|
|
|
void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2010-07-02 11:26:33 +02: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
|
2010-07-02 11:26:33 +02:00
|
|
|
XtWidgetBeingDestroyedP (Widget widget);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
2010-07-02 11:26:33 +02:00
|
|
|
void XtSafelyDestroyWidget (Widget);
|
1994-01-18 23:47:41 +00:00
|
|
|
|
|
|
|
#endif /* _LWLIB_UTILS_H_ */
|
2003-09-01 15:45:59 +00:00
|
|
|
|
|
|
|
/* arch-tag: 705efd86-9319-4447-80f6-16aa5b349809
|
|
|
|
(do not change this comment) */
|