2000-12-20 00:34:24 +03:00
|
|
|
/* $NetBSD: attributes.c,v 1.9 2000/12/19 21:34:25 jdc Exp $ */
|
1999-04-13 18:08:17 +04:00
|
|
|
|
2000-04-13 01:43:57 +04:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
1999-04-13 18:08:17 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2000-04-13 01:43:57 +04:00
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
|
|
|
* by Julian Coleman.
|
|
|
|
*
|
1999-04-13 18:08:17 +04: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.
|
2000-04-13 01:43:57 +04:00
|
|
|
* 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. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
1999-04-13 18:08:17 +04:00
|
|
|
*
|
2000-04-13 01:43:57 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
|
1999-04-13 18:08:17 +04:00
|
|
|
*/
|
|
|
|
|
2000-04-24 18:09:41 +04:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
2000-12-20 00:34:24 +03:00
|
|
|
__RCSID("$NetBSD: attributes.c,v 1.9 2000/12/19 21:34:25 jdc Exp $");
|
2000-04-24 18:09:41 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
1999-04-13 18:08:17 +04:00
|
|
|
#include "curses.h"
|
2000-04-11 17:57:08 +04:00
|
|
|
#include "curses_private.h"
|
1999-04-13 18:08:17 +04:00
|
|
|
|
2000-04-15 17:17:02 +04:00
|
|
|
#ifndef _CURSES_USE_MACROS
|
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* attron --
|
2000-04-15 17:17:02 +04:00
|
|
|
* Test and set attributes on stdscr
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
attron(int attr)
|
|
|
|
{
|
|
|
|
return wattron(stdscr, attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* attroff --
|
2000-04-15 17:17:02 +04:00
|
|
|
* Test and unset attributes on stdscr.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
attroff(int attr)
|
|
|
|
{
|
|
|
|
return wattroff(stdscr, attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* attrset --
|
2000-04-15 17:17:02 +04:00
|
|
|
* Set specific attribute modes.
|
|
|
|
* Unset others. On stdscr.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
attrset(int attr)
|
|
|
|
{
|
|
|
|
return wattrset(stdscr, attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1999-04-13 18:08:17 +04:00
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* wattron --
|
1999-04-13 18:08:17 +04:00
|
|
|
* Test and set attributes.
|
|
|
|
*
|
|
|
|
* Modes are blinking, bold (extra bright), dim (half-bright),
|
|
|
|
* blanking (invisible), protected and reverse video
|
|
|
|
*/
|
2000-04-11 17:57:08 +04:00
|
|
|
|
1999-04-13 18:08:17 +04:00
|
|
|
int
|
2000-04-15 17:17:02 +04:00
|
|
|
wattron(WINDOW *win, int attr)
|
1999-04-13 18:08:17 +04:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
2000-05-12 02:44:45 +04:00
|
|
|
__CTRACE ("wattron: win %0.2o, attr %08x\n", win, attr);
|
1999-04-13 18:08:17 +04:00
|
|
|
#endif
|
2000-04-29 03:37:11 +04:00
|
|
|
/* If can enter modes, set the relevent attribute bits. */
|
2000-12-20 00:34:24 +03:00
|
|
|
if (__tc_me != NULL) {
|
|
|
|
if ((attr_t) attr & __BLINK && __tc_mb != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __BLINK;
|
2000-12-20 00:34:24 +03:00
|
|
|
if ((attr_t) attr & __BOLD && __tc_md != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __BOLD;
|
2000-12-20 00:34:24 +03:00
|
|
|
if ((attr_t) attr & __DIM && __tc_mh != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __DIM;
|
2000-12-20 00:34:24 +03:00
|
|
|
if ((attr_t) attr & __BLANK && __tc_mk != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __BLANK;
|
2000-12-20 00:34:24 +03:00
|
|
|
if ((attr_t) attr & __PROTECT && __tc_mp != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __PROTECT;
|
2000-12-20 00:34:24 +03:00
|
|
|
if ((attr_t) attr & __REVERSE && __tc_mr != NULL)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr |= __REVERSE;
|
1999-04-13 18:08:17 +04:00
|
|
|
}
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __STANDOUT)
|
2000-04-11 17:57:08 +04:00
|
|
|
wstandout(win);
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __UNDERSCORE)
|
1999-04-13 18:08:17 +04:00
|
|
|
wunderscore(win);
|
2000-04-29 03:37:11 +04:00
|
|
|
/* Check for conflict with color. */
|
|
|
|
if (win->wattr & __nca)
|
|
|
|
win->wattr &= ~__COLOR;
|
2000-04-13 01:43:57 +04:00
|
|
|
if ((attr_t) attr & __COLOR) {
|
|
|
|
/* If another color pair is set, turn that off first. */
|
2000-04-29 03:37:11 +04:00
|
|
|
win->wattr &= ~__COLOR;
|
2000-04-13 01:43:57 +04:00
|
|
|
/* If can do color video, set the color pair bits. */
|
2000-12-20 00:34:24 +03:00
|
|
|
if (__tc_Co != NULL) {
|
2000-04-13 01:43:57 +04:00
|
|
|
win->wattr |= attr & __COLOR;
|
2000-04-29 03:37:11 +04:00
|
|
|
win->wattr &= ~__nca;
|
2000-04-13 01:43:57 +04:00
|
|
|
}
|
|
|
|
}
|
2000-04-29 03:37:11 +04:00
|
|
|
return (OK);
|
1999-04-13 18:08:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* wattroff --
|
1999-04-13 18:08:17 +04:00
|
|
|
* Test and unset attributes.
|
|
|
|
*
|
|
|
|
* Note that the 'me' sequence unsets all attributes. We handle
|
|
|
|
* which attributes should really be set in refresh.c:makech().
|
|
|
|
*/
|
|
|
|
int
|
2000-04-15 17:17:02 +04:00
|
|
|
wattroff(WINDOW *win, int attr)
|
1999-04-13 18:08:17 +04:00
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
2000-05-12 02:44:45 +04:00
|
|
|
__CTRACE ("wattroff: win %0.2o, attr %08x\n", win, attr);
|
1999-04-13 18:08:17 +04:00
|
|
|
#endif
|
2000-04-13 01:43:57 +04:00
|
|
|
/* If can do exit modes, unset the relevent attribute bits. */
|
2000-12-20 00:34:24 +03:00
|
|
|
if (__tc_me != NULL) {
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __BLINK)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__BLINK;
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __BOLD)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__BOLD;
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __DIM)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__DIM;
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __BLANK)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__BLANK;
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __PROTECT)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__PROTECT;
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __REVERSE)
|
2000-04-11 17:57:08 +04:00
|
|
|
win->wattr &= ~__REVERSE;
|
1999-04-13 18:08:17 +04:00
|
|
|
}
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __STANDOUT)
|
2000-04-11 17:57:08 +04:00
|
|
|
wstandend(win);
|
2000-04-29 03:37:11 +04:00
|
|
|
if ((attr_t) attr & __UNDERSCORE)
|
1999-04-13 18:08:17 +04:00
|
|
|
wunderend(win);
|
2000-04-13 01:43:57 +04:00
|
|
|
if ((attr_t) attr & __COLOR) {
|
2000-12-20 00:34:24 +03:00
|
|
|
if (__tc_Co != NULL)
|
2000-04-13 01:43:57 +04:00
|
|
|
win->wattr &= ~__COLOR;
|
|
|
|
}
|
2000-04-29 03:37:11 +04:00
|
|
|
return (OK);
|
1999-04-13 18:08:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-05-12 02:44:45 +04:00
|
|
|
* wattrset --
|
1999-04-13 18:08:17 +04:00
|
|
|
* Set specific attribute modes.
|
|
|
|
* Unset others.
|
|
|
|
*/
|
|
|
|
int
|
2000-04-15 17:17:02 +04:00
|
|
|
wattrset(WINDOW *win, int attr)
|
1999-04-13 18:08:17 +04:00
|
|
|
{
|
2000-04-16 13:48:09 +04:00
|
|
|
#ifdef DEBUG
|
2000-05-12 02:44:45 +04:00
|
|
|
__CTRACE ("wattrset: win %0.2o, attr %08x\n", win, attr);
|
2000-04-16 13:48:09 +04:00
|
|
|
#endif
|
2000-04-29 03:37:11 +04:00
|
|
|
wattron(win, attr);
|
|
|
|
wattroff(win, (~attr & ~__COLOR) | ((attr & __COLOR) ? 0 : __COLOR));
|
|
|
|
return (OK);
|
1999-04-13 18:08:17 +04:00
|
|
|
}
|
2000-05-12 02:44:45 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* getattrs --
|
|
|
|
* Get window attributes.
|
|
|
|
*/
|
|
|
|
chtype
|
|
|
|
getattrs(WINDOW *win)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG
|
|
|
|
__CTRACE ("getattrs: win %0.2o\n", win);
|
|
|
|
#endif
|
|
|
|
return((chtype) win->wattr);
|
|
|
|
}
|