Lines Matching refs:y
53 int y, int x, int height) in print_arrows() argument
55 wmove(win, y, x); in print_arrows()
69 y = y + height + 1; in print_arrows()
70 wmove(win, y, x); in print_arrows()
91 int y = height - 2; in print_buttons() local
93 print_button(dialog, "Select", y, x, selected == 0); in print_buttons()
94 print_button(dialog, " Help ", y, x + 14, selected == 1); in print_buttons()
96 wmove(dialog, y, x + 1 + 14 * selected); in print_buttons()
107 int i, x, y, box_x, box_y; in dialog_checklist() local
131 y = (getmaxy(stdscr) - height) / 2; in dialog_checklist()
133 draw_shadow(stdscr, y, x, height, width); in dialog_checklist()
135 dialog = newwin(height, width, y, x); in dialog_checklist()
157 list = subwin(dialog, list_height, list_width, y + box_y + 1, in dialog_checklist()