blob: d58de1dc5360dacf90fce2c177e3fb6c3ed8c83e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inputbox.c -- implements the input box
3 *
4 * ORIGINAL AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
5 * MODIFIED FOR LINUX KERNEL CONFIG BY: William Roadcap (roadcap@cfw.com)
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22#include "dialog.h"
23
Keenan Pepper84c2a2e2005-07-27 14:14:00 -040024char dialog_input_result[MAX_LEN + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26/*
27 * Print the termination buttons
28 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010029static void print_buttons(WINDOW * dialog, int height, int width, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010031 int x = width / 2 - 11;
32 int y = height - 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
EGRY Gabor75c0a8a2008-01-11 23:42:54 +010034 print_button(dialog, gettext(" Ok "), y, x, selected == 0);
35 print_button(dialog, gettext(" Help "), y, x + 14, selected == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010037 wmove(dialog, y, x + 1 + 14 * selected);
38 wrefresh(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41/*
42 * Display a dialog box for inputing a string
43 */
Sam Ravnborgdec69da2005-11-19 21:56:20 +010044int dialog_inputbox(const char *title, const char *prompt, int height, int width,
Masahiro Yamadabb66fc62014-06-10 19:08:13 +090045 const char *init)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010047 int i, x, y, box_y, box_x, box_width;
Wang YanQing87727d42012-12-17 22:38:02 +080048 int input_x = 0, key = 0, button = -1;
49 int show_x, len, pos;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010050 char *instr = dialog_input_result;
51 WINDOW *dialog;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +020053 if (!init)
54 instr[0] = '\0';
55 else
56 strcpy(instr, init);
57
58do_resize:
Sedat Dilek851f6652013-06-15 11:07:35 +020059 if (getmaxy(stdscr) <= (height - INPUTBOX_HEIGTH_MIN))
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +020060 return -ERRDISPLAYTOOSMALL;
Sedat Dilek851f6652013-06-15 11:07:35 +020061 if (getmaxx(stdscr) <= (width - INPUTBOX_WIDTH_MIN))
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +020062 return -ERRDISPLAYTOOSMALL;
63
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010064 /* center dialog box on screen */
Dirk Gouders4f2de3e12013-05-12 12:30:49 +020065 x = (getmaxx(stdscr) - width) / 2;
66 y = (getmaxy(stdscr) - height) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010068 draw_shadow(stdscr, y, x, height, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010070 dialog = newwin(height, width, y, x);
71 keypad(dialog, TRUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Sam Ravnborg98e5a152006-07-24 21:40:46 +020073 draw_box(dialog, 0, 0, height, width,
74 dlg.dialog.atr, dlg.border.atr);
75 wattrset(dialog, dlg.border.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010076 mvwaddch(dialog, height - 3, 0, ACS_LTEE);
77 for (i = 0; i < width - 2; i++)
78 waddch(dialog, ACS_HLINE);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020079 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010080 waddch(dialog, ACS_RTEE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Sam Ravnborgfa7009d2005-11-19 23:38:06 +010082 print_title(dialog, title, width);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Sam Ravnborg98e5a152006-07-24 21:40:46 +020084 wattrset(dialog, dlg.dialog.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010085 print_autowrap(dialog, prompt, width - 2, 1, 3);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010087 /* Draw the input field box */
88 box_width = width - 6;
89 getyx(dialog, y, x);
90 box_y = y + 2;
91 box_x = (width - box_width) / 2;
Sam Ravnborg98e5a152006-07-24 21:40:46 +020092 draw_box(dialog, y + 1, box_x - 1, 3, box_width + 2,
Roel Kluin79d6e532008-03-20 21:30:32 +010093 dlg.dialog.atr, dlg.border.atr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010095 print_buttons(dialog, height, width, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +010097 /* Set up the initial value */
98 wmove(dialog, box_y, box_x);
Sam Ravnborg98e5a152006-07-24 21:40:46 +020099 wattrset(dialog, dlg.inputbox.atr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Wang YanQing87727d42012-12-17 22:38:02 +0800101 len = strlen(instr);
102 pos = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Wang YanQing87727d42012-12-17 22:38:02 +0800104 if (len >= box_width) {
105 show_x = len - box_width + 1;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100106 input_x = box_width - 1;
107 for (i = 0; i < box_width - 1; i++)
Wang YanQing87727d42012-12-17 22:38:02 +0800108 waddch(dialog, instr[show_x + i]);
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100109 } else {
Wang YanQing87727d42012-12-17 22:38:02 +0800110 show_x = 0;
111 input_x = len;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100112 waddstr(dialog, instr);
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100115 wmove(dialog, box_y, box_x + input_x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100117 wrefresh(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200119 while (key != KEY_ESC) {
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100120 key = wgetch(dialog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100122 if (button == -1) { /* Input box selected */
123 switch (key) {
124 case TAB:
125 case KEY_UP:
126 case KEY_DOWN:
127 break;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100128 case KEY_BACKSPACE:
129 case 127:
Wang YanQing87727d42012-12-17 22:38:02 +0800130 if (pos) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200131 wattrset(dialog, dlg.inputbox.atr);
Wang YanQing87727d42012-12-17 22:38:02 +0800132 if (input_x == 0) {
133 show_x--;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100134 } else
135 input_x--;
Wang YanQing87727d42012-12-17 22:38:02 +0800136
137 if (pos < len) {
138 for (i = pos - 1; i < len; i++) {
139 instr[i] = instr[i+1];
140 }
141 }
142
143 pos--;
144 len--;
145 instr[len] = '\0';
146 wmove(dialog, box_y, box_x);
147 for (i = 0; i < box_width; i++) {
148 if (!instr[show_x + i]) {
149 waddch(dialog, ' ');
150 break;
151 }
152 waddch(dialog, instr[show_x + i]);
153 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100154 wmove(dialog, box_y, input_x + box_x);
155 wrefresh(dialog);
156 }
157 continue;
Wang YanQing87727d42012-12-17 22:38:02 +0800158 case KEY_LEFT:
159 if (pos > 0) {
160 if (input_x > 0) {
161 wmove(dialog, box_y, --input_x + box_x);
162 } else if (input_x == 0) {
163 show_x--;
164 wmove(dialog, box_y, box_x);
165 for (i = 0; i < box_width; i++) {
166 if (!instr[show_x + i]) {
167 waddch(dialog, ' ');
168 break;
169 }
170 waddch(dialog, instr[show_x + i]);
171 }
172 wmove(dialog, box_y, box_x);
173 }
174 pos--;
175 }
176 continue;
177 case KEY_RIGHT:
178 if (pos < len) {
179 if (input_x < box_width - 1) {
180 wmove(dialog, box_y, ++input_x + box_x);
181 } else if (input_x == box_width - 1) {
182 show_x++;
183 wmove(dialog, box_y, box_x);
184 for (i = 0; i < box_width; i++) {
185 if (!instr[show_x + i]) {
186 waddch(dialog, ' ');
187 break;
188 }
189 waddch(dialog, instr[show_x + i]);
190 }
191 wmove(dialog, box_y, input_x + box_x);
192 }
193 pos++;
194 }
195 continue;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100196 default:
197 if (key < 0x100 && isprint(key)) {
Wang YanQing87727d42012-12-17 22:38:02 +0800198 if (len < MAX_LEN) {
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200199 wattrset(dialog, dlg.inputbox.atr);
Wang YanQing87727d42012-12-17 22:38:02 +0800200 if (pos < len) {
201 for (i = len; i > pos; i--)
202 instr[i] = instr[i-1];
203 instr[pos] = key;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100204 } else {
Wang YanQing87727d42012-12-17 22:38:02 +0800205 instr[len] = key;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100206 }
Wang YanQing87727d42012-12-17 22:38:02 +0800207 pos++;
208 len++;
209 instr[len] = '\0';
210
211 if (input_x == box_width - 1) {
212 show_x++;
213 } else {
214 input_x++;
215 }
216
217 wmove(dialog, box_y, box_x);
218 for (i = 0; i < box_width; i++) {
219 if (!instr[show_x + i]) {
220 waddch(dialog, ' ');
221 break;
222 }
223 waddch(dialog, instr[show_x + i]);
224 }
225 wmove(dialog, box_y, input_x + box_x);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100226 wrefresh(dialog);
227 } else
228 flash(); /* Alarm user about overflow */
229 continue;
230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100233 switch (key) {
234 case 'O':
235 case 'o':
236 delwin(dialog);
237 return 0;
238 case 'H':
239 case 'h':
240 delwin(dialog);
241 return 1;
242 case KEY_UP:
243 case KEY_LEFT:
244 switch (button) {
245 case -1:
Li Zefan4280eae2010-04-14 11:44:05 +0800246 button = 1; /* Indicates "Help" button is selected */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100247 print_buttons(dialog, height, width, 1);
248 break;
249 case 0:
250 button = -1; /* Indicates input box is selected */
251 print_buttons(dialog, height, width, 0);
252 wmove(dialog, box_y, box_x + input_x);
253 wrefresh(dialog);
254 break;
255 case 1:
256 button = 0; /* Indicates "OK" button is selected */
257 print_buttons(dialog, height, width, 0);
258 break;
259 }
260 break;
261 case TAB:
262 case KEY_DOWN:
263 case KEY_RIGHT:
264 switch (button) {
265 case -1:
266 button = 0; /* Indicates "OK" button is selected */
267 print_buttons(dialog, height, width, 0);
268 break;
269 case 0:
Li Zefan4280eae2010-04-14 11:44:05 +0800270 button = 1; /* Indicates "Help" button is selected */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100271 print_buttons(dialog, height, width, 1);
272 break;
273 case 1:
274 button = -1; /* Indicates input box is selected */
275 print_buttons(dialog, height, width, 0);
276 wmove(dialog, box_y, box_x + input_x);
277 wrefresh(dialog);
278 break;
279 }
280 break;
281 case ' ':
282 case '\n':
283 delwin(dialog);
284 return (button == -1 ? 0 : button);
285 case 'X':
286 case 'x':
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200287 key = KEY_ESC;
288 break;
289 case KEY_ESC:
290 key = on_key_esc(dialog);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100291 break;
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +0200292 case KEY_RESIZE:
293 delwin(dialog);
294 on_key_resize();
295 goto do_resize;
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100299 delwin(dialog);
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200300 return KEY_ESC; /* ESC pressed */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}