BSD 4_4 release
[unix-history] / usr / src / lib / libcurses / newwin.c
index 81500d1..a2f577a 100644 (file)
@@ -1,12 +1,38 @@
 /*
 /*
- * Copyright (c) 1981 Regents of the University of California.
- * All rights reserved.
+ * Copyright (c) 1981, 1993
+ *     The Regents of the University of California.  All rights reserved.
  *
  *
- * %sccs.include.redist.c%
+ * 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.
+ * 3. All advertising materials mentioning features or use of this software
+ *    must display the following acknowledgement:
+ *     This product includes software developed by the University of
+ *     California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ *    may be used to endorse or promote products derived from this software
+ *    without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)newwin.c   5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)newwin.c   8.1 (Berkeley) 7/20/93";
 #endif /* not lint */
 
 #include <curses.h>
 #endif /* not lint */
 
 #include <curses.h>
@@ -14,96 +40,81 @@ static char sccsid[] = "@(#)newwin.c        5.6 (Berkeley) %G%";
 
 #undef nl              /* Don't need it here, and it interferes. */
 
 
 #undef nl              /* Don't need it here, and it interferes. */
 
-static WINDOW *makenew __P((int, int, int, int));
+static WINDOW  *__makenew __P((int, int, int, int, int));
+
+void    __set_subwin __P((WINDOW *, WINDOW *));
 
 /*
  * newwin --
  *     Allocate space for and set up defaults for a new window.
  */
 WINDOW *
 
 /*
  * newwin --
  *     Allocate space for and set up defaults for a new window.
  */
 WINDOW *
-newwin(num_lines, num_cols, begy, begx)
-       int num_lines, num_cols, begy, begx;
+newwin(nl, nc, by, bx)
+       register int nl, nc, by, bx;
 {
        register WINDOW *win;
 {
        register WINDOW *win;
-       register int by, bx, i, j, nl, nc;
-       register char *sp;
-
-       by = begy;
-       bx = begx;
-       nl = num_lines;
-       nc = num_cols;
+       register __LINE *lp;
+       register int  i, j;
+       register __LDATA *sp;
 
        if (nl == 0)
                nl = LINES - by;
        if (nc == 0)
                nc = COLS - bx;
 
        if (nl == 0)
                nl = LINES - by;
        if (nc == 0)
                nc = COLS - bx;
-       if ((win = makenew(nl, nc, by, bx)) == NULL)
-               return (NULL);
-       if ((win->_firstch = malloc(nl * sizeof(win->_firstch[0]))) == NULL) {
-               free(win->_y);
-               free(win);
-               return (NULL);
-       }
-       if ((win->_lastch = malloc(nl * sizeof(win->_lastch[0]))) == NULL) {
-               free(win->_y);
-               free(win->_firstch);
-               free(win);
+
+       if ((win = __makenew(nl, nc, by, bx, 0)) == NULL)
                return (NULL);
                return (NULL);
-       }
-       win->_nextp = win;
-       for (i = 0; i < nl; i++) {
-               win->_firstch[i] = _NOCHANGE;
-               win->_lastch[i] = _NOCHANGE;
-       }
-       for (i = 0; i < nl; i++)
-               if ((win->_y[i] = malloc(nc * sizeof(win->_y[0]))) == NULL) {
-                       for (j = 0; j < i; j++)
-                               free(win->_y[j]);
-                       free(win->_firstch);
-                       free(win->_lastch);
-                       free(win->_y);
-                       free(win);
-                       return (NULL);
-               } else
-                       for (sp = win->_y[i]; sp < win->_y[i] + nc;)
-                               *sp++ = ' ';
-       win->_ch_off = 0;
+
+       win->nextp = win;
+       win->ch_off = 0;
+       win->orig = NULL;
+
 #ifdef DEBUG
 #ifdef DEBUG
-       __TRACE("newwin: win->_ch_off = %d\n", win->_ch_off);
+       __CTRACE("newwin: win->ch_off = %d\n", win->ch_off);
 #endif
 #endif
+
+       for (i = 0; i < nl; i++) {
+               lp = win->lines[i];
+               lp->flags = 0;
+               for (sp = lp->line, j = 0; j < nc; j++, sp++) {
+                       sp->ch = ' ';
+                       sp->attr = 0;
+               }
+               lp->hash = __hash((char *) lp->line, nc * __LDATASIZE);
+       }
        return (win);
 }
 
 WINDOW *
        return (win);
 }
 
 WINDOW *
-subwin(orig, num_lines, num_cols, begy, begx)
+subwin(orig, nl, nc, by, bx)
        register WINDOW *orig;
        register WINDOW *orig;
-       int num_lines, num_cols, begy, begx;
+       register int by, bx, nl, nc;
 {
 {
+       int i;
+       __LINE *lp;
        register WINDOW *win;
        register WINDOW *win;
-       register int by, bx, nl, nc;
-
-       by = begy;
-       bx = begx;
-       nl = num_lines;
-       nc = num_cols;
 
        /* Make sure window fits inside the original one. */
 #ifdef DEBUG
 
        /* Make sure window fits inside the original one. */
 #ifdef DEBUG
-       __TRACE("subwin: (%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx);
+       __CTRACE("subwin: (%0.2o, %d, %d, %d, %d)\n", orig, nl, nc, by, bx);
 #endif
 #endif
-       if (by < orig->_begy || bx < orig->_begx
-           || by + nl > orig->_maxy + orig->_begy
-           || bx + nc > orig->_maxx + orig->_begx)
+       if (by < orig->begy || bx < orig->begx
+           || by + nl > orig->maxy + orig->begy
+           || bx + nc > orig->maxx + orig->begx)
                return (NULL);
        if (nl == 0)
                return (NULL);
        if (nl == 0)
-               nl = orig->_maxy + orig->_begy - by;
+               nl = orig->maxy + orig->begy - by;
        if (nc == 0)
        if (nc == 0)
-               nc = orig->_maxx + orig->_begx - bx;
-       if ((win = makenew(nl, nc, by, bx)) == NULL)
+               nc = orig->maxx + orig->begx - bx;
+       if ((win = __makenew(nl, nc, by, bx, 1)) == NULL)
                return (NULL);
                return (NULL);
-       win->_nextp = orig->_nextp;
-       orig->_nextp = win;
-       win->_orig = orig;
+       win->nextp = orig->nextp;
+       orig->nextp = win;
+       win->orig = orig;
+
+       /* Initialize flags here so that refresh can also use __set_subwin. */
+       for (lp = win->lspace, i = 0; i < win->maxy; i++, lp++)
+               lp->flags = 0;
        __set_subwin(orig, win);
        return (win);
 }
        __set_subwin(orig, win);
        return (win);
 }
@@ -115,69 +126,104 @@ void
 __set_subwin(orig, win)
        register WINDOW *orig, *win;
 {
 __set_subwin(orig, win)
        register WINDOW *orig, *win;
 {
-       register int i, j, k;
+       int i;
+       __LINE *lp, *olp;
+
+       win->ch_off = win->begx - orig->begx;
+       /*  Point line pointers to line space. */
+       for (lp = win->lspace, i = 0; i < win->maxy; i++, lp++) {
+               win->lines[i] = lp;
+               olp = orig->lines[i + win->begy];
+               lp->line = &olp->line[win->begx];
+               lp->firstchp = &olp->firstch;
+               lp->lastchp = &olp->lastch;
+               lp->hash = __hash((char *) lp->line, win->maxx * __LDATASIZE);
+       }
 
 
-       j = win->_begy - orig->_begy;
-       k = win->_begx - orig->_begx;
-       win->_ch_off = k;
 #ifdef DEBUG
 #ifdef DEBUG
-       __TRACE("__set_subwin: win->_ch_off = %d\n", win->_ch_off);
+       __CTRACE("__set_subwin: win->ch_off = %d\n", win->ch_off);
 #endif
 #endif
-       win->_firstch = &orig->_firstch[j];
-       win->_lastch = &orig->_lastch[j];
-       for (i = 0; i < win->_maxy; i++, j++)
-               win->_y[i] = &orig->_y[j][k];
 }
 
 /*
 }
 
 /*
- * makenew --
+ * __makenew --
  *     Set up a window buffer and returns a pointer to it.
  */
 static WINDOW *
  *     Set up a window buffer and returns a pointer to it.
  */
 static WINDOW *
-makenew(num_lines, num_cols, begy, begx)
-       int num_lines, num_cols, begy, begx;
+__makenew(nl, nc, by, bx, sub)
+       register int by, bx, nl, nc;
+       int sub;
 {
        register WINDOW *win;
 {
        register WINDOW *win;
-       register int by, bx, nl, nc;
-
-       by = begy;
-       bx = begx;
-       nl = num_lines;
-       nc = num_cols;
+       register __LINE *lp;
+       int i;
+       
 
 #ifdef DEBUG
 
 #ifdef DEBUG
-       __TRACE("makenew: (%d, %d, %d, %d)\n", nl, nc, by, bx);
+       __CTRACE("makenew: (%d, %d, %d, %d)\n", nl, nc, by, bx);
 #endif
        if ((win = malloc(sizeof(*win))) == NULL)
                return (NULL);
 #ifdef DEBUG
 #endif
        if ((win = malloc(sizeof(*win))) == NULL)
                return (NULL);
 #ifdef DEBUG
-       __TRACE("makenew: nl = %d\n", nl);
+       __CTRACE("makenew: nl = %d\n", nl);
 #endif
 #endif
-       if ((win->_y = malloc(nl * sizeof(win->_y[0]))) == NULL) {
+
+       /* 
+        * Set up line pointer array and line space.
+        */
+       if ((win->lines = malloc (nl * sizeof(__LINE *))) == NULL) {
                free(win);
                free(win);
-               return (NULL);
+               return NULL;
+       }
+       if ((win->lspace = malloc (nl * sizeof(__LINE))) == NULL) {
+               free (win);
+               free (win->lines);
+               return NULL;
+       }
+
+       /* Don't allocate window and line space if it's a subwindow */
+       if (!sub) {
+               /*
+                * Allocate window space in one chunk.
+                */
+               if ((win->wspace = 
+                   malloc(nc * nl * sizeof(__LDATA))) == NULL) {
+                       free(win->lines);
+                       free(win->lspace);
+                       free(win);
+                       return NULL;
+               }
+               
+               /*
+                * Point line pointers to line space, and lines themselves into
+                * window space.
+                */
+               for (lp = win->lspace, i = 0; i < nl; i++, lp++) {
+                       win->lines[i] = lp;
+                       lp->line = &win->wspace[i * nc];
+                       lp->firstchp = &lp->firstch;
+                       lp->lastchp = &lp->lastch;
+                       lp->firstch = 0;
+                       lp->lastch = 0;
+               }
        }
 #ifdef DEBUG
        }
 #ifdef DEBUG
-       __TRACE("makenew: nc = %d\n", nc);
+       __CTRACE("makenew: nc = %d\n", nc);
 #endif
 #endif
-       win->_cury = win->_curx = 0;
-       win->_clear = 0;
-       win->_maxy = nl;
-       win->_maxx = nc;
-       win->_begy = by;
-       win->_begx = bx;
-       win->_flags = 0;
-       win->_scroll = win->_leave = 0;
+       win->cury = win->curx = 0;
+       win->maxy = nl;
+       win->maxx = nc;
+
+       win->begy = by;
+       win->begx = bx;
+       win->flags = 0;
        __swflags(win);
 #ifdef DEBUG
        __swflags(win);
 #ifdef DEBUG
-       __TRACE("makenew: win->_clear = %d\n", win->_clear);
-       __TRACE("makenew: win->_leave = %d\n", win->_leave);
-       __TRACE("makenew: win->_scroll = %d\n", win->_scroll);
-       __TRACE("makenew: win->_flags = %0.2o\n", win->_flags);
-       __TRACE("makenew: win->_maxy = %d\n", win->_maxy);
-       __TRACE("makenew: win->_maxx = %d\n", win->_maxx);
-       __TRACE("makenew: win->_begy = %d\n", win->_begy);
-       __TRACE("makenew: win->_begx = %d\n", win->_begx);
+       __CTRACE("makenew: win->flags = %0.2o\n", win->flags);
+       __CTRACE("makenew: win->maxy = %d\n", win->maxy);
+       __CTRACE("makenew: win->maxx = %d\n", win->maxx);
+       __CTRACE("makenew: win->begy = %d\n", win->begy);
+       __CTRACE("makenew: win->begx = %d\n", win->begx);
 #endif
        return (win);
 }
 #endif
        return (win);
 }
@@ -186,16 +232,17 @@ void
 __swflags(win)
        register WINDOW *win;
 {
 __swflags(win)
        register WINDOW *win;
 {
-       win->_flags &= ~(_ENDLINE | _FULLLINE | _FULLWIN | _SCROLLWIN);
-       if (win->_begx + win->_maxx == COLS) {
-               win->_flags |= _ENDLINE;
-               if (win->_begx == 0) {
+       win->flags &= 
+           ~(__ENDLINE | __FULLLINE | __FULLWIN | __SCROLLWIN | __LEAVEOK);
+       if (win->begx + win->maxx == COLS) {
+               win->flags |= __ENDLINE;
+               if (win->begx == 0) {
                        if (AL && DL)
                        if (AL && DL)
-                               win->_flags |= _FULLLINE;
-                       if (win->_maxy == LINES && win->_begy == 0)
-                               win->_flags |= _FULLWIN;
+                               win->flags |= __FULLLINE;
+                       if (win->maxy == LINES && win->begy == 0)
+                               win->flags |= __FULLWIN;
                }
                }
-               if (win->_begy + win->_maxy == LINES)
-                       win->_flags |= _SCROLLWIN;
+               if (win->begy + win->maxy == LINES)
+                       win->flags |= __SCROLLWIN;
        }
 }
        }
 }