3 * Copyright (C) 1984-2007 Mark Nudelman
5 * You may distribute under the terms of either the GNU General Public
6 * License or the Less License, as specified in the README file.
8 * For more information about less, or for information on how to
9 * contact the author, see the README file.
14 * Primitives for displaying the file on the screen,
15 * scrolling either forward or backward.
21 public int hit_eof
; /* Keeps track of how many times we hit end of file */
22 public int screen_trashed
;
24 public int no_back_scroll
= 0;
25 public int forw_prompt
;
28 extern int top_scroll
;
30 extern int sc_width
, sc_height
;
31 extern int less_is_more
;
32 extern int plusoption
;
33 extern int forw_scroll
;
34 extern int back_scroll
;
35 extern int ignore_eoi
;
37 extern int final_attr
;
40 extern char *tagoption
;
44 * Sound the bell to indicate user is trying to move past end of file.
49 if (quiet
== NOT_QUIET
)
56 * Check to see if the end of file is currently "displayed".
68 * If the bottom line is empty, we are at EOF.
69 * If the bottom line ends at the file length,
70 * we must be just at EOF.
72 pos
= position(BOTTOM_PLUS_ONE
);
73 if (pos
== NULL_POSITION
|| pos
== ch_length())
78 * If the screen is "squished", repaint it.
79 * "Squished" means the first displayed line is not at the top
80 * of the screen; this can happen when we display a short file
93 * Display n lines, scrolling forward,
94 * starting at position pos in the input file.
95 * "force" means display the n lines even if we hit end of file.
96 * "only_last" means display only the last screenful if n > screen size.
97 * "nblank" is the number of blank lines to draw before the first
98 * real line. If nblank > 0, the pos must be NULL_POSITION.
99 * The first real line after the blanks will start at ch_zero().
102 forw(n
, pos
, force
, only_last
, nblank
)
112 static int first_time
= 1;
117 * do_repaint tells us not to display anything till the end,
118 * then just repaint the entire screen.
119 * We repaint if we are supposed to display only the last
120 * screenful and the request is for more than a screenful.
121 * Also if the request exceeds the forward scroll limit
122 * (but not if the request is for exactly a screenful, since
123 * repainting itself involves scrolling forward a screenful).
125 do_repaint
= (only_last
&& n
> sc_height
-1) ||
126 (forw_scroll
>= 0 && n
> forw_scroll
&& n
!= sc_height
-1);
130 if (top_scroll
&& n
>= sc_height
- 1 && pos
!= ch_length())
133 * Start a new screen.
134 * {{ This is not really desirable if we happen
135 * to hit eof in the middle of this screen,
136 * but we don't yet know if that will happen. }}
141 if (less_is_more
== 0) {
147 if (pos
!= position(BOTTOM_PLUS_ONE
) || empty_screen())
150 * This is not contiguous with what is
151 * currently displayed. Clear the screen image
152 * (position table) and start a new screen.
161 } else if (!first_time
)
163 putstr("...skipping...\n");
171 * Read the next line of input.
176 * Still drawing blanks; don't get a line
178 * If this is the last blank line, get ready to
179 * read a line starting at ch_zero() next time.
186 * Get the next line from the file.
188 pos
= forw_line(pos
);
189 if (pos
== NULL_POSITION
)
192 * End of file: stop here unless the top line
193 * is still empty, or "force" is true.
194 * Even if force is true, stop when the last
195 * line in the file reaches the top of screen.
198 if (!force
&& position(TOP
) != NULL_POSITION
)
200 if (!empty_lines(0, 0) &&
201 !empty_lines(1, 1) &&
202 empty_lines(2, sc_height
-1))
207 * Add the position of the next line to the position table.
208 * Display the current line on the screen.
215 * If this is the first screen displayed and
216 * we hit an early EOF (i.e. before the requested
217 * number of lines), we "squish" the display down
218 * at the bottom of the screen.
219 * But don't do this if a + option or a -t option
220 * was given. These options can cause us to
221 * start the display after the beginning of the file,
222 * and it is not appropriate to squish in that case.
224 if ((first_time
|| less_is_more
) &&
225 pos
== NULL_POSITION
&& !top_scroll
&&
237 * Can't call clear_eol here. The cursor might be at end of line
238 * on an ignaw terminal, so clear_eol would clear the last char
239 * of the current line instead of all of the next line.
240 * If we really need to do this on clear_bg terminals, we need
241 * to find a better way.
244 if (clear_bg
&& apply_at_specials(final_attr
) != AT_NORMAL
)
247 * Writing the last character on the last line
248 * of the display may have scrolled the screen.
249 * If we were in standout mode, clear_bg terminals
250 * will fill the new line with the standout color.
251 * Now we're in normal mode again, so clear the line.
261 else if (eof
&& !ABORT_SIGS())
270 (void) currline(BOTTOM
);
274 * Display n lines, scrolling backward.
277 back(n
, pos
, force
, only_last
)
287 do_repaint
= (n
> get_back_scroll() || (only_last
&& n
> sc_height
-1));
292 * Get the previous line of input.
294 pos
= back_line(pos
);
295 if (pos
== NULL_POSITION
)
298 * Beginning of file: stop here unless "force" is true.
304 * Add the position of the previous line to the position table.
305 * Display the line on the screen.
324 (void) currline(BOTTOM
);
328 * Display n more lines, forward.
329 * Start just after the line currently displayed at the bottom of the screen.
332 forward(n
, force
, only_last
)
339 if (get_quit_at_eof() && hit_eof
&& !(ch_getflags() & CH_HELPFILE
))
342 * If the -e flag is set and we're trying to go
343 * forward from end-of-file, go on to the next file.
350 pos
= position(BOTTOM_PLUS_ONE
);
351 if (pos
== NULL_POSITION
&& (!force
|| empty_lines(2, sc_height
-1)))
356 * ignore_eoi is to support A_F_FOREVER.
357 * Back up until there is a line at the bottom
366 back(1, position(TOP
), 1, 0);
367 pos
= position(BOTTOM_PLUS_ONE
);
368 } while (pos
== NULL_POSITION
);
377 forw(n
, pos
, force
, only_last
, 0);
381 * Display n more lines, backward.
382 * Start just before the line currently displayed at the top of the screen.
385 backward(n
, force
, only_last
)
393 if (pos
== NULL_POSITION
&& (!force
|| position(BOTTOM
) == 0))
398 back(n
, pos
, force
, only_last
);
402 * Get the backwards scroll limit.
403 * Must call this function instead of just using the value of
404 * back_scroll, because the default case depends on sc_height and
405 * top_scroll, as well as back_scroll.
412 if (back_scroll
>= 0)
413 return (back_scroll
);
415 return (sc_height
- 2);
416 return (10000); /* infinity */