Lines Matching refs:text_win
2379 text_win = _styled_win("text")
2380 text_win.keypad(True)
2389 _resize_info_dialog(top_line_win, text_win, bot_sep_win, help_win)
2399 _draw_info_dialog(node, lines, scroll, top_line_win, text_win,
2404 c = _getch_compat(text_win)
2407 _resize_info_dialog(top_line_win, text_win, bot_sep_win, help_win)
2410 if scroll < _max_scroll(lines, text_win):
2414 scroll = min(scroll + _PG_JUMP, _max_scroll(lines, text_win))
2420 scroll = _max_scroll(lines, text_win)
2441 _resize_info_dialog(top_line_win, text_win, bot_sep_win, help_win)
2450 def _resize_info_dialog(top_line_win, text_win, bot_sep_win, help_win): argument
2462 text_win.resize(text_win_height, screen_width)
2465 text_win.mvwin(1, 0)
2471 text_win.resize(1, screen_width)
2474 for win in text_win, bot_sep_win, help_win:
2478 def _draw_info_dialog(node, lines, scroll, top_line_win, text_win, argument
2481 text_win_height, text_win_width = text_win.getmaxyx()
2489 text_win.erase()
2492 _safe_addstr(text_win, i, 0, line)
2494 text_win.noutrefresh()
2503 if scroll < _max_scroll(lines, text_win):