annotate lwlib/lwlib-utils.h @ 424:11054d720c21 r21-2-20

Import from CVS: tag r21-2-20
author cvs
date Mon, 13 Aug 2007 11:26:11 +0200
parents 697ef44129c6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
1 #ifndef _LWLIB_UTILS_H_
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
2 #define _LWLIB_UTILS_H_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
424
11054d720c21 Import from CVS: tag r21-2-20
cvs
parents: 412
diff changeset
4 void destroy_all_children (Widget widget);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 void XtNoClearRefreshWidget (Widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 Widget *XtCompositeChildren (Widget, unsigned int *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 /* returns True is the widget is being destroyed, False otherwise */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 Boolean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 XtWidgetBeingDestroyedP (Widget widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 void XtSafelyDestroyWidget (Widget);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
177
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 0
diff changeset
21 #ifdef USE_DEBUG_MALLOC
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 0
diff changeset
22 #include <dmalloc.h>
6075d714658b Import from CVS: tag r20-3b15
cvs
parents: 0
diff changeset
23 #endif
412
697ef44129c6 Import from CVS: tag r21-2-14
cvs
parents: 398
diff changeset
24 #endif /* _LWLIB_UTILS_H_ */