Mercurial > emacs
annotate lwlib/lwlib-utils.h @ 35660:b9366f467430
* alloc.c (allocate_string) [macintosh]: Call check_string_bytes
only if current_sblock has been initialized.
* frame.c (Fdelete_frame) [macintosh]: Allow deletion of initial
terminal frame even if it is the only visible frame.
* src/macfns.c (QCconversion): Replaces QCalgorithm.
* src/macfns.c (image_ascent, lookup_image): Adapt to change of
image margins.
* src/macterm.c (x_produce_image_glyph, x_draw_image_foreground)
(x_draw_image_relief, x_draw_image_foreground_1)
(x_draw_image_glyph_string): Adapt to change of image margins.
* src/macterm.c (mac_to_x_fontname): Change charset name of
Simplify Chinese fonts from gb2312 to gb2312.1980 and Korean fonts
from ksc5601 to ksc5601.1989.
author | Andrew Choi <akochoi@shaw.ca> |
---|---|
date | Sun, 28 Jan 2001 11:23:07 +0000 |
parents | 6ed38ee607e9 |
children | 695cf19ef79e |
rev | line source |
---|---|
5626 | 1 #ifndef _LWLIB_UTILS_H_ |
2 #define _LWLIB_UTILS_H_ | |
3 | |
29466 | 4 void XtNoClearRefreshWidget __P ((Widget)); |
5626 | 5 |
29466 | 6 typedef void (*XtApplyToWidgetsProc) __P ((Widget, XtPointer)); |
7 typedef void* (*XtApplyUntilToWidgetsProc) __P ((Widget, XtPointer)); | |
5626 | 8 |
29466 | 9 void XtApplyToWidgets __P ((Widget, XtApplyToWidgetsProc, XtPointer)); |
10 void *XtApplyUntilToWidgets __P ((Widget, XtApplyUntilToWidgetsProc, XtPointer)); | |
5626 | 11 |
29466 | 12 Widget *XtCompositeChildren __P ((Widget, unsigned int *)); |
5626 | 13 |
14 /* returns True is the widget is being destroyed, False otherwise */ | |
15 Boolean | |
29466 | 16 XtWidgetBeingDestroyedP __P ((Widget widget)); |
5626 | 17 |
29466 | 18 void XtSafelyDestroyWidget __P ((Widget)); |
5626 | 19 |
20 #endif /* _LWLIB_UTILS_H_ */ |