Mercurial > hg > xemacs-beta
comparison src/frame.h @ 408:501cfd01ee6d r21-2-34
Import from CVS: tag r21-2-34
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:18:11 +0200 |
parents | 2f8bb876ab1d |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
407:ed6218a7d4d3 | 408:501cfd01ee6d |
---|---|
91 the frame's window structure but contains only pointers to the | 91 the frame's window structure but contains only pointers to the |
92 display structures. */ | 92 display structures. */ |
93 struct window_mirror *root_mirror; | 93 struct window_mirror *root_mirror; |
94 | 94 |
95 int modiff; | 95 int modiff; |
96 | |
97 /* subwindow cache elements for this frame */ | |
98 subwindow_cachel_dynarr *subwindow_cachels; | |
99 | 96 |
100 struct expose_ignore* subwindow_exposures; | 97 struct expose_ignore* subwindow_exposures; |
101 struct expose_ignore* subwindow_exposures_tail; | 98 struct expose_ignore* subwindow_exposures_tail; |
102 | 99 |
103 #ifdef HAVE_SCROLLBARS | 100 #ifdef HAVE_SCROLLBARS |
545 #define FRAME_SELECTED_WINDOW(f) NON_LVALUE ((f)->selected_window) | 542 #define FRAME_SELECTED_WINDOW(f) NON_LVALUE ((f)->selected_window) |
546 #define FRAME_LAST_NONMINIBUF_WINDOW(f) \ | 543 #define FRAME_LAST_NONMINIBUF_WINDOW(f) \ |
547 NON_LVALUE ((f)->last_nonminibuf_window) | 544 NON_LVALUE ((f)->last_nonminibuf_window) |
548 #define FRAME_SB_VCACHE(f) ((f)->sb_vcache) | 545 #define FRAME_SB_VCACHE(f) ((f)->sb_vcache) |
549 #define FRAME_SB_HCACHE(f) ((f)->sb_hcache) | 546 #define FRAME_SB_HCACHE(f) ((f)->sb_hcache) |
550 #define FRAME_SUBWINDOW_CACHE(f) ((f)->subwindow_cachels) | 547 #define FRAME_SUBWINDOW_CACHE(f) ((f)->subwindow_instance_cache) |
551 | 548 |
552 #if 0 /* FSFmacs */ | 549 #if 0 /* FSFmacs */ |
553 | 550 |
554 #define FRAME_VISIBLE_P(f) ((f)->visible != 0) | 551 #define FRAME_VISIBLE_P(f) ((f)->visible != 0) |
555 #define FRAME_SET_VISIBLE(f,p) \ | 552 #define FRAME_SET_VISIBLE(f,p) \ |