* lispref/modes.texi (Region to Refontify): Rename from "Region to Fontify".
[emacs.git] / src / fringe.c
blob861aa6e948700083d166bc45f5b80219bd057cfe
1 /* Fringe handling (split from xdisp.c).
2 Copyright (C) 1985, 1986, 1987, 1988, 1993, 1994, 1995, 1997,
3 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
4 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
22 #include <stdio.h>
23 #include <setjmp.h>
25 #include "lisp.h"
26 #include "frame.h"
27 #include "window.h"
28 #include "dispextern.h"
29 #include "buffer.h"
30 #include "blockinput.h"
31 #include "termhooks.h"
33 #ifdef HAVE_WINDOW_SYSTEM
35 extern Lisp_Object Qfringe;
36 extern Lisp_Object Qtop, Qbottom, Qcenter;
37 extern Lisp_Object Qup, Qdown, Qleft, Qright;
39 /* Non-nil means that newline may flow into the right fringe. */
41 Lisp_Object Voverflow_newline_into_fringe;
43 /* List of known fringe bitmap symbols.
45 The fringe bitmap number is stored in the `fringe' property on
46 those symbols. Names for the built-in bitmaps are installed by
47 loading fringe.el.
50 Lisp_Object Vfringe_bitmaps;
52 /* Fringe bitmaps are represented in three different ways:
54 Logical bitmaps are used internally to denote things like
55 'end-of-buffer', 'left-truncation', 'overlay-arrow', etc.
57 Physical bitmaps specify the visual appearence of the bitmap,
58 e.g. 'bottom-left-angle', 'left-arrow', 'left-triangle', etc.
59 User defined bitmaps are physical bitmaps.
61 Internally, fringe bitmaps for a specific display row are
62 represented as a simple integer that is used as an index
63 into the table of all defined bitmaps. This index is stored
64 in the `fringe' property of the physical bitmap symbol.
66 Logical bitmaps are mapped to physical bitmaps through the
67 buffer-local `fringe-indicator-alist' variable.
69 Each element of this alist is a cons (LOGICAL . PHYSICAL)
70 mapping a logical bitmap to a physical bitmap.
71 PHYSICAL is either a symbol to use in both left and right fringe,
72 or a cons of two symbols (LEFT . RIGHT) denoting different
73 bitmaps to use in left and right fringe.
75 LOGICAL is first looked up in the window's buffer's buffer-local
76 value of the fringe-indicator-alist variable, and if not present,
77 in the global value of fringe-indicator-alist.
79 If LOGICAL is not present in either alist, or the PHYSICAL value
80 found is nil, no bitmap is shown for the logical bitmap.
82 The `left-fringe' and `right-fringe' display properties
83 must specify physical bitmap symbols.
86 extern Lisp_Object Qunknown;
87 Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow;
88 Lisp_Object Qempty_line, Qtop_bottom;
89 extern Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
90 Lisp_Object Qhollow_small;
92 enum fringe_bitmap_align
94 ALIGN_BITMAP_CENTER = 0,
95 ALIGN_BITMAP_TOP,
96 ALIGN_BITMAP_BOTTOM
99 struct fringe_bitmap
101 unsigned short *bits;
102 unsigned height : 8;
103 unsigned width : 8;
104 unsigned period : 8;
105 unsigned align : 2;
106 unsigned dynamic : 1;
110 /***********************************************************************
111 Fringe bitmaps
112 ***********************************************************************/
114 /* Undefined bitmap. A question mark. */
116 ..xxxx..
117 .xxxxxx.
118 xx....xx
119 xx....xx
120 ....xx..
121 ...xx...
122 ...xx...
123 ........
124 ...xx...
125 ...xx...
127 static unsigned short question_mark_bits[] = {
128 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18};
130 /* An arrow like this: `<-'. */
132 ...xx...
133 ..xx....
134 .xx.....
135 xxxxxx..
136 xxxxxx..
137 .xx.....
138 ..xx....
139 ...xx...
141 static unsigned short left_arrow_bits[] = {
142 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
145 /* Right truncation arrow bitmap `->'. */
147 ...xx...
148 ....xx..
149 .....xx.
150 ..xxxxxx
151 ..xxxxxx
152 .....xx.
153 ....xx..
154 ...xx...
156 static unsigned short right_arrow_bits[] = {
157 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
160 /* Up arrow bitmap. */
162 ...xx...
163 ..xxxx..
164 .xxxxxx.
165 xxxxxxxx
166 ...xx...
167 ...xx...
168 ...xx...
169 ...xx...
171 static unsigned short up_arrow_bits[] = {
172 0x18, 0x3c, 0x7e, 0xff, 0x18, 0x18, 0x18, 0x18};
175 /* Down arrow bitmap. */
177 ...xx...
178 ...xx...
179 ...xx...
180 ...xx...
181 xxxxxxxx
182 .xxxxxx.
183 ..xxxx..
184 ...xx...
186 static unsigned short down_arrow_bits[] = {
187 0x18, 0x18, 0x18, 0x18, 0xff, 0x7e, 0x3c, 0x18};
189 /* Marker for continuation lines. */
191 ..xxxx..
192 .xxxxx..
193 xx......
194 xxx..x..
195 xxxxxx..
196 .xxxxx..
197 ..xxxx..
198 .xxxxx..
200 static unsigned short left_curly_arrow_bits[] = {
201 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
203 /* Marker for continued lines. */
205 ..xxxx..
206 ..xxxxx.
207 ......xx
208 ..x..xxx
209 ..xxxxxx
210 ..xxxxx.
211 ..xxxx..
212 ..xxxxx.
214 static unsigned short right_curly_arrow_bits[] = {
215 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
217 /* Reverse Overlay arrow bitmap. A triangular arrow. */
219 ......xx
220 ....xxxx
221 ...xxxxx
222 ..xxxxxx
223 ..xxxxxx
224 ...xxxxx
225 ....xxxx
226 ......xx
228 static unsigned short left_triangle_bits[] = {
229 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
231 /* Overlay arrow bitmap. A triangular arrow. */
233 xx......
234 xxxx....
235 xxxxx...
236 xxxxxx..
237 xxxxxx..
238 xxxxx...
239 xxxx....
240 xx......
242 static unsigned short right_triangle_bits[] = {
243 0xc0, 0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xc0};
245 /* First line bitmap. An top-left angle. */
247 xxxxxx..
248 xxxxxx..
249 xx......
250 xx......
251 xx......
252 xx......
253 xx......
254 ........
256 static unsigned short top_left_angle_bits[] = {
257 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00};
259 /* First line bitmap. An right-up angle. */
261 ..xxxxxx
262 ..xxxxxx
263 ......xx
264 ......xx
265 ......xx
266 ......xx
267 ......xx
268 ........
270 static unsigned short top_right_angle_bits[] = {
271 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00};
273 /* Last line bitmap. An left-down angle. */
275 ........
276 xx......
277 xx......
278 xx......
279 xx......
280 xx......
281 xxxxxx..
282 xxxxxx..
284 static unsigned short bottom_left_angle_bits[] = {
285 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
287 /* Last line bitmap. An right-down angle. */
289 ........
290 ......xx
291 ......xx
292 ......xx
293 ......xx
294 ......xx
295 ..xxxxxx
296 ..xxxxxx
298 static unsigned short bottom_right_angle_bits[] = {
299 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
301 /* First/last line bitmap. An left bracket. */
303 xxxxxx..
304 xxxxxx..
305 xx......
306 xx......
307 xx......
308 xx......
309 xx......
310 xx......
311 xxxxxx..
312 xxxxxx..
314 static unsigned short left_bracket_bits[] = {
315 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
317 /* First/last line bitmap. An right bracket. */
319 ..xxxxxx
320 ..xxxxxx
321 ......xx
322 ......xx
323 ......xx
324 ......xx
325 ......xx
326 ......xx
327 ..xxxxxx
328 ..xxxxxx
330 static unsigned short right_bracket_bits[] = {
331 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
333 /* Filled box cursor bitmap. A filled box; max 13 pixels high. */
335 xxxxxxx.
336 xxxxxxx.
337 xxxxxxx.
338 xxxxxxx.
339 xxxxxxx.
340 xxxxxxx.
341 xxxxxxx.
342 xxxxxxx.
343 xxxxxxx.
344 xxxxxxx.
345 xxxxxxx.
346 xxxxxxx.
347 xxxxxxx.
349 static unsigned short filled_rectangle_bits[] = {
350 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe};
352 /* Hollow box cursor bitmap. A hollow box; max 13 pixels high. */
354 xxxxxxx.
355 x.....x.
356 x.....x.
357 x.....x.
358 x.....x.
359 x.....x.
360 x.....x.
361 x.....x.
362 x.....x.
363 x.....x.
364 x.....x.
365 x.....x.
366 xxxxxxx.
368 static unsigned short hollow_rectangle_bits[] = {
369 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfe};
371 /* Hollow square bitmap. */
373 .xxxxxx.
374 .x....x.
375 .x....x.
376 .x....x.
377 .x....x.
378 .xxxxxx.
380 static unsigned short hollow_square_bits[] = {
381 0x7e, 0x42, 0x42, 0x42, 0x42, 0x7e};
383 /* Filled square bitmap. */
385 .xxxxxx.
386 .xxxxxx.
387 .xxxxxx.
388 .xxxxxx.
389 .xxxxxx.
390 .xxxxxx.
392 static unsigned short filled_square_bits[] = {
393 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e};
395 /* Bar cursor bitmap. A vertical bar; max 13 pixels high. */
397 xx......
398 xx......
399 xx......
400 xx......
401 xx......
402 xx......
403 xx......
404 xx......
405 xx......
406 xx......
407 xx......
408 xx......
409 xx......
411 static unsigned short vertical_bar_bits[] = {
412 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0};
414 /* HBar cursor bitmap. A horizontal bar; 2 pixels high. */
416 xxxxxxx.
417 xxxxxxx.
419 static unsigned short horizontal_bar_bits[] = {
420 0xfe, 0xfe};
423 /* Bitmap drawn to indicate lines not displaying text if
424 `indicate-empty-lines' is non-nil. */
426 ........
427 ..xxxx..
428 ........
429 ........
430 ..xxxx..
431 ........
433 static unsigned short empty_line_bits[] = {
434 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
435 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
436 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
437 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
438 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
439 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
440 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
441 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00};
444 #define BYTES_PER_BITMAP_ROW (sizeof (unsigned short))
445 #define STANDARD_BITMAP_HEIGHT(bits) (sizeof (bits)/BYTES_PER_BITMAP_ROW)
446 #define FRBITS(bits) bits, STANDARD_BITMAP_HEIGHT (bits)
448 /* NOTE: The order of these bitmaps must match the sequence
449 used in fringe.el to define the corresponding symbols. */
451 struct fringe_bitmap standard_bitmaps[] =
453 { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */
454 { FRBITS (question_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
455 { FRBITS (left_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
456 { FRBITS (right_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
457 { FRBITS (up_arrow_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
458 { FRBITS (down_arrow_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
459 { FRBITS (left_curly_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
460 { FRBITS (right_curly_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
461 { FRBITS (left_triangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
462 { FRBITS (right_triangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
463 { FRBITS (top_left_angle_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
464 { FRBITS (top_right_angle_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
465 { FRBITS (bottom_left_angle_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
466 { FRBITS (bottom_right_angle_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
467 { FRBITS (left_bracket_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
468 { FRBITS (right_bracket_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
469 { FRBITS (filled_rectangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
470 { FRBITS (hollow_rectangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
471 { FRBITS (filled_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
472 { FRBITS (hollow_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
473 { FRBITS (vertical_bar_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
474 { FRBITS (horizontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
475 { FRBITS (empty_line_bits), 8, 3, ALIGN_BITMAP_TOP, 0 },
478 #define NO_FRINGE_BITMAP 0
479 #define UNDEF_FRINGE_BITMAP 1
480 #define MAX_STANDARD_FRINGE_BITMAPS (sizeof(standard_bitmaps)/sizeof(standard_bitmaps[0]))
482 static struct fringe_bitmap **fringe_bitmaps;
483 static Lisp_Object *fringe_faces;
484 static int max_fringe_bitmaps;
486 int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS;
489 /* Lookup bitmap number for symbol BITMAP.
490 Return 0 if not a bitmap. */
493 lookup_fringe_bitmap (bitmap)
494 Lisp_Object bitmap;
496 int bn;
498 bitmap = Fget (bitmap, Qfringe);
499 if (!INTEGERP (bitmap))
500 return 0;
502 bn = XINT (bitmap);
503 if (bn > NO_FRINGE_BITMAP
504 && bn < max_used_fringe_bitmap
505 && (bn < MAX_STANDARD_FRINGE_BITMAPS
506 || fringe_bitmaps[bn] != NULL))
507 return bn;
509 return 0;
512 /* Get fringe bitmap name for bitmap number BN.
514 Found by traversing Vfringe_bitmaps comparing BN to the
515 fringe property for each symbol.
517 Return BN if not found in Vfringe_bitmaps. */
519 static Lisp_Object
520 get_fringe_bitmap_name (bn)
521 int bn;
523 Lisp_Object bitmaps;
524 Lisp_Object num;
526 /* Zero means no bitmap -- return nil. */
527 if (bn <= 0)
528 return Qnil;
530 bitmaps = Vfringe_bitmaps;
531 num = make_number (bn);
533 while (CONSP (bitmaps))
535 Lisp_Object bitmap = XCAR (bitmaps);
536 if (EQ (num, Fget (bitmap, Qfringe)))
537 return bitmap;
538 bitmaps = XCDR (bitmaps);
541 return num;
545 /* Draw the bitmap WHICH in one of the left or right fringes of
546 window W. ROW is the glyph row for which to display the bitmap; it
547 determines the vertical position at which the bitmap has to be
548 drawn.
549 LEFT_P is 1 for left fringe, 0 for right fringe.
552 static void
553 draw_fringe_bitmap_1 (w, row, left_p, overlay, which)
554 struct window *w;
555 struct glyph_row *row;
556 int left_p, overlay;
557 int which;
559 struct frame *f = XFRAME (WINDOW_FRAME (w));
560 struct draw_fringe_bitmap_params p;
561 struct fringe_bitmap *fb;
562 int period;
563 int face_id = DEFAULT_FACE_ID;
564 int offset, header_line_height;
566 p.overlay_p = (overlay & 1) == 1;
567 p.cursor_p = (overlay & 2) == 2;
569 if (which != NO_FRINGE_BITMAP)
571 offset = 0;
573 else if (left_p)
575 which = row->left_fringe_bitmap;
576 face_id = row->left_fringe_face_id;
577 offset = row->left_fringe_offset;
579 else
581 which = row->right_fringe_bitmap;
582 face_id = row->right_fringe_face_id;
583 offset = row->right_fringe_offset;
586 if (face_id == DEFAULT_FACE_ID)
588 Lisp_Object face;
590 if ((face = fringe_faces[which], NILP (face))
591 || (face_id = lookup_derived_face (f, face, FRINGE_FACE_ID, 0),
592 face_id < 0))
593 face_id = FRINGE_FACE_ID;
596 fb = fringe_bitmaps[which];
597 if (fb == NULL)
598 fb = &standard_bitmaps[which < MAX_STANDARD_FRINGE_BITMAPS
599 ? which : UNDEF_FRINGE_BITMAP];
601 period = fb->period;
603 /* Convert row to frame coordinates. */
604 p.y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y) + offset;
606 p.which = which;
607 p.bits = fb->bits;
608 p.wd = fb->width;
610 p.h = fb->height;
611 p.dh = (period > 0 ? (p.y % period) : 0);
612 p.h -= p.dh;
614 /* Adjust y to the offset in the row to start drawing the bitmap. */
615 switch (fb->align)
617 case ALIGN_BITMAP_CENTER:
618 p.y += (row->height - p.h) / 2;
619 break;
620 case ALIGN_BITMAP_BOTTOM:
621 p.y += (row->visible_height - p.h);
622 break;
623 case ALIGN_BITMAP_TOP:
624 break;
627 p.face = FACE_FROM_ID (f, face_id);
629 if (p.face == NULL)
631 /* This could happen after clearing face cache.
632 But it shouldn't happen anymore. ++kfs */
633 return;
636 PREPARE_FACE_FOR_DISPLAY (f, p.face);
638 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
639 the fringe. */
640 p.bx = -1;
641 header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
642 p.by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, row->y));
643 p.ny = row->visible_height;
644 if (left_p)
646 int wd = WINDOW_LEFT_FRINGE_WIDTH (w);
647 int x = window_box_left (w, (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
648 ? LEFT_MARGIN_AREA
649 : TEXT_AREA));
650 if (p.wd > wd)
651 p.wd = wd;
652 p.x = x - p.wd - (wd - p.wd) / 2;
654 if (p.wd < wd || p.y > p.by || p.y + p.h < p.by + p.ny)
656 /* If W has a vertical border to its left, don't draw over it. */
657 wd -= ((!WINDOW_LEFTMOST_P (w)
658 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
659 ? 1 : 0);
660 p.bx = x - wd;
661 p.nx = wd;
664 else
666 int x = window_box_right (w,
667 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
668 ? RIGHT_MARGIN_AREA
669 : TEXT_AREA));
670 int wd = WINDOW_RIGHT_FRINGE_WIDTH (w);
671 if (p.wd > wd)
672 p.wd = wd;
673 p.x = x + (wd - p.wd) / 2;
674 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
675 the fringe. */
676 if (p.wd < wd || p.y > p.by || p.y + p.h < p.by + p.ny)
678 p.bx = x;
679 p.nx = wd;
683 FRAME_RIF (f)->draw_fringe_bitmap (w, row, &p);
686 static int
687 get_logical_cursor_bitmap (w, cursor)
688 struct window *w;
689 Lisp_Object cursor;
691 Lisp_Object cmap, bm = Qnil;
693 if ((cmap = XBUFFER (w->buffer)->fringe_cursor_alist), !NILP (cmap))
695 bm = Fassq (cursor, cmap);
696 if (CONSP (bm))
698 if ((bm = XCDR (bm)), NILP (bm))
699 return NO_FRINGE_BITMAP;
700 return lookup_fringe_bitmap (bm);
703 if (EQ (cmap, buffer_defaults.fringe_cursor_alist))
704 return NO_FRINGE_BITMAP;
705 bm = Fassq (cursor, buffer_defaults.fringe_cursor_alist);
706 if (!CONSP (bm) || ((bm = XCDR (bm)), NILP (bm)))
707 return NO_FRINGE_BITMAP;
708 return lookup_fringe_bitmap (bm);
711 static int
712 get_logical_fringe_bitmap (w, bitmap, right_p, partial_p)
713 struct window *w;
714 Lisp_Object bitmap;
715 int right_p, partial_p;
717 Lisp_Object cmap, bm1 = Qnil, bm2 = Qnil, bm;
718 int ln1 = 0, ln2 = 0;
719 int ix1 = right_p;
720 int ix2 = ix1 + (partial_p ? 2 : 0);
722 /* Lookup in buffer-local fringe-indicator-alist before global alist.
724 Elements are:
725 BITMAP -- use for all
726 (L R) -- use for left right (whether partial or not)
727 (L R PL PR) -- use for left right partial-left partial-right
728 If any value in local binding is not present or t, use global value.
730 If partial, lookup partial bitmap in default value if not found here.
731 If not partial, or no partial spec is present, use non-partial bitmap. */
733 if ((cmap = XBUFFER (w->buffer)->fringe_indicator_alist), !NILP (cmap))
735 bm1 = Fassq (bitmap, cmap);
736 if (CONSP (bm1))
738 if ((bm1 = XCDR (bm1)), NILP (bm1))
739 return NO_FRINGE_BITMAP;
740 if (CONSP (bm1))
742 ln1 = XINT (Flength (bm1));
743 if (partial_p)
745 if (ln1 > ix2)
747 bm = Fnth (make_number (ix2), bm1);
748 if (!EQ (bm, Qt))
749 goto found;
752 else
754 if (ln1 > ix1)
756 bm = Fnth (make_number (ix1), bm1);
757 if (!EQ (bm, Qt))
758 goto found;
762 else if ((bm = bm1, !EQ (bm, Qt)))
763 goto found;
767 if (!EQ (cmap, buffer_defaults.fringe_indicator_alist)
768 && !NILP (buffer_defaults.fringe_indicator_alist))
770 bm2 = Fassq (bitmap, buffer_defaults.fringe_indicator_alist);
771 if (CONSP (bm2))
773 if ((bm2 = XCDR (bm2)), !NILP (bm2))
775 if (CONSP (bm2))
777 ln2 = XINT (Flength (bm2));
778 if (partial_p)
780 if (ln2 > ix2)
782 bm = Fnth (make_number (ix2), bm2);
783 if (!EQ (bm, Qt))
784 goto found;
792 if (ln1 > ix1)
794 bm = Fnth (make_number (ix1), bm1);
795 if (!EQ (bm, Qt))
796 goto found;
799 if (ln2 > ix1)
801 bm = Fnth (make_number (ix1), bm2);
802 if (!EQ (bm, Qt))
803 goto found;
804 return NO_FRINGE_BITMAP;
806 else if ((bm = bm2, NILP (bm)))
807 return NO_FRINGE_BITMAP;
809 found:
810 return lookup_fringe_bitmap (bm);
814 void
815 draw_fringe_bitmap (w, row, left_p)
816 struct window *w;
817 struct glyph_row *row;
818 int left_p;
820 int overlay = 0;
822 if (!left_p && row->cursor_in_fringe_p)
824 Lisp_Object cursor = Qnil;
826 switch (w->phys_cursor_type)
828 case HOLLOW_BOX_CURSOR:
829 if (row->visible_height >= STANDARD_BITMAP_HEIGHT (hollow_rectangle_bits))
830 cursor = Qhollow;
831 else
832 cursor = Qhollow_small;
833 break;
834 case FILLED_BOX_CURSOR:
835 cursor = Qbox;
836 break;
837 case BAR_CURSOR:
838 cursor = Qbar;
839 break;
840 case HBAR_CURSOR:
841 cursor = Qhbar;
842 break;
843 case NO_CURSOR:
844 default:
845 w->phys_cursor_on_p = 0;
846 row->cursor_in_fringe_p = 0;
847 break;
849 if (!NILP (cursor))
851 int bm = get_logical_cursor_bitmap (w, cursor);
852 if (bm != NO_FRINGE_BITMAP)
854 draw_fringe_bitmap_1 (w, row, 0, 2, bm);
855 overlay = EQ (cursor, Qbox) ? 3 : 1;
860 draw_fringe_bitmap_1 (w, row, left_p, overlay, NO_FRINGE_BITMAP);
862 if (left_p && row->overlay_arrow_bitmap != NO_FRINGE_BITMAP)
863 draw_fringe_bitmap_1 (w, row, 1, 1, row->overlay_arrow_bitmap);
867 /* Draw fringe bitmaps for glyph row ROW on window W. Call this
868 function with input blocked. */
870 void
871 draw_row_fringe_bitmaps (w, row)
872 struct window *w;
873 struct glyph_row *row;
875 xassert (interrupt_input_blocked);
877 /* If row is completely invisible, because of vscrolling, we
878 don't have to draw anything. */
879 if (row->visible_height <= 0)
880 return;
882 if (WINDOW_LEFT_FRINGE_WIDTH (w) != 0)
883 draw_fringe_bitmap (w, row, 1);
885 if (WINDOW_RIGHT_FRINGE_WIDTH (w) != 0)
886 draw_fringe_bitmap (w, row, 0);
889 /* Draw the fringes of window W. Only fringes for rows marked for
890 update in redraw_fringe_bitmaps_p are drawn.
892 Return >0 if left or right fringe was redrawn in any way.
894 If NO_FRINGE is non-zero, also return >0 if either fringe has zero width.
896 A return value >0 indicates that the vertical line between windows
897 needs update (as it may be drawn in the fringe).
901 draw_window_fringes (w, no_fringe)
902 struct window *w;
903 int no_fringe;
905 struct glyph_row *row;
906 int yb = window_text_bottom_y (w);
907 int nrows = w->current_matrix->nrows;
908 int y, rn;
909 int updated = 0;
911 if (w->pseudo_window_p)
912 return 0;
914 /* Must draw line if no fringe */
915 if (no_fringe
916 && (WINDOW_LEFT_FRINGE_WIDTH (w) == 0
917 || WINDOW_RIGHT_FRINGE_WIDTH (w) == 0))
918 updated++;
920 for (y = w->vscroll, rn = 0, row = w->current_matrix->rows;
921 y < yb && rn < nrows;
922 y += row->height, ++row, ++rn)
924 if (!row->redraw_fringe_bitmaps_p)
925 continue;
926 draw_row_fringe_bitmaps (w, row);
927 row->redraw_fringe_bitmaps_p = 0;
928 updated++;
931 return updated;
935 /* Recalculate the bitmaps to show in the fringes of window W.
936 Only mark rows with modified bitmaps for update in redraw_fringe_bitmaps_p.
938 If KEEP_CURRENT_P is 0, update current_matrix too. */
941 update_window_fringes (w, keep_current_p)
942 struct window *w;
943 int keep_current_p;
945 struct glyph_row *row, *cur = 0;
946 int yb = window_text_bottom_y (w);
947 int rn, nrows = w->current_matrix->nrows;
948 int y;
949 int redraw_p = 0;
950 Lisp_Object boundary_top = Qnil, boundary_bot = Qnil;
951 Lisp_Object arrow_top = Qnil, arrow_bot = Qnil;
952 Lisp_Object empty_pos;
953 Lisp_Object ind = Qnil;
954 #define MAX_BITMAP_CACHE (8*4)
955 int bitmap_cache[MAX_BITMAP_CACHE];
956 int top_ind_rn, bot_ind_rn;
957 int top_ind_min_y, bot_ind_max_y;
958 int top_row_ends_at_zv_p, bot_row_ends_at_zv_p;
960 if (w->pseudo_window_p)
961 return 0;
963 if (!MINI_WINDOW_P (w)
964 && (ind = XBUFFER (w->buffer)->indicate_buffer_boundaries, !NILP (ind)))
966 if (EQ (ind, Qleft) || EQ (ind, Qright))
967 boundary_top = boundary_bot = arrow_top = arrow_bot = ind;
968 else if (CONSP (ind) && CONSP (XCAR (ind)))
970 Lisp_Object pos;
971 if (pos = Fassq (Qt, ind), !NILP (pos))
972 boundary_top = boundary_bot = arrow_top = arrow_bot = XCDR (pos);
973 if (pos = Fassq (Qtop, ind), !NILP (pos))
974 boundary_top = XCDR (pos);
975 if (pos = Fassq (Qbottom, ind), !NILP (pos))
976 boundary_bot = XCDR (pos);
977 if (pos = Fassq (Qup, ind), !NILP (pos))
978 arrow_top = XCDR (pos);
979 if (pos = Fassq (Qdown, ind), !NILP (pos))
980 arrow_bot = XCDR (pos);
982 else
983 /* Anything else means boundary on left and no arrows. */
984 boundary_top = boundary_bot = Qleft;
987 top_ind_rn = bot_ind_rn = -1;
988 if (!NILP (ind))
990 for (y = w->vscroll, rn = 0;
991 y < yb && rn < nrows;
992 y += row->height, ++rn)
994 row = w->desired_matrix->rows + rn;
995 if (!row->enabled_p)
996 row = w->current_matrix->rows + rn;
998 row->indicate_bob_p = row->indicate_top_line_p = 0;
999 row->indicate_eob_p = row->indicate_bottom_line_p = 0;
1001 if (!row->mode_line_p)
1003 if (top_ind_rn < 0 && row->visible_height > 0)
1005 if (MATRIX_ROW_START_CHARPOS (row) <= BUF_BEGV (XBUFFER (w->buffer))
1006 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
1007 row->indicate_bob_p = !NILP (boundary_top);
1008 else
1009 row->indicate_top_line_p = !NILP (arrow_top);
1010 top_ind_rn = rn;
1013 if (bot_ind_rn < 0)
1015 if (MATRIX_ROW_END_CHARPOS (row) >= BUF_ZV (XBUFFER (w->buffer))
1016 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row))
1017 row->indicate_eob_p = !NILP (boundary_bot), bot_ind_rn = rn;
1018 else if (y + row->height >= yb)
1019 row->indicate_bottom_line_p = !NILP (arrow_bot), bot_ind_rn = rn;
1025 empty_pos = XBUFFER (w->buffer)->indicate_empty_lines;
1026 if (!NILP (empty_pos) && !EQ (empty_pos, Qright))
1027 empty_pos = WINDOW_LEFT_FRINGE_WIDTH (w) == 0 ? Qright : Qleft;
1029 for (y = 0; y < MAX_BITMAP_CACHE; y++)
1030 bitmap_cache[y] = -1;
1032 #define LEFT_FRINGE(cache, which, partial_p) \
1033 (bitmap_cache[cache*4+partial_p] >= 0 \
1034 ? bitmap_cache[cache*4+partial_p] \
1035 : (bitmap_cache[cache*4+partial_p] = \
1036 get_logical_fringe_bitmap (w, which, 0, partial_p)))
1038 #define RIGHT_FRINGE(cache, which, partial_p) \
1039 (bitmap_cache[cache*4+2+partial_p] >= 0 \
1040 ? bitmap_cache[cache*4+2+partial_p] \
1041 : (bitmap_cache[cache*4+2+partial_p] = \
1042 get_logical_fringe_bitmap (w, which, 1, partial_p)))
1045 /* Extend top-aligned top indicator (or bottom-aligned bottom
1046 indicator) to adjacent rows if it doesn't fit in one row. */
1047 top_ind_min_y = bot_ind_max_y = -1;
1048 if (top_ind_rn >= 0)
1050 int bn = NO_FRINGE_BITMAP;
1052 row = w->desired_matrix->rows + top_ind_rn;
1053 if (!row->enabled_p)
1054 row = w->current_matrix->rows + top_ind_rn;
1056 top_row_ends_at_zv_p = row->ends_at_zv_p;
1057 if (row->indicate_bob_p)
1059 if (EQ (boundary_top, Qleft))
1060 bn = ((row->indicate_eob_p && EQ (boundary_bot, Qleft))
1061 ? LEFT_FRINGE (1, Qtop_bottom, row->ends_at_zv_p)
1062 : LEFT_FRINGE (2, Qtop, 0));
1063 else
1064 bn = ((row->indicate_eob_p && EQ (boundary_bot, Qright))
1065 ? RIGHT_FRINGE (1, Qtop_bottom, row->ends_at_zv_p)
1066 : RIGHT_FRINGE (2, Qtop, 0));
1068 else if (row->indicate_top_line_p)
1070 if (EQ (arrow_top, Qleft))
1071 bn = LEFT_FRINGE (6, Qup, 0);
1072 else
1073 bn = RIGHT_FRINGE (6, Qup, 0);
1076 if (bn != NO_FRINGE_BITMAP)
1078 struct fringe_bitmap *fb;
1080 fb = fringe_bitmaps[bn];
1081 if (fb == NULL)
1082 fb = &standard_bitmaps[bn < MAX_STANDARD_FRINGE_BITMAPS
1083 ? bn : UNDEF_FRINGE_BITMAP];
1084 if (fb->align == ALIGN_BITMAP_TOP && fb->period == 0)
1086 struct glyph_row *row1;
1087 int top_ind_max_y;
1089 top_ind_min_y = WINDOW_HEADER_LINE_HEIGHT (w);
1090 top_ind_max_y = top_ind_min_y + fb->height;
1091 if (top_ind_max_y > yb)
1092 top_ind_max_y = yb;
1094 for (y = row->y + row->height, rn = top_ind_rn + 1;
1095 y < top_ind_max_y && rn < nrows;
1096 y += row1->height, rn++)
1098 if (bot_ind_rn >= 0 && rn >= bot_ind_rn)
1099 break;
1101 row1 = w->desired_matrix->rows + rn;
1102 if (!row1->enabled_p)
1103 row1 = w->current_matrix->rows + rn;
1105 row1->indicate_bob_p = row->indicate_bob_p;
1106 row1->indicate_top_line_p = row->indicate_top_line_p;
1111 if (bot_ind_rn >= 0)
1113 int bn = NO_FRINGE_BITMAP;
1115 row = w->desired_matrix->rows + bot_ind_rn;
1116 if (!row->enabled_p)
1117 row = w->current_matrix->rows + bot_ind_rn;
1119 bot_row_ends_at_zv_p = row->ends_at_zv_p;
1120 if (row->indicate_eob_p)
1122 if (EQ (boundary_bot, Qleft))
1123 bn = LEFT_FRINGE (3, Qbottom, row->ends_at_zv_p);
1124 else
1125 bn = RIGHT_FRINGE (3, Qbottom, row->ends_at_zv_p);
1127 else if (row->indicate_bottom_line_p)
1129 if (EQ (arrow_bot, Qleft))
1130 bn = LEFT_FRINGE (7, Qdown, 0);
1131 else
1132 bn = RIGHT_FRINGE (7, Qdown, 0);
1135 if (bn != NO_FRINGE_BITMAP)
1137 struct fringe_bitmap *fb;
1139 fb = fringe_bitmaps[bn];
1140 if (fb == NULL)
1141 fb = &standard_bitmaps[bn < MAX_STANDARD_FRINGE_BITMAPS
1142 ? bn : UNDEF_FRINGE_BITMAP];
1143 if (fb->align == ALIGN_BITMAP_BOTTOM && fb->period == 0)
1145 struct glyph_row *row1;
1146 int bot_ind_min_y;
1148 bot_ind_max_y = row->y + row->visible_height;
1149 bot_ind_min_y = bot_ind_max_y - fb->height;
1150 if (bot_ind_min_y < WINDOW_HEADER_LINE_HEIGHT (w))
1151 bot_ind_min_y = WINDOW_HEADER_LINE_HEIGHT (w);
1153 for (y = row->y, rn = bot_ind_rn - 1;
1154 y >= bot_ind_min_y && rn >= 0;
1155 y -= row1->height, rn--)
1157 if (top_ind_rn >= 0 && rn <= top_ind_rn)
1158 break;
1160 row1 = w->desired_matrix->rows + rn;
1161 if (!row1->enabled_p)
1162 row1 = w->current_matrix->rows + rn;
1164 row1->indicate_eob_p = row->indicate_eob_p;
1165 row1->indicate_bottom_line_p = row->indicate_bottom_line_p;
1171 for (y = w->vscroll, rn = 0;
1172 y < yb && rn < nrows;
1173 y += row->height, rn++)
1175 int left, right;
1176 unsigned left_face_id, right_face_id;
1177 int left_offset, right_offset;
1179 row = w->desired_matrix->rows + rn;
1180 cur = w->current_matrix->rows + rn;
1181 if (!row->enabled_p)
1182 row = cur;
1184 left_face_id = right_face_id = DEFAULT_FACE_ID;
1185 left_offset = right_offset = 0;
1187 /* Decide which bitmap to draw in the left fringe. */
1188 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
1189 left = NO_FRINGE_BITMAP;
1190 else if (row->left_user_fringe_bitmap != NO_FRINGE_BITMAP)
1192 left = row->left_user_fringe_bitmap;
1193 left_face_id = row->left_user_fringe_face_id;
1195 else if (row->truncated_on_left_p)
1196 left = LEFT_FRINGE(0, Qtruncation, 0);
1197 else if (row->indicate_bob_p && EQ (boundary_top, Qleft))
1199 left = ((row->indicate_eob_p && EQ (boundary_bot, Qleft))
1200 ? LEFT_FRINGE (1, Qtop_bottom, top_row_ends_at_zv_p)
1201 : LEFT_FRINGE (2, Qtop, 0));
1202 if (top_ind_min_y >= 0)
1203 left_offset = top_ind_min_y - row->y;
1205 else if (row->indicate_eob_p && EQ (boundary_bot, Qleft))
1207 left = LEFT_FRINGE (3, Qbottom, bot_row_ends_at_zv_p);
1208 if (bot_ind_max_y >= 0)
1209 left_offset = bot_ind_max_y - (row->y + row->visible_height);
1211 else if (MATRIX_ROW_CONTINUATION_LINE_P (row))
1212 left = LEFT_FRINGE (4, Qcontinuation, 0);
1213 else if (row->indicate_empty_line_p && EQ (empty_pos, Qleft))
1214 left = LEFT_FRINGE (5, Qempty_line, 0);
1215 else if (row->indicate_top_line_p && EQ (arrow_top, Qleft))
1217 left = LEFT_FRINGE (6, Qup, 0);
1218 if (top_ind_min_y >= 0)
1219 left_offset = top_ind_min_y - row->y;
1221 else if (row->indicate_bottom_line_p && EQ (arrow_bot, Qleft))
1223 left = LEFT_FRINGE (7, Qdown, 0);
1224 if (bot_ind_max_y >= 0)
1225 left_offset = bot_ind_max_y - (row->y + row->visible_height);
1227 else
1228 left = NO_FRINGE_BITMAP;
1230 /* Decide which bitmap to draw in the right fringe. */
1231 if (WINDOW_RIGHT_FRINGE_WIDTH (w) == 0)
1232 right = NO_FRINGE_BITMAP;
1233 else if (row->right_user_fringe_bitmap != NO_FRINGE_BITMAP)
1235 right = row->right_user_fringe_bitmap;
1236 right_face_id = row->right_user_fringe_face_id;
1238 else if (row->truncated_on_right_p)
1239 right = RIGHT_FRINGE (0, Qtruncation, 0);
1240 else if (row->indicate_bob_p && EQ (boundary_top, Qright))
1242 right = ((row->indicate_eob_p && EQ (boundary_bot, Qright))
1243 ? RIGHT_FRINGE (1, Qtop_bottom, top_row_ends_at_zv_p)
1244 : RIGHT_FRINGE (2, Qtop, 0));
1245 if (top_ind_min_y >= 0)
1246 right_offset = top_ind_min_y - row->y;
1248 else if (row->indicate_eob_p && EQ (boundary_bot, Qright))
1250 right = RIGHT_FRINGE (3, Qbottom, bot_row_ends_at_zv_p);
1251 if (bot_ind_max_y >= 0)
1252 right_offset = bot_ind_max_y - (row->y + row->visible_height);
1254 else if (row->continued_p)
1255 right = RIGHT_FRINGE (4, Qcontinuation, 0);
1256 else if (row->indicate_top_line_p && EQ (arrow_top, Qright))
1258 right = RIGHT_FRINGE (6, Qup, 0);
1259 if (top_ind_min_y >= 0)
1260 right_offset = top_ind_min_y - row->y;
1262 else if (row->indicate_bottom_line_p && EQ (arrow_bot, Qright))
1264 right = RIGHT_FRINGE (7, Qdown, 0);
1265 if (bot_ind_max_y >= 0)
1266 right_offset = bot_ind_max_y - (row->y + row->visible_height);
1268 else if (row->indicate_empty_line_p && EQ (empty_pos, Qright))
1269 right = RIGHT_FRINGE (5, Qempty_line, 0);
1270 else
1271 right = NO_FRINGE_BITMAP;
1273 if (row->y != cur->y
1274 || row->visible_height != cur->visible_height
1275 || row->ends_at_zv_p != cur->ends_at_zv_p
1276 || left != cur->left_fringe_bitmap
1277 || right != cur->right_fringe_bitmap
1278 || left_face_id != cur->left_fringe_face_id
1279 || right_face_id != cur->right_fringe_face_id
1280 || left_offset != cur->left_fringe_offset
1281 || right_offset != cur->right_fringe_offset
1282 || cur->redraw_fringe_bitmaps_p)
1284 redraw_p = row->redraw_fringe_bitmaps_p = 1;
1285 if (!keep_current_p)
1287 cur->redraw_fringe_bitmaps_p = 1;
1288 cur->left_fringe_bitmap = left;
1289 cur->right_fringe_bitmap = right;
1290 cur->left_fringe_face_id = left_face_id;
1291 cur->right_fringe_face_id = right_face_id;
1292 cur->left_fringe_offset = left_offset;
1293 cur->right_fringe_offset = right_offset;
1297 if (row->overlay_arrow_bitmap < 0)
1298 row->overlay_arrow_bitmap = get_logical_fringe_bitmap (w, Qoverlay_arrow, 0, 0);
1300 if (row->overlay_arrow_bitmap != cur->overlay_arrow_bitmap)
1302 redraw_p = row->redraw_fringe_bitmaps_p = cur->redraw_fringe_bitmaps_p = 1;
1303 cur->overlay_arrow_bitmap = row->overlay_arrow_bitmap;
1306 row->left_fringe_bitmap = left;
1307 row->right_fringe_bitmap = right;
1308 row->left_fringe_face_id = left_face_id;
1309 row->right_fringe_face_id = right_face_id;
1310 row->left_fringe_offset = left_offset;
1311 row->right_fringe_offset = right_offset;
1314 return redraw_p && !keep_current_p;
1318 /* Compute actual fringe widths for frame F.
1320 If REDRAW is 1, redraw F if the fringe settings was actually
1321 modified and F is visible.
1323 Since the combined left and right fringe must occupy an integral
1324 number of columns, we may need to add some pixels to each fringe.
1325 Typically, we add an equal amount (+/- 1 pixel) to each fringe,
1326 but a negative width value is taken literally (after negating it).
1328 We never make the fringes narrower than specified.
1331 void
1332 compute_fringe_widths (f, redraw)
1333 struct frame *f;
1334 int redraw;
1336 int o_left = FRAME_LEFT_FRINGE_WIDTH (f);
1337 int o_right = FRAME_RIGHT_FRINGE_WIDTH (f);
1338 int o_cols = FRAME_FRINGE_COLS (f);
1340 Lisp_Object left_fringe = Fassq (Qleft_fringe, f->param_alist);
1341 Lisp_Object right_fringe = Fassq (Qright_fringe, f->param_alist);
1342 int left_fringe_width, right_fringe_width;
1344 if (!NILP (left_fringe))
1345 left_fringe = Fcdr (left_fringe);
1346 if (!NILP (right_fringe))
1347 right_fringe = Fcdr (right_fringe);
1349 left_fringe_width = ((NILP (left_fringe) || !INTEGERP (left_fringe)) ? 8 :
1350 XINT (left_fringe));
1351 right_fringe_width = ((NILP (right_fringe) || !INTEGERP (right_fringe)) ? 8 :
1352 XINT (right_fringe));
1354 if (left_fringe_width || right_fringe_width)
1356 int left_wid = left_fringe_width >= 0 ? left_fringe_width : -left_fringe_width;
1357 int right_wid = right_fringe_width >= 0 ? right_fringe_width : -right_fringe_width;
1358 int conf_wid = left_wid + right_wid;
1359 int font_wid = FRAME_COLUMN_WIDTH (f);
1360 int cols = (left_wid + right_wid + font_wid-1) / font_wid;
1361 int real_wid = cols * font_wid;
1362 if (left_wid && right_wid)
1364 if (left_fringe_width < 0)
1366 /* Left fringe width is fixed, adjust right fringe if necessary */
1367 FRAME_LEFT_FRINGE_WIDTH (f) = left_wid;
1368 FRAME_RIGHT_FRINGE_WIDTH (f) = real_wid - left_wid;
1370 else if (right_fringe_width < 0)
1372 /* Right fringe width is fixed, adjust left fringe if necessary */
1373 FRAME_LEFT_FRINGE_WIDTH (f) = real_wid - right_wid;
1374 FRAME_RIGHT_FRINGE_WIDTH (f) = right_wid;
1376 else
1378 /* Adjust both fringes with an equal amount.
1379 Note that we are doing integer arithmetic here, so don't
1380 lose a pixel if the total width is an odd number. */
1381 int fill = real_wid - conf_wid;
1382 FRAME_LEFT_FRINGE_WIDTH (f) = left_wid + fill/2;
1383 FRAME_RIGHT_FRINGE_WIDTH (f) = right_wid + fill - fill/2;
1386 else if (left_fringe_width)
1388 FRAME_LEFT_FRINGE_WIDTH (f) = real_wid;
1389 FRAME_RIGHT_FRINGE_WIDTH (f) = 0;
1391 else
1393 FRAME_LEFT_FRINGE_WIDTH (f) = 0;
1394 FRAME_RIGHT_FRINGE_WIDTH (f) = real_wid;
1396 FRAME_FRINGE_COLS (f) = cols;
1398 else
1400 FRAME_LEFT_FRINGE_WIDTH (f) = 0;
1401 FRAME_RIGHT_FRINGE_WIDTH (f) = 0;
1402 FRAME_FRINGE_COLS (f) = 0;
1405 if (redraw && FRAME_VISIBLE_P (f))
1406 if (o_left != FRAME_LEFT_FRINGE_WIDTH (f) ||
1407 o_right != FRAME_RIGHT_FRINGE_WIDTH (f) ||
1408 o_cols != FRAME_FRINGE_COLS (f))
1409 redraw_frame (f);
1413 /* Free resources used by a user-defined bitmap. */
1415 void
1416 destroy_fringe_bitmap (n)
1417 int n;
1419 struct fringe_bitmap **fbp;
1421 fringe_faces[n] = Qnil;
1423 fbp = &fringe_bitmaps[n];
1424 if (*fbp && (*fbp)->dynamic)
1426 /* XXX Is SELECTED_FRAME OK here? */
1427 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
1428 if (rif && rif->destroy_fringe_bitmap)
1429 rif->destroy_fringe_bitmap (n);
1430 xfree (*fbp);
1431 *fbp = NULL;
1434 while (max_used_fringe_bitmap > MAX_STANDARD_FRINGE_BITMAPS
1435 && fringe_bitmaps[max_used_fringe_bitmap - 1] == NULL)
1436 max_used_fringe_bitmap--;
1440 DEFUN ("destroy-fringe-bitmap", Fdestroy_fringe_bitmap, Sdestroy_fringe_bitmap,
1441 1, 1, 0,
1442 doc: /* Destroy fringe bitmap BITMAP.
1443 If BITMAP overrides a standard fringe bitmap, the original bitmap is restored. */)
1444 (bitmap)
1445 Lisp_Object bitmap;
1447 int n;
1449 CHECK_SYMBOL (bitmap);
1450 n = lookup_fringe_bitmap (bitmap);
1451 if (!n)
1452 return Qnil;
1454 destroy_fringe_bitmap (n);
1456 if (n >= MAX_STANDARD_FRINGE_BITMAPS)
1458 Vfringe_bitmaps = Fdelq (bitmap, Vfringe_bitmaps);
1459 /* It would be better to remove the fringe property. */
1460 Fput (bitmap, Qfringe, Qnil);
1463 return Qnil;
1467 /* Initialize bitmap bit.
1469 On X, we bit-swap the built-in bitmaps and reduce bitmap
1470 from short to char array if width is <= 8 bits.
1472 On MAC with big-endian CPU, we need to byte-swap each short.
1474 On W32 and MAC (little endian), there's no need to do this.
1477 #if defined (HAVE_X_WINDOWS)
1478 static const unsigned char swap_nibble[16] = {
1479 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
1480 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
1481 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
1482 0x3, 0xb, 0x7, 0xf}; /* 0011 1011 0111 1111 */
1483 #endif /* HAVE_X_WINDOWS */
1485 void
1486 init_fringe_bitmap (which, fb, once_p)
1487 int which;
1488 struct fringe_bitmap *fb;
1489 int once_p;
1491 if (once_p || fb->dynamic)
1493 #if defined (HAVE_X_WINDOWS)
1494 unsigned short *bits = fb->bits;
1495 int j;
1497 if (fb->width <= 8)
1499 unsigned char *cbits = (unsigned char *)fb->bits;
1500 for (j = 0; j < fb->height; j++)
1502 unsigned short b = *bits++;
1503 unsigned char c;
1504 c = (unsigned char)((swap_nibble[b & 0xf] << 4)
1505 | (swap_nibble[(b>>4) & 0xf]));
1506 *cbits++ = (c >> (8 - fb->width));
1509 else
1511 for (j = 0; j < fb->height; j++)
1513 unsigned short b = *bits;
1514 b = (unsigned short)((swap_nibble[b & 0xf] << 12)
1515 | (swap_nibble[(b>>4) & 0xf] << 8)
1516 | (swap_nibble[(b>>8) & 0xf] << 4)
1517 | (swap_nibble[(b>>12) & 0xf]));
1518 b >>= (16 - fb->width);
1519 #ifdef WORDS_BIG_ENDIAN
1520 b = ((b >> 8) | (b << 8));
1521 #endif
1522 *bits++ = b;
1525 #endif /* HAVE_X_WINDOWS */
1529 if (!once_p)
1531 /* XXX Is SELECTED_FRAME OK here? */
1532 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
1534 destroy_fringe_bitmap (which);
1536 if (rif && rif->define_fringe_bitmap)
1537 rif->define_fringe_bitmap (which, fb->bits, fb->height, fb->width);
1539 fringe_bitmaps[which] = fb;
1540 if (which >= max_used_fringe_bitmap)
1541 max_used_fringe_bitmap = which + 1;
1546 DEFUN ("define-fringe-bitmap", Fdefine_fringe_bitmap, Sdefine_fringe_bitmap,
1547 2, 5, 0,
1548 doc: /* Define fringe bitmap BITMAP from BITS of size HEIGHT x WIDTH.
1549 BITMAP is a symbol identifying the new fringe bitmap.
1550 BITS is either a string or a vector of integers.
1551 HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS.
1552 WIDTH must be an integer between 1 and 16, or nil which defaults to 8.
1553 Optional fifth arg ALIGN may be one of `top', `center', or `bottom',
1554 indicating the positioning of the bitmap relative to the rows where it
1555 is used; the default is to center the bitmap. Fifth arg may also be a
1556 list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap
1557 should be repeated.
1558 If BITMAP already exists, the existing definition is replaced. */)
1559 (bitmap, bits, height, width, align)
1560 Lisp_Object bitmap, bits, height, width, align;
1562 int n, h, i, j;
1563 unsigned short *b;
1564 struct fringe_bitmap fb, *xfb;
1565 int fill1 = 0, fill2 = 0;
1567 CHECK_SYMBOL (bitmap);
1569 if (STRINGP (bits))
1570 h = SCHARS (bits);
1571 else if (VECTORP (bits))
1572 h = XVECTOR (bits)->size;
1573 else
1574 wrong_type_argument (Qsequencep, bits);
1576 if (NILP (height))
1577 fb.height = h;
1578 else
1580 CHECK_NUMBER (height);
1581 fb.height = min (XINT (height), 255);
1582 if (fb.height > h)
1584 fill1 = (fb.height - h) / 2;
1585 fill2 = fb.height - h - fill1;
1589 if (NILP (width))
1590 fb.width = 8;
1591 else
1593 CHECK_NUMBER (width);
1594 fb.width = min (XINT (width), 255);
1597 fb.period = 0;
1598 fb.align = ALIGN_BITMAP_CENTER;
1600 if (CONSP (align))
1602 Lisp_Object period = XCDR (align);
1603 if (CONSP (period))
1605 period = XCAR (period);
1606 if (!NILP (period))
1608 fb.period = fb.height;
1609 fb.height = 255;
1612 align = XCAR (align);
1614 if (EQ (align, Qtop))
1615 fb.align = ALIGN_BITMAP_TOP;
1616 else if (EQ (align, Qbottom))
1617 fb.align = ALIGN_BITMAP_BOTTOM;
1618 else if (!NILP (align) && !EQ (align, Qcenter))
1619 error ("Bad align argument");
1621 n = lookup_fringe_bitmap (bitmap);
1622 if (!n)
1624 if (max_used_fringe_bitmap < max_fringe_bitmaps)
1625 n = max_used_fringe_bitmap++;
1626 else
1628 for (n = MAX_STANDARD_FRINGE_BITMAPS;
1629 n < max_fringe_bitmaps;
1630 n++)
1631 if (fringe_bitmaps[n] == NULL)
1632 break;
1634 if (n == max_fringe_bitmaps)
1636 if ((max_fringe_bitmaps + 20) > MAX_FRINGE_BITMAPS)
1637 error ("No free fringe bitmap slots");
1639 i = max_fringe_bitmaps;
1640 max_fringe_bitmaps += 20;
1641 fringe_bitmaps
1642 = ((struct fringe_bitmap **)
1643 xrealloc (fringe_bitmaps, max_fringe_bitmaps * sizeof (struct fringe_bitmap *)));
1644 fringe_faces
1645 = (Lisp_Object *) xrealloc (fringe_faces, max_fringe_bitmaps * sizeof (Lisp_Object));
1647 for (; i < max_fringe_bitmaps; i++)
1649 fringe_bitmaps[i] = NULL;
1650 fringe_faces[i] = Qnil;
1655 Vfringe_bitmaps = Fcons (bitmap, Vfringe_bitmaps);
1656 Fput (bitmap, Qfringe, make_number (n));
1659 fb.dynamic = 1;
1661 xfb = (struct fringe_bitmap *) xmalloc (sizeof fb
1662 + fb.height * BYTES_PER_BITMAP_ROW);
1663 fb.bits = b = (unsigned short *) (xfb + 1);
1664 bzero (b, fb.height);
1666 j = 0;
1667 while (j < fb.height)
1669 for (i = 0; i < fill1 && j < fb.height; i++)
1670 b[j++] = 0;
1671 for (i = 0; i < h && j < fb.height; i++)
1673 Lisp_Object elt = Faref (bits, make_number (i));
1674 b[j++] = NUMBERP (elt) ? XINT (elt) : 0;
1676 for (i = 0; i < fill2 && j < fb.height; i++)
1677 b[j++] = 0;
1680 *xfb = fb;
1682 init_fringe_bitmap (n, xfb, 0);
1684 return bitmap;
1687 DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face, Sset_fringe_bitmap_face,
1688 1, 2, 0,
1689 doc: /* Set face for fringe bitmap BITMAP to FACE.
1690 If FACE is nil, reset face to default fringe face. */)
1691 (bitmap, face)
1692 Lisp_Object bitmap, face;
1694 int n;
1695 int face_id;
1697 CHECK_SYMBOL (bitmap);
1698 n = lookup_fringe_bitmap (bitmap);
1699 if (!n)
1700 error ("Undefined fringe bitmap");
1702 if (!NILP (face))
1704 face_id = lookup_derived_face (SELECTED_FRAME (), face,
1705 FRINGE_FACE_ID, 1);
1706 if (face_id < 0)
1707 error ("No such face");
1710 fringe_faces[n] = face;
1712 return Qnil;
1715 DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos, Sfringe_bitmaps_at_pos,
1716 0, 2, 0,
1717 doc: /* Return fringe bitmaps of row containing position POS in window WINDOW.
1718 If WINDOW is nil, use selected window. If POS is nil, use value of point
1719 in that window. Return value is a list (LEFT RIGHT OV), where LEFT
1720 is the symbol for the bitmap in the left fringe (or nil if no bitmap),
1721 RIGHT is similar for the right fringe, and OV is non-nil if there is an
1722 overlay arrow in the left fringe.
1723 Return nil if POS is not visible in WINDOW. */)
1724 (pos, window)
1725 Lisp_Object pos, window;
1727 struct window *w;
1728 struct glyph_row *row;
1729 int textpos;
1731 if (NILP (window))
1732 window = selected_window;
1733 CHECK_WINDOW (window);
1734 w = XWINDOW (window);
1736 if (!NILP (pos))
1738 CHECK_NUMBER_COERCE_MARKER (pos);
1739 textpos = XINT (pos);
1741 else if (w == XWINDOW (selected_window))
1742 textpos = PT;
1743 else
1744 textpos = XMARKER (w->pointm)->charpos;
1746 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1747 row = row_containing_pos (w, textpos, row, NULL, 0);
1748 if (row)
1749 return list3 (get_fringe_bitmap_name (row->left_fringe_bitmap),
1750 get_fringe_bitmap_name (row->right_fringe_bitmap),
1751 (row->overlay_arrow_bitmap == 0 ? Qnil
1752 : row->overlay_arrow_bitmap < 0 ? Qt
1753 : get_fringe_bitmap_name (row->overlay_arrow_bitmap)));
1754 else
1755 return Qnil;
1759 /***********************************************************************
1760 Initialization
1761 ***********************************************************************/
1763 void
1764 syms_of_fringe ()
1766 Qtruncation = intern_c_string ("truncation");
1767 staticpro (&Qtruncation);
1768 Qcontinuation = intern_c_string ("continuation");
1769 staticpro (&Qcontinuation);
1770 Qoverlay_arrow = intern_c_string ("overlay-arrow");
1771 staticpro (&Qoverlay_arrow);
1772 Qempty_line = intern_c_string ("empty-line");
1773 staticpro (&Qempty_line);
1774 Qtop_bottom = intern_c_string ("top-bottom");
1775 staticpro (&Qtop_bottom);
1776 Qhollow_small = intern_c_string ("hollow-small");
1777 staticpro (&Qhollow_small);
1779 defsubr (&Sdestroy_fringe_bitmap);
1780 defsubr (&Sdefine_fringe_bitmap);
1781 defsubr (&Sfringe_bitmaps_at_pos);
1782 defsubr (&Sset_fringe_bitmap_face);
1784 DEFVAR_LISP ("overflow-newline-into-fringe", &Voverflow_newline_into_fringe,
1785 doc: /* *Non-nil means that newline may flow into the right fringe.
1786 This means that display lines which are exactly as wide as the window
1787 (not counting the final newline) will only occupy one screen line, by
1788 showing (or hiding) the final newline in the right fringe; when point
1789 is at the final newline, the cursor is shown in the right fringe.
1790 If nil, also continue lines which are exactly as wide as the window. */);
1791 Voverflow_newline_into_fringe = Qt;
1793 DEFVAR_LISP ("fringe-bitmaps", &Vfringe_bitmaps,
1794 doc: /* List of fringe bitmap symbols. */);
1795 Vfringe_bitmaps = Qnil;
1798 /* Garbage collection hook */
1800 void
1801 mark_fringe_data ()
1803 int i;
1805 for (i = 0; i < max_fringe_bitmaps; i++)
1806 if (!NILP (fringe_faces[i]))
1807 mark_object (fringe_faces[i]);
1810 /* Initialize this module when Emacs starts. */
1812 void
1813 init_fringe_once ()
1815 int bt;
1817 for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++)
1818 init_fringe_bitmap(bt, &standard_bitmaps[bt], 1);
1821 void
1822 init_fringe ()
1824 int i;
1826 max_fringe_bitmaps = MAX_STANDARD_FRINGE_BITMAPS + 20;
1828 fringe_bitmaps
1829 = (struct fringe_bitmap **) xmalloc (max_fringe_bitmaps * sizeof (struct fringe_bitmap *));
1830 fringe_faces
1831 = (Lisp_Object *) xmalloc (max_fringe_bitmaps * sizeof (Lisp_Object));
1833 for (i = 0; i < max_fringe_bitmaps; i++)
1835 fringe_bitmaps[i] = NULL;
1836 fringe_faces[i] = Qnil;
1840 #ifdef HAVE_NTGUI
1842 void
1843 w32_init_fringe (struct redisplay_interface *rif)
1845 int bt;
1847 if (!rif)
1848 return;
1850 for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++)
1852 struct fringe_bitmap *fb = &standard_bitmaps[bt];
1853 rif->define_fringe_bitmap (bt, fb->bits, fb->height, fb->width);
1857 void
1858 w32_reset_fringes ()
1860 /* Destroy row bitmaps. */
1861 int bt;
1862 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
1864 if (!rif)
1865 return;
1867 for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++)
1868 rif->destroy_fringe_bitmap (bt);
1871 #endif /* HAVE_NTGUI */
1873 #endif /* HAVE_WINDOW_SYSTEM */
1875 /* arch-tag: 04596920-43eb-473d-b319-82712338162d
1876 (do not change this comment) */