Lines Matching refs:first

141 #define AUTOFORMAT_COLOR( first, last, themed_style, color_token ) \  argument
142 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, 100, 0, false }
144 #define AUTOFORMAT_ACCENTS( first, themed_style ) \ argument
145 AUTOFORMAT_COLOR( first, first, themed_style, XML_accent1 ), \
146 AUTOFORMAT_COLOR( first + 1, first + 1, themed_style, XML_accent2 ), \
147 AUTOFORMAT_COLOR( first + 2, first + 2, themed_style, XML_accent3 ), \
148 AUTOFORMAT_COLOR( first + 3, first + 3, themed_style, XML_accent4 ), \
149 AUTOFORMAT_COLOR( first + 4, first + 4, themed_style, XML_accent5 ), \
150 AUTOFORMAT_COLOR( first + 5, first + 5, themed_style, XML_accent6 )
152 #define AUTOFORMAT_COLORMOD( first, last, themed_style, color_token, mod_token, mod_value ) \ argument
153 { first, last, themed_style, color_token, mod_token, mod_value, 100, 0, false }
155 #define AUTOFORMAT_ACCENTSMOD( first, themed_style, mod_token, mod_value ) \ argument
156 AUTOFORMAT_COLORMOD( first, first, themed_style, XML_accent1, mod_token, mod_value ), \
157 AUTOFORMAT_COLORMOD( first + 1, first + 1, themed_style, XML_accent2, mod_token, mod_value ), \
158 AUTOFORMAT_COLORMOD( first + 2, first + 2, themed_style, XML_accent3, mod_token, mod_value ), \
159 AUTOFORMAT_COLORMOD( first + 3, first + 3, themed_style, XML_accent4, mod_token, mod_value ), \
160 AUTOFORMAT_COLORMOD( first + 4, first + 4, themed_style, XML_accent5, mod_token, mod_value ), \
161 AUTOFORMAT_COLORMOD( first + 5, first + 5, themed_style, XML_accent6, mod_token, mod_value )
163 #define AUTOFORMAT_PATTERN( first, last, themed_style, line_width, pattern ) \ argument
164 … { first, last, themed_style, XML_TOKEN_INVALID, XML_TOKEN_INVALID, 0, line_width, pattern, false }
166 #define AUTOFORMAT_FADED( first, last, themed_style, color_token, line_width ) \ argument
167 { first, last, themed_style, color_token, XML_TOKEN_INVALID, 0, line_width, 0, true }
169 #define AUTOFORMAT_FADEDACCENTS( first, themed_style, line_width ) \ argument
170 AUTOFORMAT_FADED( first, first, themed_style, XML_accent1, line_width ), \
171 AUTOFORMAT_FADED( first + 1, first + 1, themed_style, XML_accent2, line_width ), \
172 AUTOFORMAT_FADED( first + 2, first + 2, themed_style, XML_accent3, line_width ), \
173 AUTOFORMAT_FADED( first + 3, first + 3, themed_style, XML_accent4, line_width ), \
174 AUTOFORMAT_FADED( first + 4, first + 4, themed_style, XML_accent5, line_width ), \
175 AUTOFORMAT_FADED( first + 5, first + 5, themed_style, XML_accent6, line_width )
177 #define AUTOFORMAT_INVISIBLE( first, last ) \ argument
178 AUTOFORMAT_COLOR( first, last, -1, XML_TOKEN_INVALID )
449 #define AUTOTEXT_COLOR( first, last, themed_font, color_token, def_font_size, rel_font_size, bold )… argument
450 { first, last, themed_font, color_token, def_font_size, rel_font_size, bold }