Home | History | Annotate | Line # | Download | only in libcurses
add_wch.c revision 1.9.12.1
      1  1.9.12.1  perseant /*   $NetBSD: add_wch.c,v 1.9.12.1 2025/08/02 05:54:45 perseant Exp $ */
      2       1.1     blymn 
      3       1.1     blymn /*
      4       1.1     blymn  * Copyright (c) 2005 The NetBSD Foundation Inc.
      5       1.1     blymn  * All rights reserved.
      6       1.1     blymn  *
      7       1.1     blymn  * This code is derived from code donated to the NetBSD Foundation
      8       1.1     blymn  * by Ruibiao Qiu <ruibiao (at) arl.wustl.edu,ruibiao (at) gmail.com>.
      9       1.1     blymn  *
     10       1.1     blymn  *
     11       1.1     blymn  * Redistribution and use in source and binary forms, with or without
     12       1.1     blymn  * modification, are permitted provided that the following conditions
     13       1.1     blymn  * are met:
     14       1.1     blymn  * 1. Redistributions of source code must retain the above copyright
     15       1.1     blymn  *    notice, this list of conditions and the following disclaimer.
     16       1.1     blymn  * 2. Redistributions in binary form must reproduce the above copyright
     17       1.1     blymn  *    notice, this list of conditions and the following disclaimer in the
     18       1.1     blymn  *    documentation and/or other materials provided with the distribution.
     19       1.1     blymn  * 3. Neither the name of the NetBSD Foundation nor the names of its
     20       1.1     blymn  *    contributors may be used to endorse or promote products derived
     21       1.1     blymn  *    from this software without specific prior written permission.
     22       1.1     blymn  *
     23       1.1     blymn  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
     24       1.1     blymn  * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
     25       1.1     blymn  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
     26       1.1     blymn  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     27       1.1     blymn  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     28       1.1     blymn  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     29       1.1     blymn  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     30       1.1     blymn  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     31       1.1     blymn  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     32       1.1     blymn  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     33       1.1     blymn  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     34       1.1     blymn  * SUCH DAMAGE.
     35       1.1     blymn  */
     36       1.1     blymn 
     37       1.1     blymn #include <sys/cdefs.h>
     38       1.1     blymn #ifndef lint
     39  1.9.12.1  perseant __RCSID("$NetBSD: add_wch.c,v 1.9.12.1 2025/08/02 05:54:45 perseant Exp $");
     40       1.1     blymn #endif /* not lint */
     41       1.1     blymn 
     42       1.1     blymn #include <stdlib.h>
     43       1.1     blymn #include "curses.h"
     44       1.1     blymn #include "curses_private.h"
     45       1.2     blymn #ifdef DEBUG
     46       1.2     blymn #include <assert.h>
     47       1.2     blymn #endif
     48       1.1     blymn 
     49       1.1     blymn /*
     50       1.1     blymn  * add_wch --
     51       1.1     blymn  *	Add the wide character to the current position in stdscr.
     52       1.1     blymn  *
     53       1.1     blymn  */
     54       1.1     blymn int
     55       1.1     blymn add_wch(const cchar_t *wch)
     56       1.1     blymn {
     57       1.1     blymn 	return wadd_wch(stdscr, wch);
     58       1.1     blymn }
     59       1.1     blymn 
     60       1.1     blymn 
     61       1.1     blymn /*
     62       1.1     blymn  * mvadd_wch --
     63       1.1     blymn  *      Add the wide character to stdscr at the given location.
     64       1.1     blymn  */
     65       1.1     blymn int
     66       1.1     blymn mvadd_wch(int y, int x, const cchar_t *wch)
     67       1.1     blymn {
     68       1.1     blymn 	return mvwadd_wch(stdscr, y, x, wch);
     69       1.1     blymn }
     70       1.1     blymn 
     71       1.1     blymn 
     72       1.1     blymn /*
     73       1.1     blymn  * mvwadd_wch --
     74       1.1     blymn  *      Add the character to the given window at the given location.
     75       1.1     blymn  */
     76       1.1     blymn int
     77       1.1     blymn mvwadd_wch(WINDOW *win, int y, int x, const cchar_t *wch)
     78       1.1     blymn {
     79       1.9     blymn 	if (wmove(win, y, x) == ERR)
     80       1.1     blymn 		return ERR;
     81       1.1     blymn 
     82       1.1     blymn 	return wadd_wch(win, wch);
     83       1.1     blymn }
     84       1.1     blymn 
     85       1.1     blymn 
     86       1.1     blymn /*
     87       1.1     blymn  * wadd_wch --
     88       1.1     blymn  *	Add the wide character to the current position in the
     89       1.1     blymn  *	given window.
     90       1.1     blymn  *
     91       1.1     blymn  */
     92       1.1     blymn int
     93       1.1     blymn wadd_wch(WINDOW *win, const cchar_t *wch)
     94       1.1     blymn {
     95       1.8     blymn 	int y = win->cury;
     96       1.1     blymn 	__LINE *lnp = NULL;
     97       1.1     blymn 
     98  1.9.12.1  perseant 	if (__predict_false(win == NULL))
     99  1.9.12.1  perseant 		return ERR;
    100  1.9.12.1  perseant 
    101       1.1     blymn #ifdef DEBUG
    102       1.2     blymn 	int i;
    103       1.8     blymn 	int x = win->curx;
    104       1.2     blymn 
    105       1.1     blymn 	for (i = 0; i < win->maxy; i++) {
    106       1.3       roy 		assert(win->alines[i]->sentinel == SENTINEL_VALUE);
    107       1.1     blymn 	}
    108       1.7     blymn 	__CTRACE(__CTRACE_INPUT, "wadd_wch: win(%p), x: %d, y: %d\n",
    109       1.7     blymn 	    win, x, y);
    110       1.1     blymn #endif
    111       1.3       roy 	lnp = win->alines[y];
    112       1.8     blymn 	return _cursesi_addwchar(win, &lnp, &(win->cury), &(win->curx), wch, 1);
    113       1.1     blymn }
    114