comparison src/window.h @ 215:1f0dabaa0855 r20-4b6

Import from CVS: tag r20-4b6
author cvs
date Mon, 13 Aug 2007 10:07:35 +0200
parents b405438285a2
children 677f6a0ee643
comparison
equal deleted inserted replaced
214:c5d88c05e1e9 215:1f0dabaa0855
200 This is not a size hog because the value here is not copied, 200 This is not a size hog because the value here is not copied,
201 and will be shared with the specs in the specifier. */ 201 and will be shared with the specs in the specifier. */
202 Lisp_Object toolbar[4]; 202 Lisp_Object toolbar[4];
203 /* Toolbar size for each of the four positions. */ 203 /* Toolbar size for each of the four positions. */
204 Lisp_Object toolbar_size[4]; 204 Lisp_Object toolbar_size[4];
205 /* Toolbar border width for each of the four positions. */
206 Lisp_Object toolbar_border_width[4];
205 /* Toolbar visibility status for each of the four positions. */ 207 /* Toolbar visibility status for each of the four positions. */
206 Lisp_Object toolbar_visible_p[4]; 208 Lisp_Object toolbar_visible_p[4];
207 /* Caption status of toolbar. */ 209 /* Caption status of toolbar. */
208 Lisp_Object toolbar_buttons_captioned_p; 210 Lisp_Object toolbar_buttons_captioned_p;
209 /* The following four don't really need to be cached except 211 /* The following five don't really need to be cached except
210 that we need to know when they've changed. */ 212 that we need to know when they've changed. */
211 Lisp_Object default_toolbar; 213 Lisp_Object default_toolbar;
212 Lisp_Object default_toolbar_width, default_toolbar_height; 214 Lisp_Object default_toolbar_width, default_toolbar_height;
213 Lisp_Object default_toolbar_visible_p; 215 Lisp_Object default_toolbar_visible_p;
216 Lisp_Object default_toolbar_border_width;
214 #endif /* HAVE_TOOLBARS */ 217 #endif /* HAVE_TOOLBARS */
215 Lisp_Object left_margin_width, right_margin_width; 218 Lisp_Object left_margin_width, right_margin_width;
216 Lisp_Object minimum_line_ascent, minimum_line_descent; 219 Lisp_Object minimum_line_ascent, minimum_line_descent;
217 Lisp_Object use_left_overflow, use_right_overflow; 220 Lisp_Object use_left_overflow, use_right_overflow;
218 #ifdef HAVE_MENUBARS 221 #ifdef HAVE_MENUBARS