Home | History | Annotate | Line # | Download | only in libcurses
addwstr.c revision 1.1
      1  1.1  blymn /*   $NetBSD: addwstr.c,v 1.1 2007/01/21 11:38:59 blymn 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.1  blymn __RCSID("$NetBSD: addwstr.c,v 1.1 2007/01/21 11:38:59 blymn Exp $");
     40  1.1  blymn #endif						  /* not lint */
     41  1.1  blymn 
     42  1.1  blymn #include <string.h>
     43  1.1  blymn 
     44  1.1  blymn #include "curses.h"
     45  1.1  blymn #include "curses_private.h"
     46  1.1  blymn 
     47  1.1  blymn /*
     48  1.1  blymn  * addwstr --
     49  1.1  blymn  *	  Add a string to stdscr starting at (_cury, _curx).
     50  1.1  blymn  */
     51  1.1  blymn int
     52  1.1  blymn addwstr(const wchar_t *s)
     53  1.1  blymn {
     54  1.1  blymn #ifndef HAVE_WCHAR
     55  1.1  blymn 	return ERR;
     56  1.1  blymn #else
     57  1.1  blymn 	return waddnwstr(stdscr, s, -1);
     58  1.1  blymn #endif /* HAVE_WCHAR */
     59  1.1  blymn }
     60  1.1  blymn 
     61  1.1  blymn /*
     62  1.1  blymn  * waddwstr --
     63  1.1  blymn  *	  Add a string to the given window starting at (_cury, _curx).
     64  1.1  blymn  */
     65  1.1  blymn int
     66  1.1  blymn waddwstr(WINDOW *win, const wchar_t *s)
     67  1.1  blymn {
     68  1.1  blymn #ifndef HAVE_WCHAR
     69  1.1  blymn 	return ERR;
     70  1.1  blymn #else
     71  1.1  blymn 	return waddnwstr(win, s, -1);
     72  1.1  blymn #endif /* HAVE_WCHAR */
     73  1.1  blymn }
     74  1.1  blymn 
     75  1.1  blymn /*
     76  1.1  blymn  * addnwstr --
     77  1.1  blymn  *	  Add a string (at most n characters) to stdscr starting
     78  1.1  blymn  *	at (_cury, _curx).  If n is negative, add the entire string.
     79  1.1  blymn  */
     80  1.1  blymn int
     81  1.1  blymn addnwstr(const wchar_t *str, int n)
     82  1.1  blymn {
     83  1.1  blymn #ifndef HAVE_WCHAR
     84  1.1  blymn 	return ERR;
     85  1.1  blymn #else
     86  1.1  blymn 	return waddnwstr(stdscr, str, n);
     87  1.1  blymn #endif /* HAVE_WCHAR */
     88  1.1  blymn }
     89  1.1  blymn 
     90  1.1  blymn /*
     91  1.1  blymn  * mvaddwstr --
     92  1.1  blymn  *	  Add a string to stdscr starting at (y, x)
     93  1.1  blymn  */
     94  1.1  blymn int
     95  1.1  blymn mvaddwstr(int y, int x, const wchar_t *str)
     96  1.1  blymn {
     97  1.1  blymn #ifndef HAVE_WCHAR
     98  1.1  blymn 	return ERR;
     99  1.1  blymn #else
    100  1.1  blymn 	return mvwaddnwstr(stdscr, y, x, str, -1);
    101  1.1  blymn #endif /* HAVE_WCHAR */
    102  1.1  blymn }
    103  1.1  blymn 
    104  1.1  blymn /*
    105  1.1  blymn  * mvwaddwstr --
    106  1.1  blymn  *	  Add a string to the given window starting at (y, x)
    107  1.1  blymn  */
    108  1.1  blymn int
    109  1.1  blymn mvwaddwstr(WINDOW *win, int y, int x, const wchar_t *str)
    110  1.1  blymn {
    111  1.1  blymn #ifndef HAVE_WCHAR
    112  1.1  blymn 	return ERR;
    113  1.1  blymn #else
    114  1.1  blymn 	return mvwaddnwstr(win, y, x, str, -1);
    115  1.1  blymn #endif /* HAVE_WCHAR */
    116  1.1  blymn }
    117  1.1  blymn 
    118  1.1  blymn /*
    119  1.1  blymn  * mvaddnwstr --
    120  1.1  blymn  *	  Add a string of at most n characters to stdscr
    121  1.1  blymn  *	  starting at (y, x).
    122  1.1  blymn  */
    123  1.1  blymn int
    124  1.1  blymn mvaddnwstr(int y, int x, const wchar_t *str, int count)
    125  1.1  blymn {
    126  1.1  blymn #ifndef HAVE_WCHAR
    127  1.1  blymn 	return ERR;
    128  1.1  blymn #else
    129  1.1  blymn 	return mvwaddnwstr(stdscr, y, x, str, count);
    130  1.1  blymn #endif /* HAVE_WCHAR */
    131  1.1  blymn }
    132  1.1  blymn 
    133  1.1  blymn /*
    134  1.1  blymn  * mvwaddnwstr --
    135  1.1  blymn  *	  Add a string of at most n characters to the given window
    136  1.1  blymn  *	  starting at (y, x).
    137  1.1  blymn  */
    138  1.1  blymn int
    139  1.1  blymn mvwaddnwstr(WINDOW *win, int y, int x, const wchar_t *str, int count)
    140  1.1  blymn {
    141  1.1  blymn #ifndef HAVE_WCHAR
    142  1.1  blymn 	return ERR;
    143  1.1  blymn #else
    144  1.1  blymn 	if (wmove(win, y, x) == ERR)
    145  1.1  blymn 		return ERR;
    146  1.1  blymn 
    147  1.1  blymn 	return waddnwstr(win, str, count);
    148  1.1  blymn #endif /* HAVE_WCHAR */
    149  1.1  blymn }
    150  1.1  blymn 
    151  1.1  blymn /*
    152  1.1  blymn  * waddnwstr --
    153  1.1  blymn  *	Add a string (at most n characters) to the given window
    154  1.1  blymn  *	starting at (_cury, _curx).  If n is negative, add the
    155  1.1  blymn  *	entire string.
    156  1.1  blymn  */
    157  1.1  blymn int
    158  1.1  blymn waddnwstr(WINDOW *win, const wchar_t *s, int n)
    159  1.1  blymn {
    160  1.1  blymn #ifndef HAVE_WCHAR
    161  1.1  blymn 	return ERR;
    162  1.1  blymn #else
    163  1.1  blymn 	size_t  len;
    164  1.1  blymn 	const wchar_t *p;
    165  1.1  blymn 	cchar_t cc;
    166  1.1  blymn 	wchar_t wc[ 2 ];
    167  1.1  blymn 
    168  1.1  blymn 	/*
    169  1.1  blymn 	 * BSD curses: if (n > 0) then "at most n", else "len = strlen(s)"
    170  1.1  blymn 	 * ncurses: if (n >= 0) then "at most n", else "len = strlen(s)"
    171  1.1  blymn 	 * XCURSES: if (n != -1) then "at most n", else "len = strlen(s)"
    172  1.1  blymn 	 */
    173  1.1  blymn 	/* compute the length and column width of string */
    174  1.1  blymn 	if ( n < -1 )
    175  1.1  blymn 		return ERR;
    176  1.1  blymn 	if (n >= 0)
    177  1.1  blymn 		for (p = s, len = 0; n-- && *p++; ++len );
    178  1.1  blymn 	else
    179  1.1  blymn 		len = wcslen(s);
    180  1.1  blymn #ifdef DEBUG
    181  1.1  blymn 	__CTRACE("[waddnwstr]string len=%d\n", len );
    182  1.1  blymn #endif /* DEBUG */
    183  1.1  blymn 
    184  1.1  blymn 	p = s;
    185  1.1  blymn 	while ( len ) {
    186  1.1  blymn 		wc[ 0 ] = *p;
    187  1.1  blymn 		wc[ 1 ] = L'\0';
    188  1.1  blymn 		if ( setcchar( &cc, wc, win->wattr, 0, NULL ) == ERR )
    189  1.1  blymn 			return ERR;
    190  1.1  blymn 		if ( wadd_wch( win, &cc ) == ERR )
    191  1.1  blymn 			return ERR;
    192  1.1  blymn #ifdef DEBUG
    193  1.1  blymn 		__CTRACE("[waddnwstr](%x,%x,%d) added\n",
    194  1.1  blymn 				cc.vals[ 0 ], cc.attributes, cc.elements );
    195  1.1  blymn #endif /* DEBUG */
    196  1.1  blymn 		p++, len--;
    197  1.1  blymn 	}
    198  1.1  blymn 
    199  1.1  blymn 	return OK;
    200  1.1  blymn #endif /* HAVE_WCHAR */
    201  1.1  blymn }
    202