/src/lib/libcurses/ |
attributes.c | 151 *attr = win->wattr; 158 *pair = PAIR_NUMBER(win->wattr); 246 return((chtype) win->wattr); 386 win->wattr |= __BLINK; 388 win->wattr |= __BOLD; 390 win->wattr |= __DIM; 392 win->wattr |= __BLANK; 394 win->wattr |= __PROTECT; 396 win->wattr |= __REVERSE; 399 win->wattr |= WA_LOW [all...] |
standout.c | 89 win->wattr |= __STANDOUT; 104 win->wattr = __NORMAL;
|
underscore.c | 82 win->wattr |= __UNDERSCORE; 100 win->wattr &= ~__UNDERSCORE;
|
border.c | 112 left |= (left & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr; 114 right |= (right & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr; 116 top |= (top & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr; 118 bottom |= (bottom & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr; 120 topleft |= (topleft & __COLOR) ? (win->wattr & ~__COLOR) : win->wattr; [all...] |
refresh.c | 581 if (curscr->wattr & __COLOR) 824 curscr->wattr 838 off = (~nsp->attr & curscr->wattr) 855 curscr->wattr &= __mask_me; 866 curscr->wattr &= __mask_ue; 879 curscr->wattr &= __mask_se; 885 curscr->wattr &= ~__ALTCHARSET; 892 on = (nsp->attr & ~curscr->wattr) 908 curscr->wattr |= __STANDOUT; 921 curscr->wattr |= __UNDERSCORE [all...] |
addwstr.c | 158 if (setcchar( &cc, wc, win->wattr, 0, NULL ) == ERR)
|
addbytes.c | 278 attributes = (win->wattr | attr) & (__ATTRIBUTES & ~__COLOR); 281 else if (win->wattr & __COLOR) 282 attributes |= win->wattr & __COLOR; 388 cc.attributes = win->wattr; 535 attributes = (win->wattr | wch->attributes) 539 else if (win->wattr & __COLOR) 540 attributes |= win->wattr & __COLOR;
|
color.c | 133 curscr->wattr &= _cursesi_screen->mask_op; 540 ((curscr->wattr & __COLOR) == (attr & __COLOR))) 588 curscr->wattr &= ~__COLOR; 589 curscr->wattr |= attr & __COLOR; 605 win->wattr &= __mask_op; 617 win->wattr &= __mask_op;
|
in_wchstr.c | 165 wcp->attributes = win->wattr;
|
fileio.c | 204 win->wattr = wtmp->wattr;
|
insstr.c | 191 temp1->attr = win->wattr;
|
cr_put.c | 454 if (csp->attr == curscr->wattr) 458 == curscr->wattr) {
|
get_wch.c | 472 setcchar(&wc, ws, win->wattr, 0, NULL); 564 setcchar( &wc, ws, win->wattr, 0, NULL );
|
newwin.c | 358 win->wattr = 0; 378 __CTRACE(__CTRACE_WINDOW, "makenew: win->wattr = %08x\n", win->wattr);
|
resize.c | 259 __CTRACE(__CTRACE_WINDOW, "resize: win->wattr = %08x\n", win->wattr); 367 __CTRACE(__CTRACE_WINDOW, "resize: win->wattr = %08x\n", win->wattr);
|
get_wstr.c | 175 setcchar(&cc, sc, win->wattr, 0, NULL);
|
curses_private.h | 129 attr_t wattr; /* Character attributes */ member in struct:__window
|
ins_wstr.c | 372 cc.attributes = win->wattr;
|
slk.c | 861 screen->slk_window->wattr, 0,
|