aboutsummaryrefslogtreecommitdiffstats
path: root/src/dispextern.h
diff options
context:
space:
mode:
authorKim F. Storm2003-03-21 21:47:46 +0000
committerKim F. Storm2003-03-21 21:47:46 +0000
commite5a3b7d9690daa0827ca68074c4fa904eb552e63 (patch)
treedfc9e8e5ce376f2761bae93e13130d12a0999742 /src/dispextern.h
parent5c9cc435b8ee04290d18817dbf859329cb9f0224 (diff)
downloademacs-e5a3b7d9690daa0827ca68074c4fa904eb552e63.tar.gz
emacs-e5a3b7d9690daa0827ca68074c4fa904eb552e63.zip
(struct redisplay_interface): Add active_p argument to
draw_window_cursor member. All uses changed.
Diffstat (limited to 'src/dispextern.h')
-rw-r--r--src/dispextern.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/dispextern.h b/src/dispextern.h
index ad42527fdc0..822b4054541 100644
--- a/src/dispextern.h
+++ b/src/dispextern.h
@@ -2258,13 +2258,15 @@ struct redisplay_interface
2258 void (*clear_frame_area) P_ ((struct frame *f, int x, int y, 2258 void (*clear_frame_area) P_ ((struct frame *f, int x, int y,
2259 int width, int height)); 2259 int width, int height));
2260 2260
2261/* Draw specified cursor NEW_CURSOR_TYPE of width NEW_CURSOR_WIDTH 2261/* Draw specified cursor CURSOR_TYPE of width CURSOR_WIDTH
2262 at row GLYPH_ROW on window W. */ 2262 at row GLYPH_ROW on window W if ON_P is 1. If ON_P is
2263 0, don't draw cursor. If ACTIVE_P is 1, system caret
2264 should track this cursor (when applicable). */
2263 void (*draw_window_cursor) P_ ((struct window *w, 2265 void (*draw_window_cursor) P_ ((struct window *w,
2264 struct glyph_row *glyph_row, 2266 struct glyph_row *glyph_row,
2265 int on, int x, int y, 2267 int x, int y,
2266 int new_cursor_type, 2268 int cursor_type, int cursor_width,
2267 int new_cursor_width)); 2269 int on_p, int active_p));
2268 2270
2269/* Draw vertical border for window W from (X,Y0) to (X,Y1). */ 2271/* Draw vertical border for window W from (X,Y0) to (X,Y1). */
2270 void (*draw_vertical_window_border) P_ ((struct window *w, 2272 void (*draw_vertical_window_border) P_ ((struct window *w,