comparison src/console-stream.c @ 408:501cfd01ee6d r21-2-34

Import from CVS: tag r21-2-34
author cvs
date Mon, 13 Aug 2007 11:18:11 +0200
parents 2f8bb876ab1d
children de805c49cfc1
comparison
equal deleted inserted replaced
407:ed6218a7d4d3 408:501cfd01ee6d
199 { 199 {
200 return 1; 200 return 1;
201 } 201 }
202 202
203 static void 203 static void
204 stream_output_begin (struct device *d)
205 {
206 }
207
208 static void
209 stream_output_end (struct device *d)
210 {
211 }
212
213 static void
214 stream_output_display_block (struct window *w, struct display_line *dl, 204 stream_output_display_block (struct window *w, struct display_line *dl,
215 int block, int start, int end, 205 int block, int start, int end,
216 int start_pixpos, int cursor_start, 206 int start_pixpos, int cursor_start,
217 int cursor_width, int cursor_height) 207 int cursor_width, int cursor_height)
218 { 208 {
219 } 209 }
220 210
221 static void 211 static void
222 stream_output_vertical_divider (struct window *w, int clear)
223 {
224 }
225
226 static void
227 stream_clear_to_window_end (struct window *w, int ypos1, int ypos2)
228 {
229 }
230
231 static void
232 stream_clear_region (Lisp_Object window, struct device* d, struct frame * f, 212 stream_clear_region (Lisp_Object window, struct device* d, struct frame * f,
233 face_index findex, int x, int y, 213 face_index findex, int x, int y,
234 int width, int height, Lisp_Object fcolor, Lisp_Object bcolor, 214 int width, int height, Lisp_Object fcolor, Lisp_Object bcolor,
235 Lisp_Object background_pixmap) 215 Lisp_Object background_pixmap)
236 {
237 }
238
239 static void
240 stream_clear_frame (struct frame *f)
241 { 216 {
242 } 217 }
243 218
244 static int 219 static int
245 stream_flash (struct device *d) 220 stream_flash (struct device *d)
283 /* redisplay methods */ 258 /* redisplay methods */
284 CONSOLE_HAS_METHOD (stream, left_margin_width); 259 CONSOLE_HAS_METHOD (stream, left_margin_width);
285 CONSOLE_HAS_METHOD (stream, right_margin_width); 260 CONSOLE_HAS_METHOD (stream, right_margin_width);
286 CONSOLE_HAS_METHOD (stream, text_width); 261 CONSOLE_HAS_METHOD (stream, text_width);
287 CONSOLE_HAS_METHOD (stream, output_display_block); 262 CONSOLE_HAS_METHOD (stream, output_display_block);
288 CONSOLE_HAS_METHOD (stream, output_vertical_divider);
289 CONSOLE_HAS_METHOD (stream, divider_height); 263 CONSOLE_HAS_METHOD (stream, divider_height);
290 CONSOLE_HAS_METHOD (stream, eol_cursor_width); 264 CONSOLE_HAS_METHOD (stream, eol_cursor_width);
291 CONSOLE_HAS_METHOD (stream, clear_to_window_end);
292 CONSOLE_HAS_METHOD (stream, clear_region); 265 CONSOLE_HAS_METHOD (stream, clear_region);
293 CONSOLE_HAS_METHOD (stream, clear_frame);
294 CONSOLE_HAS_METHOD (stream, output_begin);
295 CONSOLE_HAS_METHOD (stream, output_end);
296 CONSOLE_HAS_METHOD (stream, flash); 266 CONSOLE_HAS_METHOD (stream, flash);
297 CONSOLE_HAS_METHOD (stream, ring_bell); 267 CONSOLE_HAS_METHOD (stream, ring_bell);
298 } 268 }
299 269
300 void 270 void