Mercurial > hg > xemacs-beta
comparison src/console-x.h @ 74:54cc21c15cbb r20-0b32
Import from CVS: tag r20-0b32
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:04:33 +0200 |
parents | 131b0175ea99 |
children | cca96a509cfe |
comparison
equal
deleted
inserted
replaced
73:e2d7a37b7c8d | 74:54cc21c15cbb |
---|---|
269 int *desired_psheets; | 269 int *desired_psheets; |
270 int current_psheet_count; | 270 int current_psheet_count; |
271 int desired_psheet_count; | 271 int desired_psheet_count; |
272 Lisp_Object current_psheet_buffer; | 272 Lisp_Object current_psheet_buffer; |
273 Lisp_Object desired_psheet_buffer; | 273 Lisp_Object desired_psheet_buffer; |
274 #endif | 274 #endif /* ENERGIZE */ |
275 | 275 |
276 /*************************** Miscellaneous **************************/ | 276 /*************************** Miscellaneous **************************/ |
277 | 277 |
278 /* The icon pixmaps; these are Lisp_Image_Instance objects, or Qnil. */ | 278 /* The icon pixmaps; these are Lisp_Image_Instance objects, or Qnil. */ |
279 Lisp_Object icon_pixmap; | 279 Lisp_Object icon_pixmap; |
302 int old_toolbar_size[4]; | 302 int old_toolbar_size[4]; |
303 | 303 |
304 /* 1 if the frame is completely visible on the display, 0 otherwise. | 304 /* 1 if the frame is completely visible on the display, 0 otherwise. |
305 if 0 the frame may have been iconified or may be totally | 305 if 0 the frame may have been iconified or may be totally |
306 or partially hidden by another X window */ | 306 or partially hidden by another X window */ |
307 int totally_visible_p :1; | 307 unsigned int totally_visible_p :1; |
308 | 308 |
309 /* NB: Both of the following flags are derivable from the 'shell' | 309 /* NB: Both of the following flags are derivable from the 'shell' |
310 field above, but it's easier if we also have them separately here. */ | 310 field above, but it's easier if we also have them separately here. */ |
311 | 311 |
312 /* Are we a top-level frame? This means that our shell is a | 312 /* Are we a top-level frame? This means that our shell is a |
313 TopLevelShell, and we should do certain things to interact with | 313 TopLevelShell, and we should do certain things to interact with |
314 the window manager. */ | 314 the window manager. */ |
315 int top_level_frame_p :1; | 315 unsigned int top_level_frame_p :1; |
316 | 316 |
317 #ifdef EXTERNAL_WIDGET | 317 #ifdef EXTERNAL_WIDGET |
318 /* Are we using somebody else's window for our shell window? This | 318 /* Are we using somebody else's window for our shell window? This |
319 means that our shell is an ExternalShell. If this flag is set, then | 319 means that our shell is an ExternalShell. If this flag is set, then |
320 `top_level_frame_p' will never be set. */ | 320 `top_level_frame_p' will never be set. */ |
321 int external_window_p :1; | 321 unsigned int external_window_p :1; |
322 #endif /* EXTERNAL_WIDGET */ | 322 #endif /* EXTERNAL_WIDGET */ |
323 }; | 323 }; |
324 | 324 |
325 #define FRAME_X_DATA(f) FRAME_TYPE_DATA (f, x) | 325 #define FRAME_X_DATA(f) FRAME_TYPE_DATA (f, x) |
326 | 326 |