aboutsummaryrefslogtreecommitdiff
path: root/lib/libncurses/lib_insdel.c
blob: 9eb130bac2705d63e46a3cacdc376fdaddd2eee8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

/* This work is copyrighted. See COPYRIGHT.OLD & COPYRIGHT.NEW for   *
*  details. If they are missing then this copy is in violation of    *
*  the copyright conditions.                                        */

/*
**	lib_insdel.c
**
**	The routine winsdel(win, n).
**  positive n insert n lines above current line
**  negative n delete n lines starting from current line 
**
*/

#include <stdlib.h>
#include "curses.priv.h"
#include <nterm.h>

int
winsdel(WINDOW *win, int n)
{
	int ret, sscroll, stop, sbot;

	T(("winsdel(%x,%d) called", win, n));

	if (n == 0)
		return OK;
	if (n < 0 && win->_cury - n >= win->_maxy)
		/* request to delete too many lines */
		/* should we truncate to an appropriate number? */
		return ERR;

	sscroll = win->_scroll;
	stop = win->_regtop;
	sbot = win->_regbottom;

	win->_scroll = TRUE;
	win->_regtop = win->_cury;
	if (win->_regtop > win->_regbottom)
		win->_regbottom = win->_maxy;

	ret = wscrl(win, -n);

	win->_scroll = sscroll;
	win->_regtop = stop;
	win->_regbottom = sbot;

	return ret;
}