Home | History | Annotate | Download | only in libcurses

Lines Matching refs:stdscr

408 extern WINDOW	*stdscr;		/* Standard screen. */
432 #define addbytes(s, n) __waddbytes(stdscr, s, n, 0)
433 #define addch(ch) waddch(stdscr, ch)
434 #define addchnstr(s, n) waddchnstr(stdscr, s, n)
435 #define addchstr(s) waddchnstr(stdscr, s, -1)
436 #define addnstr(s, n) waddnstr(stdscr, s, n)
437 #define addstr(s) waddnstr(stdscr, s, -1)
438 #define attr_get(a, p, o) wattr_get(stdscr, a, p, o)
439 #define attr_off(a, o) wattr_off(stdscr, a, o)
440 #define attr_on(a, o) wattr_on(stdscr, a, o)
441 #define attr_set(a, p, o) wattr_set(stdscr, a, p, o)
442 #define attroff(attr) wattroff(stdscr, attr)
443 #define attron(attr) wattron(stdscr, attr)
444 #define attrset(attr) wattrset(stdscr, attr)
445 #define bkgd(ch) wbkgd(stdscr, ch)
446 #define bkgdset(ch) wbkgdset(stdscr, ch)
448 wborder(stdscr, l, r, t, b, tl, tr, bl, br)
449 #define clear() wclear(stdscr)
450 #define clrtobot() wclrtobot(stdscr)
451 #define clrtoeol() wclrtoeol(stdscr)
452 #define color_set(c, o) wcolor_set(stdscr, c, o)
453 #define delch() wdelch(stdscr)
454 #define deleteln() wdeleteln(stdscr)
455 #define echochar(c) wechochar(stdscr, c)
456 #define erase() werase(stdscr)
457 #define getch() wgetch(stdscr)
458 #define getnstr(s, n) wgetnstr(stdscr, s, n)
459 #define getstr(s) wgetstr(stdscr, s)
460 #define inch() winch(stdscr)
461 #define inchnstr(c) winchnstr(stdscr, c)
462 #define inchstr(c) winchstr(stdscr, c)
463 #define innstr(s, n) winnstr(stdscr, s, n)
464 #define insch(ch) winsch(stdscr, ch)
465 #define insdelln(n) winsdelln(stdscr, n)
466 #define insertln() winsertln(stdscr)
467 #define instr(s) winstr(stdscr, s)
468 #define move(y, x) wmove(stdscr, y, x)
469 #define refresh() wrefresh(stdscr)
470 #define scrl(n) wscrl(stdscr, n)
471 #define setscrreg(t, b) wsetscrreg(stdscr, t, b)
472 #define standend() wstandend(stdscr)
473 #define standout() wstandout(stdscr)
474 #define timeout(delay) wtimeout(stdscr, delay)
475 #define underscore() wunderscore(stdscr)
476 #define underend() wunderend(stdscr)
481 #define mvaddbytes(y, x, s, n) mvwaddbytes(stdscr, y, x, s, n)
482 #define mvaddch(y, x, ch) mvwaddch(stdscr, y, x, ch)
483 #define mvaddchnstr(y, x, s, n) mvwaddchnstr(stdscr, y, x, s, n)
484 #define mvaddchstr(y, x, s) mvwaddchstr(stdscr, y, x, s)
485 #define mvaddnstr(y, x, s, n) mvwaddnstr(stdscr, y, x, s, n)
486 #define mvaddstr(y, x, s) mvwaddstr(stdscr, y, x, s)
487 #define mvdelch(y, x) mvwdelch(stdscr, y, x)
488 #define mvgetch(y, x) mvwgetch(stdscr, y, x)
489 #define mvgetnstr(y, x, s, n) mvwgetnstr(stdscr, y, x, s, n)
490 #define mvgetstr(y, x, s) mvwgetstr(stdscr, y, x, s)
491 #define mvinch(y, x) mvwinch(stdscr, y, x)
492 #define mvinchnstr(y, x, c, n) mvwinchnstr(stdscr, y, x, c, n)
493 #define mvinchstr(y, x, c) mvwinchstr(stdscr, y, x, c)
494 #define mvinnstr(y, x, s, n) mvwinnstr(stdscr, y, x, s, n)
495 #define mvinsch(y, x, c) mvwinsch(stdscr, y, x, c)
496 #define mvinstr(y, x, s) mvwinstr(stdscr, y, x, s)
531 #define noqiflush() intrflush(stdscr, FALSE)
532 #define qiflush() intrflush(stdscr, TRUE)