Mercurial > emacs
changeset 1785:19755499df90
* window.c (window_internal_width): New function, which accounts
for scrollbars if present.
* lisp.h (window_internal_height, window_internal_width): Add
extern declarations for these.
* dispnew.c (direct_output_for_insert, direct_output_forward_char,
buffer_posn_from_coords): Use window_internal_width instead of
writing out its definition.
* indent.c (compute_motion): Doc fix; mention scrollbars and
window_internal_width.
(pos_tab_offset, Fvertical_motion): Use window_internal_width
instead of writing it out.
* window.c (Fpos_visible_in_window_p, Fwindow_width, Fscroll_left,
Fscroll_right): Same.
* xdisp.c (redisplay, try_window, try_window_id,
display_text_line): Same.
* xdisp.c (display_string): Add new variable `f', to be W's
frame. Use it to set desired_glyphs, and to get the frame's width
to decide whether or not to draw vertical bars.
* xdisp.c (display_text_line): If we're using vertical scrollbars,
don't draw the vertical bars separating side-by-side windows.
(display_string): Same thing. Draw spaces to fill in the part of
the mode line that is under the scrollbar in partial-width
windows.
* xdisp.c (display_text_line): Use the usable internal width of
the window, as calculated above, as the limit on the length of the
overlay arrow's image, rather than using the window's width field,
less one.
* xdisp.c (redisplay): Call condemn_scrollbars_hook and
judge_scrollbars_hook whenever they are set, not just when the
frame has vertical scrollbars.
* termhooks.h (mouse_position_hook): Doc fix.
(set_vertical_scrollbar_hook): This doesn't return anything any
more, and doesn't take a struct scrollbar * argument any more.
(condemn_scrollbars_hook, redeem_scrollbar_hook,
judge_scrollbars_hook): Doc fixes.
* term.c (mouse_position_hook): Doc fix.
(set_vertical_scrollbar_hook): This doesn't return
anything any more. Doc fixes.
* keyboard.c (kbd_buffer_get_event): Receive the scrollbar's
window from *mouse_position_hook and pass it to
make_lispy_movement, instead of working with a pointer to a struct
scrollbar.
(make_lispy_event): We don't need a window_from_scrollbar function
anymore; we are given the window directly in *EVENT.
Unify the code which generates
text-area mouse clicks and scrollbar clicks; use the same code to
distinguish clicks from drags on the scrollbar as in the text area.
Distinguish clicks from drags by storing a copy of the lispy
position list returned as part of the event.
(button_down_location): Make this a lisp vector, rather than an
array of random structures.
(struct mouse_position): Remove this; it's been replaced by a lisp
list.
(make_lispy_movement): Accept the scrollbar's window as a
parameter, rather than the scrollbar itself.
If FRAME is zero, assume that the other arguments are garbage.
(syms_of_keyboard): No need to staticpro each window of
button_down_location now; just initialize and staticpro it.
* window.c (window_from_scrollbar): Function deleted; no longer
needed.
* xdisp.c (redisplay_window): Just pass the window to
set_vertical_scrollbar hook; don't pass the scrollbar object too.
* xterm.c (XTmouse_position): Don't return a pointer to the
scrollbar for scrollbar motion; instead, return the scrollbar's
window.
* xdisp.c (echo_area_display): Move the assignment of f and the
check for visibility out of the "#ifdef MULTI_FRAME" clause; they
should work under any circumstances.
* xdisp.c (redisplay_window): If we're not going to redisplay this
window because it's a minibuffer whose contents have already been
updated, go ahead and jump to the scrollbar refreshing code
anyway; they still need to be updated. Initialize opoint, so it's
known to be valid when we jump. Calculate the scrollbar settings
properly for minibuffers, no matter what they are displaying at
the time.
* xdisp.c (redisplay_windows): Don't restore the current buffer
and its point before refreshing the scrollbars; we need the buffer
accurate.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Thu, 14 Jan 1993 15:18:53 +0000 |
parents | 11f62e53acff |
children | 5179baee010b |
files | src/xdisp.c |
diffstat | 1 files changed, 64 insertions(+), 45 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xdisp.c Thu Jan 14 15:17:39 1993 +0000 +++ b/src/xdisp.c Thu Jan 14 15:18:53 1993 +0000 @@ -1,11 +1,11 @@ /* Display generation from window structure and buffer text. - Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -274,11 +274,12 @@ #ifdef MULTI_FRAME choose_minibuf_frame (); +#endif + f = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); if (! FRAME_VISIBLE_P (f)) return; -#endif if (frame_garbaged) { @@ -465,9 +466,7 @@ pos = *compute_motion (tlbufpos, 0, XINT (w->hscroll) ? 1 - XINT (w->hscroll) : 0, point, 2, - (1 << (SHORTBITS - 1)), - XFASTINT (w->width) - 1 - - (XFASTINT (w->width) + XFASTINT (w->left) - != FRAME_WIDTH (selected_frame)), + window_internal_width (w) - 1, XINT (w->hscroll), pos_tab_offset (w, tlbufpos)); if (pos.vpos < 1) @@ -501,7 +500,7 @@ { /* Mark all the scrollbars to be removed; we'll redeem the ones we want when we redisplay their windows. */ - if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) + if (condemn_scrollbars_hook) (*condemn_scrollbars_hook) (f); if (FRAME_VISIBLE_P (f)) @@ -509,7 +508,7 @@ /* Any scrollbars which redisplay_windows should have nuked should now go away. */ - if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) + if (judge_scrollbars_hook) (*judge_scrollbars_hook) (f); } } @@ -714,12 +713,11 @@ int height; register int lpoint = point; struct buffer *old = current_buffer; - register int width = XFASTINT (w->width) - 1 - - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); + register int width = window_internal_width (w) - 1; register int startp; register int hscroll = XINT (w->hscroll); struct position pos; - int opoint; + int opoint = point; int tem; int window_needs_modeline; @@ -748,7 +746,7 @@ { if (echo_area_glyphs) /* We've already displayed the echo area glyphs, if any. */ - return; + goto finish_scrollbars; } else { @@ -763,7 +761,7 @@ display_string (w, vpos + i, "", 0, 0, 0, width); } - return; + goto finish_scrollbars; } } @@ -967,28 +965,36 @@ && height != XFASTINT (w->height)) display_mode_line (w); + finish_scrollbars: + if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) + { + int start, end, whole; + + /* Calculate the start and end positions for the current window. + Note that minibuffers sometimes aren't displaying any text. */ + if (! MINI_WINDOW_P (w) + || (w == XWINDOW (minibuf_window) && ! echo_area_glyphs)) + { + start = startp; + /* I don't think this is guaranteed to be right. For the + moment, we'll pretend it is. */ + end = Z - XINT (w->window_end_pos); + whole = Z - BEG; + } + else + start = end = whole = 0; + + /* Indicate what this scrollbar ought to be displaying now. */ + (*set_vertical_scrollbar_hook) (w, end - start, whole, start - 1); + + /* Note that we actually used the scrollbar attached to this window, + so it shouldn't be deleted at the end of redisplay. */ + (*redeem_scrollbar_hook) (w); + } + SET_PT (opoint); current_buffer = old; SET_PT (lpoint); - - if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) - { - struct scrollbar *bar = WINDOW_VERTICAL_SCROLLBAR (w); - - /* This isn't guaranteed to be right. For the moment, we'll pretend - it is. */ - int endp = Z - XINT (w->window_end_pos); - - /* Indicate what this scrollbar ought to be displaying now. */ - bar = ((*set_vertical_scrollbar_hook) - (bar, w, endp - startp, Z - BEG, startp)); - - /* Note that we actually used the scrollbar attached to this window, - so it shouldn't be deleted at the end of redisplay. */ - (*redeem_scrollbar_hook) (bar); - - XSET (w->vertical_scrollbar, Lisp_Int, bar); - } } /* Do full redisplay on one window, starting at position `pos'. */ @@ -1004,8 +1010,7 @@ register int last_text_vpos = vpos; int tab_offset = pos_tab_offset (w, pos); FRAME_PTR f = XFRAME (w->frame); - int width = XFASTINT (w->width) - 1 - - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); + int width = window_internal_width (w) - 1; struct position val; Fset_marker (w->start, make_number (pos), Qnil); @@ -1060,8 +1065,7 @@ FRAME_PTR f = XFRAME (w->frame); int top = XFASTINT (w->top); int start = marker_position (w->start); - int width = XFASTINT (w->width) - 1 - - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); + int width = window_internal_width (w) - 1; int hscroll = XINT (w->hscroll); int lmargin = hscroll > 0 ? 1 - hscroll : 0; register int vpos; @@ -1476,8 +1480,7 @@ FRAME_PTR f = XFRAME (w->frame); int tab_width = XINT (current_buffer->tab_width); int ctl_arrow = !NILP (current_buffer->ctl_arrow); - int width = XFASTINT (w->width) - 1 - - (XFASTINT (w->width) + XFASTINT (w->left) != FRAME_WIDTH (f)); + int width = window_internal_width (w) - 1; struct position val; int lastpos; int invis; @@ -1743,7 +1746,13 @@ endp++; if (p1 < startp) p1 = startp; while (p1 < endp) *p1++ = SPACEGLYPH; - *p1++ = '|'; + + /* Don't draw vertical bars if we're using scrollbars. They're + covered up by the scrollbars, and it's distracting to see + them when the scrollbar windows are flickering around to be + reconfigured. */ + *p1++ = (FRAME_HAS_VERTICAL_SCROLLBARS (f) + ? ' ' : '|'); } desired_glyphs->used[vpos] = max (desired_glyphs->used[vpos], p1 - desired_glyphs->glyphs[vpos]); @@ -1762,8 +1771,8 @@ int i; int len = XSTRING (Voverlay_arrow_string)->size; - if (len > XFASTINT (w->width) - 1) - len = XFASTINT (w->width) - 1; + if (len > width) + len = width; for (i = 0; i < len; i++) startp[i] = p[i]; if (desired_glyphs->used[vpos] < @@ -2214,7 +2223,8 @@ int tab_width = XINT (XBUFFER (w->buffer)->tab_width); register GLYPH *start; register GLYPH *end; - struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (XFRAME (w->frame)); + FRAME_PTR f = XFRAME (WINDOW_FRAME (w)); + struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (f); GLYPH *p1start = desired_glyphs->glyphs[vpos] + hpos; int window_width = XFASTINT (w->width); @@ -2232,9 +2242,18 @@ start = desired_glyphs->glyphs[vpos] + XFASTINT (w->left); end = start + window_width - (truncate != 0); - if ((window_width + XFASTINT (w->left)) - != FRAME_WIDTH (XFRAME (WINDOW_FRAME (w)))) - *end-- = '|'; + if ((window_width + XFASTINT (w->left)) != FRAME_WIDTH (f)) + { + if (FRAME_HAS_VERTICAL_SCROLLBARS (f)) + { + int i; + + for (i = 0; i < VERTICAL_SCROLLBAR_WIDTH; i++) + *end-- = ' '; + } + else + *end-- = '|'; + } if (maxcol >= 0 && end - desired_glyphs->glyphs[vpos] > maxcol) end = desired_glyphs->glyphs[vpos] + maxcol;