Home | History | Annotate | Download | only in include

Lines Matching refs:chtype

52 inline int UNDEF(addch)(chtype ch)  { return addch(ch); }
58 inline int UNDEF(echochar)(chtype ch) { return echochar(ch); }
76 inline int UNDEF(attron)(chtype at) { return attron(at); }
82 inline int UNDEF(attroff)(chtype at) { return attroff(at); }
88 inline chtype UNDEF(attrset)(chtype at) { return attrset(at); }
94 inline chtype UNDEF(color_set)(short p, void* opts) { return color_set(p, opts); }
100 inline int UNDEF(border)(chtype ls, chtype rs, chtype ts, chtype bs, chtype tl, chtype tr, chtype bl, chtype br)
113 inline int UNDEF(mvwhline)(WINDOW *win, int y, int x, chtype c, int n) {
120 inline int UNDEF(mvwvline)(WINDOW *win, int y, int x, chtype c, int n) {
292 inline int UNDEF(hline)(chtype ch, int n) { return hline(ch, n); }
298 inline chtype UNDEF(inch)() { return inch(); }
304 inline int UNDEF(insch)(chtype c) { return insch(c); }
416 inline int UNDEF(vline)(chtype ch, int n) { return vline(ch, n); }
428 inline int UNDEF(waddchstr)(WINDOW *win, chtype *at) { return waddchstr(win, at); }
482 inline chtype UNDEF(winch)(const WINDOW* win) { return winch(win); }
488 inline int UNDEF(mvwaddch)(WINDOW *win, int y, int x, const chtype ch)
495 inline int UNDEF(mvwaddchnstr)(WINDOW *win, int y, int x, chtype *str, int n)
502 inline int UNDEF(mvwaddchstr)(WINDOW *win, int y, int x, chtype *str)
557 inline chtype UNDEF(mvwinch)(WINDOW *win, int y, int x) {
564 inline int UNDEF(mvwinsch)(WINDOW *win, int y, int x, chtype c)
571 inline int UNDEF(mvaddch)(int y, int x, chtype ch)
617 inline chtype UNDEF(mvinch)(int y, int x) { return mvinch(y, x);}
623 inline int UNDEF(mvinsch)(int y, int x, chtype c)
666 inline chtype UNDEF(getbkgd)(const WINDOW *win) { return getbkgd(win); }
672 inline int UNDEF(bkgd)(chtype ch) { return bkgd(ch); }
678 inline void UNDEF(bkgdset)(chtype ch) { bkgdset(ch); }
919 int addch(const chtype ch) { return ::waddch(w, ch); }
922 int addch(int y, int x, const chtype ch) {
927 int echochar(const chtype ch) { return ::wechochar(w, ch); }
956 chtype inch() const { return ::winch(w); }
959 chtype inch(int y, int x) { return ::mvwinch(w, y, x); }
963 int insch(chtype ch) { return ::winsch(w, ch); }
967 int insch(int y, int x, chtype ch) {
990 int attron (chtype at) { return ::wattron (w, at); }
993 int attroff(chtype at) { return ::wattroff(w, static_cast<int>(at)); }
996 int attrset(chtype at) { return ::wattrset(w, static_cast<int>(at)); }
1018 chtype getbkgd() const { return ::getbkgd(w); }
1021 int bkgd(const chtype ch) { return ::wbkgd(w, ch); }
1024 void bkgdset(chtype ch) { ::wbkgdset(w, ch); }
1030 int box(chtype vert=0, chtype hor=0) {
1036 int border(chtype left=0, chtype right=0,
1037 chtype top =0, chtype bottom=0,
1038 chtype top_left =0, chtype top_right=0,
1039 chtype bottom_left =0, chtype bottom_right=0) {
1049 int hline(int len, chtype ch=0) { return ::whline(w, ch, len); }
1053 int hline(int y, int x, int len, chtype ch=0) {
1057 int vline(int len, chtype ch=0) { return ::wvline(w, ch, len); }
1061 int vline(int y, int x, int len, chtype ch=0) {
1364 int echochar(const chtype ch) { return ::pechochar(w, ch); }