NetBSD/lib/libcurses/printw.c

151 lines
3.6 KiB
C
Raw Normal View History

/* $NetBSD: printw.c,v 1.20 2007/01/21 13:25:36 jdc Exp $ */
1997-07-22 11:36:20 +04:00
1993-03-21 12:45:37 +03:00
/*
1994-08-18 01:51:41 +04:00
* Copyright (c) 1981, 1993, 1994
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* 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.
*/
1997-07-22 11:36:20 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-07-22 11:36:20 +04:00
#if 0
1994-08-18 01:51:41 +04:00
static char sccsid[] = "@(#)printw.c 8.3 (Berkeley) 5/4/94";
1997-07-22 11:36:20 +04:00
#else
__RCSID("$NetBSD: printw.c,v 1.20 2007/01/21 13:25:36 jdc Exp $");
1997-07-22 11:36:20 +04:00
#endif
#endif /* not lint */
1993-08-07 09:48:37 +04:00
#include <stdarg.h>
1993-03-21 12:45:37 +03:00
1994-08-18 01:51:41 +04:00
#include "curses.h"
2000-04-11 17:57:08 +04:00
#include "curses_private.h"
1994-08-18 01:51:41 +04:00
1993-03-21 12:45:37 +03:00
/*
* printw and friends.
*/
1993-08-07 09:48:37 +04:00
static int __winwrite __P((void *, const char *, int));
1993-03-21 12:45:37 +03:00
/*
1993-08-07 09:48:37 +04:00
* printw --
* Printf on the standard screen.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
int
printw(const char *fmt,...)
1993-03-21 12:45:37 +03:00
{
1993-08-07 09:48:37 +04:00
va_list ap;
int ret;
1993-03-21 12:45:37 +03:00
va_start(ap, fmt);
ret = vwprintw(stdscr, fmt, ap);
1993-03-21 12:45:37 +03:00
va_end(ap);
return (ret);
}
/*
1993-08-07 09:48:37 +04:00
* wprintw --
* Printf on the given window.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 09:48:37 +04:00
int
wprintw(WINDOW *win, const char *fmt,...)
1993-03-21 12:45:37 +03:00
{
1993-08-07 09:48:37 +04:00
va_list ap;
int ret;
1993-03-21 12:45:37 +03:00
va_start(ap, fmt);
ret = vwprintw(win, fmt, ap);
1993-08-07 09:48:37 +04:00
va_end(ap);
return (ret);
}
/*
* mvprintw, mvwprintw --
* Implement the mvprintw commands. Due to the variable number of
* arguments, they cannot be macros. Sigh....
*/
int
mvprintw(int y, int x, const char *fmt,...)
1993-08-07 09:48:37 +04:00
{
va_list ap;
int ret;
1993-08-07 09:48:37 +04:00
if (move(y, x) != OK)
return (ERR);
1993-08-07 09:48:37 +04:00
va_start(ap, fmt);
ret = vwprintw(stdscr, fmt, ap);
1993-08-07 09:48:37 +04:00
va_end(ap);
return (ret);
}
int
mvwprintw(WINDOW * win, int y, int x, const char *fmt,...)
1993-08-07 09:48:37 +04:00
{
va_list ap;
int ret;
1993-08-07 09:48:37 +04:00
if (wmove(win, y, x) != OK)
return (ERR);
1993-08-07 09:48:37 +04:00
va_start(ap, fmt);
ret = vwprintw(win, fmt, ap);
1993-03-21 12:45:37 +03:00
va_end(ap);
return (ret);
}
/*
1993-08-07 09:48:37 +04:00
* Internal write-buffer-to-window function.
1993-03-21 12:45:37 +03:00
*/
static int
1993-08-07 09:48:37 +04:00
__winwrite(cookie, buf, n)
void *cookie;
1998-02-03 22:12:13 +03:00
const char *buf;
int n;
1993-03-21 12:45:37 +03:00
{
1998-02-03 22:12:13 +03:00
WINDOW *win;
int c;
1993-03-21 12:45:37 +03:00
1993-08-07 09:48:37 +04:00
for (c = n, win = cookie; --c >= 0;)
2000-04-11 17:57:08 +04:00
{
#ifdef DEBUG
__CTRACE(__CTRACE_MISC, "__winwrite: %c\n", *buf);
2000-04-11 17:57:08 +04:00
#endif
if (waddch(win, (chtype) (*buf++ & __CHARTEXT)) == ERR)
1993-03-21 12:45:37 +03:00
return (-1);
2000-04-11 17:57:08 +04:00
}
1993-08-07 09:48:37 +04:00
return (n);
1993-03-21 12:45:37 +03:00
}
/*
* vwprintw --
1993-03-21 12:45:37 +03:00
* This routine actually executes the printf and adds it to the window.
*/
int
vwprintw(WINDOW *win, const char *fmt, _BSD_VA_LIST_ ap)
1993-03-21 12:45:37 +03:00
{
FILE *f;
1993-03-21 12:45:37 +03:00
1993-08-07 09:48:37 +04:00
if ((f = funopen(win, NULL, __winwrite, NULL, NULL)) == NULL)
return (ERR);
(void) vfprintf(f, fmt, ap);
1993-08-07 09:48:37 +04:00
return (fclose(f) ? ERR : OK);
1993-03-21 12:45:37 +03:00
}