Category : C Source Code
Archive   : PCURSE14.ZIP
Filename : WINSCROL.C

 
Output of file : WINSCROL.C contained in archive : PCURSE14.ZIP
/****************************************************************/
/* Scroll() routine of the PCcurses package */
/* */
/****************************************************************/
/* This version of curses is based on ncurses, a curses version */
/* originally written by Pavel Curtis at Cornell University. */
/* I have made substantial changes to make it run on IBM PC's, */
/* and therefore consider myself free to make it public domain. */
/* Bjorn Larsson ([email protected]) */
/****************************************************************/
/* 1.4: Use of short wherever possible. Portability */
/* improvements: 900114 */
/* 1.3: MSC -W3, Turbo'C' -w -w-pro checkes: 881005 */
/* 1.2: Max limits off by 1. Fixed thanks to S. Creps: 881002 */
/* 1.0: Release: 870515 */
/****************************************************************/

#include
#include

char _curses_winscrol_rcsid[] = "@(#)winscrol.c v.1.4 - 900114";

/****************************************************************/
/* Scroll() scrolls the scrolling region of 'win', but only if */
/* scrolling is allowed and if the cursor is inside the scrol- */
/* ling region. */
/****************************************************************/

void scroll(win)
WINDOW *win;
{
short i;
short *ptr;
short *temp;
static short blank;

blank = ' ' | (win->_attrs & ATR_MSK);
if ( (!win->_scroll) /* check if window scrolls */
|| (win->_cury < win->_regtop) /* and cursor in region */
|| (win->_cury > win->_regbottom)
)
return;

temp = win->_line[win->_regtop];
for (i = win->_regtop; i < win->_regbottom; i++)
{
win->_line[i] = win->_line[i+1]; /* re-arrange line pointers */
win->_minchng[i] = 0;
win->_maxchng[i] = win->_maxx - 1;
}
for (ptr = temp; ptr - temp < win->_maxx; ptr++)
*ptr = blank; /* make a blank line */
win->_line[win->_regbottom] = temp;
if (win->_cury > win->_regtop) /* if not on top line */
win->_cury--; /* cursor scrolls too */
win->_minchng[win->_regbottom] = 0;
win->_maxchng[win->_regbottom] = win->_maxx - 1;
} /* scroll */


  3 Responses to “Category : C Source Code
Archive   : PCURSE14.ZIP
Filename : WINSCROL.C

  1. Very nice! Thank you for this wonderful archive. I wonder why I found it only now. Long live the BBS file archives!

  2. This is so awesome! 😀 I’d be cool if you could download an entire archive of this at once, though.

  3. But one thing that puzzles me is the “mtswslnkmcjklsdlsbdmMICROSOFT” string. There is an article about it here. It is definitely worth a read: http://www.os2museum.com/wp/mtswslnk/