]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/base/lib_scroll.c
ncurses 5.5
[ncurses.git] / ncurses / base / lib_scroll.c
1 /****************************************************************************
2  * Copyright (c) 1998-2003,2004 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Thomas E. Dickey 1996-2003                                      *
31  *     and: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
32  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
33  ****************************************************************************/
34
35 /*
36 **      lib_scroll.c
37 **
38 **      The routine wscrl(win, n).
39 **  positive n scroll the window up (ie. move lines down)
40 **  negative n scroll the window down (ie. move lines up)
41 **
42 */
43
44 #include <curses.priv.h>
45
46 MODULE_ID("$Id: lib_scroll.c,v 1.25 2004/12/11 18:28:51 tom Exp $")
47
48 NCURSES_EXPORT(void)
49 _nc_scroll_window(WINDOW *win,
50                   int const n,
51                   NCURSES_SIZE_T const top,
52                   NCURSES_SIZE_T const bottom,
53                   NCURSES_CH_T blank)
54 {
55     int limit;
56     int line;
57     int j;
58     size_t to_copy = (size_t) (sizeof(NCURSES_CH_T) * (win->_maxx + 1));
59
60     TR(TRACE_MOVE, ("_nc_scroll_window(%p, %d, %d, %d)", win, n, top, bottom));
61
62     if (top < 0
63         || bottom < top
64         || bottom > win->_maxy) {
65         TR(TRACE_MOVE, ("nothing to scroll"));
66         return;
67     }
68
69     /*
70      * This used to do a line-text pointer-shuffle instead of text copies.
71      * That (a) doesn't work when the window is derived and doesn't have
72      * its own storage, (b) doesn't save you a lot on modern machines
73      * anyway.  Your typical memcpy implementations are coded in
74      * assembler using a tight BLT loop; for the size of copies we're
75      * talking here, the total execution time is dominated by the one-time
76      * setup cost.  So there is no point in trying to be excessively
77      * clever -- esr.
78      */
79
80     /* shift n lines downwards */
81     if (n < 0) {
82         limit = top - n;
83         for (line = bottom; line >= limit && line >= 0; line--) {
84             TR(TRACE_MOVE, ("...copying %d to %d", line + n, line));
85             memcpy(win->_line[line].text,
86                    win->_line[line + n].text,
87                    to_copy);
88             if_USE_SCROLL_HINTS(win->_line[line].oldindex =
89                                 win->_line[line + n].oldindex);
90         }
91         for (line = top; line < limit && line <= win->_maxy; line++) {
92             TR(TRACE_MOVE, ("...filling %d", line));
93             for (j = 0; j <= win->_maxx; j++)
94                 win->_line[line].text[j] = blank;
95             if_USE_SCROLL_HINTS(win->_line[line].oldindex = _NEWINDEX);
96         }
97     }
98
99     /* shift n lines upwards */
100     if (n > 0) {
101         limit = bottom - n;
102         for (line = top; line <= limit && line <= win->_maxy; line++) {
103             memcpy(win->_line[line].text,
104                    win->_line[line + n].text,
105                    to_copy);
106             if_USE_SCROLL_HINTS(win->_line[line].oldindex =
107                                 win->_line[line + n].oldindex);
108         }
109         for (line = bottom; line > limit && line >= 0; line--) {
110             for (j = 0; j <= win->_maxx; j++)
111                 win->_line[line].text[j] = blank;
112             if_USE_SCROLL_HINTS(win->_line[line].oldindex = _NEWINDEX);
113         }
114     }
115     touchline(win, top, bottom - top + 1);
116
117     if_WIDEC({
118         if (WINDOW_EXT(win, addch_used) != 0) {
119             int next = WINDOW_EXT(win, addch_y) + n;
120             if (next < 0 || next > win->_maxy) {
121                 TR(TRACE_VIRTPUT,
122                    ("Alert discarded multibyte on scroll"));
123                 WINDOW_EXT(win, addch_y) = 0;
124             } else {
125                 TR(TRACE_VIRTPUT, ("scrolled working position to %d,%d",
126                                    WINDOW_EXT(win, addch_y),
127                                    WINDOW_EXT(win, addch_x)));
128                 WINDOW_EXT(win, addch_y) = next;
129             }
130         }
131     })
132 }
133
134 NCURSES_EXPORT(int)
135 wscrl(WINDOW *win, int n)
136 {
137     T((T_CALLED("wscrl(%p,%d)"), win, n));
138
139     if (!win || !win->_scroll) {
140         TR(TRACE_MOVE, ("...scrollok is false"));
141         returnCode(ERR);
142     }
143
144     if (n != 0) {
145         _nc_scroll_window(win, n, win->_regtop, win->_regbottom, win->_nc_bkgd);
146         _nc_synchook(win);
147     }
148     returnCode(OK);
149 }