2017-01-06 16:53:18 +03:00
|
|
|
/* $NetBSD: insdelln.c,v 1.18 2017/01/06 13:53:18 roy Exp $ */
|
2000-04-11 17:57:08 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2000 The NetBSD Foundation, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Julian Coleman.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
|
|
|
|
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2000-04-24 18:09:41 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2017-01-06 16:53:18 +03:00
|
|
|
__RCSID("$NetBSD: insdelln.c,v 1.18 2017/01/06 13:53:18 roy Exp $");
|
2000-04-24 18:09:41 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
2007-05-28 19:01:53 +04:00
|
|
|
/*
|
2000-04-11 17:57:08 +04:00
|
|
|
* Based on deleteln.c and insertln.c -
|
|
|
|
* Copyright (c) 1981, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
2007-05-28 19:01:53 +04:00
|
|
|
#include <stdlib.h>
|
2000-04-11 17:57:08 +04:00
|
|
|
|
|
|
|
#include "curses.h"
|
|
|
|
#include "curses_private.h"
|
|
|
|
|
2000-04-15 17:17:02 +04:00
|
|
|
#ifndef _CURSES_USE_MACROS
|
|
|
|
|
|
|
|
/*
|
|
|
|
* insdelln --
|
|
|
|
* Insert or delete lines on stdscr, leaving (cury, curx) unchanged.
|
|
|
|
*/
|
|
|
|
int
|
2009-07-22 20:57:14 +04:00
|
|
|
insdelln(int nlines)
|
2000-04-15 17:17:02 +04:00
|
|
|
{
|
2017-01-06 16:53:18 +03:00
|
|
|
|
2009-07-22 20:57:14 +04:00
|
|
|
return winsdelln(stdscr, nlines);
|
2000-04-15 17:17:02 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2000-04-11 17:57:08 +04:00
|
|
|
/*
|
|
|
|
* winsdelln --
|
|
|
|
* Insert or delete lines on the window, leaving (cury, curx) unchanged.
|
|
|
|
*/
|
|
|
|
int
|
2009-07-22 20:57:14 +04:00
|
|
|
winsdelln(WINDOW *win, int nlines)
|
2000-04-11 17:57:08 +04:00
|
|
|
{
|
2001-04-20 16:56:08 +04:00
|
|
|
int y, i, last;
|
2000-04-11 17:57:08 +04:00
|
|
|
__LINE *temp;
|
2007-05-28 19:01:53 +04:00
|
|
|
#ifdef HAVE_WCHAR
|
|
|
|
__LDATA *lp;
|
|
|
|
#endif /* HAVE_WCHAR */
|
2006-02-05 20:39:52 +03:00
|
|
|
attr_t attr;
|
2000-04-11 17:57:08 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
2007-01-21 16:25:36 +03:00
|
|
|
__CTRACE(__CTRACE_LINE,
|
2009-07-22 20:57:14 +04:00
|
|
|
"winsdelln: (%p) cury=%d lines=%d\n", win, win->cury, nlines);
|
2000-04-11 17:57:08 +04:00
|
|
|
#endif
|
|
|
|
|
2009-07-22 20:57:14 +04:00
|
|
|
if (!nlines)
|
2017-01-06 16:53:18 +03:00
|
|
|
return OK;
|
2000-04-11 17:57:08 +04:00
|
|
|
|
2006-02-05 20:39:52 +03:00
|
|
|
if (__using_color && win != curscr)
|
|
|
|
attr = win->battr & __COLOR;
|
|
|
|
else
|
|
|
|
attr = 0;
|
|
|
|
|
2009-07-22 20:57:14 +04:00
|
|
|
if (nlines > 0) {
|
2000-04-11 17:57:08 +04:00
|
|
|
/* Insert lines */
|
2001-04-20 16:56:08 +04:00
|
|
|
if (win->cury < win->scr_t || win->cury > win->scr_b) {
|
|
|
|
/* Outside scrolling region */
|
2009-07-22 20:57:14 +04:00
|
|
|
if (nlines > win->maxy - win->cury)
|
|
|
|
nlines = win->maxy - win->cury;
|
2001-04-20 16:56:08 +04:00
|
|
|
last = win->maxy - 1;
|
|
|
|
} else {
|
|
|
|
/* Inside scrolling region */
|
2009-07-22 20:57:14 +04:00
|
|
|
if (nlines > win->scr_b + 1 - win->cury)
|
|
|
|
nlines = win->scr_b + 1 - win->cury;
|
2001-04-20 16:56:08 +04:00
|
|
|
last = win->scr_b;
|
|
|
|
}
|
2009-07-22 20:57:14 +04:00
|
|
|
for (y = last - nlines; y >= win->cury; --y) {
|
|
|
|
win->alines[y]->flags &= ~__ISPASTEOL;
|
|
|
|
win->alines[y + nlines]->flags &= ~__ISPASTEOL;
|
2000-04-11 17:57:08 +04:00
|
|
|
if (win->orig == NULL) {
|
2009-07-22 20:57:14 +04:00
|
|
|
temp = win->alines[y + nlines];
|
|
|
|
win->alines[y + nlines] = win->alines[y];
|
|
|
|
win->alines[y] = temp;
|
2000-04-11 17:57:08 +04:00
|
|
|
} else {
|
2017-01-06 16:53:18 +03:00
|
|
|
(void)memcpy(win->alines[y + nlines]->line,
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line,
|
2017-01-06 16:53:18 +03:00
|
|
|
(size_t)win->maxx * __LDATASIZE);
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|
|
|
|
}
|
2009-07-22 20:57:14 +04:00
|
|
|
for (y = win->cury - 1 + nlines; y >= win->cury; --y)
|
2000-04-11 17:57:08 +04:00
|
|
|
for (i = 0; i < win->maxx; i++) {
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch = win->bch;
|
|
|
|
win->alines[y]->line[i].attr = attr;
|
2007-05-28 19:01:53 +04:00
|
|
|
#ifndef HAVE_WCHAR
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch = win->bch;
|
2007-05-28 19:01:53 +04:00
|
|
|
#else
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch
|
2017-01-06 16:53:18 +03:00
|
|
|
= (wchar_t)btowc((int)win->bch );
|
2009-07-22 20:57:14 +04:00
|
|
|
lp = &win->alines[y]->line[i];
|
2007-05-28 19:01:53 +04:00
|
|
|
if (_cursesi_copy_nsp(win->bnsp, lp) == ERR)
|
|
|
|
return ERR;
|
2017-01-06 16:53:18 +03:00
|
|
|
SET_WCOL(*lp, 1);
|
2007-05-28 19:01:53 +04:00
|
|
|
#endif /* HAVE_WCHAR */
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|
2001-04-20 16:56:08 +04:00
|
|
|
for (y = last; y >= win->cury; --y)
|
2017-01-06 16:53:18 +03:00
|
|
|
__touchline(win, y, 0, (int)win->maxx - 1);
|
2000-04-11 17:57:08 +04:00
|
|
|
} else {
|
2009-07-22 20:57:14 +04:00
|
|
|
/* Delete nlines */
|
|
|
|
nlines = 0 - nlines;
|
2001-04-20 16:56:08 +04:00
|
|
|
if (win->cury < win->scr_t || win->cury > win->scr_b) {
|
|
|
|
/* Outside scrolling region */
|
2009-07-22 20:57:14 +04:00
|
|
|
if (nlines > win->maxy - win->cury)
|
|
|
|
nlines = win->maxy - win->cury;
|
2001-04-20 16:56:08 +04:00
|
|
|
last = win->maxy;
|
|
|
|
} else {
|
|
|
|
/* Inside scrolling region */
|
2009-07-22 20:57:14 +04:00
|
|
|
if (nlines > win->scr_b + 1 - win->cury)
|
|
|
|
nlines = win->scr_b + 1 - win->cury;
|
2001-04-20 16:56:08 +04:00
|
|
|
last = win->scr_b + 1;
|
|
|
|
}
|
2009-07-22 20:57:14 +04:00
|
|
|
for (y = win->cury; y < last - nlines; y++) {
|
|
|
|
win->alines[y]->flags &= ~__ISPASTEOL;
|
|
|
|
win->alines[y + nlines]->flags &= ~__ISPASTEOL;
|
2000-04-11 17:57:08 +04:00
|
|
|
if (win->orig == NULL) {
|
2009-07-22 20:57:14 +04:00
|
|
|
temp = win->alines[y];
|
|
|
|
win->alines[y] = win->alines[y + nlines];
|
|
|
|
win->alines[y + nlines] = temp;
|
2000-04-11 17:57:08 +04:00
|
|
|
} else {
|
2017-01-06 16:53:18 +03:00
|
|
|
(void)memcpy(win->alines[y]->line,
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y + nlines]->line,
|
2017-01-06 16:53:18 +03:00
|
|
|
(size_t)win->maxx * __LDATASIZE);
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|
|
|
|
}
|
2009-07-22 20:57:14 +04:00
|
|
|
for (y = last - nlines; y < last; y++)
|
2000-04-11 17:57:08 +04:00
|
|
|
for (i = 0; i < win->maxx; i++) {
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch = win->bch;
|
|
|
|
win->alines[y]->line[i].attr = attr;
|
2007-05-28 19:01:53 +04:00
|
|
|
#ifndef HAVE_WCHAR
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch = win->bch;
|
2007-05-28 19:01:53 +04:00
|
|
|
#else
|
2009-07-22 20:57:14 +04:00
|
|
|
win->alines[y]->line[i].ch
|
2017-01-06 16:53:18 +03:00
|
|
|
= (wchar_t)btowc((int)win->bch);
|
2009-07-22 20:57:14 +04:00
|
|
|
lp = &win->alines[y]->line[i];
|
2007-05-28 19:01:53 +04:00
|
|
|
SET_WCOL( *lp, 1 );
|
|
|
|
if (_cursesi_copy_nsp(win->bnsp, lp) == ERR)
|
|
|
|
return ERR;
|
|
|
|
#endif /* HAVE_WCHAR */
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|
2001-04-20 16:56:08 +04:00
|
|
|
for (y = win->cury; y < last; y++)
|
2017-01-06 16:53:18 +03:00
|
|
|
__touchline(win, y, 0, (int)win->maxx - 1);
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|
|
|
|
if (win->orig != NULL)
|
2000-04-16 09:48:25 +04:00
|
|
|
__id_subwins(win->orig);
|
2017-01-02 13:28:34 +03:00
|
|
|
__sync(win);
|
2017-01-06 16:53:18 +03:00
|
|
|
return OK;
|
2000-04-11 17:57:08 +04:00
|
|
|
}
|