Lines Matching refs:text_box_y
117 static int text_box_y;
133 for (i = 0; i < text_box_y; ++i) {
162 length = text_box_y * text_box_y / text_lines_count;
163 if (length >= text_box_y)
165 begin = current_top * (text_box_y - length) / max_scroll_y;
166 mvwvline(text_widget.window, 1, text_box_x + 1, ' ', text_box_y);
181 mvwhline(text_widget.window, text_box_y + 1, 1, ' ', text_box_x);
182 mvwhline(text_widget.window, text_box_y + 1, begin + 1, ACS_BOARD, length);
239 move_y(text_box_y);
242 move_y(-text_box_y);
274 text_box_y = text_lines_count;
275 if (text_box_y > screen_lines - 2)
276 text_box_y = screen_lines - 2;
277 max_scroll_y = text_lines_count - text_box_y;
283 widget_init(&text_widget, text_box_y + 2, text_box_x + 2,