annotate lwlib/lwlib-utils.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents 6075d714658b
children 697ef44129c6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
1 #ifndef INCLUDED_lwlib_utils_h_
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
2 #define INCLUDED_lwlib_utils_h_
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
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
398
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
24
74fd4e045ea6 Import from CVS: tag r21-2-29
cvs
parents: 177
diff changeset
25 #endif /* INCLUDED_lwlib_utils_h_ */