Home
last modified time | relevance | path

Searched refs:my_win (Results 1 – 5 of 5) sorted by relevance

/freebsd/usr.bin/talk/
H A Dinit_disp.c89 my_win.x_nlines = LINES / 2; in init_display()
90 my_win.x_ncols = COLS; in init_display()
91 my_win.x_win = newwin(my_win.x_nlines, my_win.x_ncols, 0, 0); in init_display()
92 idlok(my_win.x_win, TRUE); in init_display()
93 scrollok(my_win.x_win, TRUE); in init_display()
94 wclear(my_win.x_win); in init_display()
99 my_win.x_nlines+1, 0); in init_display()
100 idlok(my_win.x_win, TRUE); in init_display()
104 line_win = newwin(1, COLS, my_win.x_nlines, 0); in init_display()
128 my_win.cerase = tio.c_cc[VERASE]; in set_edit_chars()
[all …]
H A Dio.c138 display(&my_win, &w); in talk()
153 wmove(my_win.x_win, current_line, 0); in p_error()
154 wprintw(my_win.x_win, "[%s : %s (%d)]\n", in p_error()
156 wrefresh(my_win.x_win); in p_error()
168 wmove(my_win.x_win, current_line, 0); in message()
169 wprintw(my_win.x_win, "[%s]\n", string); in message()
170 if (current_line < my_win.x_nlines - 1) in message()
172 wrefresh(my_win.x_win); in message()
H A Ddisplay.c48 xwin_t my_win; variable
108 if (win == &my_win) { in display()
110 werase(my_win.x_win); in display()
111 getyx(my_win.x_win, my_win.x_line, my_win.x_col); in display()
112 wrefresh(my_win.x_win); in display()
173 if (win == &my_win) in display()
H A Dinvite.c120 waddch(my_win.x_win, '\n'); in re_invite()
121 if (current_line < my_win.x_nlines - 1) in re_invite()
H A Dtalk.h61 extern xwin_t my_win;