comparison src/winslots.h @ 398:74fd4e045ea6 r21-2-29

Import from CVS: tag r21-2-29
author cvs
date Mon, 13 Aug 2007 11:13:30 +0200
parents cc15677e0335
children 2f8bb876ab1d
comparison
equal deleted inserted replaced
397:f4aeb21a5bad 398:74fd4e045ea6
95 WINDOW_SLOT (default_toolbar_width, EQ); 95 WINDOW_SLOT (default_toolbar_width, EQ);
96 WINDOW_SLOT (default_toolbar_height, EQ); 96 WINDOW_SLOT (default_toolbar_height, EQ);
97 WINDOW_SLOT (default_toolbar_visible_p, EQ); 97 WINDOW_SLOT (default_toolbar_visible_p, EQ);
98 WINDOW_SLOT (default_toolbar_border_width, EQ); 98 WINDOW_SLOT (default_toolbar_border_width, EQ);
99 #endif /* HAVE_TOOLBARS */ 99 #endif /* HAVE_TOOLBARS */
100
101 /* Gutter specification for each of the four positions.
102 This is not a size hog because the value here is not copied,
103 and will be shared with the specs in the specifier. */
104 WINDOW_SLOT_ARRAY (gutter, 4, EQUAL_WRAPPED);
105 /* Gutter size for each of the four positions. */
106 WINDOW_SLOT_ARRAY (gutter_size, 4, EQUAL_WRAPPED);
107 /* Real (pre-calculated) gutter size for each of the four positions.
108 This is not a specifier, it is calculated by the specifier change
109 functions. */
110 WINDOW_SLOT_ARRAY (real_gutter_size, 4, EQUAL_WRAPPED);
111 /* Gutter border width for each of the four positions. */
112 WINDOW_SLOT_ARRAY (gutter_border_width, 4, EQUAL_WRAPPED);
113 /* Gutter visibility status for each of the four positions. */
114 WINDOW_SLOT_ARRAY (gutter_visible_p, 4, EQUAL_WRAPPED);
115 /* The following five don't really need to be cached except
116 that we need to know when they've changed. */
117 WINDOW_SLOT (default_gutter, EQUAL_WRAPPED);
118 WINDOW_SLOT (default_gutter_width, EQ);
119 WINDOW_SLOT (default_gutter_height, EQ);
120 WINDOW_SLOT (default_gutter_visible_p, EQ);
121 WINDOW_SLOT (default_gutter_border_width, EQ);
122 /* margins */
100 WINDOW_SLOT (left_margin_width, EQ); 123 WINDOW_SLOT (left_margin_width, EQ);
101 WINDOW_SLOT (right_margin_width, EQ); 124 WINDOW_SLOT (right_margin_width, EQ);
102 WINDOW_SLOT (minimum_line_ascent, EQ); 125 WINDOW_SLOT (minimum_line_ascent, EQ);
103 WINDOW_SLOT (minimum_line_descent, EQ); 126 WINDOW_SLOT (minimum_line_descent, EQ);
104 WINDOW_SLOT (use_left_overflow, EQ); 127 WINDOW_SLOT (use_left_overflow, EQ);