comparison src/window-impl.h @ 5120:d1247f3cc363 ben-lisp-object

latest work on lisp-object workspace; more changes eliminating LCRECORD in place of LISP_OBJECT; now compiles and runs.
author Ben Wing <ben@xemacs.org>
date Mon, 28 Dec 2009 01:15:52 -0600
parents 1e7cc382eb16
children a9c41067dd88
comparison
equal deleted inserted replaced
5119:d877c14318b3 5120:d1247f3cc363
82 need to be preserved, except for those that are reconstructed by from 82 need to be preserved, except for those that are reconstructed by from
83 the window configuration. */ 83 the window configuration. */
84 84
85 struct window 85 struct window
86 { 86 {
87 struct LCRECORD_HEADER header; 87 LISP_OBJECT_HEADER header;
88 88
89 /* The upper left corner coordinates of this window, 89 /* The upper left corner coordinates of this window,
90 as integers (pixels) relative to upper left corner of frame = 0, 0 */ 90 as integers (pixels) relative to upper left corner of frame = 0, 0 */
91 int pixel_left; 91 int pixel_left;
92 int pixel_top; 92 int pixel_top;
166 #define DESIRED_DISP 1 166 #define DESIRED_DISP 1
167 #define CMOTION_DISP 2 167 #define CMOTION_DISP 2
168 168
169 struct window_mirror 169 struct window_mirror
170 { 170 {
171 struct LCRECORD_HEADER header; 171 LISP_OBJECT_HEADER header;
172 172
173 /* Frame this mirror is on. */ 173 /* Frame this mirror is on. */
174 struct frame *frame; 174 struct frame *frame;
175 175
176 /* Following child (to right or down) at same level of tree */ 176 /* Following child (to right or down) at same level of tree */