annotate lwlib/lwlib-utils.h @ 51194:a873867ba3d2
Make (many) trivial substitutions for renamed and
new macros in dispextern.h, frame.h and window.h.
(make_frame): Initialize left_fringe_width, right_fringe_width,
fringe_cols, scroll_bar_actual_width, border_width,
internal_border_width, column_width, line_height, x_pixels_diff,
y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
members with values suitable for a non-window frames.
author |
Kim F. Storm <storm@cua.dk> |
date |
Sat, 24 May 2003 21:57:45 +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_ */
|