Drop WGET and revert read access to Lisp_Objects slots of struct window.
[bpt/emacs.git] / src / fringe.c
CommitLineData
6b61353c 1/* Fringe handling (split from xdisp.c).
acaf905b 2 Copyright (C) 1985-1988, 1993-1995, 1997-2012 Free Software Foundation, Inc.
6b61353c
KH
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
6b61353c 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
6b61353c
KH
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
6b61353c
KH
18
19#include <config.h>
20#include <stdio.h>
d7306fe6 21#include <setjmp.h>
6b61353c
KH
22
23#include "lisp.h"
24#include "frame.h"
25#include "window.h"
26#include "dispextern.h"
e5560ff7 27#include "character.h"
6b61353c
KH
28#include "buffer.h"
29#include "blockinput.h"
e581a466 30#include "termhooks.h"
6b61353c
KH
31
32#ifdef HAVE_WINDOW_SYSTEM
33
7840b332
KS
34/* Fringe bitmaps are represented in three different ways:
35
36 Logical bitmaps are used internally to denote things like
37 'end-of-buffer', 'left-truncation', 'overlay-arrow', etc.
38
e4920bc9 39 Physical bitmaps specify the visual appearance of the bitmap,
7840b332
KS
40 e.g. 'bottom-left-angle', 'left-arrow', 'left-triangle', etc.
41 User defined bitmaps are physical bitmaps.
42
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.
47
48 Logical bitmaps are mapped to physical bitmaps through the
49 buffer-local `fringe-indicator-alist' variable.
50
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.
56
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.
60
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.
63
64 The `left-fringe' and `right-fringe' display properties
65 must specify physical bitmap symbols.
66*/
67
955cbe7b
PE
68static Lisp_Object Qtruncation, Qcontinuation, Qoverlay_arrow;
69static Lisp_Object Qempty_line, Qtop_bottom;
70static Lisp_Object Qhollow_small;
6b61353c
KH
71
72enum fringe_bitmap_align
73{
74 ALIGN_BITMAP_CENTER = 0,
75 ALIGN_BITMAP_TOP,
76 ALIGN_BITMAP_BOTTOM
77};
78
79struct fringe_bitmap
80{
81 unsigned short *bits;
82 unsigned height : 8;
83 unsigned width : 8;
84 unsigned period : 8;
85 unsigned align : 2;
86 unsigned dynamic : 1;
87};
88
89\f
90/***********************************************************************
91 Fringe bitmaps
92 ***********************************************************************/
93
94/* Undefined bitmap. A question mark. */
95/*
96 ..xxxx..
97 .xxxxxx.
98 xx....xx
99 xx....xx
100 ....xx..
101 ...xx...
102 ...xx...
103 ........
104 ...xx...
105 ...xx...
106*/
7840b332 107static unsigned short question_mark_bits[] = {
6b61353c
KH
108 0x3c, 0x7e, 0x7e, 0x0c, 0x18, 0x18, 0x00, 0x18, 0x18};
109
2e2d2a13 110/* An exclamation mark. */
cd276f6e
LL
111/*
112 ...XX...
113 ...XX...
114 ...XX...
115 ...XX...
116 ...XX...
117 ...XX...
118 ...XX...
119 ........
120 ...XX...
121 ...XX...
122*/
123static unsigned short exclamation_mark_bits[] = {
124 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x18};
125
6b61353c
KH
126/* An arrow like this: `<-'. */
127/*
128 ...xx...
129 ..xx....
130 .xx.....
131 xxxxxx..
132 xxxxxx..
133 .xx.....
134 ..xx....
135 ...xx...
136*/
137static unsigned short left_arrow_bits[] = {
138 0x18, 0x30, 0x60, 0xfc, 0xfc, 0x60, 0x30, 0x18};
139
140
141/* Right truncation arrow bitmap `->'. */
142/*
143 ...xx...
144 ....xx..
145 .....xx.
146 ..xxxxxx
147 ..xxxxxx
148 .....xx.
149 ....xx..
150 ...xx...
151*/
152static unsigned short right_arrow_bits[] = {
153 0x18, 0x0c, 0x06, 0x3f, 0x3f, 0x06, 0x0c, 0x18};
154
155
156/* Up arrow bitmap. */
157/*
158 ...xx...
159 ..xxxx..
160 .xxxxxx.
161 xxxxxxxx
162 ...xx...
163 ...xx...
164 ...xx...
165 ...xx...
166*/
167static unsigned short up_arrow_bits[] = {
168 0x18, 0x3c, 0x7e, 0xff, 0x18, 0x18, 0x18, 0x18};
169
170
171/* Down arrow bitmap. */
172/*
173 ...xx...
174 ...xx...
175 ...xx...
176 ...xx...
177 xxxxxxxx
178 .xxxxxx.
179 ..xxxx..
180 ...xx...
181*/
182static unsigned short down_arrow_bits[] = {
183 0x18, 0x18, 0x18, 0x18, 0xff, 0x7e, 0x3c, 0x18};
184
6b61353c
KH
185/* Marker for continuation lines. */
186/*
187 ..xxxx..
188 .xxxxx..
189 xx......
190 xxx..x..
191 xxxxxx..
192 .xxxxx..
193 ..xxxx..
194 .xxxxx..
195*/
7840b332 196static unsigned short left_curly_arrow_bits[] = {
6b61353c
KH
197 0x3c, 0x7c, 0xc0, 0xe4, 0xfc, 0x7c, 0x3c, 0x7c};
198
7840b332 199/* Marker for continued lines. */
6b61353c 200/*
7840b332
KS
201 ..xxxx..
202 ..xxxxx.
203 ......xx
204 ..x..xxx
205 ..xxxxxx
206 ..xxxxx.
207 ..xxxx..
208 ..xxxxx.
6b61353c 209*/
7840b332
KS
210static unsigned short right_curly_arrow_bits[] = {
211 0x3c, 0x3e, 0x03, 0x27, 0x3f, 0x3e, 0x3c, 0x3e};
6b61353c 212
6b61353c
KH
213/* Reverse Overlay arrow bitmap. A triangular arrow. */
214/*
215 ......xx
216 ....xxxx
217 ...xxxxx
218 ..xxxxxx
219 ..xxxxxx
220 ...xxxxx
221 ....xxxx
222 ......xx
223*/
7840b332 224static unsigned short left_triangle_bits[] = {
6b61353c 225 0x03, 0x0f, 0x1f, 0x3f, 0x3f, 0x1f, 0x0f, 0x03};
7840b332
KS
226
227/* Overlay arrow bitmap. A triangular arrow. */
228/*
229 xx......
230 xxxx....
231 xxxxx...
232 xxxxxx..
233 xxxxxx..
234 xxxxx...
235 xxxx....
236 xx......
237*/
238static unsigned short right_triangle_bits[] = {
239 0xc0, 0xf0, 0xf8, 0xfc, 0xfc, 0xf8, 0xf0, 0xc0};
6b61353c
KH
240
241/* First line bitmap. An top-left angle. */
242/*
243 xxxxxx..
244 xxxxxx..
245 xx......
246 xx......
247 xx......
248 xx......
249 xx......
250 ........
251*/
252static unsigned short top_left_angle_bits[] = {
253 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00};
254
255/* First line bitmap. An right-up angle. */
256/*
257 ..xxxxxx
258 ..xxxxxx
259 ......xx
260 ......xx
261 ......xx
262 ......xx
263 ......xx
264 ........
265*/
266static unsigned short top_right_angle_bits[] = {
267 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x00};
268
269/* Last line bitmap. An left-down angle. */
270/*
271 ........
272 xx......
273 xx......
274 xx......
275 xx......
276 xx......
277 xxxxxx..
278 xxxxxx..
279*/
280static unsigned short bottom_left_angle_bits[] = {
281 0x00, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
282
283/* Last line bitmap. An right-down angle. */
284/*
285 ........
286 ......xx
287 ......xx
288 ......xx
289 ......xx
290 ......xx
291 ..xxxxxx
292 ..xxxxxx
293*/
294static unsigned short bottom_right_angle_bits[] = {
295 0x00, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
296
297/* First/last line bitmap. An left bracket. */
298/*
299 xxxxxx..
300 xxxxxx..
301 xx......
302 xx......
303 xx......
304 xx......
305 xx......
306 xx......
307 xxxxxx..
308 xxxxxx..
309*/
310static unsigned short left_bracket_bits[] = {
311 0xfc, 0xfc, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xfc};
312
313/* First/last line bitmap. An right bracket. */
314/*
315 ..xxxxxx
316 ..xxxxxx
317 ......xx
318 ......xx
319 ......xx
320 ......xx
321 ......xx
322 ......xx
323 ..xxxxxx
324 ..xxxxxx
325*/
326static unsigned short right_bracket_bits[] = {
327 0x3f, 0x3f, 0x03, 0x03, 0x03, 0x03, 0x03, 0x03, 0x3f, 0x3f};
328
329/* Filled box cursor bitmap. A filled box; max 13 pixels high. */
330/*
331 xxxxxxx.
332 xxxxxxx.
333 xxxxxxx.
334 xxxxxxx.
335 xxxxxxx.
336 xxxxxxx.
337 xxxxxxx.
338 xxxxxxx.
339 xxxxxxx.
340 xxxxxxx.
341 xxxxxxx.
342 xxxxxxx.
343 xxxxxxx.
344*/
7840b332 345static unsigned short filled_rectangle_bits[] = {
6b61353c
KH
346 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe, 0xfe};
347
348/* Hollow box cursor bitmap. A hollow box; max 13 pixels high. */
349/*
350 xxxxxxx.
351 x.....x.
352 x.....x.
353 x.....x.
354 x.....x.
355 x.....x.
356 x.....x.
357 x.....x.
358 x.....x.
359 x.....x.
360 x.....x.
361 x.....x.
362 xxxxxxx.
363*/
7840b332 364static unsigned short hollow_rectangle_bits[] = {
6b61353c
KH
365 0xfe, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0x82, 0xfe};
366
7840b332
KS
367/* Hollow square bitmap. */
368/*
369 .xxxxxx.
370 .x....x.
371 .x....x.
372 .x....x.
373 .x....x.
374 .xxxxxx.
375*/
376static unsigned short hollow_square_bits[] = {
377 0x7e, 0x42, 0x42, 0x42, 0x42, 0x7e};
378
379/* Filled square bitmap. */
380/*
381 .xxxxxx.
382 .xxxxxx.
383 .xxxxxx.
384 .xxxxxx.
385 .xxxxxx.
386 .xxxxxx.
387*/
388static unsigned short filled_square_bits[] = {
389 0x7e, 0x7e, 0x7e, 0x7e, 0x7e, 0x7e};
390
6b61353c
KH
391/* Bar cursor bitmap. A vertical bar; max 13 pixels high. */
392/*
393 xx......
394 xx......
395 xx......
396 xx......
397 xx......
398 xx......
399 xx......
400 xx......
401 xx......
402 xx......
403 xx......
404 xx......
405 xx......
406*/
7840b332 407static unsigned short vertical_bar_bits[] = {
6b61353c
KH
408 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0};
409
68a33afa 410/* HBar cursor bitmap. A horizontal bar; 2 pixels high. */
6b61353c
KH
411/*
412 xxxxxxx.
413 xxxxxxx.
414*/
68a33afa 415static unsigned short horizontal_bar_bits[] = {
6b61353c
KH
416 0xfe, 0xfe};
417
418
419/* Bitmap drawn to indicate lines not displaying text if
420 `indicate-empty-lines' is non-nil. */
421/*
422 ........
423 ..xxxx..
424 ........
425 ........
426 ..xxxx..
427 ........
428*/
7840b332 429static unsigned short empty_line_bits[] = {
6b61353c
KH
430 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
431 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
432 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
433 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x3c, 0x00,
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
6b61353c
KH
439
440#define BYTES_PER_BITMAP_ROW (sizeof (unsigned short))
441#define STANDARD_BITMAP_HEIGHT(bits) (sizeof (bits)/BYTES_PER_BITMAP_ROW)
442#define FRBITS(bits) bits, STANDARD_BITMAP_HEIGHT (bits)
443
7840b332
KS
444/* NOTE: The order of these bitmaps must match the sequence
445 used in fringe.el to define the corresponding symbols. */
446
ad9a7a06 447static struct fringe_bitmap standard_bitmaps[] =
6b61353c
KH
448{
449 { NULL, 0, 0, 0, 0, 0 }, /* NO_FRINGE_BITMAP */
7840b332 450 { FRBITS (question_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
cd276f6e 451 { FRBITS (exclamation_mark_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
6b61353c
KH
452 { FRBITS (left_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
453 { FRBITS (right_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
454 { FRBITS (up_arrow_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
455 { FRBITS (down_arrow_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
7840b332
KS
456 { FRBITS (left_curly_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
457 { FRBITS (right_curly_arrow_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
458 { FRBITS (left_triangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
459 { FRBITS (right_triangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
6b61353c
KH
460 { FRBITS (top_left_angle_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
461 { FRBITS (top_right_angle_bits), 8, 0, ALIGN_BITMAP_TOP, 0 },
462 { FRBITS (bottom_left_angle_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
463 { FRBITS (bottom_right_angle_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
464 { FRBITS (left_bracket_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
465 { FRBITS (right_bracket_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
7840b332
KS
466 { FRBITS (filled_rectangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
467 { FRBITS (hollow_rectangle_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
468 { FRBITS (filled_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
6b61353c 469 { FRBITS (hollow_square_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
7840b332 470 { FRBITS (vertical_bar_bits), 8, 0, ALIGN_BITMAP_CENTER, 0 },
68a33afa 471 { FRBITS (horizontal_bar_bits), 8, 0, ALIGN_BITMAP_BOTTOM, 0 },
7840b332 472 { FRBITS (empty_line_bits), 8, 3, ALIGN_BITMAP_TOP, 0 },
6b61353c
KH
473};
474
7840b332
KS
475#define NO_FRINGE_BITMAP 0
476#define UNDEF_FRINGE_BITMAP 1
5e617bc2 477#define MAX_STANDARD_FRINGE_BITMAPS (sizeof (standard_bitmaps)/sizeof (standard_bitmaps[0]))
7840b332 478
ad67849e 479static struct fringe_bitmap **fringe_bitmaps;
49ce2dbd 480static Lisp_Object *fringe_faces;
ad67849e 481static int max_fringe_bitmaps;
6b61353c 482
ad9a7a06
PE
483#ifndef HAVE_NS
484static
485#endif
edfda783 486int max_used_fringe_bitmap = MAX_STANDARD_FRINGE_BITMAPS;
6b61353c 487
4cce0ab7
KS
488
489/* Lookup bitmap number for symbol BITMAP.
490 Return 0 if not a bitmap. */
6b61353c
KH
491
492int
971de7fb 493lookup_fringe_bitmap (Lisp_Object bitmap)
7a2a85be 494{
d311d28c 495 EMACS_INT bn;
7a2a85be 496
4cce0ab7 497 bitmap = Fget (bitmap, Qfringe);
7a2a85be
KS
498 if (!INTEGERP (bitmap))
499 return 0;
500
501 bn = XINT (bitmap);
4cce0ab7
KS
502 if (bn > NO_FRINGE_BITMAP
503 && bn < max_used_fringe_bitmap
504 && (bn < MAX_STANDARD_FRINGE_BITMAPS
505 || fringe_bitmaps[bn] != NULL))
506 return bn;
507
508 return 0;
7a2a85be
KS
509}
510
511/* Get fringe bitmap name for bitmap number BN.
512
513 Found by traversing Vfringe_bitmaps comparing BN to the
514 fringe property for each symbol.
515
516 Return BN if not found in Vfringe_bitmaps. */
517
518static Lisp_Object
971de7fb 519get_fringe_bitmap_name (int bn)
7a2a85be
KS
520{
521 Lisp_Object bitmaps;
522 Lisp_Object num;
523
524 /* Zero means no bitmap -- return nil. */
525 if (bn <= 0)
526 return Qnil;
527
528 bitmaps = Vfringe_bitmaps;
529 num = make_number (bn);
530
531 while (CONSP (bitmaps))
532 {
533 Lisp_Object bitmap = XCAR (bitmaps);
534 if (EQ (num, Fget (bitmap, Qfringe)))
535 return bitmap;
536 bitmaps = XCDR (bitmaps);
537 }
538
539 return num;
540}
541
e61124cd
YM
542/* Get fringe bitmap data for bitmap number BN. */
543
544static struct fringe_bitmap *
545get_fringe_bitmap_data (int bn)
546{
547 struct fringe_bitmap *fb;
548
549 fb = fringe_bitmaps[bn];
550 if (fb == NULL)
551 fb = &standard_bitmaps[bn < MAX_STANDARD_FRINGE_BITMAPS
552 ? bn : UNDEF_FRINGE_BITMAP];
553
554 return fb;
555}
7a2a85be 556
6b61353c
KH
557/* Draw the bitmap WHICH in one of the left or right fringes of
558 window W. ROW is the glyph row for which to display the bitmap; it
559 determines the vertical position at which the bitmap has to be
560 drawn.
561 LEFT_P is 1 for left fringe, 0 for right fringe.
562*/
563
7840b332 564static void
971de7fb 565draw_fringe_bitmap_1 (struct window *w, struct glyph_row *row, int left_p, int overlay, int which)
6b61353c
KH
566{
567 struct frame *f = XFRAME (WINDOW_FRAME (w));
568 struct draw_fringe_bitmap_params p;
569 struct fringe_bitmap *fb;
570 int period;
571 int face_id = DEFAULT_FACE_ID;
5a874e95 572 int offset, header_line_height;
6b61353c 573
6b61353c
KH
574 p.overlay_p = (overlay & 1) == 1;
575 p.cursor_p = (overlay & 2) == 2;
576
577 if (which != NO_FRINGE_BITMAP)
578 {
5a874e95 579 offset = 0;
6b61353c
KH
580 }
581 else if (left_p)
582 {
583 which = row->left_fringe_bitmap;
584 face_id = row->left_fringe_face_id;
5a874e95 585 offset = row->left_fringe_offset;
6b61353c
KH
586 }
587 else
588 {
589 which = row->right_fringe_bitmap;
590 face_id = row->right_fringe_face_id;
5a874e95 591 offset = row->right_fringe_offset;
6b61353c
KH
592 }
593
594 if (face_id == DEFAULT_FACE_ID)
49ce2dbd 595 {
67aecef9
CY
596 Lisp_Object face = fringe_faces[which];
597 face_id = NILP (face) ? lookup_named_face (f, Qfringe, 0)
598 : lookup_derived_face (f, face, FRINGE_FACE_ID, 0);
599 if (face_id < 0)
49ce2dbd
KS
600 face_id = FRINGE_FACE_ID;
601 }
6b61353c 602
e61124cd 603 fb = get_fringe_bitmap_data (which);
6b61353c
KH
604
605 period = fb->period;
606
607 /* Convert row to frame coordinates. */
5a874e95 608 p.y = WINDOW_TO_FRAME_PIXEL_Y (w, row->y) + offset;
6b61353c
KH
609
610 p.which = which;
611 p.bits = fb->bits;
612 p.wd = fb->width;
613
614 p.h = fb->height;
615 p.dh = (period > 0 ? (p.y % period) : 0);
616 p.h -= p.dh;
5a874e95
YM
617
618 /* Adjust y to the offset in the row to start drawing the bitmap. */
619 switch (fb->align)
620 {
621 case ALIGN_BITMAP_CENTER:
622 p.y += (row->height - p.h) / 2;
623 break;
624 case ALIGN_BITMAP_BOTTOM:
625 p.y += (row->visible_height - p.h);
626 break;
627 case ALIGN_BITMAP_TOP:
628 break;
629 }
6b61353c
KH
630
631 p.face = FACE_FROM_ID (f, face_id);
632
633 if (p.face == NULL)
634 {
49ce2dbd
KS
635 /* This could happen after clearing face cache.
636 But it shouldn't happen anymore. ++kfs */
6b61353c
KH
637 return;
638 }
639
640 PREPARE_FACE_FOR_DISPLAY (f, p.face);
641
642 /* Clear left fringe if no bitmap to draw or if bitmap doesn't fill
643 the fringe. */
644 p.bx = -1;
5a874e95
YM
645 header_line_height = WINDOW_HEADER_LINE_HEIGHT (w);
646 p.by = WINDOW_TO_FRAME_PIXEL_Y (w, max (header_line_height, row->y));
647 p.ny = row->visible_height;
6b61353c
KH
648 if (left_p)
649 {
650 int wd = WINDOW_LEFT_FRINGE_WIDTH (w);
651 int x = window_box_left (w, (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
652 ? LEFT_MARGIN_AREA
653 : TEXT_AREA));
654 if (p.wd > wd)
655 p.wd = wd;
656 p.x = x - p.wd - (wd - p.wd) / 2;
657
5a874e95 658 if (p.wd < wd || p.y > p.by || p.y + p.h < p.by + p.ny)
6b61353c
KH
659 {
660 /* If W has a vertical border to its left, don't draw over it. */
661 wd -= ((!WINDOW_LEFTMOST_P (w)
662 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
663 ? 1 : 0);
664 p.bx = x - wd;
665 p.nx = wd;
666 }
667 }
668 else
669 {
670 int x = window_box_right (w,
671 (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
672 ? RIGHT_MARGIN_AREA
673 : TEXT_AREA));
674 int wd = WINDOW_RIGHT_FRINGE_WIDTH (w);
675 if (p.wd > wd)
676 p.wd = wd;
677 p.x = x + (wd - p.wd) / 2;
678 /* Clear right fringe if no bitmap to draw of if bitmap doesn't fill
679 the fringe. */
5a874e95 680 if (p.wd < wd || p.y > p.by || p.y + p.h < p.by + p.ny)
6b61353c
KH
681 {
682 p.bx = x;
683 p.nx = wd;
684 }
685 }
686
e581a466 687 FRAME_RIF (f)->draw_fringe_bitmap (w, row, &p);
6b61353c
KH
688}
689
7840b332 690static int
971de7fb 691get_logical_cursor_bitmap (struct window *w, Lisp_Object cursor)
7840b332
KS
692{
693 Lisp_Object cmap, bm = Qnil;
694
d3d50620 695 if ((cmap = BVAR (XBUFFER (w->buffer), fringe_cursor_alist)), !NILP (cmap))
7840b332
KS
696 {
697 bm = Fassq (cursor, cmap);
698 if (CONSP (bm))
699 {
700 if ((bm = XCDR (bm)), NILP (bm))
701 return NO_FRINGE_BITMAP;
702 return lookup_fringe_bitmap (bm);
703 }
704 }
4b4deea2 705 if (EQ (cmap, BVAR (&buffer_defaults, fringe_cursor_alist)))
7840b332 706 return NO_FRINGE_BITMAP;
4b4deea2 707 bm = Fassq (cursor, BVAR (&buffer_defaults, fringe_cursor_alist));
7840b332
KS
708 if (!CONSP (bm) || ((bm = XCDR (bm)), NILP (bm)))
709 return NO_FRINGE_BITMAP;
710 return lookup_fringe_bitmap (bm);
711}
712
713static int
971de7fb 714get_logical_fringe_bitmap (struct window *w, Lisp_Object bitmap, int right_p, int partial_p)
7840b332
KS
715{
716 Lisp_Object cmap, bm1 = Qnil, bm2 = Qnil, bm;
d311d28c 717 EMACS_INT ln1 = 0, ln2 = 0;
7840b332
KS
718 int ix1 = right_p;
719 int ix2 = ix1 + (partial_p ? 2 : 0);
720
721 /* Lookup in buffer-local fringe-indicator-alist before global alist.
722
723 Elements are:
724 BITMAP -- use for all
725 (L R) -- use for left right (whether partial or not)
78edd3b7 726 (L R PL PR) -- use for left right partial-left partial-right
7840b332
KS
727 If any value in local binding is not present or t, use global value.
728
729 If partial, lookup partial bitmap in default value if not found here.
730 If not partial, or no partial spec is present, use non-partial bitmap. */
731
d3d50620 732 if ((cmap = BVAR (XBUFFER (w->buffer), fringe_indicator_alist)), !NILP (cmap))
7840b332
KS
733 {
734 bm1 = Fassq (bitmap, cmap);
735 if (CONSP (bm1))
736 {
737 if ((bm1 = XCDR (bm1)), NILP (bm1))
738 return NO_FRINGE_BITMAP;
739 if (CONSP (bm1))
740 {
741 ln1 = XINT (Flength (bm1));
742 if (partial_p)
743 {
744 if (ln1 > ix2)
745 {
746 bm = Fnth (make_number (ix2), bm1);
747 if (!EQ (bm, Qt))
748 goto found;
749 }
750 }
751 else
752 {
753 if (ln1 > ix1)
754 {
755 bm = Fnth (make_number (ix1), bm1);
756 if (!EQ (bm, Qt))
757 goto found;
758 }
759 }
760 }
761 else if ((bm = bm1, !EQ (bm, Qt)))
762 goto found;
763 }
764 }
765
4b4deea2
TT
766 if (!EQ (cmap, BVAR (&buffer_defaults, fringe_indicator_alist))
767 && !NILP (BVAR (&buffer_defaults, fringe_indicator_alist)))
7840b332 768 {
4b4deea2 769 bm2 = Fassq (bitmap, BVAR (&buffer_defaults, fringe_indicator_alist));
7840b332
KS
770 if (CONSP (bm2))
771 {
772 if ((bm2 = XCDR (bm2)), !NILP (bm2))
773 {
774 if (CONSP (bm2))
775 {
776 ln2 = XINT (Flength (bm2));
777 if (partial_p)
778 {
779 if (ln2 > ix2)
780 {
781 bm = Fnth (make_number (ix2), bm2);
782 if (!EQ (bm, Qt))
783 goto found;
784 }
785 }
786 }
787 }
788 }
789 }
790
791 if (ln1 > ix1)
792 {
793 bm = Fnth (make_number (ix1), bm1);
794 if (!EQ (bm, Qt))
795 goto found;
796 }
797
798 if (ln2 > ix1)
799 {
800 bm = Fnth (make_number (ix1), bm2);
801 if (!EQ (bm, Qt))
802 goto found;
803 return NO_FRINGE_BITMAP;
804 }
805 else if ((bm = bm2, NILP (bm)))
806 return NO_FRINGE_BITMAP;
807
808 found:
809 return lookup_fringe_bitmap (bm);
810}
811
812
6b61353c 813void
971de7fb 814draw_fringe_bitmap (struct window *w, struct glyph_row *row, int left_p)
6b61353c
KH
815{
816 int overlay = 0;
817
f951a506 818 if (left_p == row->reversed_p && row->cursor_in_fringe_p)
6b61353c 819 {
7840b332 820 Lisp_Object cursor = Qnil;
6b61353c
KH
821
822 switch (w->phys_cursor_type)
823 {
824 case HOLLOW_BOX_CURSOR:
7840b332
KS
825 if (row->visible_height >= STANDARD_BITMAP_HEIGHT (hollow_rectangle_bits))
826 cursor = Qhollow;
6b61353c 827 else
7840b332 828 cursor = Qhollow_small;
6b61353c
KH
829 break;
830 case FILLED_BOX_CURSOR:
7840b332 831 cursor = Qbox;
6b61353c
KH
832 break;
833 case BAR_CURSOR:
7840b332 834 cursor = Qbar;
6b61353c
KH
835 break;
836 case HBAR_CURSOR:
7840b332 837 cursor = Qhbar;
6b61353c
KH
838 break;
839 case NO_CURSOR:
840 default:
841 w->phys_cursor_on_p = 0;
842 row->cursor_in_fringe_p = 0;
843 break;
844 }
7840b332 845 if (!NILP (cursor))
6b61353c 846 {
7840b332
KS
847 int bm = get_logical_cursor_bitmap (w, cursor);
848 if (bm != NO_FRINGE_BITMAP)
849 {
f951a506 850 draw_fringe_bitmap_1 (w, row, left_p, 2, bm);
7840b332
KS
851 overlay = EQ (cursor, Qbox) ? 3 : 1;
852 }
6b61353c
KH
853 }
854 }
855
856 draw_fringe_bitmap_1 (w, row, left_p, overlay, NO_FRINGE_BITMAP);
857
a8b34fae 858 if (left_p && row->overlay_arrow_bitmap != NO_FRINGE_BITMAP)
7dfa5c49 859 draw_fringe_bitmap_1 (w, row, 1, 1, row->overlay_arrow_bitmap);
6b61353c
KH
860}
861
862
863/* Draw fringe bitmaps for glyph row ROW on window W. Call this
864 function with input blocked. */
865
866void
971de7fb 867draw_row_fringe_bitmaps (struct window *w, struct glyph_row *row)
6b61353c 868{
a54e2c05 869 eassert (interrupt_input_blocked);
6b61353c
KH
870
871 /* If row is completely invisible, because of vscrolling, we
872 don't have to draw anything. */
873 if (row->visible_height <= 0)
874 return;
875
876 if (WINDOW_LEFT_FRINGE_WIDTH (w) != 0)
877 draw_fringe_bitmap (w, row, 1);
878
879 if (WINDOW_RIGHT_FRINGE_WIDTH (w) != 0)
880 draw_fringe_bitmap (w, row, 0);
881}
882
883/* Draw the fringes of window W. Only fringes for rows marked for
11491cbb 884 update in redraw_fringe_bitmaps_p are drawn.
6b61353c 885
11491cbb
KS
886 Return >0 if left or right fringe was redrawn in any way.
887
888 If NO_FRINGE is non-zero, also return >0 if either fringe has zero width.
889
890 A return value >0 indicates that the vertical line between windows
891 needs update (as it may be drawn in the fringe).
892*/
893
894int
971de7fb 895draw_window_fringes (struct window *w, int no_fringe)
6b61353c
KH
896{
897 struct glyph_row *row;
898 int yb = window_text_bottom_y (w);
899 int nrows = w->current_matrix->nrows;
5a874e95 900 int y, rn;
11491cbb 901 int updated = 0;
6b61353c
KH
902
903 if (w->pseudo_window_p)
11491cbb
KS
904 return 0;
905
906 /* Must draw line if no fringe */
907 if (no_fringe
908 && (WINDOW_LEFT_FRINGE_WIDTH (w) == 0
909 || WINDOW_RIGHT_FRINGE_WIDTH (w) == 0))
910 updated++;
6b61353c 911
5a874e95 912 for (y = w->vscroll, rn = 0, row = w->current_matrix->rows;
6b61353c
KH
913 y < yb && rn < nrows;
914 y += row->height, ++row, ++rn)
915 {
916 if (!row->redraw_fringe_bitmaps_p)
917 continue;
918 draw_row_fringe_bitmaps (w, row);
919 row->redraw_fringe_bitmaps_p = 0;
11491cbb 920 updated++;
6b61353c 921 }
11491cbb
KS
922
923 return updated;
6b61353c
KH
924}
925
926
927/* Recalculate the bitmaps to show in the fringes of window W.
4dadc129
KS
928 Only mark rows with modified bitmaps for update in redraw_fringe_bitmaps_p.
929
930 If KEEP_CURRENT_P is 0, update current_matrix too. */
6b61353c
KH
931
932int
971de7fb 933update_window_fringes (struct window *w, int keep_current_p)
6b61353c
KH
934{
935 struct glyph_row *row, *cur = 0;
936 int yb = window_text_bottom_y (w);
937 int rn, nrows = w->current_matrix->nrows;
938 int y;
939 int redraw_p = 0;
5797a7a0
KS
940 Lisp_Object boundary_top = Qnil, boundary_bot = Qnil;
941 Lisp_Object arrow_top = Qnil, arrow_bot = Qnil;
942 Lisp_Object empty_pos;
943 Lisp_Object ind = Qnil;
7840b332
KS
944#define MAX_BITMAP_CACHE (8*4)
945 int bitmap_cache[MAX_BITMAP_CACHE];
5a874e95
YM
946 int top_ind_rn, bot_ind_rn;
947 int top_ind_min_y, bot_ind_max_y;
40714c53 948
ee7683eb 949 /* top_ind_rn is set to a nonnegative value whenever
40714c53
PE
950 row->indicate_bob_p is set, so it's OK that top_row_ends_at_zv_p
951 is not initialized here. Similarly for bot_ind_rn,
952 row->indicate_eob_p and bot_row_ends_at_zv_p. */
4b1ec863 953 int top_row_ends_at_zv_p IF_LINT (= 0), bot_row_ends_at_zv_p IF_LINT (= 0);
6b61353c
KH
954
955 if (w->pseudo_window_p)
956 return 0;
957
958 if (!MINI_WINDOW_P (w)
d3d50620 959 && (ind = BVAR (XBUFFER (w->buffer), indicate_buffer_boundaries), !NILP (ind)))
6b61353c 960 {
5797a7a0
KS
961 if (EQ (ind, Qleft) || EQ (ind, Qright))
962 boundary_top = boundary_bot = arrow_top = arrow_bot = ind;
963 else if (CONSP (ind) && CONSP (XCAR (ind)))
964 {
965 Lisp_Object pos;
966 if (pos = Fassq (Qt, ind), !NILP (pos))
967 boundary_top = boundary_bot = arrow_top = arrow_bot = XCDR (pos);
968 if (pos = Fassq (Qtop, ind), !NILP (pos))
969 boundary_top = XCDR (pos);
970 if (pos = Fassq (Qbottom, ind), !NILP (pos))
971 boundary_bot = XCDR (pos);
972 if (pos = Fassq (Qup, ind), !NILP (pos))
973 arrow_top = XCDR (pos);
974 if (pos = Fassq (Qdown, ind), !NILP (pos))
975 arrow_bot = XCDR (pos);
976 }
6b61353c 977 else
a208b89c
KS
978 /* Anything else means boundary on left and no arrows. */
979 boundary_top = boundary_bot = Qleft;
5797a7a0 980 }
6b61353c 981
5a874e95 982 top_ind_rn = bot_ind_rn = -1;
5797a7a0
KS
983 if (!NILP (ind))
984 {
5a874e95 985 for (y = w->vscroll, rn = 0;
6b61353c
KH
986 y < yb && rn < nrows;
987 y += row->height, ++rn)
988 {
6b61353c
KH
989 row = w->desired_matrix->rows + rn;
990 if (!row->enabled_p)
991 row = w->current_matrix->rows + rn;
992
6b61353c
KH
993 row->indicate_bob_p = row->indicate_top_line_p = 0;
994 row->indicate_eob_p = row->indicate_bottom_line_p = 0;
995
26a5d440
KS
996 if (!row->mode_line_p)
997 {
5a874e95 998 if (top_ind_rn < 0 && row->visible_height > 0)
26a5d440 999 {
d3d50620 1000 if (MATRIX_ROW_START_CHARPOS (row) <= BUF_BEGV (XBUFFER (w->buffer))
18e1c39a 1001 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P (w, row))
26a5d440
KS
1002 row->indicate_bob_p = !NILP (boundary_top);
1003 else
1004 row->indicate_top_line_p = !NILP (arrow_top);
5a874e95 1005 top_ind_rn = rn;
26a5d440 1006 }
6b61353c 1007
5a874e95 1008 if (bot_ind_rn < 0)
26a5d440 1009 {
d3d50620 1010 if (MATRIX_ROW_END_CHARPOS (row) >= BUF_ZV (XBUFFER (w->buffer))
18e1c39a 1011 && !MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P (w, row))
5a874e95 1012 row->indicate_eob_p = !NILP (boundary_bot), bot_ind_rn = rn;
26a5d440 1013 else if (y + row->height >= yb)
5a874e95 1014 row->indicate_bottom_line_p = !NILP (arrow_bot), bot_ind_rn = rn;
26a5d440
KS
1015 }
1016 }
6b61353c
KH
1017 }
1018 }
1019
d3d50620 1020 empty_pos = BVAR (XBUFFER (w->buffer), indicate_empty_lines);
5797a7a0
KS
1021 if (!NILP (empty_pos) && !EQ (empty_pos, Qright))
1022 empty_pos = WINDOW_LEFT_FRINGE_WIDTH (w) == 0 ? Qright : Qleft;
6b61353c 1023
7840b332
KS
1024 for (y = 0; y < MAX_BITMAP_CACHE; y++)
1025 bitmap_cache[y] = -1;
1026
1027#define LEFT_FRINGE(cache, which, partial_p) \
1028 (bitmap_cache[cache*4+partial_p] >= 0 \
1029 ? bitmap_cache[cache*4+partial_p] \
1030 : (bitmap_cache[cache*4+partial_p] = \
1031 get_logical_fringe_bitmap (w, which, 0, partial_p)))
1032
1033#define RIGHT_FRINGE(cache, which, partial_p) \
1034 (bitmap_cache[cache*4+2+partial_p] >= 0 \
1035 ? bitmap_cache[cache*4+2+partial_p] \
1036 : (bitmap_cache[cache*4+2+partial_p] = \
1037 get_logical_fringe_bitmap (w, which, 1, partial_p)))
1038
1039
5a874e95
YM
1040 /* Extend top-aligned top indicator (or bottom-aligned bottom
1041 indicator) to adjacent rows if it doesn't fit in one row. */
1042 top_ind_min_y = bot_ind_max_y = -1;
1043 if (top_ind_rn >= 0)
1044 {
1045 int bn = NO_FRINGE_BITMAP;
1046
1047 row = w->desired_matrix->rows + top_ind_rn;
1048 if (!row->enabled_p)
1049 row = w->current_matrix->rows + top_ind_rn;
1050
1051 top_row_ends_at_zv_p = row->ends_at_zv_p;
1052 if (row->indicate_bob_p)
1053 {
1054 if (EQ (boundary_top, Qleft))
1055 bn = ((row->indicate_eob_p && EQ (boundary_bot, Qleft))
1056 ? LEFT_FRINGE (1, Qtop_bottom, row->ends_at_zv_p)
1057 : LEFT_FRINGE (2, Qtop, 0));
1058 else
1059 bn = ((row->indicate_eob_p && EQ (boundary_bot, Qright))
1060 ? RIGHT_FRINGE (1, Qtop_bottom, row->ends_at_zv_p)
1061 : RIGHT_FRINGE (2, Qtop, 0));
1062 }
1063 else if (row->indicate_top_line_p)
1064 {
1065 if (EQ (arrow_top, Qleft))
1066 bn = LEFT_FRINGE (6, Qup, 0);
1067 else
1068 bn = RIGHT_FRINGE (6, Qup, 0);
1069 }
1070
1071 if (bn != NO_FRINGE_BITMAP)
1072 {
e61124cd 1073 struct fringe_bitmap *fb = get_fringe_bitmap_data (bn);
5a874e95 1074
5a874e95
YM
1075 if (fb->align == ALIGN_BITMAP_TOP && fb->period == 0)
1076 {
1077 struct glyph_row *row1;
1078 int top_ind_max_y;
1079
1080 top_ind_min_y = WINDOW_HEADER_LINE_HEIGHT (w);
1081 top_ind_max_y = top_ind_min_y + fb->height;
1082 if (top_ind_max_y > yb)
1083 top_ind_max_y = yb;
1084
1085 for (y = row->y + row->height, rn = top_ind_rn + 1;
1086 y < top_ind_max_y && rn < nrows;
1087 y += row1->height, rn++)
1088 {
1089 if (bot_ind_rn >= 0 && rn >= bot_ind_rn)
1090 break;
1091
1092 row1 = w->desired_matrix->rows + rn;
1093 if (!row1->enabled_p)
1094 row1 = w->current_matrix->rows + rn;
1095
1096 row1->indicate_bob_p = row->indicate_bob_p;
1097 row1->indicate_top_line_p = row->indicate_top_line_p;
1098 }
1099 }
1100 }
1101 }
1102 if (bot_ind_rn >= 0)
1103 {
1104 int bn = NO_FRINGE_BITMAP;
1105
1106 row = w->desired_matrix->rows + bot_ind_rn;
1107 if (!row->enabled_p)
1108 row = w->current_matrix->rows + bot_ind_rn;
1109
1110 bot_row_ends_at_zv_p = row->ends_at_zv_p;
1111 if (row->indicate_eob_p)
1112 {
1113 if (EQ (boundary_bot, Qleft))
1114 bn = LEFT_FRINGE (3, Qbottom, row->ends_at_zv_p);
1115 else
1116 bn = RIGHT_FRINGE (3, Qbottom, row->ends_at_zv_p);
1117 }
1118 else if (row->indicate_bottom_line_p)
1119 {
1120 if (EQ (arrow_bot, Qleft))
1121 bn = LEFT_FRINGE (7, Qdown, 0);
1122 else
1123 bn = RIGHT_FRINGE (7, Qdown, 0);
1124 }
1125
1126 if (bn != NO_FRINGE_BITMAP)
1127 {
e61124cd 1128 struct fringe_bitmap *fb = get_fringe_bitmap_data (bn);
5a874e95 1129
5a874e95
YM
1130 if (fb->align == ALIGN_BITMAP_BOTTOM && fb->period == 0)
1131 {
1132 struct glyph_row *row1;
1133 int bot_ind_min_y;
1134
1135 bot_ind_max_y = row->y + row->visible_height;
1136 bot_ind_min_y = bot_ind_max_y - fb->height;
1137 if (bot_ind_min_y < WINDOW_HEADER_LINE_HEIGHT (w))
1138 bot_ind_min_y = WINDOW_HEADER_LINE_HEIGHT (w);
1139
1140 for (y = row->y, rn = bot_ind_rn - 1;
1141 y >= bot_ind_min_y && rn >= 0;
1142 y -= row1->height, rn--)
1143 {
1144 if (top_ind_rn >= 0 && rn <= top_ind_rn)
1145 break;
1146
1147 row1 = w->desired_matrix->rows + rn;
1148 if (!row1->enabled_p)
1149 row1 = w->current_matrix->rows + rn;
1150
1151 row1->indicate_eob_p = row->indicate_eob_p;
1152 row1->indicate_bottom_line_p = row->indicate_bottom_line_p;
1153 }
1154 }
1155 }
1156 }
1157
1158 for (y = w->vscroll, rn = 0;
6b61353c
KH
1159 y < yb && rn < nrows;
1160 y += row->height, rn++)
1161 {
7840b332 1162 int left, right;
6b61353c 1163 unsigned left_face_id, right_face_id;
5a874e95 1164 int left_offset, right_offset;
e61124cd 1165 int periodic_p;
6b61353c
KH
1166
1167 row = w->desired_matrix->rows + rn;
1168 cur = w->current_matrix->rows + rn;
1169 if (!row->enabled_p)
1170 row = cur;
1171
1172 left_face_id = right_face_id = DEFAULT_FACE_ID;
5a874e95 1173 left_offset = right_offset = 0;
e61124cd 1174 periodic_p = 0;
6b61353c
KH
1175
1176 /* Decide which bitmap to draw in the left fringe. */
1177 if (WINDOW_LEFT_FRINGE_WIDTH (w) == 0)
1178 left = NO_FRINGE_BITMAP;
1179 else if (row->left_user_fringe_bitmap != NO_FRINGE_BITMAP)
1180 {
1181 left = row->left_user_fringe_bitmap;
1182 left_face_id = row->left_user_fringe_face_id;
1183 }
96d79611
EZ
1184 else if ((!row->reversed_p && row->truncated_on_left_p)
1185 || (row->reversed_p && row->truncated_on_right_p))
5e617bc2 1186 left = LEFT_FRINGE (0, Qtruncation, 0);
5797a7a0 1187 else if (row->indicate_bob_p && EQ (boundary_top, Qleft))
5a874e95
YM
1188 {
1189 left = ((row->indicate_eob_p && EQ (boundary_bot, Qleft))
1190 ? LEFT_FRINGE (1, Qtop_bottom, top_row_ends_at_zv_p)
1191 : LEFT_FRINGE (2, Qtop, 0));
1192 if (top_ind_min_y >= 0)
1193 left_offset = top_ind_min_y - row->y;
1194 }
5797a7a0 1195 else if (row->indicate_eob_p && EQ (boundary_bot, Qleft))
5a874e95
YM
1196 {
1197 left = LEFT_FRINGE (3, Qbottom, bot_row_ends_at_zv_p);
1198 if (bot_ind_max_y >= 0)
1199 left_offset = bot_ind_max_y - (row->y + row->visible_height);
1200 }
c4affd2c
EZ
1201 else if ((!row->reversed_p && MATRIX_ROW_CONTINUATION_LINE_P (row))
1202 || (row->reversed_p && row->continued_p))
7840b332 1203 left = LEFT_FRINGE (4, Qcontinuation, 0);
5797a7a0 1204 else if (row->indicate_empty_line_p && EQ (empty_pos, Qleft))
7840b332 1205 left = LEFT_FRINGE (5, Qempty_line, 0);
5797a7a0 1206 else if (row->indicate_top_line_p && EQ (arrow_top, Qleft))
5a874e95
YM
1207 {
1208 left = LEFT_FRINGE (6, Qup, 0);
1209 if (top_ind_min_y >= 0)
1210 left_offset = top_ind_min_y - row->y;
1211 }
5797a7a0 1212 else if (row->indicate_bottom_line_p && EQ (arrow_bot, Qleft))
5a874e95
YM
1213 {
1214 left = LEFT_FRINGE (7, Qdown, 0);
1215 if (bot_ind_max_y >= 0)
1216 left_offset = bot_ind_max_y - (row->y + row->visible_height);
1217 }
6b61353c
KH
1218 else
1219 left = NO_FRINGE_BITMAP;
1220
1221 /* Decide which bitmap to draw in the right fringe. */
1222 if (WINDOW_RIGHT_FRINGE_WIDTH (w) == 0)
1223 right = NO_FRINGE_BITMAP;
1224 else if (row->right_user_fringe_bitmap != NO_FRINGE_BITMAP)
1225 {
1226 right = row->right_user_fringe_bitmap;
1227 right_face_id = row->right_user_fringe_face_id;
1228 }
96d79611
EZ
1229 else if ((!row->reversed_p && row->truncated_on_right_p)
1230 || (row->reversed_p && row->truncated_on_left_p))
7840b332 1231 right = RIGHT_FRINGE (0, Qtruncation, 0);
5797a7a0 1232 else if (row->indicate_bob_p && EQ (boundary_top, Qright))
5a874e95
YM
1233 {
1234 right = ((row->indicate_eob_p && EQ (boundary_bot, Qright))
1235 ? RIGHT_FRINGE (1, Qtop_bottom, top_row_ends_at_zv_p)
1236 : RIGHT_FRINGE (2, Qtop, 0));
1237 if (top_ind_min_y >= 0)
1238 right_offset = top_ind_min_y - row->y;
1239 }
5797a7a0 1240 else if (row->indicate_eob_p && EQ (boundary_bot, Qright))
5a874e95
YM
1241 {
1242 right = RIGHT_FRINGE (3, Qbottom, bot_row_ends_at_zv_p);
1243 if (bot_ind_max_y >= 0)
1244 right_offset = bot_ind_max_y - (row->y + row->visible_height);
1245 }
c4affd2c
EZ
1246 else if ((!row->reversed_p && row->continued_p)
1247 || (row->reversed_p && MATRIX_ROW_CONTINUATION_LINE_P (row)))
7840b332 1248 right = RIGHT_FRINGE (4, Qcontinuation, 0);
5797a7a0 1249 else if (row->indicate_top_line_p && EQ (arrow_top, Qright))
5a874e95
YM
1250 {
1251 right = RIGHT_FRINGE (6, Qup, 0);
1252 if (top_ind_min_y >= 0)
1253 right_offset = top_ind_min_y - row->y;
1254 }
5797a7a0 1255 else if (row->indicate_bottom_line_p && EQ (arrow_bot, Qright))
5a874e95
YM
1256 {
1257 right = RIGHT_FRINGE (7, Qdown, 0);
1258 if (bot_ind_max_y >= 0)
1259 right_offset = bot_ind_max_y - (row->y + row->visible_height);
1260 }
5797a7a0 1261 else if (row->indicate_empty_line_p && EQ (empty_pos, Qright))
7840b332 1262 right = RIGHT_FRINGE (5, Qempty_line, 0);
6b61353c
KH
1263 else
1264 right = NO_FRINGE_BITMAP;
1265
e61124cd
YM
1266 periodic_p = (get_fringe_bitmap_data (left)->period != 0
1267 || get_fringe_bitmap_data (right)->period != 0);
1268
4dadc129 1269 if (row->y != cur->y
6b61353c 1270 || row->visible_height != cur->visible_height
81544a1d 1271 || row->ends_at_zv_p != cur->ends_at_zv_p
6b61353c
KH
1272 || left != cur->left_fringe_bitmap
1273 || right != cur->right_fringe_bitmap
1274 || left_face_id != cur->left_fringe_face_id
1275 || right_face_id != cur->right_fringe_face_id
5a874e95
YM
1276 || left_offset != cur->left_fringe_offset
1277 || right_offset != cur->right_fringe_offset
e61124cd 1278 || periodic_p != cur->fringe_bitmap_periodic_p
6b61353c
KH
1279 || cur->redraw_fringe_bitmaps_p)
1280 {
4dadc129
KS
1281 redraw_p = row->redraw_fringe_bitmaps_p = 1;
1282 if (!keep_current_p)
1283 {
1284 cur->redraw_fringe_bitmaps_p = 1;
1285 cur->left_fringe_bitmap = left;
1286 cur->right_fringe_bitmap = right;
1287 cur->left_fringe_face_id = left_face_id;
1288 cur->right_fringe_face_id = right_face_id;
5a874e95
YM
1289 cur->left_fringe_offset = left_offset;
1290 cur->right_fringe_offset = right_offset;
e61124cd 1291 cur->fringe_bitmap_periodic_p = periodic_p;
4dadc129 1292 }
6b61353c
KH
1293 }
1294
7dfa5c49
KS
1295 if (row->overlay_arrow_bitmap < 0)
1296 row->overlay_arrow_bitmap = get_logical_fringe_bitmap (w, Qoverlay_arrow, 0, 0);
1297
a8b34fae 1298 if (row->overlay_arrow_bitmap != cur->overlay_arrow_bitmap)
6b61353c 1299 {
14eca62f
YM
1300 redraw_p = row->redraw_fringe_bitmaps_p = 1;
1301 if (!keep_current_p)
1302 {
1303 cur->redraw_fringe_bitmaps_p = 1;
1304 cur->overlay_arrow_bitmap = row->overlay_arrow_bitmap;
1305 }
6b61353c
KH
1306 }
1307
1308 row->left_fringe_bitmap = left;
1309 row->right_fringe_bitmap = right;
1310 row->left_fringe_face_id = left_face_id;
1311 row->right_fringe_face_id = right_face_id;
5a874e95
YM
1312 row->left_fringe_offset = left_offset;
1313 row->right_fringe_offset = right_offset;
e61124cd 1314 row->fringe_bitmap_periodic_p = periodic_p;
6b61353c
KH
1315 }
1316
4dadc129 1317 return redraw_p && !keep_current_p;
6b61353c
KH
1318}
1319
1320
1321/* Compute actual fringe widths for frame F.
1322
1323 If REDRAW is 1, redraw F if the fringe settings was actually
1324 modified and F is visible.
1325
1326 Since the combined left and right fringe must occupy an integral
1327 number of columns, we may need to add some pixels to each fringe.
1328 Typically, we add an equal amount (+/- 1 pixel) to each fringe,
1329 but a negative width value is taken literally (after negating it).
1330
11491cbb 1331 We never make the fringes narrower than specified.
6b61353c
KH
1332*/
1333
1334void
971de7fb 1335compute_fringe_widths (struct frame *f, int redraw)
6b61353c
KH
1336{
1337 int o_left = FRAME_LEFT_FRINGE_WIDTH (f);
1338 int o_right = FRAME_RIGHT_FRINGE_WIDTH (f);
1339 int o_cols = FRAME_FRINGE_COLS (f);
1340
e69b0960
DA
1341 Lisp_Object left_fringe = Fassq (Qleft_fringe, f->param_alist);
1342 Lisp_Object right_fringe = Fassq (Qright_fringe, f->param_alist);
6b61353c
KH
1343 int left_fringe_width, right_fringe_width;
1344
1345 if (!NILP (left_fringe))
1346 left_fringe = Fcdr (left_fringe);
1347 if (!NILP (right_fringe))
1348 right_fringe = Fcdr (right_fringe);
1349
1350 left_fringe_width = ((NILP (left_fringe) || !INTEGERP (left_fringe)) ? 8 :
1351 XINT (left_fringe));
1352 right_fringe_width = ((NILP (right_fringe) || !INTEGERP (right_fringe)) ? 8 :
1353 XINT (right_fringe));
1354
1355 if (left_fringe_width || right_fringe_width)
1356 {
1357 int left_wid = left_fringe_width >= 0 ? left_fringe_width : -left_fringe_width;
1358 int right_wid = right_fringe_width >= 0 ? right_fringe_width : -right_fringe_width;
1359 int conf_wid = left_wid + right_wid;
1360 int font_wid = FRAME_COLUMN_WIDTH (f);
1361 int cols = (left_wid + right_wid + font_wid-1) / font_wid;
1362 int real_wid = cols * font_wid;
1363 if (left_wid && right_wid)
1364 {
1365 if (left_fringe_width < 0)
1366 {
1367 /* Left fringe width is fixed, adjust right fringe if necessary */
1368 FRAME_LEFT_FRINGE_WIDTH (f) = left_wid;
1369 FRAME_RIGHT_FRINGE_WIDTH (f) = real_wid - left_wid;
1370 }
1371 else if (right_fringe_width < 0)
1372 {
1373 /* Right fringe width is fixed, adjust left fringe if necessary */
1374 FRAME_LEFT_FRINGE_WIDTH (f) = real_wid - right_wid;
1375 FRAME_RIGHT_FRINGE_WIDTH (f) = right_wid;
1376 }
1377 else
1378 {
1379 /* Adjust both fringes with an equal amount.
1380 Note that we are doing integer arithmetic here, so don't
1381 lose a pixel if the total width is an odd number. */
1382 int fill = real_wid - conf_wid;
1383 FRAME_LEFT_FRINGE_WIDTH (f) = left_wid + fill/2;
1384 FRAME_RIGHT_FRINGE_WIDTH (f) = right_wid + fill - fill/2;
1385 }
1386 }
1387 else if (left_fringe_width)
1388 {
1389 FRAME_LEFT_FRINGE_WIDTH (f) = real_wid;
1390 FRAME_RIGHT_FRINGE_WIDTH (f) = 0;
1391 }
1392 else
1393 {
1394 FRAME_LEFT_FRINGE_WIDTH (f) = 0;
1395 FRAME_RIGHT_FRINGE_WIDTH (f) = real_wid;
1396 }
1397 FRAME_FRINGE_COLS (f) = cols;
1398 }
1399 else
1400 {
1401 FRAME_LEFT_FRINGE_WIDTH (f) = 0;
1402 FRAME_RIGHT_FRINGE_WIDTH (f) = 0;
1403 FRAME_FRINGE_COLS (f) = 0;
1404 }
1405
1406 if (redraw && FRAME_VISIBLE_P (f))
1407 if (o_left != FRAME_LEFT_FRINGE_WIDTH (f) ||
1408 o_right != FRAME_RIGHT_FRINGE_WIDTH (f) ||
1409 o_cols != FRAME_FRINGE_COLS (f))
1410 redraw_frame (f);
1411}
1412
7a2a85be 1413
4cce0ab7
KS
1414/* Free resources used by a user-defined bitmap. */
1415
bf60f616 1416static void
971de7fb 1417destroy_fringe_bitmap (int n)
6b61353c 1418{
6b61353c
KH
1419 struct fringe_bitmap **fbp;
1420
49ce2dbd 1421 fringe_faces[n] = Qnil;
6b61353c
KH
1422
1423 fbp = &fringe_bitmaps[n];
1424 if (*fbp && (*fbp)->dynamic)
1425 {
e581a466 1426 /* XXX Is SELECTED_FRAME OK here? */
04ccca97 1427 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
f2be4fd0 1428 if (rif && rif->destroy_fringe_bitmap)
6b61353c
KH
1429 rif->destroy_fringe_bitmap (n);
1430 xfree (*fbp);
1431 *fbp = NULL;
1432 }
1433
1434 while (max_used_fringe_bitmap > MAX_STANDARD_FRINGE_BITMAPS
1435 && fringe_bitmaps[max_used_fringe_bitmap - 1] == NULL)
1436 max_used_fringe_bitmap--;
7a2a85be
KS
1437}
1438
6b61353c 1439
7a2a85be
KS
1440DEFUN ("destroy-fringe-bitmap", Fdestroy_fringe_bitmap, Sdestroy_fringe_bitmap,
1441 1, 1, 0,
1442 doc: /* Destroy fringe bitmap BITMAP.
1443If BITMAP overrides a standard fringe bitmap, the original bitmap is restored. */)
5842a27b 1444 (Lisp_Object bitmap)
7a2a85be
KS
1445{
1446 int n;
7a2a85be 1447
4cce0ab7
KS
1448 CHECK_SYMBOL (bitmap);
1449 n = lookup_fringe_bitmap (bitmap);
1450 if (!n)
7a2a85be
KS
1451 return Qnil;
1452
1453 destroy_fringe_bitmap (n);
2d05deef 1454
4cce0ab7 1455 if (n >= MAX_STANDARD_FRINGE_BITMAPS)
7a2a85be 1456 {
4cce0ab7 1457 Vfringe_bitmaps = Fdelq (bitmap, Vfringe_bitmaps);
7a2a85be 1458 /* It would be better to remove the fringe property. */
4cce0ab7 1459 Fput (bitmap, Qfringe, Qnil);
7a2a85be 1460 }
4cce0ab7 1461
6b61353c
KH
1462 return Qnil;
1463}
1464
1465
1466/* Initialize bitmap bit.
1467
1468 On X, we bit-swap the built-in bitmaps and reduce bitmap
1469 from short to char array if width is <= 8 bits.
1470
1471 On MAC with big-endian CPU, we need to byte-swap each short.
1472
1473 On W32 and MAC (little endian), there's no need to do this.
1474*/
1475
2e4e5023 1476#if defined (HAVE_X_WINDOWS)
91433552 1477static const unsigned char swap_nibble[16] = {
2e4e5023
GM
1478 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
1479 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
1480 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
1481 0x3, 0xb, 0x7, 0xf}; /* 0011 1011 0111 1111 */
1482#endif /* HAVE_X_WINDOWS */
1483
bf60f616 1484static void
971de7fb 1485init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p)
6b61353c
KH
1486{
1487 if (once_p || fb->dynamic)
1488 {
1489#if defined (HAVE_X_WINDOWS)
6b61353c
KH
1490 unsigned short *bits = fb->bits;
1491 int j;
1492
1493 if (fb->width <= 8)
1494 {
1495 unsigned char *cbits = (unsigned char *)fb->bits;
1496 for (j = 0; j < fb->height; j++)
1497 {
1498 unsigned short b = *bits++;
1499 unsigned char c;
1500 c = (unsigned char)((swap_nibble[b & 0xf] << 4)
1501 | (swap_nibble[(b>>4) & 0xf]));
1502 *cbits++ = (c >> (8 - fb->width));
1503 }
1504 }
1505 else
1506 {
1507 for (j = 0; j < fb->height; j++)
1508 {
1509 unsigned short b = *bits;
1510 b = (unsigned short)((swap_nibble[b & 0xf] << 12)
1511 | (swap_nibble[(b>>4) & 0xf] << 8)
1512 | (swap_nibble[(b>>8) & 0xf] << 4)
1513 | (swap_nibble[(b>>12) & 0xf]));
4e8231f3 1514 b >>= (16 - fb->width);
671d409f 1515#ifdef WORDS_BIGENDIAN
4e8231f3
YM
1516 b = ((b >> 8) | (b << 8));
1517#endif
1518 *bits++ = b;
6b61353c
KH
1519 }
1520 }
1521#endif /* HAVE_X_WINDOWS */
1522
6b61353c
KH
1523 }
1524
1525 if (!once_p)
1526 {
e581a466 1527 /* XXX Is SELECTED_FRAME OK here? */
04ccca97 1528 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
a284b538 1529
7a2a85be 1530 destroy_fringe_bitmap (which);
6b61353c 1531
f2be4fd0 1532 if (rif && rif->define_fringe_bitmap)
6b61353c
KH
1533 rif->define_fringe_bitmap (which, fb->bits, fb->height, fb->width);
1534
1535 fringe_bitmaps[which] = fb;
1536 if (which >= max_used_fringe_bitmap)
1537 max_used_fringe_bitmap = which + 1;
1538 }
1539}
1540
1541
1542DEFUN ("define-fringe-bitmap", Fdefine_fringe_bitmap, Sdefine_fringe_bitmap,
7a2a85be
KS
1543 2, 5, 0,
1544 doc: /* Define fringe bitmap BITMAP from BITS of size HEIGHT x WIDTH.
2faacff7 1545BITMAP is a symbol identifying the new fringe bitmap.
6b61353c
KH
1546BITS is either a string or a vector of integers.
1547HEIGHT is height of bitmap. If HEIGHT is nil, use length of BITS.
1548WIDTH must be an integer between 1 and 16, or nil which defaults to 8.
7a2a85be 1549Optional fifth arg ALIGN may be one of `top', `center', or `bottom',
6b61353c 1550indicating the positioning of the bitmap relative to the rows where it
6b72791f 1551is used; the default is to center the bitmap. Fifth arg may also be a
6b61353c
KH
1552list (ALIGN PERIODIC) where PERIODIC non-nil specifies that the bitmap
1553should be repeated.
7a2a85be 1554If BITMAP already exists, the existing definition is replaced. */)
5842a27b 1555 (Lisp_Object bitmap, Lisp_Object bits, Lisp_Object height, Lisp_Object width, Lisp_Object align)
6b61353c 1556{
6b61353c
KH
1557 int n, h, i, j;
1558 unsigned short *b;
1559 struct fringe_bitmap fb, *xfb;
1560 int fill1 = 0, fill2 = 0;
7a2a85be 1561
4cce0ab7 1562 CHECK_SYMBOL (bitmap);
6b61353c 1563
11e04b2d
KS
1564 if (STRINGP (bits))
1565 h = SCHARS (bits);
1566 else if (VECTORP (bits))
77b37c05 1567 h = ASIZE (bits);
11e04b2d 1568 else
7fee0b51 1569 wrong_type_argument (Qsequencep, bits);
6b61353c
KH
1570
1571 if (NILP (height))
11e04b2d 1572 fb.height = h;
6b61353c
KH
1573 else
1574 {
1575 CHECK_NUMBER (height);
d311d28c 1576 fb.height = max (0, min (XINT (height), 255));
11e04b2d 1577 if (fb.height > h)
6b61353c 1578 {
6b61353c
KH
1579 fill1 = (fb.height - h) / 2;
1580 fill2 = fb.height - h - fill1;
1581 }
1582 }
1583
1584 if (NILP (width))
1585 fb.width = 8;
1586 else
1587 {
1588 CHECK_NUMBER (width);
d311d28c 1589 fb.width = max (0, min (XINT (width), 255));
6b61353c
KH
1590 }
1591
1592 fb.period = 0;
1593 fb.align = ALIGN_BITMAP_CENTER;
1594
1595 if (CONSP (align))
1596 {
1597 Lisp_Object period = XCDR (align);
1598 if (CONSP (period))
1599 {
1600 period = XCAR (period);
1601 if (!NILP (period))
1602 {
1603 fb.period = fb.height;
1604 fb.height = 255;
1605 }
1606 }
1607 align = XCAR (align);
1608 }
1609 if (EQ (align, Qtop))
1610 fb.align = ALIGN_BITMAP_TOP;
1611 else if (EQ (align, Qbottom))
1612 fb.align = ALIGN_BITMAP_BOTTOM;
1613 else if (!NILP (align) && !EQ (align, Qcenter))
1614 error ("Bad align argument");
1615
ad67849e 1616 n = lookup_fringe_bitmap (bitmap);
4cce0ab7 1617 if (!n)
6b61353c 1618 {
ad67849e 1619 if (max_used_fringe_bitmap < max_fringe_bitmaps)
6b61353c
KH
1620 n = max_used_fringe_bitmap++;
1621 else
1622 {
1623 for (n = MAX_STANDARD_FRINGE_BITMAPS;
ad67849e 1624 n < max_fringe_bitmaps;
6b61353c
KH
1625 n++)
1626 if (fringe_bitmaps[n] == NULL)
1627 break;
ad67849e
KS
1628
1629 if (n == max_fringe_bitmaps)
1630 {
483a9e21
PE
1631 int bitmaps = max_fringe_bitmaps + 20;
1632 if (MAX_FRINGE_BITMAPS < bitmaps)
ad67849e
KS
1633 error ("No free fringe bitmap slots");
1634
1635 i = max_fringe_bitmaps;
38182d90
PE
1636 fringe_bitmaps = xrealloc (fringe_bitmaps,
1637 bitmaps * sizeof *fringe_bitmaps);
1638 fringe_faces = xrealloc (fringe_faces,
1639 bitmaps * sizeof *fringe_faces);
ad67849e 1640
483a9e21 1641 for (i = max_fringe_bitmaps; i < bitmaps; i++)
ad67849e
KS
1642 {
1643 fringe_bitmaps[i] = NULL;
49ce2dbd 1644 fringe_faces[i] = Qnil;
ad67849e 1645 }
483a9e21
PE
1646
1647 max_fringe_bitmaps = bitmaps;
ad67849e 1648 }
6b61353c 1649 }
7a2a85be 1650
4cce0ab7
KS
1651 Vfringe_bitmaps = Fcons (bitmap, Vfringe_bitmaps);
1652 Fput (bitmap, Qfringe, make_number (n));
6b61353c
KH
1653 }
1654
1655 fb.dynamic = 1;
1656
23f86fce 1657 xfb = xmalloc (sizeof fb + fb.height * BYTES_PER_BITMAP_ROW);
6b61353c 1658 fb.bits = b = (unsigned short *) (xfb + 1);
72af86bd 1659 memset (b, 0, fb.height);
6b61353c
KH
1660
1661 j = 0;
1662 while (j < fb.height)
1663 {
1664 for (i = 0; i < fill1 && j < fb.height; i++)
1665 b[j++] = 0;
1666 for (i = 0; i < h && j < fb.height; i++)
1667 {
1668 Lisp_Object elt = Faref (bits, make_number (i));
1669 b[j++] = NUMBERP (elt) ? XINT (elt) : 0;
1670 }
1671 for (i = 0; i < fill2 && j < fb.height; i++)
1672 b[j++] = 0;
1673 }
1674
1675 *xfb = fb;
1676
1677 init_fringe_bitmap (n, xfb, 0);
1678
4cce0ab7 1679 return bitmap;
6b61353c
KH
1680}
1681
1682DEFUN ("set-fringe-bitmap-face", Fset_fringe_bitmap_face, Sset_fringe_bitmap_face,
1683 1, 2, 0,
7a2a85be 1684 doc: /* Set face for fringe bitmap BITMAP to FACE.
6b61353c 1685If FACE is nil, reset face to default fringe face. */)
5842a27b 1686 (Lisp_Object bitmap, Lisp_Object face)
6b61353c 1687{
4cce0ab7 1688 int n;
6b61353c 1689
4cce0ab7
KS
1690 CHECK_SYMBOL (bitmap);
1691 n = lookup_fringe_bitmap (bitmap);
1692 if (!n)
7a2a85be 1693 error ("Undefined fringe bitmap");
6b61353c 1694
44286096
CY
1695 /* The purpose of the following code is to signal an error if FACE
1696 is not a face. This is for the caller's convenience only; the
1697 redisplay code should be able to fail gracefully. Skip the check
1698 if FRINGE_FACE_ID is unrealized (as in batch mode and during
1699 daemon startup). */
6b61353c
KH
1700 if (!NILP (face))
1701 {
44286096
CY
1702 struct frame *f = SELECTED_FRAME ();
1703
1704 if (FACE_FROM_ID (f, FRINGE_FACE_ID)
1705 && lookup_derived_face (f, face, FRINGE_FACE_ID, 1) < 0)
6b61353c
KH
1706 error ("No such face");
1707 }
6b61353c 1708
49ce2dbd 1709 fringe_faces[n] = face;
6b61353c
KH
1710 return Qnil;
1711}
1712
1713DEFUN ("fringe-bitmaps-at-pos", Ffringe_bitmaps_at_pos, Sfringe_bitmaps_at_pos,
1714 0, 2, 0,
1715 doc: /* Return fringe bitmaps of row containing position POS in window WINDOW.
1716If WINDOW is nil, use selected window. If POS is nil, use value of point
d3848fe9
KS
1717in that window. Return value is a list (LEFT RIGHT OV), where LEFT
1718is the symbol for the bitmap in the left fringe (or nil if no bitmap),
1719RIGHT is similar for the right fringe, and OV is non-nil if there is an
1720overlay arrow in the left fringe.
5797a7a0 1721Return nil if POS is not visible in WINDOW. */)
5842a27b 1722 (Lisp_Object pos, Lisp_Object window)
6b61353c
KH
1723{
1724 struct window *w;
6b61353c 1725 struct glyph_row *row;
d311d28c 1726 ptrdiff_t textpos;
6b61353c
KH
1727
1728 if (NILP (window))
1729 window = selected_window;
1730 CHECK_WINDOW (window);
1731 w = XWINDOW (window);
1732
1733 if (!NILP (pos))
1734 {
1735 CHECK_NUMBER_COERCE_MARKER (pos);
d311d28c
PE
1736 if (! (BEGV <= XINT (pos) && XINT (pos) <= ZV))
1737 args_out_of_range (window, pos);
6b61353c
KH
1738 textpos = XINT (pos);
1739 }
1740 else if (w == XWINDOW (selected_window))
1741 textpos = PT;
1742 else
d3d50620 1743 textpos = XMARKER (w->pointm)->charpos;
6b61353c
KH
1744
1745 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1746 row = row_containing_pos (w, textpos, row, NULL, 0);
1747 if (row)
d3848fe9
KS
1748 return list3 (get_fringe_bitmap_name (row->left_fringe_bitmap),
1749 get_fringe_bitmap_name (row->right_fringe_bitmap),
a8b34fae
KS
1750 (row->overlay_arrow_bitmap == 0 ? Qnil
1751 : row->overlay_arrow_bitmap < 0 ? Qt
1752 : get_fringe_bitmap_name (row->overlay_arrow_bitmap)));
6b61353c
KH
1753 else
1754 return Qnil;
1755}
1756
1757
1758/***********************************************************************
1759 Initialization
1760 ***********************************************************************/
1761
1762void
971de7fb 1763syms_of_fringe (void)
6b61353c 1764{
cd3520a4
JB
1765 DEFSYM (Qtruncation, "truncation");
1766 DEFSYM (Qcontinuation, "continuation");
1767 DEFSYM (Qoverlay_arrow, "overlay-arrow");
1768 DEFSYM (Qempty_line, "empty-line");
1769 DEFSYM (Qtop_bottom, "top-bottom");
1770 DEFSYM (Qhollow_small, "hollow-small");
7840b332 1771
6b61353c
KH
1772 defsubr (&Sdestroy_fringe_bitmap);
1773 defsubr (&Sdefine_fringe_bitmap);
1774 defsubr (&Sfringe_bitmaps_at_pos);
1775 defsubr (&Sset_fringe_bitmap_face);
1776
29208e82 1777 DEFVAR_LISP ("overflow-newline-into-fringe", Voverflow_newline_into_fringe,
fb7ada5f 1778 doc: /* Non-nil means that newline may flow into the right fringe.
6b61353c
KH
1779This means that display lines which are exactly as wide as the window
1780(not counting the final newline) will only occupy one screen line, by
1781showing (or hiding) the final newline in the right fringe; when point
1782is at the final newline, the cursor is shown in the right fringe.
1783If nil, also continue lines which are exactly as wide as the window. */);
1784 Voverflow_newline_into_fringe = Qt;
1785
29208e82 1786 DEFVAR_LISP ("fringe-bitmaps", Vfringe_bitmaps,
a4b7b036 1787 doc: /* List of fringe bitmap symbols. */);
7a2a85be 1788 Vfringe_bitmaps = Qnil;
6b61353c
KH
1789}
1790
49ce2dbd
KS
1791/* Garbage collection hook */
1792
1793void
971de7fb 1794mark_fringe_data (void)
49ce2dbd
KS
1795{
1796 int i;
1797
1798 for (i = 0; i < max_fringe_bitmaps; i++)
1799 if (!NILP (fringe_faces[i]))
1800 mark_object (fringe_faces[i]);
1801}
1802
6b61353c
KH
1803/* Initialize this module when Emacs starts. */
1804
1805void
971de7fb 1806init_fringe_once (void)
6b61353c 1807{
7840b332 1808 int bt;
6b61353c
KH
1809
1810 for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++)
5e617bc2 1811 init_fringe_bitmap (bt, &standard_bitmaps[bt], 1);
6b61353c
KH
1812}
1813
1814void
971de7fb 1815init_fringe (void)
6b61353c
KH
1816{
1817 int i;
1818
ad67849e
KS
1819 max_fringe_bitmaps = MAX_STANDARD_FRINGE_BITMAPS + 20;
1820
38182d90
PE
1821 fringe_bitmaps = xzalloc (max_fringe_bitmaps * sizeof *fringe_bitmaps);
1822 fringe_faces = xmalloc (max_fringe_bitmaps * sizeof *fringe_faces);
ad67849e
KS
1823
1824 for (i = 0; i < max_fringe_bitmaps; i++)
23f86fce 1825 fringe_faces[i] = Qnil;
6b61353c
KH
1826}
1827
9e2a2647 1828#ifdef HAVE_NTGUI
6b61353c
KH
1829
1830void
9e2a2647 1831w32_init_fringe (struct redisplay_interface *rif)
6b61353c 1832{
7840b332 1833 int bt;
6b61353c 1834
f2be4fd0
KS
1835 if (!rif)
1836 return;
1837
6b61353c
KH
1838 for (bt = NO_FRINGE_BITMAP + 1; bt < MAX_STANDARD_FRINGE_BITMAPS; bt++)
1839 {
1840 struct fringe_bitmap *fb = &standard_bitmaps[bt];
1841 rif->define_fringe_bitmap (bt, fb->bits, fb->height, fb->width);
1842 }
1843}
1844
1845void
7c3320d8 1846w32_reset_fringes (void)
6b61353c
KH
1847{
1848 /* Destroy row bitmaps. */
1849 int bt;
5c217767 1850 struct redisplay_interface *rif = FRAME_RIF (SELECTED_FRAME ());
6b61353c 1851
f2be4fd0
KS
1852 if (!rif)
1853 return;
1854
6b61353c
KH
1855 for (bt = NO_FRINGE_BITMAP + 1; bt < max_used_fringe_bitmap; bt++)
1856 rif->destroy_fringe_bitmap (bt);
1857}
1858
1859#endif /* HAVE_NTGUI */
1860
1861#endif /* HAVE_WINDOW_SYSTEM */