150276Speter/****************************************************************************
2262629Sdelphij * Copyright (c) 1998-2005,2009 Free Software Foundation, Inc.              *
350276Speter *                                                                          *
450276Speter * Permission is hereby granted, free of charge, to any person obtaining a  *
550276Speter * copy of this software and associated documentation files (the            *
650276Speter * "Software"), to deal in the Software without restriction, including      *
750276Speter * without limitation the rights to use, copy, modify, merge, publish,      *
850276Speter * distribute, distribute with modifications, sublicense, and/or sell       *
950276Speter * copies of the Software, and to permit persons to whom the Software is    *
1050276Speter * furnished to do so, subject to the following conditions:                 *
1150276Speter *                                                                          *
1250276Speter * The above copyright notice and this permission notice shall be included  *
1350276Speter * in all copies or substantial portions of the Software.                   *
1450276Speter *                                                                          *
1550276Speter * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
1650276Speter * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
1750276Speter * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
1850276Speter * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
1950276Speter * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
2050276Speter * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
2150276Speter * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
2250276Speter *                                                                          *
2350276Speter * Except as contained in this notice, the name(s) of the above copyright   *
2450276Speter * holders shall not be used in advertising or otherwise to promote the     *
2550276Speter * sale, use or other dealings in this Software without prior written       *
2650276Speter * authorization.                                                           *
2750276Speter ****************************************************************************/
2850276Speter
2950276Speter/****************************************************************************
3050276Speter *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
3150276Speter *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32166124Srafan *     and: Thomas E. Dickey                        1996-on                 *
3350276Speter ****************************************************************************/
3450276Speter
3550276Speter/*
3650276Speter**	lib_erase.c
3750276Speter**
3850276Speter**	The routine werase().
3950276Speter**
4050276Speter*/
4150276Speter
4250276Speter#include <curses.priv.h>
4350276Speter
44262629SdelphijMODULE_ID("$Id: lib_erase.c,v 1.17 2009/10/24 22:32:29 tom Exp $")
4550276Speter
4676726SpeterNCURSES_EXPORT(int)
4776726Speterwerase(WINDOW *win)
4850276Speter{
4976726Speter    int code = ERR;
5076726Speter    int y;
5197049Speter    NCURSES_CH_T blank;
5297049Speter    NCURSES_CH_T *sp, *end, *start;
5350276Speter
54262629Sdelphij    T((T_CALLED("werase(%p)"), (void *) win));
5550276Speter
5676726Speter    if (win) {
5797049Speter	blank = win->_nc_bkgd;
5876726Speter	for (y = 0; y <= win->_maxy; y++) {
5950276Speter	    start = win->_line[y].text;
6050276Speter	    end = &start[win->_maxx];
6176726Speter
62166124Srafan	    /*
63166124Srafan	     * If this is a derived window, we have to handle the case where
64166124Srafan	     * a multicolumn character extends into the window that we are
65166124Srafan	     * erasing.
66166124Srafan	     */
67166124Srafan	    if_WIDEC({
68166124Srafan		if (isWidecExt(start[0])) {
69166124Srafan		    int x = (win->_parent != 0) ? (win->_begx) : 0;
70166124Srafan		    while (x-- > 0) {
71166124Srafan			if (isWidecBase(start[-1])) {
72166124Srafan			    --start;
73166124Srafan			    break;
74166124Srafan			}
75166124Srafan			--start;
76166124Srafan		    }
77166124Srafan		}
78166124Srafan	    });
79166124Srafan
8050276Speter	    for (sp = start; sp <= end; sp++)
8176726Speter		*sp = blank;
8276726Speter
8350276Speter	    win->_line[y].firstchar = 0;
8450276Speter	    win->_line[y].lastchar = win->_maxx;
8550276Speter	}
8676726Speter	win->_curx = win->_cury = 0;
8776726Speter	win->_flags &= ~_WRAPPED;
8876726Speter	_nc_synchook(win);
8976726Speter	code = OK;
9076726Speter    }
9176726Speter    returnCode(code);
9250276Speter}
93