1 /* Fringe handling (split from xdisp.c).
2 Copyright (C) 1985-1988, 1993-1995, 1997-2012 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
26 #include "dispextern.h"
27 #include "character.h"
29 #include "blockinput.h"
30 #include "termhooks.h"
32 #ifdef HAVE_WINDOW_SYSTEM
34 /* Fringe bitmaps are represented in three different ways:
36 Logical bitmaps are used internally to denote things like
37 'end-of-buffer', 'left-truncation', 'overlay-arrow', etc.
39 Physical bitmaps specify the visual appearance of the bitmap,
40 e.g. 'bottom-left-angle', 'left-arrow', 'left-triangle', etc.
41 User defined bitmaps are physical bitmaps.
43 Internally, fringe bitmaps for a specific display row are
44 represented as a simple integer that is used as an index
45 into the table of all defined bitmaps. This index is stored
46 in the `fringe' property of the physical bitmap symbol.
48 Logical bitmaps are mapped to physical bitmaps through the
49 buffer-local `fringe-indicator-alist' variable.
51 Each element of this alist is a cons (LOGICAL . PHYSICAL)
52 mapping a logical bitmap to a physical bitmap.
53 PHYSICAL is either a symbol to use in both left and right fringe,
54 or a cons of two symbols (LEFT . RIGHT) denoting different
55 bitmaps to use in left and right fringe.
57 LOGICAL is first looked up in the window's buffer's buffer-local
58 value of the fringe-indicator-alist variable, and if not present,
59 in the global value of fringe-indicator-alist.
61 If LOGICAL is not present in either alist, or the PHYSICAL value
62 found is nil, no bitmap is shown for the logical bitmap.
64 The `left-fringe' and `right-fringe' display properties
65 must specify physical bitmap symbols.
68 static Lisp_Object Qtruncation
, Qcontinuation
, Qoverlay_arrow
;
69 static Lisp_Object Qempty_line
, Qtop_bottom
;
70 static Lisp_Object Qhollow_small
;
72 enum fringe_bitmap_align
74 ALIGN_BITMAP_CENTER
= 0,
90 /***********************************************************************
92 ***********************************************************************/
94 /* Undefined bitmap. A question mark. */
107 static unsigned short question_mark_bits
[] = {
108 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18};
110 /* An arrow like this: `<-'. */
121 static unsigned short left_arrow_bits
[] = {
122 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
125 /* Right truncation arrow bitmap `->'. */
136 static unsigned short right_arrow_bits
[] = {
137 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
140 /* Up arrow bitmap. */
151 static unsigned short up_arrow_bits
[] = {
152 0x18, 0x3c, 0x7e, 0xff, 0x18, 0x18, 0x18, 0x18};
155 /* Down arrow bitmap. */
166 static unsigned short down_arrow_bits
[] = {
167 0x18, 0x18, 0x18, 0x18, 0xff, 0x7e, 0x3c, 0x18};
169 /* Marker for continuation lines. */
180 static unsigned short left_curly_arrow_bits
[] = {
181 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
183 /* Marker for continued lines. */
194 static unsigned short right_curly_arrow_bits
[] = {
195 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
197 /* Reverse Overlay arrow bitmap. A triangular arrow. */
208 static unsigned short left_triangle_bits
[] = {
209 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
211 /* Overlay arrow bitmap. A triangular arrow. */
222 static unsigned short right_triangle_bits
[] = {
223 0xc0, 0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xc0};
225 /* First line bitmap. An top-left angle. */
236 static unsigned short top_left_angle_bits
[] = {
237 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00};
239 /* First line bitmap. An right-up angle. */
250 static unsigned short top_right_angle_bits
[] = {
251 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00};
253 /* Last line bitmap. An left-down angle. */
264 static unsigned short bottom_left_angle_bits
[] = {
265 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
267 /* Last line bitmap. An right-down angle. */
278 static unsigned short bottom_right_angle_bits
[] = {
279 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
281 /* First/last line bitmap. An left bracket. */
294 static unsigned short left_bracket_bits
[] = {
295 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
297 /* First/last line bitmap. An right bracket. */
310 static unsigned short right_bracket_bits
[] = {
311 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
313 /* Filled box cursor bitmap. A filled box; max 13 pixels high. */
329 static unsigned short filled_rectangle_bits
[] = {
330 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe};
332 /* Hollow box cursor bitmap. A hollow box; max 13 pixels high. */
348 static unsigned short hollow_rectangle_bits
[] = {
349 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfe};
351 /* Hollow square bitmap. */
360 static unsigned short hollow_square_bits
[] = {
361 0x7e, 0x42, 0x42, 0x42, 0x42, 0x7e};
363 /* Filled square bitmap. */
372 static unsigned short filled_square_bits
[] = {
373 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e};
375 /* Bar cursor bitmap. A vertical bar; max 13 pixels high. */
391 static unsigned short vertical_bar_bits
[] = {
392 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0};
394 /* HBar cursor bitmap. A horizontal bar; 2 pixels high. */
399 static unsigned short horizontal_bar_bits
[] = {
403 /* Bitmap drawn to indicate lines not displaying text if
404 `indicate-empty-lines' is non-nil. */
413 static unsigned short empty_line_bits
[] = {
414 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
415 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
416 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
417 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
418 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
419 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
420 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
421 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00};
424 #define BYTES_PER_BITMAP_ROW (sizeof (unsigned short))
425 #define STANDARD_BITMAP_HEIGHT(bits) (sizeof (bits)/BYTES_PER_BITMAP_ROW)
426 #define FRBITS(bits) bits, STANDARD_BITMAP_HEIGHT (bits)
428 /* NOTE: The order of these bitmaps must match the sequence
429 used in fringe.el to define the corresponding symbols. */
431 static struct fringe_bitmap standard_bitmaps
[] =
433 { NULL
, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */
434 { FRBITS (question_mark_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
435 { FRBITS (left_arrow_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
436 { FRBITS (right_arrow_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
437 { FRBITS (up_arrow_bits
), 8, 0, ALIGN_BITMAP_TOP
, 0 },
438 { FRBITS (down_arrow_bits
), 8, 0, ALIGN_BITMAP_BOTTOM
, 0 },
439 { FRBITS (left_curly_arrow_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
440 { FRBITS (right_curly_arrow_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
441 { FRBITS (left_triangle_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
442 { FRBITS (right_triangle_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
443 { FRBITS (top_left_angle_bits
), 8, 0, ALIGN_BITMAP_TOP
, 0 },
444 { FRBITS (top_right_angle_bits
), 8, 0, ALIGN_BITMAP_TOP
, 0 },
445 { FRBITS (bottom_left_angle_bits
), 8, 0, ALIGN_BITMAP_BOTTOM
, 0 },
446 { FRBITS (bottom_right_angle_bits
), 8, 0, ALIGN_BITMAP_BOTTOM
, 0 },
447 { FRBITS (left_bracket_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
448 { FRBITS (right_bracket_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
449 { FRBITS (filled_rectangle_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
450 { FRBITS (hollow_rectangle_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
451 { FRBITS (filled_square_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
452 { FRBITS (hollow_square_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
453 { FRBITS (vertical_bar_bits
), 8, 0, ALIGN_BITMAP_CENTER
, 0 },
454 { FRBITS (horizontal_bar_bits
), 8, 0, ALIGN_BITMAP_BOTTOM
, 0 },
455 { FRBITS (empty_line_bits
), 8, 3, ALIGN_BITMAP_TOP
, 0 },
458 #define NO_FRINGE_BITMAP 0
459 #define UNDEF_FRINGE_BITMAP 1
460 #define MAX_STANDARD_FRINGE_BITMAPS (sizeof (standard_bitmaps)/sizeof (standard_bitmaps[0]))
462 static struct fringe_bitmap
**fringe_bitmaps
;
463 static Lisp_Object
*fringe_faces
;
464 static int max_fringe_bitmaps
;
469 int max_used_fringe_bitmap
= MAX_STANDARD_FRINGE_BITMAPS
;
472 /* Lookup bitmap number for symbol BITMAP.
473 Return 0 if not a bitmap. */
476 lookup_fringe_bitmap (Lisp_Object bitmap
)
480 bitmap
= Fget (bitmap
, Qfringe
);
481 if (!INTEGERP (bitmap
))
485 if (bn
> NO_FRINGE_BITMAP
486 && bn
< max_used_fringe_bitmap
487 && (bn
< MAX_STANDARD_FRINGE_BITMAPS
488 || fringe_bitmaps
[bn
] != NULL
))
494 /* Get fringe bitmap name for bitmap number BN.
496 Found by traversing Vfringe_bitmaps comparing BN to the
497 fringe property for each symbol.
499 Return BN if not found in Vfringe_bitmaps. */
502 get_fringe_bitmap_name (int bn
)
507 /* Zero means no bitmap -- return nil. */
511 bitmaps
= Vfringe_bitmaps
;
512 num
= make_number (bn
);
514 while (CONSP (bitmaps
))
516 Lisp_Object bitmap
= XCAR (bitmaps
);
517 if (EQ (num
, Fget (bitmap
, Qfringe
)))
519 bitmaps
= XCDR (bitmaps
);
525 /* Get fringe bitmap data for bitmap number BN. */
527 static struct fringe_bitmap
*
528 get_fringe_bitmap_data (int bn
)
530 struct fringe_bitmap
*fb
;
532 fb
= fringe_bitmaps
[bn
];
534 fb
= &standard_bitmaps
[bn
< MAX_STANDARD_FRINGE_BITMAPS
535 ? bn
: UNDEF_FRINGE_BITMAP
];
540 /* Draw the bitmap WHICH in one of the left or right fringes of
541 window W. ROW is the glyph row for which to display the bitmap; it
542 determines the vertical position at which the bitmap has to be
544 LEFT_P is 1 for left fringe, 0 for right fringe.
548 draw_fringe_bitmap_1 (struct window
*w
, struct glyph_row
*row
, int left_p
, int overlay
, int which
)
550 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
551 struct draw_fringe_bitmap_params p
;
552 struct fringe_bitmap
*fb
;
554 int face_id
= DEFAULT_FACE_ID
;
555 int offset
, header_line_height
;
557 p
.overlay_p
= (overlay
& 1) == 1;
558 p
.cursor_p
= (overlay
& 2) == 2;
560 if (which
!= NO_FRINGE_BITMAP
)
566 which
= row
->left_fringe_bitmap
;
567 face_id
= row
->left_fringe_face_id
;
568 offset
= row
->left_fringe_offset
;
572 which
= row
->right_fringe_bitmap
;
573 face_id
= row
->right_fringe_face_id
;
574 offset
= row
->right_fringe_offset
;
577 if (face_id
== DEFAULT_FACE_ID
)
579 Lisp_Object face
= fringe_faces
[which
];
580 face_id
= NILP (face
) ? lookup_named_face (f
, Qfringe
, 0)
581 : lookup_derived_face (f
, face
, FRINGE_FACE_ID
, 0);
583 face_id
= FRINGE_FACE_ID
;
586 fb
= get_fringe_bitmap_data (which
);
590 /* Convert row to frame coordinates. */
591 p
.y
= WINDOW_TO_FRAME_PIXEL_Y (w
, row
->y
) + offset
;
598 p
.dh
= (period
> 0 ? (p
.y
% period
) : 0);
601 /* Adjust y to the offset in the row to start drawing the bitmap. */
604 case ALIGN_BITMAP_CENTER
:
605 p
.y
+= (row
->height
- p
.h
) / 2;
607 case ALIGN_BITMAP_BOTTOM
:
608 p
.y
+= (row
->visible_height
- p
.h
);
610 case ALIGN_BITMAP_TOP
:
614 p
.face
= FACE_FROM_ID (f
, face_id
);
618 /* This could happen after clearing face cache.
619 But it shouldn't happen anymore. ++kfs */
623 PREPARE_FACE_FOR_DISPLAY (f
, p
.face
);
625 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
628 header_line_height
= WINDOW_HEADER_LINE_HEIGHT (w
);
629 p
.by
= WINDOW_TO_FRAME_PIXEL_Y (w
, max (header_line_height
, row
->y
));
630 p
.ny
= row
->visible_height
;
633 int wd
= WINDOW_LEFT_FRINGE_WIDTH (w
);
634 int x
= window_box_left (w
, (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
639 p
.x
= x
- p
.wd
- (wd
- p
.wd
) / 2;
641 if (p
.wd
< wd
|| p
.y
> p
.by
|| p
.y
+ p
.h
< p
.by
+ p
.ny
)
643 /* If W has a vertical border to its left, don't draw over it. */
644 wd
-= ((!WINDOW_LEFTMOST_P (w
)
645 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
653 int x
= window_box_right (w
,
654 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
657 int wd
= WINDOW_RIGHT_FRINGE_WIDTH (w
);
660 p
.x
= x
+ (wd
- p
.wd
) / 2;
661 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
663 if (p
.wd
< wd
|| p
.y
> p
.by
|| p
.y
+ p
.h
< p
.by
+ p
.ny
)
670 FRAME_RIF (f
)->draw_fringe_bitmap (w
, row
, &p
);
674 get_logical_cursor_bitmap (struct window
*w
, Lisp_Object cursor
)
676 Lisp_Object cmap
, bm
= Qnil
;
678 if ((cmap
= BVAR (XBUFFER (w
->buffer
), fringe_cursor_alist
)), !NILP (cmap
))
680 bm
= Fassq (cursor
, cmap
);
683 if ((bm
= XCDR (bm
)), NILP (bm
))
684 return NO_FRINGE_BITMAP
;
685 return lookup_fringe_bitmap (bm
);
688 if (EQ (cmap
, BVAR (&buffer_defaults
, fringe_cursor_alist
)))
689 return NO_FRINGE_BITMAP
;
690 bm
= Fassq (cursor
, BVAR (&buffer_defaults
, fringe_cursor_alist
));
691 if (!CONSP (bm
) || ((bm
= XCDR (bm
)), NILP (bm
)))
692 return NO_FRINGE_BITMAP
;
693 return lookup_fringe_bitmap (bm
);
697 get_logical_fringe_bitmap (struct window
*w
, Lisp_Object bitmap
, int right_p
, int partial_p
)
699 Lisp_Object cmap
, bm1
= Qnil
, bm2
= Qnil
, bm
;
700 EMACS_INT ln1
= 0, ln2
= 0;
702 int ix2
= ix1
+ (partial_p
? 2 : 0);
704 /* Lookup in buffer-local fringe-indicator-alist before global alist.
707 BITMAP -- use for all
708 (L R) -- use for left right (whether partial or not)
709 (L R PL PR) -- use for left right partial-left partial-right
710 If any value in local binding is not present or t, use global value.
712 If partial, lookup partial bitmap in default value if not found here.
713 If not partial, or no partial spec is present, use non-partial bitmap. */
715 if ((cmap
= BVAR (XBUFFER (w
->buffer
), fringe_indicator_alist
)), !NILP (cmap
))
717 bm1
= Fassq (bitmap
, cmap
);
720 if ((bm1
= XCDR (bm1
)), NILP (bm1
))
721 return NO_FRINGE_BITMAP
;
724 ln1
= XINT (Flength (bm1
));
729 bm
= Fnth (make_number (ix2
), bm1
);
738 bm
= Fnth (make_number (ix1
), bm1
);
744 else if ((bm
= bm1
, !EQ (bm
, Qt
)))
749 if (!EQ (cmap
, BVAR (&buffer_defaults
, fringe_indicator_alist
))
750 && !NILP (BVAR (&buffer_defaults
, fringe_indicator_alist
)))
752 bm2
= Fassq (bitmap
, BVAR (&buffer_defaults
, fringe_indicator_alist
));
755 if ((bm2
= XCDR (bm2
)), !NILP (bm2
))
759 ln2
= XINT (Flength (bm2
));
764 bm
= Fnth (make_number (ix2
), bm2
);
776 bm
= Fnth (make_number (ix1
), bm1
);
783 bm
= Fnth (make_number (ix1
), bm2
);
786 return NO_FRINGE_BITMAP
;
788 else if ((bm
= bm2
, NILP (bm
)))
789 return NO_FRINGE_BITMAP
;
792 return lookup_fringe_bitmap (bm
);
797 draw_fringe_bitmap (struct window
*w
, struct glyph_row
*row
, int left_p
)
801 if (left_p
== row
->reversed_p
&& row
->cursor_in_fringe_p
)
803 Lisp_Object cursor
= Qnil
;
805 switch (w
->phys_cursor_type
)
807 case HOLLOW_BOX_CURSOR
:
808 if (row
->visible_height
>= STANDARD_BITMAP_HEIGHT (hollow_rectangle_bits
))
811 cursor
= Qhollow_small
;
813 case FILLED_BOX_CURSOR
:
824 w
->phys_cursor_on_p
= 0;
825 row
->cursor_in_fringe_p
= 0;
830 int bm
= get_logical_cursor_bitmap (w
, cursor
);
831 if (bm
!= NO_FRINGE_BITMAP
)
833 draw_fringe_bitmap_1 (w
, row
, left_p
, 2, bm
);
834 overlay
= EQ (cursor
, Qbox
) ? 3 : 1;
839 draw_fringe_bitmap_1 (w
, row
, left_p
, overlay
, NO_FRINGE_BITMAP
);
841 if (left_p
&& row
->overlay_arrow_bitmap
!= NO_FRINGE_BITMAP
)
842 draw_fringe_bitmap_1 (w
, row
, 1, 1, row
->overlay_arrow_bitmap
);
846 /* Draw fringe bitmaps for glyph row ROW on window W. Call this
847 function with input blocked. */
850 draw_row_fringe_bitmaps (struct window
*w
, struct glyph_row
*row
)
852 eassert (interrupt_input_blocked
);
854 /* If row is completely invisible, because of vscrolling, we
855 don't have to draw anything. */
856 if (row
->visible_height
<= 0)
859 if (WINDOW_LEFT_FRINGE_WIDTH (w
) != 0)
860 draw_fringe_bitmap (w
, row
, 1);
862 if (WINDOW_RIGHT_FRINGE_WIDTH (w
) != 0)
863 draw_fringe_bitmap (w
, row
, 0);
866 /* Draw the fringes of window W. Only fringes for rows marked for
867 update in redraw_fringe_bitmaps_p are drawn.
869 Return >0 if left or right fringe was redrawn in any way.
871 If NO_FRINGE is non-zero, also return >0 if either fringe has zero width.
873 A return value >0 indicates that the vertical line between windows
874 needs update (as it may be drawn in the fringe).
878 draw_window_fringes (struct window
*w
, int no_fringe
)
880 struct glyph_row
*row
;
881 int yb
= window_text_bottom_y (w
);
882 int nrows
= w
->current_matrix
->nrows
;
886 if (w
->pseudo_window_p
)
889 /* Must draw line if no fringe */
891 && (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0
892 || WINDOW_RIGHT_FRINGE_WIDTH (w
) == 0))
895 for (y
= w
->vscroll
, rn
= 0, row
= w
->current_matrix
->rows
;
896 y
< yb
&& rn
< nrows
;
897 y
+= row
->height
, ++row
, ++rn
)
899 if (!row
->redraw_fringe_bitmaps_p
)
901 draw_row_fringe_bitmaps (w
, row
);
902 row
->redraw_fringe_bitmaps_p
= 0;
910 /* Recalculate the bitmaps to show in the fringes of window W.
911 Only mark rows with modified bitmaps for update in redraw_fringe_bitmaps_p.
913 If KEEP_CURRENT_P is 0, update current_matrix too. */
916 update_window_fringes (struct window
*w
, int keep_current_p
)
918 struct glyph_row
*row
, *cur
= 0;
919 int yb
= window_text_bottom_y (w
);
920 int rn
, nrows
= w
->current_matrix
->nrows
;
923 Lisp_Object boundary_top
= Qnil
, boundary_bot
= Qnil
;
924 Lisp_Object arrow_top
= Qnil
, arrow_bot
= Qnil
;
925 Lisp_Object empty_pos
;
926 Lisp_Object ind
= Qnil
;
927 #define MAX_BITMAP_CACHE (8*4)
928 int bitmap_cache
[MAX_BITMAP_CACHE
];
929 int top_ind_rn
, bot_ind_rn
;
930 int top_ind_min_y
, bot_ind_max_y
;
932 /* top_ind_rn is set to a nonnegative value whenever
933 row->indicate_bob_p is set, so it's OK that top_row_ends_at_zv_p
934 is not initialized here. Similarly for bot_ind_rn,
935 row->indicate_eob_p and bot_row_ends_at_zv_p. */
936 int top_row_ends_at_zv_p
IF_LINT (= 0), bot_row_ends_at_zv_p
IF_LINT (= 0);
938 if (w
->pseudo_window_p
)
941 if (!MINI_WINDOW_P (w
)
942 && (ind
= BVAR (XBUFFER (w
->buffer
), indicate_buffer_boundaries
), !NILP (ind
)))
944 if (EQ (ind
, Qleft
) || EQ (ind
, Qright
))
945 boundary_top
= boundary_bot
= arrow_top
= arrow_bot
= ind
;
946 else if (CONSP (ind
) && CONSP (XCAR (ind
)))
949 if (pos
= Fassq (Qt
, ind
), !NILP (pos
))
950 boundary_top
= boundary_bot
= arrow_top
= arrow_bot
= XCDR (pos
);
951 if (pos
= Fassq (Qtop
, ind
), !NILP (pos
))
952 boundary_top
= XCDR (pos
);
953 if (pos
= Fassq (Qbottom
, ind
), !NILP (pos
))
954 boundary_bot
= XCDR (pos
);
955 if (pos
= Fassq (Qup
, ind
), !NILP (pos
))
956 arrow_top
= XCDR (pos
);
957 if (pos
= Fassq (Qdown
, ind
), !NILP (pos
))
958 arrow_bot
= XCDR (pos
);
961 /* Anything else means boundary on left and no arrows. */
962 boundary_top
= boundary_bot
= Qleft
;
965 top_ind_rn
= bot_ind_rn
= -1;
968 for (y
= w
->vscroll
, rn
= 0;
969 y
< yb
&& rn
< nrows
;
970 y
+= row
->height
, ++rn
)
972 row
= w
->desired_matrix
->rows
+ rn
;
974 row
= w
->current_matrix
->rows
+ rn
;
976 row
->indicate_bob_p
= row
->indicate_top_line_p
= 0;
977 row
->indicate_eob_p
= row
->indicate_bottom_line_p
= 0;
979 if (!row
->mode_line_p
)
981 if (top_ind_rn
< 0 && row
->visible_height
> 0)
983 if (MATRIX_ROW_START_CHARPOS (row
) <= BUF_BEGV (XBUFFER (w
->buffer
))
984 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w
, row
))
985 row
->indicate_bob_p
= !NILP (boundary_top
);
987 row
->indicate_top_line_p
= !NILP (arrow_top
);
993 if (MATRIX_ROW_END_CHARPOS (row
) >= BUF_ZV (XBUFFER (w
->buffer
))
994 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w
, row
))
995 row
->indicate_eob_p
= !NILP (boundary_bot
), bot_ind_rn
= rn
;
996 else if (y
+ row
->height
>= yb
)
997 row
->indicate_bottom_line_p
= !NILP (arrow_bot
), bot_ind_rn
= rn
;
1003 empty_pos
= BVAR (XBUFFER (w
->buffer
), indicate_empty_lines
);
1004 if (!NILP (empty_pos
) && !EQ (empty_pos
, Qright
))
1005 empty_pos
= WINDOW_LEFT_FRINGE_WIDTH (w
) == 0 ? Qright
: Qleft
;
1007 for (y
= 0; y
< MAX_BITMAP_CACHE
; y
++)
1008 bitmap_cache
[y
] = -1;
1010 #define LEFT_FRINGE(cache, which, partial_p) \
1011 (bitmap_cache[cache*4+partial_p] >= 0 \
1012 ? bitmap_cache[cache*4+partial_p] \
1013 : (bitmap_cache[cache*4+partial_p] = \
1014 get_logical_fringe_bitmap (w, which, 0, partial_p)))
1016 #define RIGHT_FRINGE(cache, which, partial_p) \
1017 (bitmap_cache[cache*4+2+partial_p] >= 0 \
1018 ? bitmap_cache[cache*4+2+partial_p] \
1019 : (bitmap_cache[cache*4+2+partial_p] = \
1020 get_logical_fringe_bitmap (w, which, 1, partial_p)))
1023 /* Extend top-aligned top indicator (or bottom-aligned bottom
1024 indicator) to adjacent rows if it doesn't fit in one row. */
1025 top_ind_min_y
= bot_ind_max_y
= -1;
1026 if (top_ind_rn
>= 0)
1028 int bn
= NO_FRINGE_BITMAP
;
1030 row
= w
->desired_matrix
->rows
+ top_ind_rn
;
1031 if (!row
->enabled_p
)
1032 row
= w
->current_matrix
->rows
+ top_ind_rn
;
1034 top_row_ends_at_zv_p
= row
->ends_at_zv_p
;
1035 if (row
->indicate_bob_p
)
1037 if (EQ (boundary_top
, Qleft
))
1038 bn
= ((row
->indicate_eob_p
&& EQ (boundary_bot
, Qleft
))
1039 ? LEFT_FRINGE (1, Qtop_bottom
, row
->ends_at_zv_p
)
1040 : LEFT_FRINGE (2, Qtop
, 0));
1042 bn
= ((row
->indicate_eob_p
&& EQ (boundary_bot
, Qright
))
1043 ? RIGHT_FRINGE (1, Qtop_bottom
, row
->ends_at_zv_p
)
1044 : RIGHT_FRINGE (2, Qtop
, 0));
1046 else if (row
->indicate_top_line_p
)
1048 if (EQ (arrow_top
, Qleft
))
1049 bn
= LEFT_FRINGE (6, Qup
, 0);
1051 bn
= RIGHT_FRINGE (6, Qup
, 0);
1054 if (bn
!= NO_FRINGE_BITMAP
)
1056 struct fringe_bitmap
*fb
= get_fringe_bitmap_data (bn
);
1058 if (fb
->align
== ALIGN_BITMAP_TOP
&& fb
->period
== 0)
1060 struct glyph_row
*row1
;
1063 top_ind_min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1064 top_ind_max_y
= top_ind_min_y
+ fb
->height
;
1065 if (top_ind_max_y
> yb
)
1068 for (y
= row
->y
+ row
->height
, rn
= top_ind_rn
+ 1;
1069 y
< top_ind_max_y
&& rn
< nrows
;
1070 y
+= row1
->height
, rn
++)
1072 if (bot_ind_rn
>= 0 && rn
>= bot_ind_rn
)
1075 row1
= w
->desired_matrix
->rows
+ rn
;
1076 if (!row1
->enabled_p
)
1077 row1
= w
->current_matrix
->rows
+ rn
;
1079 row1
->indicate_bob_p
= row
->indicate_bob_p
;
1080 row1
->indicate_top_line_p
= row
->indicate_top_line_p
;
1085 if (bot_ind_rn
>= 0)
1087 int bn
= NO_FRINGE_BITMAP
;
1089 row
= w
->desired_matrix
->rows
+ bot_ind_rn
;
1090 if (!row
->enabled_p
)
1091 row
= w
->current_matrix
->rows
+ bot_ind_rn
;
1093 bot_row_ends_at_zv_p
= row
->ends_at_zv_p
;
1094 if (row
->indicate_eob_p
)
1096 if (EQ (boundary_bot
, Qleft
))
1097 bn
= LEFT_FRINGE (3, Qbottom
, row
->ends_at_zv_p
);
1099 bn
= RIGHT_FRINGE (3, Qbottom
, row
->ends_at_zv_p
);
1101 else if (row
->indicate_bottom_line_p
)
1103 if (EQ (arrow_bot
, Qleft
))
1104 bn
= LEFT_FRINGE (7, Qdown
, 0);
1106 bn
= RIGHT_FRINGE (7, Qdown
, 0);
1109 if (bn
!= NO_FRINGE_BITMAP
)
1111 struct fringe_bitmap
*fb
= get_fringe_bitmap_data (bn
);
1113 if (fb
->align
== ALIGN_BITMAP_BOTTOM
&& fb
->period
== 0)
1115 struct glyph_row
*row1
;
1118 bot_ind_max_y
= row
->y
+ row
->visible_height
;
1119 bot_ind_min_y
= bot_ind_max_y
- fb
->height
;
1120 if (bot_ind_min_y
< WINDOW_HEADER_LINE_HEIGHT (w
))
1121 bot_ind_min_y
= WINDOW_HEADER_LINE_HEIGHT (w
);
1123 for (y
= row
->y
, rn
= bot_ind_rn
- 1;
1124 y
>= bot_ind_min_y
&& rn
>= 0;
1125 y
-= row1
->height
, rn
--)
1127 if (top_ind_rn
>= 0 && rn
<= top_ind_rn
)
1130 row1
= w
->desired_matrix
->rows
+ rn
;
1131 if (!row1
->enabled_p
)
1132 row1
= w
->current_matrix
->rows
+ rn
;
1134 row1
->indicate_eob_p
= row
->indicate_eob_p
;
1135 row1
->indicate_bottom_line_p
= row
->indicate_bottom_line_p
;
1141 for (y
= w
->vscroll
, rn
= 0;
1142 y
< yb
&& rn
< nrows
;
1143 y
+= row
->height
, rn
++)
1146 unsigned left_face_id
, right_face_id
;
1147 int left_offset
, right_offset
;
1150 row
= w
->desired_matrix
->rows
+ rn
;
1151 cur
= w
->current_matrix
->rows
+ rn
;
1152 if (!row
->enabled_p
)
1155 left_face_id
= right_face_id
= DEFAULT_FACE_ID
;
1156 left_offset
= right_offset
= 0;
1159 /* Decide which bitmap to draw in the left fringe. */
1160 if (WINDOW_LEFT_FRINGE_WIDTH (w
) == 0)
1161 left
= NO_FRINGE_BITMAP
;
1162 else if (row
->left_user_fringe_bitmap
!= NO_FRINGE_BITMAP
)
1164 left
= row
->left_user_fringe_bitmap
;
1165 left_face_id
= row
->left_user_fringe_face_id
;
1167 else if ((!row
->reversed_p
&& row
->truncated_on_left_p
)
1168 || (row
->reversed_p
&& row
->truncated_on_right_p
))
1169 left
= LEFT_FRINGE (0, Qtruncation
, 0);
1170 else if (row
->indicate_bob_p
&& EQ (boundary_top
, Qleft
))
1172 left
= ((row
->indicate_eob_p
&& EQ (boundary_bot
, Qleft
))
1173 ? LEFT_FRINGE (1, Qtop_bottom
, top_row_ends_at_zv_p
)
1174 : LEFT_FRINGE (2, Qtop
, 0));
1175 if (top_ind_min_y
>= 0)
1176 left_offset
= top_ind_min_y
- row
->y
;
1178 else if (row
->indicate_eob_p
&& EQ (boundary_bot
, Qleft
))
1180 left
= LEFT_FRINGE (3, Qbottom
, bot_row_ends_at_zv_p
);
1181 if (bot_ind_max_y
>= 0)
1182 left_offset
= bot_ind_max_y
- (row
->y
+ row
->visible_height
);
1184 else if ((!row
->reversed_p
&& MATRIX_ROW_CONTINUATION_LINE_P (row
))
1185 || (row
->reversed_p
&& row
->continued_p
))
1186 left
= LEFT_FRINGE (4, Qcontinuation
, 0);
1187 else if (row
->indicate_empty_line_p
&& EQ (empty_pos
, Qleft
))
1188 left
= LEFT_FRINGE (5, Qempty_line
, 0);
1189 else if (row
->indicate_top_line_p
&& EQ (arrow_top
, Qleft
))
1191 left
= LEFT_FRINGE (6, Qup
, 0);
1192 if (top_ind_min_y
>= 0)
1193 left_offset
= top_ind_min_y
- row
->y
;
1195 else if (row
->indicate_bottom_line_p
&& EQ (arrow_bot
, Qleft
))
1197 left
= LEFT_FRINGE (7, Qdown
, 0);
1198 if (bot_ind_max_y
>= 0)
1199 left_offset
= bot_ind_max_y
- (row
->y
+ row
->visible_height
);
1202 left
= NO_FRINGE_BITMAP
;
1204 /* Decide which bitmap to draw in the right fringe. */
1205 if (WINDOW_RIGHT_FRINGE_WIDTH (w
) == 0)
1206 right
= NO_FRINGE_BITMAP
;
1207 else if (row
->right_user_fringe_bitmap
!= NO_FRINGE_BITMAP
)
1209 right
= row
->right_user_fringe_bitmap
;
1210 right_face_id
= row
->right_user_fringe_face_id
;
1212 else if ((!row
->reversed_p
&& row
->truncated_on_right_p
)
1213 || (row
->reversed_p
&& row
->truncated_on_left_p
))
1214 right
= RIGHT_FRINGE (0, Qtruncation
, 0);
1215 else if (row
->indicate_bob_p
&& EQ (boundary_top
, Qright
))
1217 right
= ((row
->indicate_eob_p
&& EQ (boundary_bot
, Qright
))
1218 ? RIGHT_FRINGE (1, Qtop_bottom
, top_row_ends_at_zv_p
)
1219 : RIGHT_FRINGE (2, Qtop
, 0));
1220 if (top_ind_min_y
>= 0)
1221 right_offset
= top_ind_min_y
- row
->y
;
1223 else if (row
->indicate_eob_p
&& EQ (boundary_bot
, Qright
))
1225 right
= RIGHT_FRINGE (3, Qbottom
, bot_row_ends_at_zv_p
);
1226 if (bot_ind_max_y
>= 0)
1227 right_offset
= bot_ind_max_y
- (row
->y
+ row
->visible_height
);
1229 else if ((!row
->reversed_p
&& row
->continued_p
)
1230 || (row
->reversed_p
&& MATRIX_ROW_CONTINUATION_LINE_P (row
)))
1231 right
= RIGHT_FRINGE (4, Qcontinuation
, 0);
1232 else if (row
->indicate_top_line_p
&& EQ (arrow_top
, Qright
))
1234 right
= RIGHT_FRINGE (6, Qup
, 0);
1235 if (top_ind_min_y
>= 0)
1236 right_offset
= top_ind_min_y
- row
->y
;
1238 else if (row
->indicate_bottom_line_p
&& EQ (arrow_bot
, Qright
))
1240 right
= RIGHT_FRINGE (7, Qdown
, 0);
1241 if (bot_ind_max_y
>= 0)
1242 right_offset
= bot_ind_max_y
- (row
->y
+ row
->visible_height
);
1244 else if (row
->indicate_empty_line_p
&& EQ (empty_pos
, Qright
))
1245 right
= RIGHT_FRINGE (5, Qempty_line
, 0);
1247 right
= NO_FRINGE_BITMAP
;
1249 periodic_p
= (get_fringe_bitmap_data (left
)->period
!= 0
1250 || get_fringe_bitmap_data (right
)->period
!= 0);
1252 if (row
->y
!= cur
->y
1253 || row
->visible_height
!= cur
->visible_height
1254 || row
->ends_at_zv_p
!= cur
->ends_at_zv_p
1255 || left
!= cur
->left_fringe_bitmap
1256 || right
!= cur
->right_fringe_bitmap
1257 || left_face_id
!= cur
->left_fringe_face_id
1258 || right_face_id
!= cur
->right_fringe_face_id
1259 || left_offset
!= cur
->left_fringe_offset
1260 || right_offset
!= cur
->right_fringe_offset
1261 || periodic_p
!= cur
->fringe_bitmap_periodic_p
1262 || cur
->redraw_fringe_bitmaps_p
)
1264 redraw_p
= row
->redraw_fringe_bitmaps_p
= 1;
1265 if (!keep_current_p
)
1267 cur
->redraw_fringe_bitmaps_p
= 1;
1268 cur
->left_fringe_bitmap
= left
;
1269 cur
->right_fringe_bitmap
= right
;
1270 cur
->left_fringe_face_id
= left_face_id
;
1271 cur
->right_fringe_face_id
= right_face_id
;
1272 cur
->left_fringe_offset
= left_offset
;
1273 cur
->right_fringe_offset
= right_offset
;
1274 cur
->fringe_bitmap_periodic_p
= periodic_p
;
1278 if (row
->overlay_arrow_bitmap
< 0)
1279 row
->overlay_arrow_bitmap
= get_logical_fringe_bitmap (w
, Qoverlay_arrow
, 0, 0);
1281 if (row
->overlay_arrow_bitmap
!= cur
->overlay_arrow_bitmap
)
1283 redraw_p
= row
->redraw_fringe_bitmaps_p
= 1;
1284 if (!keep_current_p
)
1286 cur
->redraw_fringe_bitmaps_p
= 1;
1287 cur
->overlay_arrow_bitmap
= row
->overlay_arrow_bitmap
;
1291 row
->left_fringe_bitmap
= left
;
1292 row
->right_fringe_bitmap
= right
;
1293 row
->left_fringe_face_id
= left_face_id
;
1294 row
->right_fringe_face_id
= right_face_id
;
1295 row
->left_fringe_offset
= left_offset
;
1296 row
->right_fringe_offset
= right_offset
;
1297 row
->fringe_bitmap_periodic_p
= periodic_p
;
1300 return redraw_p
&& !keep_current_p
;
1304 /* Compute actual fringe widths for frame F.
1306 If REDRAW is 1, redraw F if the fringe settings was actually
1307 modified and F is visible.
1309 Since the combined left and right fringe must occupy an integral
1310 number of columns, we may need to add some pixels to each fringe.
1311 Typically, we add an equal amount (+/- 1 pixel) to each fringe,
1312 but a negative width value is taken literally (after negating it).
1314 We never make the fringes narrower than specified.
1318 compute_fringe_widths (struct frame
*f
, int redraw
)
1320 int o_left
= FRAME_LEFT_FRINGE_WIDTH (f
);
1321 int o_right
= FRAME_RIGHT_FRINGE_WIDTH (f
);
1322 int o_cols
= FRAME_FRINGE_COLS (f
);
1324 Lisp_Object left_fringe
= Fassq (Qleft_fringe
, f
->param_alist
);
1325 Lisp_Object right_fringe
= Fassq (Qright_fringe
, f
->param_alist
);
1326 int left_fringe_width
, right_fringe_width
;
1328 if (!NILP (left_fringe
))
1329 left_fringe
= Fcdr (left_fringe
);
1330 if (!NILP (right_fringe
))
1331 right_fringe
= Fcdr (right_fringe
);
1333 left_fringe_width
= ((NILP (left_fringe
) || !INTEGERP (left_fringe
)) ? 8 :
1334 XINT (left_fringe
));
1335 right_fringe_width
= ((NILP (right_fringe
) || !INTEGERP (right_fringe
)) ? 8 :
1336 XINT (right_fringe
));
1338 if (left_fringe_width
|| right_fringe_width
)
1340 int left_wid
= left_fringe_width
>= 0 ? left_fringe_width
: -left_fringe_width
;
1341 int right_wid
= right_fringe_width
>= 0 ? right_fringe_width
: -right_fringe_width
;
1342 int conf_wid
= left_wid
+ right_wid
;
1343 int font_wid
= FRAME_COLUMN_WIDTH (f
);
1344 int cols
= (left_wid
+ right_wid
+ font_wid
-1) / font_wid
;
1345 int real_wid
= cols
* font_wid
;
1346 if (left_wid
&& right_wid
)
1348 if (left_fringe_width
< 0)
1350 /* Left fringe width is fixed, adjust right fringe if necessary */
1351 FRAME_LEFT_FRINGE_WIDTH (f
) = left_wid
;
1352 FRAME_RIGHT_FRINGE_WIDTH (f
) = real_wid
- left_wid
;
1354 else if (right_fringe_width
< 0)
1356 /* Right fringe width is fixed, adjust left fringe if necessary */
1357 FRAME_LEFT_FRINGE_WIDTH (f
) = real_wid
- right_wid
;
1358 FRAME_RIGHT_FRINGE_WIDTH (f
) = right_wid
;
1362 /* Adjust both fringes with an equal amount.
1363 Note that we are doing integer arithmetic here, so don't
1364 lose a pixel if the total width is an odd number. */
1365 int fill
= real_wid
- conf_wid
;
1366 FRAME_LEFT_FRINGE_WIDTH (f
) = left_wid
+ fill
/2;
1367 FRAME_RIGHT_FRINGE_WIDTH (f
) = right_wid
+ fill
- fill
/2;
1370 else if (left_fringe_width
)
1372 FRAME_LEFT_FRINGE_WIDTH (f
) = real_wid
;
1373 FRAME_RIGHT_FRINGE_WIDTH (f
) = 0;
1377 FRAME_LEFT_FRINGE_WIDTH (f
) = 0;
1378 FRAME_RIGHT_FRINGE_WIDTH (f
) = real_wid
;
1380 FRAME_FRINGE_COLS (f
) = cols
;
1384 FRAME_LEFT_FRINGE_WIDTH (f
) = 0;
1385 FRAME_RIGHT_FRINGE_WIDTH (f
) = 0;
1386 FRAME_FRINGE_COLS (f
) = 0;
1389 if (redraw
&& FRAME_VISIBLE_P (f
))
1390 if (o_left
!= FRAME_LEFT_FRINGE_WIDTH (f
) ||
1391 o_right
!= FRAME_RIGHT_FRINGE_WIDTH (f
) ||
1392 o_cols
!= FRAME_FRINGE_COLS (f
))
1397 /* Free resources used by a user-defined bitmap. */
1400 destroy_fringe_bitmap (int n
)
1402 struct fringe_bitmap
**fbp
;
1404 fringe_faces
[n
] = Qnil
;
1406 fbp
= &fringe_bitmaps
[n
];
1407 if (*fbp
&& (*fbp
)->dynamic
)
1409 /* XXX Is SELECTED_FRAME OK here? */
1410 struct redisplay_interface
*rif
= FRAME_RIF (SELECTED_FRAME ());
1411 if (rif
&& rif
->destroy_fringe_bitmap
)
1412 rif
->destroy_fringe_bitmap (n
);
1417 while (max_used_fringe_bitmap
> MAX_STANDARD_FRINGE_BITMAPS
1418 && fringe_bitmaps
[max_used_fringe_bitmap
- 1] == NULL
)
1419 max_used_fringe_bitmap
--;
1423 DEFUN ("destroy-fringe-bitmap", Fdestroy_fringe_bitmap
, Sdestroy_fringe_bitmap
,
1425 doc
: /* Destroy fringe bitmap BITMAP.
1426 If BITMAP overrides a standard fringe bitmap, the original bitmap is restored. */)
1427 (Lisp_Object bitmap
)
1431 CHECK_SYMBOL (bitmap
);
1432 n
= lookup_fringe_bitmap (bitmap
);
1436 destroy_fringe_bitmap (n
);
1438 if (n
>= MAX_STANDARD_FRINGE_BITMAPS
)
1440 Vfringe_bitmaps
= Fdelq (bitmap
, Vfringe_bitmaps
);
1441 /* It would be better to remove the fringe property. */
1442 Fput (bitmap
, Qfringe
, Qnil
);
1449 /* Initialize bitmap bit.
1451 On X, we bit-swap the built-in bitmaps and reduce bitmap
1452 from short to char array if width is <= 8 bits.
1454 On MAC with big-endian CPU, we need to byte-swap each short.
1456 On W32 and MAC (little endian), there's no need to do this.
1459 #if defined (HAVE_X_WINDOWS)
1460 static const unsigned char swap_nibble
[16] = {
1461 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
1462 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
1463 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
1464 0x3, 0xb, 0x7, 0xf}; /* 0011 1011 0111 1111 */
1465 #endif /* HAVE_X_WINDOWS */
1468 init_fringe_bitmap (int which
, struct fringe_bitmap
*fb
, int once_p
)
1470 if (once_p
|| fb
->dynamic
)
1472 #if defined (HAVE_X_WINDOWS)
1473 unsigned short *bits
= fb
->bits
;
1478 unsigned char *cbits
= (unsigned char *)fb
->bits
;
1479 for (j
= 0; j
< fb
->height
; j
++)
1481 unsigned short b
= *bits
++;
1483 c
= (unsigned char)((swap_nibble
[b
& 0xf] << 4)
1484 | (swap_nibble
[(b
>>4) & 0xf]));
1485 *cbits
++ = (c
>> (8 - fb
->width
));
1490 for (j
= 0; j
< fb
->height
; j
++)
1492 unsigned short b
= *bits
;
1493 b
= (unsigned short)((swap_nibble
[b
& 0xf] << 12)
1494 | (swap_nibble
[(b
>>4) & 0xf] << 8)
1495 | (swap_nibble
[(b
>>8) & 0xf] << 4)
1496 | (swap_nibble
[(b
>>12) & 0xf]));
1497 b
>>= (16 - fb
->width
);
1498 #ifdef WORDS_BIGENDIAN
1499 b
= ((b
>> 8) | (b
<< 8));
1504 #endif /* HAVE_X_WINDOWS */
1510 /* XXX Is SELECTED_FRAME OK here? */
1511 struct redisplay_interface
*rif
= FRAME_RIF (SELECTED_FRAME ());
1513 destroy_fringe_bitmap (which
);
1515 if (rif
&& rif
->define_fringe_bitmap
)
1516 rif
->define_fringe_bitmap (which
, fb
->bits
, fb
->height
, fb
->width
);
1518 fringe_bitmaps
[which
] = fb
;
1519 if (which
>= max_used_fringe_bitmap
)
1520 max_used_fringe_bitmap
= which
+ 1;
1525 DEFUN ("define-fringe-bitmap", Fdefine_fringe_bitmap
, Sdefine_fringe_bitmap
,
1527 doc
: /* Define fringe bitmap BITMAP from BITS of size HEIGHT x WIDTH.
1528 BITMAP is a symbol identifying the new fringe bitmap.
1529 BITS is either a string or a vector of integers.
1530 HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS.
1531 WIDTH must be an integer between 1 and 16, or nil which defaults to 8.
1532 Optional fifth arg ALIGN may be one of `top', `center', or `bottom',
1533 indicating the positioning of the bitmap relative to the rows where it
1534 is used; the default is to center the bitmap. Fifth arg may also be a
1535 list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap
1537 If BITMAP already exists, the existing definition is replaced. */)
1538 (Lisp_Object bitmap
, Lisp_Object bits
, Lisp_Object height
, Lisp_Object width
, Lisp_Object align
)
1542 struct fringe_bitmap fb
, *xfb
;
1543 int fill1
= 0, fill2
= 0;
1545 CHECK_SYMBOL (bitmap
);
1549 else if (VECTORP (bits
))
1552 wrong_type_argument (Qsequencep
, bits
);
1558 CHECK_NUMBER (height
);
1559 fb
.height
= max (0, min (XINT (height
), 255));
1562 fill1
= (fb
.height
- h
) / 2;
1563 fill2
= fb
.height
- h
- fill1
;
1571 CHECK_NUMBER (width
);
1572 fb
.width
= max (0, min (XINT (width
), 255));
1576 fb
.align
= ALIGN_BITMAP_CENTER
;
1580 Lisp_Object period
= XCDR (align
);
1583 period
= XCAR (period
);
1586 fb
.period
= fb
.height
;
1590 align
= XCAR (align
);
1592 if (EQ (align
, Qtop
))
1593 fb
.align
= ALIGN_BITMAP_TOP
;
1594 else if (EQ (align
, Qbottom
))
1595 fb
.align
= ALIGN_BITMAP_BOTTOM
;
1596 else if (!NILP (align
) && !EQ (align
, Qcenter
))
1597 error ("Bad align argument");
1599 n
= lookup_fringe_bitmap (bitmap
);
1602 if (max_used_fringe_bitmap
< max_fringe_bitmaps
)
1603 n
= max_used_fringe_bitmap
++;
1606 for (n
= MAX_STANDARD_FRINGE_BITMAPS
;
1607 n
< max_fringe_bitmaps
;
1609 if (fringe_bitmaps
[n
] == NULL
)
1612 if (n
== max_fringe_bitmaps
)
1614 int bitmaps
= max_fringe_bitmaps
+ 20;
1615 if (MAX_FRINGE_BITMAPS
< bitmaps
)
1616 error ("No free fringe bitmap slots");
1618 i
= max_fringe_bitmaps
;
1620 = ((struct fringe_bitmap
**)
1621 xrealloc (fringe_bitmaps
, bitmaps
* sizeof *fringe_bitmaps
));
1623 = (Lisp_Object
*) xrealloc (fringe_faces
,
1624 bitmaps
* sizeof *fringe_faces
);
1626 for (i
= max_fringe_bitmaps
; i
< bitmaps
; i
++)
1628 fringe_bitmaps
[i
] = NULL
;
1629 fringe_faces
[i
] = Qnil
;
1632 max_fringe_bitmaps
= bitmaps
;
1636 Vfringe_bitmaps
= Fcons (bitmap
, Vfringe_bitmaps
);
1637 Fput (bitmap
, Qfringe
, make_number (n
));
1642 xfb
= (struct fringe_bitmap
*) xmalloc (sizeof fb
1643 + fb
.height
* BYTES_PER_BITMAP_ROW
);
1644 fb
.bits
= b
= (unsigned short *) (xfb
+ 1);
1645 memset (b
, 0, fb
.height
);
1648 while (j
< fb
.height
)
1650 for (i
= 0; i
< fill1
&& j
< fb
.height
; i
++)
1652 for (i
= 0; i
< h
&& j
< fb
.height
; i
++)
1654 Lisp_Object elt
= Faref (bits
, make_number (i
));
1655 b
[j
++] = NUMBERP (elt
) ? XINT (elt
) : 0;
1657 for (i
= 0; i
< fill2
&& j
< fb
.height
; i
++)
1663 init_fringe_bitmap (n
, xfb
, 0);
1668 DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face
, Sset_fringe_bitmap_face
,
1670 doc
: /* Set face for fringe bitmap BITMAP to FACE.
1671 If FACE is nil, reset face to default fringe face. */)
1672 (Lisp_Object bitmap
, Lisp_Object face
)
1676 CHECK_SYMBOL (bitmap
);
1677 n
= lookup_fringe_bitmap (bitmap
);
1679 error ("Undefined fringe bitmap");
1681 /* The purpose of the following code is to signal an error if FACE
1682 is not a face. This is for the caller's convenience only; the
1683 redisplay code should be able to fail gracefully. Skip the check
1684 if FRINGE_FACE_ID is unrealized (as in batch mode and during
1688 struct frame
*f
= SELECTED_FRAME ();
1690 if (FACE_FROM_ID (f
, FRINGE_FACE_ID
)
1691 && lookup_derived_face (f
, face
, FRINGE_FACE_ID
, 1) < 0)
1692 error ("No such face");
1695 fringe_faces
[n
] = face
;
1699 DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos
, Sfringe_bitmaps_at_pos
,
1701 doc
: /* Return fringe bitmaps of row containing position POS in window WINDOW.
1702 If WINDOW is nil, use selected window. If POS is nil, use value of point
1703 in that window. Return value is a list (LEFT RIGHT OV), where LEFT
1704 is the symbol for the bitmap in the left fringe (or nil if no bitmap),
1705 RIGHT is similar for the right fringe, and OV is non-nil if there is an
1706 overlay arrow in the left fringe.
1707 Return nil if POS is not visible in WINDOW. */)
1708 (Lisp_Object pos
, Lisp_Object window
)
1711 struct glyph_row
*row
;
1715 window
= selected_window
;
1716 CHECK_WINDOW (window
);
1717 w
= XWINDOW (window
);
1721 CHECK_NUMBER_COERCE_MARKER (pos
);
1722 if (! (BEGV
<= XINT (pos
) && XINT (pos
) <= ZV
))
1723 args_out_of_range (window
, pos
);
1724 textpos
= XINT (pos
);
1726 else if (w
== XWINDOW (selected_window
))
1729 textpos
= XMARKER (w
->pointm
)->charpos
;
1731 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
1732 row
= row_containing_pos (w
, textpos
, row
, NULL
, 0);
1734 return list3 (get_fringe_bitmap_name (row
->left_fringe_bitmap
),
1735 get_fringe_bitmap_name (row
->right_fringe_bitmap
),
1736 (row
->overlay_arrow_bitmap
== 0 ? Qnil
1737 : row
->overlay_arrow_bitmap
< 0 ? Qt
1738 : get_fringe_bitmap_name (row
->overlay_arrow_bitmap
)));
1744 /***********************************************************************
1746 ***********************************************************************/
1749 syms_of_fringe (void)
1751 DEFSYM (Qtruncation
, "truncation");
1752 DEFSYM (Qcontinuation
, "continuation");
1753 DEFSYM (Qoverlay_arrow
, "overlay-arrow");
1754 DEFSYM (Qempty_line
, "empty-line");
1755 DEFSYM (Qtop_bottom
, "top-bottom");
1756 DEFSYM (Qhollow_small
, "hollow-small");
1758 defsubr (&Sdestroy_fringe_bitmap
);
1759 defsubr (&Sdefine_fringe_bitmap
);
1760 defsubr (&Sfringe_bitmaps_at_pos
);
1761 defsubr (&Sset_fringe_bitmap_face
);
1763 DEFVAR_LISP ("overflow-newline-into-fringe", Voverflow_newline_into_fringe
,
1764 doc
: /* Non-nil means that newline may flow into the right fringe.
1765 This means that display lines which are exactly as wide as the window
1766 (not counting the final newline) will only occupy one screen line, by
1767 showing (or hiding) the final newline in the right fringe; when point
1768 is at the final newline, the cursor is shown in the right fringe.
1769 If nil, also continue lines which are exactly as wide as the window. */);
1770 Voverflow_newline_into_fringe
= Qt
;
1772 DEFVAR_LISP ("fringe-bitmaps", Vfringe_bitmaps
,
1773 doc
: /* List of fringe bitmap symbols. */);
1774 Vfringe_bitmaps
= Qnil
;
1777 /* Garbage collection hook */
1780 mark_fringe_data (void)
1784 for (i
= 0; i
< max_fringe_bitmaps
; i
++)
1785 if (!NILP (fringe_faces
[i
]))
1786 mark_object (fringe_faces
[i
]);
1789 /* Initialize this module when Emacs starts. */
1792 init_fringe_once (void)
1796 for (bt
= NO_FRINGE_BITMAP
+ 1; bt
< MAX_STANDARD_FRINGE_BITMAPS
; bt
++)
1797 init_fringe_bitmap (bt
, &standard_bitmaps
[bt
], 1);
1805 max_fringe_bitmaps
= MAX_STANDARD_FRINGE_BITMAPS
+ 20;
1808 = (struct fringe_bitmap
**) xmalloc (max_fringe_bitmaps
* sizeof (struct fringe_bitmap
*));
1810 = (Lisp_Object
*) xmalloc (max_fringe_bitmaps
* sizeof (Lisp_Object
));
1812 for (i
= 0; i
< max_fringe_bitmaps
; i
++)
1814 fringe_bitmaps
[i
] = NULL
;
1815 fringe_faces
[i
] = Qnil
;
1822 w32_init_fringe (struct redisplay_interface
*rif
)
1829 for (bt
= NO_FRINGE_BITMAP
+ 1; bt
< MAX_STANDARD_FRINGE_BITMAPS
; bt
++)
1831 struct fringe_bitmap
*fb
= &standard_bitmaps
[bt
];
1832 rif
->define_fringe_bitmap (bt
, fb
->bits
, fb
->height
, fb
->width
);
1837 w32_reset_fringes (void)
1839 /* Destroy row bitmaps. */
1841 struct redisplay_interface
*rif
= FRAME_RIF (SELECTED_FRAME ());
1846 for (bt
= NO_FRINGE_BITMAP
+ 1; bt
< max_used_fringe_bitmap
; bt
++)
1847 rif
->destroy_fringe_bitmap (bt
);
1850 #endif /* HAVE_NTGUI */
1852 #endif /* HAVE_WINDOW_SYSTEM */