Lines Matching refs:y
98 static void print_arrows(WINDOW * win, int item_no, int scroll, int y, int x, in print_arrows() argument
105 wmove(win, y, x); in print_arrows()
119 y = y + height + 1; in print_arrows()
120 wmove(win, y, x); in print_arrows()
145 int y = height - 2; in print_buttons() local
147 print_button(win, "Select", y, x, selected == 0); in print_buttons()
148 print_button(win, " Exit ", y, x + 12, selected == 1); in print_buttons()
149 print_button(win, " Help ", y, x + 24, selected == 2); in print_buttons()
150 print_button(win, " Save ", y, x + 36, selected == 3); in print_buttons()
151 print_button(win, " Load ", y, x + 48, selected == 4); in print_buttons()
153 wmove(win, y, x + 1 + 12 * selected); in print_buttons()
174 int i, j, x, y, box_x, box_y; in dialog_menu() local
194 y = (getmaxy(stdscr) - height) / 2; in dialog_menu()
196 draw_shadow(stdscr, y, x, height, width); in dialog_menu()
198 dialog = newwin(height, width, y, x); in dialog_menu()
222 y + box_y + 1, x + box_x + 1); in dialog_menu()