annotate lwlib/lwlib-utils.h @ 191:ecf6ba7b0a10 r20-3b22

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