Home | History | Annotate | Download | only in include

Lines Matching refs:chtype

137 #define NCURSES_CH_T chtype
140 typedef unsigned chtype;
143 typedef unsigned long chtype;
247 NCURSES_WRAPPED_VAR(chtype*, acs_map);
250 extern NCURSES_EXPORT_VAR(chtype) acs_map[];
343 typedef chtype attr_t; /* ...must be at least as wide as chtype */
402 chtype _bkgd; /* current background char/attribute pair */
551 extern NCURSES_EXPORT(int) addch (const chtype); /* generated */
552 extern NCURSES_EXPORT(int) addchnstr (const chtype *, int); /* generated */
553 extern NCURSES_EXPORT(int) addchstr (const chtype *); /* generated */
565 extern NCURSES_EXPORT(int) bkgd (chtype); /* generated */
566 extern NCURSES_EXPORT(void) bkgdset (chtype); /* generated */
567 extern NCURSES_EXPORT(int) border (chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* generated */
568 extern NCURSES_EXPORT(int) box (WINDOW *, chtype, chtype); /* generated */
592 extern NCURSES_EXPORT(int) echochar (const chtype); /* generated */
599 extern NCURSES_EXPORT(chtype) getbkgd (WINDOW *); /* generated */
608 extern NCURSES_EXPORT(int) hline (chtype, int); /* generated */
612 extern NCURSES_EXPORT(chtype) inch (void); /* generated */
613 extern NCURSES_EXPORT(int) inchnstr (chtype *, int); /* generated */
614 extern NCURSES_EXPORT(int) inchstr (chtype *); /* generated */
619 extern NCURSES_EXPORT(int) insch (chtype); /* generated */
636 extern NCURSES_EXPORT(int) mvaddch (int, int, const chtype); /* generated */
637 extern NCURSES_EXPORT(int) mvaddchnstr (int, int, const chtype *, int); /* generated */
638 extern NCURSES_EXPORT(int) mvaddchstr (int, int, const chtype *); /* generated */
648 extern NCURSES_EXPORT(int) mvhline (int, int, chtype, int); /* generated */
649 extern NCURSES_EXPORT(chtype) mvinch (int, int); /* generated */
650 extern NCURSES_EXPORT(int) mvinchnstr (int, int, chtype *, int); /* generated */
651 extern NCURSES_EXPORT(int) mvinchstr (int, int, chtype *); /* generated */
653 extern NCURSES_EXPORT(int) mvinsch (int, int, chtype); /* generated */
661 extern NCURSES_EXPORT(int) mvvline (int, int, chtype, int); /* generated */
662 extern NCURSES_EXPORT(int) mvwaddch (WINDOW *, int, int, const chtype); /* generated */
663 extern NCURSES_EXPORT(int) mvwaddchnstr (WINDOW *, int, int, const chtype *, int);/* generated */
664 extern NCURSES_EXPORT(int) mvwaddchstr (WINDOW *, int, int, const chtype *); /* generated */
672 extern NCURSES_EXPORT(int) mvwhline (WINDOW *, int, int, chtype, int); /* generated */
674 extern NCURSES_EXPORT(chtype) mvwinch (WINDOW *, int, int); /* generated */
675 extern NCURSES_EXPORT(int) mvwinchnstr (WINDOW *, int, int, chtype *, int); /* generated */
676 extern NCURSES_EXPORT(int) mvwinchstr (WINDOW *, int, int, chtype *); /* generated */
678 extern NCURSES_EXPORT(int) mvwinsch (WINDOW *, int, int, chtype); /* generated */
686 extern NCURSES_EXPORT(int) mvwvline (WINDOW *,int, int, chtype, int); /* generated */
703 extern NCURSES_EXPORT(int) pechochar (WINDOW *, const chtype); /* implemented */
729 extern NCURSES_EXPORT(int) slk_attroff (const chtype); /* implemented */
731 extern NCURSES_EXPORT(int) slk_attron (const chtype); /* implemented */
733 extern NCURSES_EXPORT(int) slk_attrset (const chtype); /* implemented */
751 extern NCURSES_EXPORT(chtype) termattrs (void); /* implemented */
760 extern NCURSES_EXPORT(int) vidattr (chtype); /* implemented */
761 extern NCURSES_EXPORT(int) vidputs (chtype, NCURSES_OUTC); /* implemented */
762 extern NCURSES_EXPORT(int) vline (chtype, int); /* generated */
767 extern NCURSES_EXPORT(int) waddch (WINDOW *, const chtype); /* implemented */
768 extern NCURSES_EXPORT(int) waddchnstr (WINDOW *,const chtype *,int); /* implemented */
769 extern NCURSES_EXPORT(int) waddchstr (WINDOW *,const chtype
779 extern NCURSES_EXPORT(int) wbkgd (WINDOW *, chtype); /* implemented */
780 extern NCURSES_EXPORT(void) wbkgdset (WINDOW *,chtype); /* implemented */
781 extern NCURSES_EXPORT(int) wborder (WINDOW *,chtype,chtype,chtype,chtype,chtype,chtype,chtype,chtype); /* implemented */
790 extern NCURSES_EXPORT(int) wechochar (WINDOW *, const chtype); /* implemented */
795 extern NCURSES_EXPORT(int) whline (WINDOW *, chtype, int); /* implemented */
796 extern NCURSES_EXPORT(chtype) winch (WINDOW *); /* implemented */
797 extern NCURSES_EXPORT(int) winchnstr (WINDOW *, chtype *, int); /* implemented */
798 extern NCURSES_EXPORT(int) winchstr (WINDOW *, chtype *); /* generated */
800 extern NCURSES_EXPORT(int) winsch (WINDOW *, chtype); /* implemented */
822 extern NCURSES_EXPORT(int) wvline (WINDOW *,chtype,int); /* implemented */
977 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attroff) (SCREEN*, const chtype); /* implemented:SP_FUNC */
978 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attron) (SCREEN*, const chtype); /* implemented:SP_FUNC */
979 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(slk_attrset) (SCREEN*, const chtype); /* implemented:SP_FUNC */
992 extern NCURSES_EXPORT(chtype) NCURSES_SP_NAME(termattrs) (SCREEN*); /* implemented:SP_FUNC */
997 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidattr) (SCREEN*, chtype); /* implemented:SP_FUNC */
998 extern NCURSES_EXPORT(int) NCURSES_SP_NAME(vidputs) (SCREEN*, chtype, NCURSES_SP_OUTC); /* implemented:SP_FUNC */
1224 #define mvwinch(win,y,x) (wmove(win,y,x) == ERR ? NCURSES_CAST(chtype, ERR) : winch(win))
1611 extern NCURSES_EXPORT(char *) _traceattr2 (int, chtype);
1614 extern NCURSES_EXPORT(char *) _tracechtype (chtype);
1615 extern NCURSES_EXPORT(char *) _tracechtype2 (int, chtype);