view lwlib/lwlib-utils.h @ 18250:4eabe22131dd

Many doc fixes. (view-mode-enable): New function, split from view-mode-enter. (view-mode-enter): Use view-mode-enable. (view-mode-disable): New function, split from view-mode-exit. (view-mode-exit): Use view-mode-disable. (view-mode): Use view-mode-enable and view-mode-disable; don't do all of what view-mode-enter and view-mode-exit do. (change-major-mode-hook): Use view-mode-disable, not view-mode-exit.
author Richard M. Stallman <rms@gnu.org>
date Sat, 14 Jun 1997 21:41:42 +0000
parents 118a6ad56ae0
children 6ed38ee607e9
line wrap: on
line source

#ifndef _LWLIB_UTILS_H_
#define _LWLIB_UTILS_H_

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 */);

#endif /* _LWLIB_UTILS_H_ */