summaryrefslogtreecommitdiffstats
path: root/lib/libncurses/lib_scroll.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1994-11-29 02:48:20 +0000
committerache <ache@FreeBSD.org>1994-11-29 02:48:20 +0000
commita41d3aa1190512c05ef7c4d4f9671f1d0e4a9fac (patch)
treeec0b67f9dfd7b50ab0da583dec626b7e9038eb87 /lib/libncurses/lib_scroll.c
parentc86bd43a842dd8ead831909bae8c98f68cedee12 (diff)
downloadFreeBSD-src-a41d3aa1190512c05ef7c4d4f9671f1d0e4a9fac.zip
FreeBSD-src-a41d3aa1190512c05ef7c4d4f9671f1d0e4a9fac.tar.gz
wscrl: implement partial scrolling via al/dl
winsdel: implemented via wscrl winsertln/deleteln: implemented as macros via winsdel
Diffstat (limited to 'lib/libncurses/lib_scroll.c')
-rw-r--r--lib/libncurses/lib_scroll.c247
1 files changed, 175 insertions, 72 deletions
diff --git a/lib/libncurses/lib_scroll.c b/lib/libncurses/lib_scroll.c
index c15e52e..0f27817 100644
--- a/lib/libncurses/lib_scroll.c
+++ b/lib/libncurses/lib_scroll.c
@@ -19,9 +19,9 @@
int
wscrl(WINDOW *win, int n)
{
-int line, i;
+int line, i, touched = 0;
chtype *ptr, *temp;
-chtype **saved;
+chtype **saved, **newsaved = NULL, **cursaved = NULL;
chtype blank = ' ';
T(("wscrl(%x,%d) called", win, n));
@@ -34,88 +34,191 @@ chtype blank = ' ';
/* test for scrolling region == entire screen */
- saved = (chtype **)malloc(sizeof(chtype *) * abs(n));
+ /* as an optimization, if the scrolling region is the entire screen
+ scroll the physical screen */
+ /* should we extend this to include smaller scrolling ranges by using
+ change_scroll_region? */
- if (n < 0) {
- /* save overwritten lines */
-
- for (i = 0; i < -n; i++)
- saved[i] = win->_line[win->_regbottom-i];
-
- /* shift n lines */
-
- for (line = win->_regbottom; line > win->_regtop+n; line--)
- win->_line[line] = win->_line[line+n];
-
- /* restore saved lines and blank them */
-
- for (i = 0, line = win->_regtop; line < win->_regtop-n; line++, i++) {
- win->_line[line] = saved[i];
- temp = win->_line[line];
- for (ptr = temp; ptr - temp <= win->_maxx; ptr++)
- *ptr = blank;
+ if ( win->_begx == 0 && win->_maxx == columns - 1
+ && !memory_above && !memory_below
+ && ((win->_regtop == 0 && win->_regbottom == lines - 1
+ && ( (n < 0 && (parm_rindex || scroll_reverse))
+ || (n > 0 && (parm_index || scroll_forward))
+ )
+ ) || (win->_idlok && (parm_insert_line || insert_line)
+ && (parm_delete_line || delete_line)
+ )
+ )
+ ) {
+ wrefresh(win);
+ if (n < 0) {
+ if ( win->_regtop == 0 && win->_regbottom == lines - 1
+ && (parm_rindex || scroll_reverse)
+ ) {
+ i = abs(n);
+ mvcur(-1, -1, win->_regtop, 0);
+ if (parm_rindex) {
+ putp(tparm(parm_rindex, i));
+ } else if (scroll_reverse) {
+ while (i--)
+ putp(scroll_reverse);
+ }
+ } else {
+ i = abs(n);
+ if (win->_regbottom < lines - 1) {
+ mvcur(-1, -1, win->_regbottom, 0);
+ if (parm_delete_line) {
+ putp(tparm(parm_delete_line, i));
+ } else if (delete_line) {
+ while (i--)
+ putp(delete_line);
+ i = abs(n);
+ }
+ }
+ mvcur(-1, -1, win->_regtop, 0);
+ if (parm_insert_line) {
+ putp(tparm(parm_insert_line, i));
+ } else if (insert_line) {
+ while (i--)
+ putp(insert_line);
+ }
+ }
+ } else {
+ if ( win->_regtop == 0 && win->_regbottom == lines - 1
+ && (parm_index || scroll_forward)
+ ) {
+ mvcur(-1, -1, win->_regbottom, 0);
+ if (parm_index) {
+ putp(tparm(parm_index, n));
+ } else if (scroll_forward) {
+ i = n;
+ while (i--)
+ putp(scroll_forward);
+ }
+ } else {
+ mvcur(-1, -1, win->_regtop, 0);
+ if (parm_delete_line) {
+ putp(tparm(parm_delete_line, n));
+ } else if (delete_line) {
+ i = n;
+ while (i--)
+ putp(delete_line);
+ }
+ if (win->_regbottom < lines - 1) {
+ mvcur(win->_regtop, 0, win->_regbottom, 0);
+ if (parm_insert_line) {
+ putp(tparm(parm_insert_line, n));
+ } else if (insert_line) {
+ i = n;
+ while (i--)
+ putp(insert_line);
+ }
+ }
+ }
}
- }
- if (n > 0) {
- /* save overwritten lines */
-
- for (i = 0; i < n; i++)
- saved[i] = win->_line[win->_regtop+i];
+ mvcur(-1, -1, win->_cury, win->_curx);
+ touched = 1;
+ }
- /* shift n lines */
-
- for (line = win->_regtop; line < win->_regbottom; line++)
- win->_line[line] = win->_line[line+n];
+ saved = (chtype **)malloc(sizeof(chtype *) * abs(n));
+ if (touched) {
+ newsaved = (chtype **)malloc(sizeof(chtype *) * abs(n));
+ cursaved = (chtype **)malloc(sizeof(chtype *) * abs(n));
+ }
- /* restore saved lines and blank them */
+ if (n < 0) {
+ /* save overwritten lines */
+
+ for (i = 0; i < -n; i++) {
+ saved[i] = win->_line[win->_regbottom-i];
+ if (touched) {
+ newsaved[i] = newscr->_line[win->_begy+win->_regbottom-i];
+ cursaved[i] = curscr->_line[win->_begy+win->_regbottom-i];
+ }
+ }
- for (i = 0, line = win->_regbottom; line > win->_regbottom - n; line--, i++) {
- win->_line[line] = saved[i];
- temp = win->_line[line];
- for (ptr = temp; ptr - temp <= win->_maxx; ptr++)
- *ptr = blank;
- }
+ /* shift n lines */
+
+ for (line = win->_regbottom; line >= win->_regtop - n; line--) {
+ win->_line[line] = win->_line[line+n];
+ if (touched) {
+ newscr->_line[win->_begy+line] = newscr->_line[win->_begy+line+n];
+ curscr->_line[win->_begy+line] = curscr->_line[win->_begy+line+n];
+ }
}
-
- free(saved);
- /* as an optimization, if the scrolling region is the entire screen
- scroll the physical screen */
- /* should we extend this to include smaller scrolling ranges by using
- change_scroll_region? */
+ /* restore saved lines and blank them */
+
+ for (i = 0, line = win->_regtop; line < win->_regtop-n; line++, i++) {
+ win->_line[line] = saved[i];
+ if (touched) {
+ newscr->_line[win->_begy+line] = newsaved[i];
+ curscr->_line[win->_begy+line] = cursaved[i];
+ }
+ temp = win->_line[line];
+ for (ptr = temp; ptr - temp <= win->_maxx; ptr++)
+ *ptr = blank;
+ if (touched) {
+ temp = newscr->_line[win->_begy+line];
+ for (ptr = temp; ptr - temp <= newscr->_maxx; ptr++)
+ *ptr = blank;
+ temp = curscr->_line[win->_begy+line];
+ for (ptr = temp; ptr - temp <= curscr->_maxx; ptr++)
+ *ptr = blank;
+ }
+ }
+ } else {
+ /* save overwritten lines */
+
+ for (i = 0; i < n; i++) {
+ saved[i] = win->_line[win->_regtop+i];
+ if (touched) {
+ newsaved[i] = newscr->_line[win->_begy+win->_regtop+i];
+ cursaved[i] = curscr->_line[win->_begy+win->_regtop+i];
+ }
+ }
- if (win->_maxx == columns && win->_regtop == 0 && win->_regbottom == lines) {
+ /* shift n lines */
- wrefresh(win);
- /* at the moment this relies on scroll_reverse and scroll_forward
- or parm_rindex and parm_index.
- we should add idl support as an alternative */
-
- if (n > 0) {
- mvcur(-1, -1, win->_regtop, 0);
- if (parm_rindex) {
- putp(tparm(parm_rindex, n));
- } else if (scroll_reverse) {
- while (n--)
- putp(scroll_reverse);
- }
- }
+ for (line = win->_regtop; line <= win->_regbottom - n; line++) {
+ win->_line[line] = win->_line[line+n];
+ if (touched) {
+ newscr->_line[win->_begy+line] = newscr->_line[win->_begy+line+n];
+ curscr->_line[win->_begy+line] = curscr->_line[win->_begy+line+n];
+ }
+ }
- if (n < 0) {
- mvcur(-1, -1, win->_regbottom, columns);
- n = abs(n);
- if (parm_index) {
- putp(tparm(parm_index, n));
- } else if (scroll_forward) {
- while (n--)
- putp(scroll_forward);
- }
- }
+ /* restore saved lines and blank them */
+
+ for (i = 0, line = win->_regbottom; line > win->_regbottom - n; line--, i++) {
+ win->_line[line] = saved[i];
+ if (touched) {
+ newscr->_line[win->_begy+line] = newsaved[i];
+ curscr->_line[win->_begy+line] = cursaved[i];
+ }
+ temp = win->_line[line];
+ for (ptr = temp; ptr - temp <= win->_maxx; ptr++)
+ *ptr = blank;
+ if (touched) {
+ temp = newscr->_line[win->_begy+line];
+ for (ptr = temp; ptr - temp <= newscr->_maxx; ptr++)
+ *ptr = blank;
+ temp = curscr->_line[win->_begy+line];
+ for (ptr = temp; ptr - temp <= curscr->_maxx; ptr++)
+ *ptr = blank;
+ }
+ }
+ }
+
+ free(saved);
+ if (touched) {
+ free(newsaved);
+ free(cursaved);
+ }
- mvcur(-1, -1, win->_cury, win->_curx);
- } else
- touchline(win, win->_regtop, win->_regbottom - win->_regtop + 1);
+ if (!touched)
+ touchline(win, win->_regtop, win->_regbottom - win->_regtop + 1);
return OK;
}
OpenPOWER on IntegriCloud