mirror of
https://github.com/Aigor44/ncursesw-morphos.git
synced 2024-12-27 07:49:06 +08:00
70322aa06a
+ start documenting interface changes for upcoming 5.8 release. + correct limit-checks in derwin(). + correct limit-checks in newwin(), to ensure that windows have nonzero size (report by Garrett Cooper). + fix a missing "weak" declaration for pthread_kill (patch by Nicholas Alcock). + improve documentation of KEY_ENTER in curs_getch.3x manpage (prompted by discussion with Kevin Martin).
157 lines
5.2 KiB
C
157 lines
5.2 KiB
C
/****************************************************************************
|
|
* Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. *
|
|
* *
|
|
* Permission is hereby granted, free of charge, to any person obtaining a *
|
|
* copy of this software and associated documentation files (the *
|
|
* "Software"), to deal in the Software without restriction, including *
|
|
* without limitation the rights to use, copy, modify, merge, publish, *
|
|
* distribute, distribute with modifications, sublicense, and/or sell *
|
|
* copies of the Software, and to permit persons to whom the Software is *
|
|
* furnished to do so, subject to the following conditions: *
|
|
* *
|
|
* The above copyright notice and this permission notice shall be included *
|
|
* in all copies or substantial portions of the Software. *
|
|
* *
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
|
|
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
|
|
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
|
|
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
|
|
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
|
|
* *
|
|
* Except as contained in this notice, the name(s) of the above copyright *
|
|
* holders shall not be used in advertising or otherwise to promote the *
|
|
* sale, use or other dealings in this Software without prior written *
|
|
* authorization. *
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
|
|
* and: Eric S. Raymond <esr@snark.thyrsus.com> *
|
|
* and: Juergen Pfeifer 1997 *
|
|
* and: Sven Verdoolaege 2000 *
|
|
* and: Thomas E. Dickey 1996-on *
|
|
****************************************************************************/
|
|
|
|
#include <curses.priv.h>
|
|
|
|
MODULE_ID("$Id: lib_bkgd.c,v 1.43 2011/01/22 19:47:37 tom Exp $")
|
|
|
|
/*
|
|
* Set the window's background information.
|
|
*/
|
|
#if USE_WIDEC_SUPPORT
|
|
NCURSES_EXPORT(void)
|
|
#else
|
|
static NCURSES_INLINE void
|
|
#endif
|
|
wbkgrndset(WINDOW *win, const ARG_CH_T ch)
|
|
{
|
|
T((T_CALLED("wbkgdset(%p,%s)"), (void *) win, _tracech_t(ch)));
|
|
|
|
if (win) {
|
|
attr_t off = AttrOf(win->_nc_bkgd);
|
|
attr_t on = AttrOf(CHDEREF(ch));
|
|
|
|
toggle_attr_off(WINDOW_ATTRS(win), off);
|
|
toggle_attr_on(WINDOW_ATTRS(win), on);
|
|
|
|
#if NCURSES_EXT_COLORS
|
|
{
|
|
int pair;
|
|
|
|
if ((pair = GetPair(win->_nc_bkgd)) != 0)
|
|
SET_WINDOW_PAIR(win, 0);
|
|
if ((pair = GetPair(CHDEREF(ch))) != 0)
|
|
SET_WINDOW_PAIR(win, pair);
|
|
}
|
|
#endif
|
|
|
|
if (CharOf(CHDEREF(ch)) == L('\0')) {
|
|
SetChar(win->_nc_bkgd, BLANK_TEXT, AttrOf(CHDEREF(ch)));
|
|
if_EXT_COLORS(SetPair(win->_nc_bkgd, GetPair(CHDEREF(ch))));
|
|
} else {
|
|
win->_nc_bkgd = CHDEREF(ch);
|
|
}
|
|
#if USE_WIDEC_SUPPORT
|
|
/*
|
|
* If we're compiled for wide-character support, _bkgrnd is the
|
|
* preferred location for the background information since it stores
|
|
* more than _bkgd. Update _bkgd each time we modify _bkgrnd, so the
|
|
* macro getbkgd() will work.
|
|
*/
|
|
{
|
|
cchar_t wch;
|
|
int tmp;
|
|
|
|
(void) wgetbkgrnd(win, &wch);
|
|
tmp = _nc_to_char((wint_t) CharOf(wch));
|
|
|
|
win->_bkgd = (((tmp == EOF) ? ' ' : (chtype) tmp)
|
|
| (AttrOf(wch) & ALL_BUT_COLOR)
|
|
| (chtype) ColorPair(GET_WINDOW_PAIR(win)));
|
|
}
|
|
#endif
|
|
}
|
|
returnVoid;
|
|
}
|
|
|
|
NCURSES_EXPORT(void)
|
|
wbkgdset(WINDOW *win, chtype ch)
|
|
{
|
|
NCURSES_CH_T wch;
|
|
SetChar2(wch, ch);
|
|
wbkgrndset(win, CHREF(wch));
|
|
}
|
|
|
|
/*
|
|
* Set the window's background information and apply it to each cell.
|
|
*/
|
|
#if USE_WIDEC_SUPPORT
|
|
NCURSES_EXPORT(int)
|
|
#else
|
|
static NCURSES_INLINE int
|
|
#undef wbkgrnd
|
|
#endif
|
|
wbkgrnd(WINDOW *win, const ARG_CH_T ch)
|
|
{
|
|
int code = ERR;
|
|
int x, y;
|
|
NCURSES_CH_T new_bkgd = CHDEREF(ch);
|
|
|
|
T((T_CALLED("wbkgd(%p,%s)"), (void *) win, _tracech_t(ch)));
|
|
|
|
if (win) {
|
|
NCURSES_CH_T old_bkgrnd;
|
|
wgetbkgrnd(win, &old_bkgrnd);
|
|
|
|
(void) wbkgrndset(win, CHREF(new_bkgd));
|
|
(void) wattrset(win, AttrOf(win->_nc_bkgd));
|
|
|
|
for (y = 0; y <= win->_maxy; y++) {
|
|
for (x = 0; x <= win->_maxx; x++) {
|
|
if (CharEq(win->_line[y].text[x], old_bkgrnd)) {
|
|
win->_line[y].text[x] = win->_nc_bkgd;
|
|
} else {
|
|
NCURSES_CH_T wch = win->_line[y].text[x];
|
|
RemAttr(wch, (~(A_ALTCHARSET | A_CHARTEXT)));
|
|
win->_line[y].text[x] = _nc_render(win, wch);
|
|
}
|
|
}
|
|
}
|
|
touchwin(win);
|
|
_nc_synchook(win);
|
|
code = OK;
|
|
}
|
|
returnCode(code);
|
|
}
|
|
|
|
NCURSES_EXPORT(int)
|
|
wbkgd(WINDOW *win, chtype ch)
|
|
{
|
|
NCURSES_CH_T wch;
|
|
SetChar2(wch, ch);
|
|
return wbkgrnd(win, CHREF(wch));
|
|
}
|