File: lwlib-utils.h

package info (click to toggle)
xemacs21 21.4.17-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 32,056 kB
  • ctags: 32,386
  • sloc: ansic: 242,702; lisp: 93,256; sh: 7,437; cpp: 5,726; perl: 1,095; makefile: 892; python: 279; asm: 248; lex: 119; yacc: 95; sed: 22; csh: 9
file content (25 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef INCLUDED_lwlib_utils_h_
#define INCLUDED_lwlib_utils_h_

void destroy_all_children (Widget widget);
void XtNoClearRefreshWidget (Widget);

typedef void (*XtApplyToWidgetsProc) (Widget, XtPointer);
typedef void* (*XtApplyUntilToWidgetsProc) (Widget, XtPointer);

void XtApplyToWidgets (Widget, XtApplyToWidgetsProc, XtPointer);
void *XtApplyUntilToWidgets (Widget, XtApplyUntilToWidgetsProc, XtPointer);

Widget *XtCompositeChildren (Widget, unsigned int *);

/* returns True is the widget is being destroyed, False otherwise */
Boolean
XtWidgetBeingDestroyedP (Widget widget);

void XtSafelyDestroyWidget (Widget);

#ifdef USE_DEBUG_MALLOC
#include <dmalloc.h>
#endif

#endif /* INCLUDED_lwlib_utils_h_ */