5626
|
1 #ifndef _LWLIB_UTILS_H_
|
|
2 #define _LWLIB_UTILS_H_
|
|
3
|
109099
|
4 void XtNoClearRefreshWidget (Widget);
|
5626
|
5
|
109099
|
6 typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
|
|
7 typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);
|
5626
|
8
|
109099
|
9 void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
|
|
10 void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);
|
5626
|
11
|
109099
|
12 Widget *XtCompositeChildren (Widget, unsigned int *);
|
5626
|
13
|
|
14 /* returns True is the widget is being destroyed, False otherwise */
|
|
15 Boolean
|
109099
|
16 XtWidgetBeingDestroyedP (Widget widget);
|
5626
|
17
|
109099
|
18 void XtSafelyDestroyWidget (Widget);
|
5626
|
19
|
|
20 #endif /* _LWLIB_UTILS_H_ */
|
52401
|
21
|
|
22 /* arch-tag: 705efd86-9319-4447-80f6-16aa5b349809
|
|
23 (do not change this comment) */
|