comparison src/winslots.h @ 442:abe6d1db359e r21-2-36

Import from CVS: tag r21-2-36
author cvs
date Mon, 13 Aug 2007 11:35:02 +0200
parents 3ecd8885ac67
children af57a77cbc92
comparison
equal deleted inserted replaced
441:72a7cfa4a488 442:abe6d1db359e
55 /* Thickness of vertical divider shadow, in pixels. If negative, draw as 55 /* Thickness of vertical divider shadow, in pixels. If negative, draw as
56 recessed. */ 56 recessed. */
57 WINDOW_SLOT (vertical_divider_shadow_thickness, EQ); 57 WINDOW_SLOT (vertical_divider_shadow_thickness, EQ);
58 /* Divider surface width (not counting 3-d borders) */ 58 /* Divider surface width (not counting 3-d borders) */
59 WINDOW_SLOT (vertical_divider_line_width, EQ); 59 WINDOW_SLOT (vertical_divider_line_width, EQ);
60 /* Spacing between outer egde of divider border and window edge */ 60 /* Spacing between outer edge of divider border and window edge */
61 WINDOW_SLOT (vertical_divider_spacing, EQ); 61 WINDOW_SLOT (vertical_divider_spacing, EQ);
62 /* Whether vertical dividers are always displayed */ 62 /* Whether vertical dividers are always displayed */
63 WINDOW_SLOT (vertical_divider_always_visible_p, EQ); 63 WINDOW_SLOT (vertical_divider_always_visible_p, EQ);
64 64
65 #ifdef HAVE_SCROLLBARS 65 #ifdef HAVE_SCROLLBARS
100 100
101 /* Gutter specification for each of the four positions. 101 /* Gutter specification for each of the four positions.
102 This is not a size hog because the value here is not copied, 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. */ 103 and will be shared with the specs in the specifier. */
104 WINDOW_SLOT_ARRAY (gutter, 4, EQUAL_WRAPPED); 104 WINDOW_SLOT_ARRAY (gutter, 4, EQUAL_WRAPPED);
105 /* Real (pre-calculated) gutter specification for each of the four positions.
106 This is not a specifier, it is calculated by the specifier change
107 functions. */
108 WINDOW_SLOT_ARRAY (real_gutter, 4, EQUAL_WRAPPED);
105 /* Gutter size for each of the four positions. */ 109 /* Gutter size for each of the four positions. */
106 WINDOW_SLOT_ARRAY (gutter_size, 4, EQUAL_WRAPPED); 110 WINDOW_SLOT_ARRAY (gutter_size, 4, EQUAL_WRAPPED);
107 /* Real (pre-calculated) gutter size for each of the four positions. 111 /* Real (pre-calculated) gutter size for each of the four positions.
108 This is not a specifier, it is calculated by the specifier change 112 This is not a specifier, it is calculated by the specifier change
109 functions. */ 113 functions. */