newwin.c revision 1.33 1 1.32 jdc /* $NetBSD: newwin.c,v 1.33 2002/12/23 12:17:03 jdc Exp $ */
2 1.8 mikel
3 1.1 cgd /*
4 1.7 cgd * Copyright (c) 1981, 1993, 1994
5 1.5 cgd * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.8 mikel #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.8 mikel #if 0
39 1.7 cgd static char sccsid[] = "@(#)newwin.c 8.3 (Berkeley) 7/27/94";
40 1.8 mikel #else
41 1.32 jdc __RCSID("$NetBSD: newwin.c,v 1.33 2002/12/23 12:17:03 jdc Exp $");
42 1.8 mikel #endif
43 1.10 mrg #endif /* not lint */
44 1.1 cgd
45 1.4 mycroft #include <stdlib.h>
46 1.1 cgd
47 1.7 cgd #include "curses.h"
48 1.13 blymn #include "curses_private.h"
49 1.7 cgd
50 1.15 jdc extern struct __winlist *winlistp;
51 1.15 jdc
52 1.26 blymn static WINDOW *__makenew(SCREEN *screen, int nlines, int ncols, int by,
53 1.33 jdc int bx, int sub, int ispad);
54 1.33 jdc static WINDOW *__subwin(WINDOW *orig, int nlines, int ncols, int by, int bx,
55 1.33 jdc int ispad);
56 1.20 blymn
57 1.20 blymn /*
58 1.20 blymn * derwin --
59 1.20 blymn * Create a new window in the same manner as subwin but (by, bx)
60 1.20 blymn * are relative to the origin of window orig instead of absolute.
61 1.20 blymn */
62 1.20 blymn WINDOW *
63 1.20 blymn derwin(WINDOW *orig, int nlines, int ncols, int by, int bx)
64 1.20 blymn {
65 1.20 blymn if (orig == NULL)
66 1.33 jdc return NULL;
67 1.33 jdc
68 1.33 jdc return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
69 1.33 jdc FALSE);
70 1.33 jdc }
71 1.33 jdc
72 1.33 jdc /*
73 1.33 jdc * subpad --
74 1.33 jdc * Create a new pad in the same manner as subwin but (by, bx)
75 1.33 jdc * are relative to the origin of window orig instead of absolute.
76 1.33 jdc */
77 1.33 jdc WINDOW *
78 1.33 jdc subpad(WINDOW *orig, int nlines, int ncols, int by, int bx)
79 1.33 jdc {
80 1.33 jdc if (orig == NULL)
81 1.33 jdc return NULL;
82 1.28 blymn
83 1.33 jdc return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
84 1.33 jdc TRUE);
85 1.20 blymn }
86 1.5 cgd
87 1.22 blymn /*
88 1.22 blymn * dupwin --
89 1.22 blymn * Create a copy of the given window.
90 1.22 blymn */
91 1.22 blymn WINDOW *
92 1.22 blymn dupwin(WINDOW *win)
93 1.22 blymn {
94 1.22 blymn WINDOW *new_one;
95 1.22 blymn
96 1.22 blymn if ((new_one =
97 1.22 blymn newwin(win->maxy, win->maxx, win->begy, win->begx)) == NULL)
98 1.22 blymn return NULL;
99 1.22 blymn
100 1.22 blymn overwrite(win, new_one);
101 1.22 blymn return new_one;
102 1.22 blymn }
103 1.22 blymn
104 1.4 mycroft /*
105 1.4 mycroft * newwin --
106 1.4 mycroft * Allocate space for and set up defaults for a new window.
107 1.4 mycroft */
108 1.1 cgd WINDOW *
109 1.19 blymn newwin(int nlines, int ncols, int by, int bx)
110 1.1 cgd {
111 1.33 jdc return __newwin(_cursesi_screen, nlines, ncols, by, bx, FALSE);
112 1.26 blymn }
113 1.26 blymn
114 1.33 jdc /*
115 1.33 jdc * newpad --
116 1.33 jdc * Allocate space for and set up defaults for a new pad.
117 1.33 jdc */
118 1.26 blymn WINDOW *
119 1.33 jdc newpad(int nlines, int ncols)
120 1.33 jdc {
121 1.33 jdc if (nlines < 1 || ncols < 1)
122 1.33 jdc return NULL;
123 1.33 jdc return __newwin(_cursesi_screen, nlines, ncols, 0, 0, TRUE);
124 1.33 jdc }
125 1.33 jdc
126 1.33 jdc WINDOW *
127 1.33 jdc __newwin(SCREEN *screen, int nlines, int ncols, int by, int bx, int ispad)
128 1.26 blymn {
129 1.9 perry WINDOW *win;
130 1.9 perry __LINE *lp;
131 1.10 mrg int i, j;
132 1.9 perry __LDATA *sp;
133 1.1 cgd
134 1.19 blymn if (nlines == 0)
135 1.19 blymn nlines = LINES - by;
136 1.19 blymn if (ncols == 0)
137 1.19 blymn ncols = COLS - bx;
138 1.5 cgd
139 1.33 jdc if ((win = __makenew(screen, nlines, ncols, by, bx, 0, ispad)) == NULL)
140 1.4 mycroft return (NULL);
141 1.5 cgd
142 1.5 cgd win->nextp = win;
143 1.5 cgd win->ch_off = 0;
144 1.5 cgd win->orig = NULL;
145 1.5 cgd
146 1.5 cgd #ifdef DEBUG
147 1.5 cgd __CTRACE("newwin: win->ch_off = %d\n", win->ch_off);
148 1.5 cgd #endif
149 1.5 cgd
150 1.19 blymn for (i = 0; i < nlines; i++) {
151 1.5 cgd lp = win->lines[i];
152 1.5 cgd lp->flags = 0;
153 1.19 blymn for (sp = lp->line, j = 0; j < ncols; j++, sp++) {
154 1.5 cgd sp->ch = ' ';
155 1.21 jdc sp->bch = ' ';
156 1.5 cgd sp->attr = 0;
157 1.31 jdc if (__using_color)
158 1.31 jdc sp->battr = __default_color;
159 1.31 jdc else
160 1.31 jdc sp->battr = 0;
161 1.5 cgd }
162 1.12 christos lp->hash = __hash((char *)(void *)lp->line,
163 1.30 blymn (size_t) (ncols * __LDATASIZE));
164 1.1 cgd }
165 1.4 mycroft return (win);
166 1.1 cgd }
167 1.1 cgd
168 1.1 cgd WINDOW *
169 1.19 blymn subwin(WINDOW *orig, int nlines, int ncols, int by, int bx)
170 1.1 cgd {
171 1.33 jdc if (orig == NULL)
172 1.33 jdc return NULL;
173 1.33 jdc
174 1.33 jdc return __subwin(orig, nlines, ncols, orig->begy + by, orig->begx + bx,
175 1.33 jdc TRUE);
176 1.33 jdc }
177 1.33 jdc
178 1.33 jdc WINDOW *
179 1.33 jdc __subwin(WINDOW *orig, int nlines, int ncols, int by, int bx, int ispad)
180 1.33 jdc {
181 1.10 mrg int i;
182 1.5 cgd __LINE *lp;
183 1.9 perry WINDOW *win;
184 1.1 cgd
185 1.4 mycroft /* Make sure window fits inside the original one. */
186 1.4 mycroft #ifdef DEBUG
187 1.33 jdc __CTRACE("subwin: (%0.2o, %d, %d, %d, %d, %d)\n", orig, nlines, ncols,
188 1.33 jdc by, bx, ispad);
189 1.4 mycroft #endif
190 1.5 cgd if (by < orig->begy || bx < orig->begx
191 1.19 blymn || by + nlines > orig->maxy + orig->begy
192 1.19 blymn || bx + ncols > orig->maxx + orig->begx)
193 1.4 mycroft return (NULL);
194 1.19 blymn if (nlines == 0)
195 1.19 blymn nlines = orig->maxy + orig->begy - by;
196 1.19 blymn if (ncols == 0)
197 1.19 blymn ncols = orig->maxx + orig->begx - bx;
198 1.26 blymn if ((win = __makenew(_cursesi_screen, nlines, ncols,
199 1.33 jdc by, bx, 1, ispad)) == NULL)
200 1.4 mycroft return (NULL);
201 1.5 cgd win->nextp = orig->nextp;
202 1.5 cgd orig->nextp = win;
203 1.5 cgd win->orig = orig;
204 1.5 cgd
205 1.5 cgd /* Initialize flags here so that refresh can also use __set_subwin. */
206 1.5 cgd for (lp = win->lspace, i = 0; i < win->maxy; i++, lp++)
207 1.5 cgd lp->flags = 0;
208 1.4 mycroft __set_subwin(orig, win);
209 1.4 mycroft return (win);
210 1.1 cgd }
211 1.1 cgd /*
212 1.4 mycroft * This code is shared with mvwin().
213 1.1 cgd */
214 1.4 mycroft void
215 1.16 blymn __set_subwin(WINDOW *orig, WINDOW *win)
216 1.1 cgd {
217 1.10 mrg int i;
218 1.5 cgd __LINE *lp, *olp;
219 1.5 cgd
220 1.5 cgd win->ch_off = win->begx - orig->begx;
221 1.10 mrg /* Point line pointers to line space. */
222 1.5 cgd for (lp = win->lspace, i = 0; i < win->maxy; i++, lp++) {
223 1.5 cgd win->lines[i] = lp;
224 1.11 mycroft olp = orig->lines[i + win->begy - orig->begy];
225 1.29 blymn #ifdef DEBUG
226 1.29 blymn lp->sentinel = SENTINEL_VALUE;
227 1.29 blymn #endif
228 1.18 mycroft lp->line = &olp->line[win->ch_off];
229 1.5 cgd lp->firstchp = &olp->firstch;
230 1.5 cgd lp->lastchp = &olp->lastch;
231 1.12 christos lp->hash = __hash((char *)(void *)lp->line,
232 1.30 blymn (size_t) (win->maxx * __LDATASIZE));
233 1.5 cgd }
234 1.1 cgd
235 1.4 mycroft #ifdef DEBUG
236 1.33 jdc __CTRACE("__set_subwin: win->ch_off = %d\n", win->ch_off);
237 1.4 mycroft #endif
238 1.1 cgd }
239 1.1 cgd /*
240 1.5 cgd * __makenew --
241 1.4 mycroft * Set up a window buffer and returns a pointer to it.
242 1.1 cgd */
243 1.1 cgd static WINDOW *
244 1.33 jdc __makenew(SCREEN *screen, int nlines, int ncols, int by, int bx, int sub,
245 1.33 jdc int ispad)
246 1.4 mycroft {
247 1.15 jdc WINDOW *win;
248 1.15 jdc __LINE *lp;
249 1.15 jdc struct __winlist *wlp, *wlp2;
250 1.15 jdc int i;
251 1.10 mrg
252 1.1 cgd
253 1.4 mycroft #ifdef DEBUG
254 1.19 blymn __CTRACE("makenew: (%d, %d, %d, %d)\n", nlines, ncols, by, bx);
255 1.4 mycroft #endif
256 1.27 blymn if ((win = malloc(sizeof(WINDOW))) == NULL)
257 1.4 mycroft return (NULL);
258 1.4 mycroft #ifdef DEBUG
259 1.33 jdc __CTRACE("makenew: win = %0.2o\n", win);
260 1.19 blymn __CTRACE("makenew: nlines = %d\n", nlines);
261 1.4 mycroft #endif
262 1.5 cgd
263 1.10 mrg /* Set up line pointer array and line space. */
264 1.19 blymn if ((win->lines = malloc(nlines * sizeof(__LINE *))) == NULL) {
265 1.1 cgd free(win);
266 1.5 cgd return NULL;
267 1.5 cgd }
268 1.19 blymn if ((win->lspace = malloc(nlines * sizeof(__LINE))) == NULL) {
269 1.10 mrg free(win);
270 1.10 mrg free(win->lines);
271 1.5 cgd return NULL;
272 1.5 cgd }
273 1.5 cgd /* Don't allocate window and line space if it's a subwindow */
274 1.5 cgd if (!sub) {
275 1.5 cgd /*
276 1.5 cgd * Allocate window space in one chunk.
277 1.5 cgd */
278 1.10 mrg if ((win->wspace =
279 1.19 blymn malloc(ncols * nlines * sizeof(__LDATA))) == NULL) {
280 1.5 cgd free(win->lines);
281 1.5 cgd free(win->lspace);
282 1.5 cgd free(win);
283 1.5 cgd return NULL;
284 1.15 jdc }
285 1.15 jdc /*
286 1.15 jdc * Append window to window list.
287 1.15 jdc */
288 1.15 jdc if ((wlp = malloc(sizeof(struct __winlist))) == NULL) {
289 1.15 jdc free(win->wspace);
290 1.15 jdc free(win->lines);
291 1.15 jdc free(win->lspace);
292 1.15 jdc free(win);
293 1.15 jdc return NULL;
294 1.15 jdc }
295 1.15 jdc wlp->winp = win;
296 1.15 jdc wlp->nextp = NULL;
297 1.26 blymn if (screen->winlistp == NULL)
298 1.26 blymn screen->winlistp = wlp;
299 1.15 jdc else {
300 1.26 blymn wlp2 = screen->winlistp;
301 1.15 jdc while (wlp2->nextp != NULL)
302 1.15 jdc wlp2 = wlp2->nextp;
303 1.15 jdc wlp2->nextp = wlp;
304 1.5 cgd }
305 1.5 cgd /*
306 1.5 cgd * Point line pointers to line space, and lines themselves into
307 1.5 cgd * window space.
308 1.5 cgd */
309 1.19 blymn for (lp = win->lspace, i = 0; i < nlines; i++, lp++) {
310 1.5 cgd win->lines[i] = lp;
311 1.19 blymn lp->line = &win->wspace[i * ncols];
312 1.29 blymn #ifdef DEBUG
313 1.29 blymn lp->sentinel = SENTINEL_VALUE;
314 1.29 blymn #endif
315 1.5 cgd lp->firstchp = &lp->firstch;
316 1.5 cgd lp->lastchp = &lp->lastch;
317 1.32 jdc lp->firstch = ncols;
318 1.5 cgd lp->lastch = 0;
319 1.5 cgd }
320 1.1 cgd }
321 1.4 mycroft #ifdef DEBUG
322 1.19 blymn __CTRACE("makenew: ncols = %d\n", ncols);
323 1.4 mycroft #endif
324 1.5 cgd win->cury = win->curx = 0;
325 1.19 blymn win->maxy = nlines;
326 1.19 blymn win->maxx = ncols;
327 1.5 cgd
328 1.5 cgd win->begy = by;
329 1.5 cgd win->begx = bx;
330 1.29 blymn win->flags = (__IDLINE | __IDCHAR);
331 1.17 jdc win->delay = -1;
332 1.13 blymn win->wattr = 0;
333 1.21 jdc win->bch = ' ';
334 1.31 jdc if (__using_color)
335 1.31 jdc win->battr = __default_color;
336 1.31 jdc else
337 1.31 jdc win->battr = 0;
338 1.25 jdc win->scr_t = 0;
339 1.24 jdc win->scr_b = win->maxy - 1;
340 1.33 jdc if (ispad)
341 1.33 jdc win->flags |= __ISPAD;
342 1.33 jdc else
343 1.33 jdc __swflags(win);
344 1.4 mycroft #ifdef DEBUG
345 1.31 jdc __CTRACE("makenew: win->wattr = %08x\n", win->wattr);
346 1.5 cgd __CTRACE("makenew: win->flags = %0.2o\n", win->flags);
347 1.5 cgd __CTRACE("makenew: win->maxy = %d\n", win->maxy);
348 1.5 cgd __CTRACE("makenew: win->maxx = %d\n", win->maxx);
349 1.5 cgd __CTRACE("makenew: win->begy = %d\n", win->begy);
350 1.5 cgd __CTRACE("makenew: win->begx = %d\n", win->begx);
351 1.31 jdc __CTRACE("makenew: win->bch = %s\n", unctrl(win->bch));
352 1.31 jdc __CTRACE("makenew: win->battr = %08x\n", win->battr);
353 1.24 jdc __CTRACE("makenew: win->scr_t = %d\n", win->scr_t);
354 1.24 jdc __CTRACE("makenew: win->scr_b = %d\n", win->scr_b);
355 1.4 mycroft #endif
356 1.4 mycroft return (win);
357 1.1 cgd }
358 1.1 cgd
359 1.4 mycroft void
360 1.16 blymn __swflags(WINDOW *win)
361 1.1 cgd {
362 1.7 cgd win->flags &= ~(__ENDLINE | __FULLWIN | __SCROLLWIN | __LEAVEOK);
363 1.33 jdc if (win->begx + win->maxx == COLS && !(win->flags & __ISPAD)) {
364 1.5 cgd win->flags |= __ENDLINE;
365 1.7 cgd if (win->begx == 0 && win->maxy == LINES && win->begy == 0)
366 1.7 cgd win->flags |= __FULLWIN;
367 1.5 cgd if (win->begy + win->maxy == LINES)
368 1.5 cgd win->flags |= __SCROLLWIN;
369 1.1 cgd }
370 1.1 cgd }
371