#ifdef M_RCSID
#ifndef lint
static char rcsID[] =
"$Header: /team/ps/sun_xcurses/archive/local_changes/xcurses/src/lib/"
"libxcurses/src/libc/xcurses/rcs/copywin.c 1.6 1998/06/01 17:29:15 "
"cbates Exp $";
#endif
#endif
#include <private.h>
#undef min
#define min(a, b) ((a) < (b) ? (a) : (b))
int
__m_copywin(const WINDOW *s, WINDOW *t, int transparent)
{
int code, sminr, sminc, tminr, tminc, tmaxr, tmaxc;
tmaxc = min(s->_begx + s->_maxx, t->_begx + t->_maxx) - 1 - t->_begx;
tmaxr = min(s->_begy + s->_maxy, t->_begy + t->_maxy) - 1 - t->_begy;
if (s->_begy < t->_begy) {
sminr = t->_begy - s->_begy;
tminr = 0;
} else {
sminr = 0;
tminr = s->_begy - t->_begy;
}
if (s->_begx < t->_begx) {
sminc = t->_begx - s->_begx;
tminc = 0;
} else {
sminc = 0;
tminc = s->_begx- t->_begx;
}
code = copywin(s, t, sminr, sminc,
tminr, tminc, tmaxr, tmaxc, transparent);
return (code);
}
int
copywin(const WINDOW *s, WINDOW *t,
int sminr, int sminc, int tminr, int tminc,
int tmaxr, int tmaxc, int transparent)
{
int tc;
cchar_t *st, *tt;
cchar_t bg = s->_bg;
for (; tminr <= tmaxr; ++tminr, ++sminr) {
st = s->_line[sminr] + sminc;
tt = t->_line[tminr] + tminc;
for (tc = tminc; tc <= tmaxc; ++tc, ++tt, ++st) {
if (transparent) {
if (__m_cc_compare(st, &bg, 1))
continue;
}
*tt = *st;
__m_touch_locs(t, tminr, tc, tc + 1);
}
#ifdef M_CURSES_SENSIBLE_WINDOWS
if (0 < tminc && !t->_line[tminr][tminc]._f)
(void) __m_cc_expand(t, tminr, tminc, -1);
if (tmaxc + 1 < t->_maxx && !__m_cc_islast(t, tminr, tmaxc))
(void) __m_cc_expand(t, tminr, tmaxc, 1);
#endif
}
return (OK);
}