Mercurial > hg > xemacs-beta
comparison src/winslots.h @ 412:697ef44129c6 r21-2-14
Import from CVS: tag r21-2-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:20:41 +0200 |
parents | 2f8bb876ab1d |
children | 95016f13131a |
comparison
equal
deleted
inserted
replaced
411:12e008d41344 | 412:697ef44129c6 |
---|---|
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 /* 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); | |
109 /* Gutter size for each of the four positions. */ | |
110 WINDOW_SLOT_ARRAY (gutter_size, 4, EQUAL_WRAPPED); | |
111 /* Real (pre-calculated) gutter size for each of the four positions. | |
112 This is not a specifier, it is calculated by the specifier change | |
113 functions. */ | |
114 WINDOW_SLOT_ARRAY (real_gutter_size, 4, EQUAL_WRAPPED); | |
115 /* Gutter border width for each of the four positions. */ | |
116 WINDOW_SLOT_ARRAY (gutter_border_width, 4, EQUAL_WRAPPED); | |
117 /* Gutter visibility status for each of the four positions. */ | |
118 WINDOW_SLOT_ARRAY (gutter_visible_p, 4, EQUAL_WRAPPED); | |
119 /* The following five don't really need to be cached except | |
120 that we need to know when they've changed. */ | |
121 WINDOW_SLOT (default_gutter, EQUAL_WRAPPED); | |
122 WINDOW_SLOT (default_gutter_width, EQ); | |
123 WINDOW_SLOT (default_gutter_height, EQ); | |
124 WINDOW_SLOT (default_gutter_visible_p, EQ); | |
125 WINDOW_SLOT (default_gutter_border_width, EQ); | |
126 /* margins */ | |
127 WINDOW_SLOT (left_margin_width, EQ); | 100 WINDOW_SLOT (left_margin_width, EQ); |
128 WINDOW_SLOT (right_margin_width, EQ); | 101 WINDOW_SLOT (right_margin_width, EQ); |
129 WINDOW_SLOT (minimum_line_ascent, EQ); | 102 WINDOW_SLOT (minimum_line_ascent, EQ); |
130 WINDOW_SLOT (minimum_line_descent, EQ); | 103 WINDOW_SLOT (minimum_line_descent, EQ); |
131 WINDOW_SLOT (use_left_overflow, EQ); | 104 WINDOW_SLOT (use_left_overflow, EQ); |