blob: b7d9ae2941b801727e9814f915e4873499f57578 (
plain)
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
|
/* 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_scrreg.c
**
** The routine wsetscrreg().
**
*/
#include "curses.priv.h"
#include "terminfo.h"
int wsetscrreg(WINDOW *win, int top, int bottom)
{
T(("wsetscrreg(%x,%d,%d) called", win, top, bottom));
if (top >= 0 && top <= win->_maxy &&
bottom >= 0 && bottom <= win->_maxy &&
bottom > top)
{
win->_regtop = top;
win->_regbottom = bottom;
T(("correctly set scrolling region between %d and %d", top, bottom));
if (change_scroll_region != NULL) {
T(("changing scroll region"));
putp(tparm(change_scroll_region, top, bottom));
}
return(OK);
} else
return(ERR);
}
|