blob: 0fa567eb68c6f4fd8066add22bc164031500224e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * util.c
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
Arnaud Lacombe668cded2009-07-06 00:07:14 -040022#include <stdarg.h>
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "dialog.h"
25
Dirk Gouders3eb95c82012-08-06 16:48:23 +020026/* Needed in signal handler in mconf.c */
27int saved_x, saved_y;
28
Sam Ravnborg98e5a152006-07-24 21:40:46 +020029struct dialog_info dlg;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Sam Ravnborg98e5a152006-07-24 21:40:46 +020031static void set_mono_theme(void)
32{
33 dlg.screen.atr = A_NORMAL;
34 dlg.shadow.atr = A_NORMAL;
35 dlg.dialog.atr = A_NORMAL;
36 dlg.title.atr = A_BOLD;
37 dlg.border.atr = A_NORMAL;
38 dlg.button_active.atr = A_REVERSE;
39 dlg.button_inactive.atr = A_DIM;
40 dlg.button_key_active.atr = A_REVERSE;
41 dlg.button_key_inactive.atr = A_BOLD;
42 dlg.button_label_active.atr = A_REVERSE;
43 dlg.button_label_inactive.atr = A_NORMAL;
44 dlg.inputbox.atr = A_NORMAL;
45 dlg.inputbox_border.atr = A_NORMAL;
46 dlg.searchbox.atr = A_NORMAL;
47 dlg.searchbox_title.atr = A_BOLD;
48 dlg.searchbox_border.atr = A_NORMAL;
49 dlg.position_indicator.atr = A_BOLD;
50 dlg.menubox.atr = A_NORMAL;
51 dlg.menubox_border.atr = A_NORMAL;
52 dlg.item.atr = A_NORMAL;
53 dlg.item_selected.atr = A_REVERSE;
54 dlg.tag.atr = A_BOLD;
55 dlg.tag_selected.atr = A_REVERSE;
56 dlg.tag_key.atr = A_BOLD;
57 dlg.tag_key_selected.atr = A_REVERSE;
58 dlg.check.atr = A_BOLD;
59 dlg.check_selected.atr = A_REVERSE;
60 dlg.uarrow.atr = A_BOLD;
61 dlg.darrow.atr = A_BOLD;
62}
63
64#define DLG_COLOR(dialog, f, b, h) \
65do { \
66 dlg.dialog.fg = (f); \
67 dlg.dialog.bg = (b); \
68 dlg.dialog.hl = (h); \
69} while (0)
70
71static void set_classic_theme(void)
72{
73 DLG_COLOR(screen, COLOR_CYAN, COLOR_BLUE, true);
74 DLG_COLOR(shadow, COLOR_BLACK, COLOR_BLACK, true);
75 DLG_COLOR(dialog, COLOR_BLACK, COLOR_WHITE, false);
76 DLG_COLOR(title, COLOR_YELLOW, COLOR_WHITE, true);
77 DLG_COLOR(border, COLOR_WHITE, COLOR_WHITE, true);
78 DLG_COLOR(button_active, COLOR_WHITE, COLOR_BLUE, true);
79 DLG_COLOR(button_inactive, COLOR_BLACK, COLOR_WHITE, false);
80 DLG_COLOR(button_key_active, COLOR_WHITE, COLOR_BLUE, true);
81 DLG_COLOR(button_key_inactive, COLOR_RED, COLOR_WHITE, false);
82 DLG_COLOR(button_label_active, COLOR_YELLOW, COLOR_BLUE, true);
83 DLG_COLOR(button_label_inactive, COLOR_BLACK, COLOR_WHITE, true);
84 DLG_COLOR(inputbox, COLOR_BLACK, COLOR_WHITE, false);
85 DLG_COLOR(inputbox_border, COLOR_BLACK, COLOR_WHITE, false);
86 DLG_COLOR(searchbox, COLOR_BLACK, COLOR_WHITE, false);
87 DLG_COLOR(searchbox_title, COLOR_YELLOW, COLOR_WHITE, true);
88 DLG_COLOR(searchbox_border, COLOR_WHITE, COLOR_WHITE, true);
89 DLG_COLOR(position_indicator, COLOR_YELLOW, COLOR_WHITE, true);
90 DLG_COLOR(menubox, COLOR_BLACK, COLOR_WHITE, false);
91 DLG_COLOR(menubox_border, COLOR_WHITE, COLOR_WHITE, true);
92 DLG_COLOR(item, COLOR_BLACK, COLOR_WHITE, false);
93 DLG_COLOR(item_selected, COLOR_WHITE, COLOR_BLUE, true);
94 DLG_COLOR(tag, COLOR_YELLOW, COLOR_WHITE, true);
95 DLG_COLOR(tag_selected, COLOR_YELLOW, COLOR_BLUE, true);
96 DLG_COLOR(tag_key, COLOR_YELLOW, COLOR_WHITE, true);
97 DLG_COLOR(tag_key_selected, COLOR_YELLOW, COLOR_BLUE, true);
98 DLG_COLOR(check, COLOR_BLACK, COLOR_WHITE, false);
99 DLG_COLOR(check_selected, COLOR_WHITE, COLOR_BLUE, true);
100 DLG_COLOR(uarrow, COLOR_GREEN, COLOR_WHITE, true);
101 DLG_COLOR(darrow, COLOR_GREEN, COLOR_WHITE, true);
102}
103
Sam Ravnborg45897212006-07-24 22:04:04 +0200104static void set_blackbg_theme(void)
105{
106 DLG_COLOR(screen, COLOR_RED, COLOR_BLACK, true);
107 DLG_COLOR(shadow, COLOR_BLACK, COLOR_BLACK, false);
108 DLG_COLOR(dialog, COLOR_WHITE, COLOR_BLACK, false);
109 DLG_COLOR(title, COLOR_RED, COLOR_BLACK, false);
110 DLG_COLOR(border, COLOR_BLACK, COLOR_BLACK, true);
111
112 DLG_COLOR(button_active, COLOR_YELLOW, COLOR_RED, false);
113 DLG_COLOR(button_inactive, COLOR_YELLOW, COLOR_BLACK, false);
114 DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_RED, true);
115 DLG_COLOR(button_key_inactive, COLOR_RED, COLOR_BLACK, false);
116 DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_RED, false);
117 DLG_COLOR(button_label_inactive, COLOR_BLACK, COLOR_BLACK, true);
118
119 DLG_COLOR(inputbox, COLOR_YELLOW, COLOR_BLACK, false);
120 DLG_COLOR(inputbox_border, COLOR_YELLOW, COLOR_BLACK, false);
121
122 DLG_COLOR(searchbox, COLOR_YELLOW, COLOR_BLACK, false);
123 DLG_COLOR(searchbox_title, COLOR_YELLOW, COLOR_BLACK, true);
124 DLG_COLOR(searchbox_border, COLOR_BLACK, COLOR_BLACK, true);
125
126 DLG_COLOR(position_indicator, COLOR_RED, COLOR_BLACK, false);
127
128 DLG_COLOR(menubox, COLOR_YELLOW, COLOR_BLACK, false);
129 DLG_COLOR(menubox_border, COLOR_BLACK, COLOR_BLACK, true);
130
131 DLG_COLOR(item, COLOR_WHITE, COLOR_BLACK, false);
132 DLG_COLOR(item_selected, COLOR_WHITE, COLOR_RED, false);
133
134 DLG_COLOR(tag, COLOR_RED, COLOR_BLACK, false);
135 DLG_COLOR(tag_selected, COLOR_YELLOW, COLOR_RED, true);
136 DLG_COLOR(tag_key, COLOR_RED, COLOR_BLACK, false);
137 DLG_COLOR(tag_key_selected, COLOR_YELLOW, COLOR_RED, true);
138
139 DLG_COLOR(check, COLOR_YELLOW, COLOR_BLACK, false);
140 DLG_COLOR(check_selected, COLOR_YELLOW, COLOR_RED, true);
141
142 DLG_COLOR(uarrow, COLOR_RED, COLOR_BLACK, false);
143 DLG_COLOR(darrow, COLOR_RED, COLOR_BLACK, false);
144}
145
Sam Ravnborg350b5b72006-07-24 22:19:51 +0200146static void set_bluetitle_theme(void)
147{
148 set_classic_theme();
149 DLG_COLOR(title, COLOR_BLUE, COLOR_WHITE, true);
150 DLG_COLOR(button_key_active, COLOR_YELLOW, COLOR_BLUE, true);
151 DLG_COLOR(button_label_active, COLOR_WHITE, COLOR_BLUE, true);
152 DLG_COLOR(searchbox_title, COLOR_BLUE, COLOR_WHITE, true);
153 DLG_COLOR(position_indicator, COLOR_BLUE, COLOR_WHITE, true);
154 DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true);
155 DLG_COLOR(tag_key, COLOR_BLUE, COLOR_WHITE, true);
156
157}
158
Sam Ravnborg45897212006-07-24 22:04:04 +0200159/*
160 * Select color theme
161 */
162static int set_theme(const char *theme)
163{
164 int use_color = 1;
165 if (!theme)
Sam Ravnborg350b5b72006-07-24 22:19:51 +0200166 set_bluetitle_theme();
Sam Ravnborg45897212006-07-24 22:04:04 +0200167 else if (strcmp(theme, "classic") == 0)
168 set_classic_theme();
Sam Ravnborg350b5b72006-07-24 22:19:51 +0200169 else if (strcmp(theme, "bluetitle") == 0)
170 set_bluetitle_theme();
Sam Ravnborg45897212006-07-24 22:04:04 +0200171 else if (strcmp(theme, "blackbg") == 0)
172 set_blackbg_theme();
173 else if (strcmp(theme, "mono") == 0)
174 use_color = 0;
175
176 return use_color;
177}
178
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200179static void init_one_color(struct dialog_color *color)
180{
181 static int pair = 0;
182
183 pair++;
184 init_pair(pair, color->fg, color->bg);
185 if (color->hl)
186 color->atr = A_BOLD | COLOR_PAIR(pair);
187 else
188 color->atr = COLOR_PAIR(pair);
189}
190
191static void init_dialog_colors(void)
192{
193 init_one_color(&dlg.screen);
194 init_one_color(&dlg.shadow);
195 init_one_color(&dlg.dialog);
196 init_one_color(&dlg.title);
197 init_one_color(&dlg.border);
198 init_one_color(&dlg.button_active);
199 init_one_color(&dlg.button_inactive);
200 init_one_color(&dlg.button_key_active);
201 init_one_color(&dlg.button_key_inactive);
202 init_one_color(&dlg.button_label_active);
203 init_one_color(&dlg.button_label_inactive);
204 init_one_color(&dlg.inputbox);
205 init_one_color(&dlg.inputbox_border);
206 init_one_color(&dlg.searchbox);
207 init_one_color(&dlg.searchbox_title);
208 init_one_color(&dlg.searchbox_border);
209 init_one_color(&dlg.position_indicator);
210 init_one_color(&dlg.menubox);
211 init_one_color(&dlg.menubox_border);
212 init_one_color(&dlg.item);
213 init_one_color(&dlg.item_selected);
214 init_one_color(&dlg.tag);
215 init_one_color(&dlg.tag_selected);
216 init_one_color(&dlg.tag_key);
217 init_one_color(&dlg.tag_key_selected);
218 init_one_color(&dlg.check);
219 init_one_color(&dlg.check_selected);
220 init_one_color(&dlg.uarrow);
221 init_one_color(&dlg.darrow);
222}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Sam Ravnborgdec69da2005-11-19 21:56:20 +0100224/*
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200225 * Setup for color display
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Sam Ravnborg45897212006-07-24 22:04:04 +0200227static void color_setup(const char *theme)
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200228{
Roman Zippelc1543482006-11-25 11:09:32 -0800229 int use_color;
230
231 use_color = set_theme(theme);
232 if (use_color && has_colors()) {
233 start_color();
234 init_dialog_colors();
235 } else
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200236 set_mono_theme();
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239/*
240 * Set window to attribute 'attr'
241 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100242void attr_clear(WINDOW * win, int height, int width, chtype attr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100244 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100246 wattrset(win, attr);
247 for (i = 0; i < height; i++) {
248 wmove(win, i, 0);
249 for (j = 0; j < width; j++)
250 waddch(win, ' ');
251 }
252 touchwin(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100255void dialog_clear(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256{
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200257 attr_clear(stdscr, LINES, COLS, dlg.screen.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100258 /* Display background title if it exists ... - SLH */
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200259 if (dlg.backtitle != NULL) {
Benjamin Poirier9a69abf2013-04-16 10:07:23 -0400260 int i, len = 0, skip = 0;
261 struct subtitle_list *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200263 wattrset(stdscr, dlg.screen.atr);
264 mvwaddstr(stdscr, 0, 1, (char *)dlg.backtitle);
Benjamin Poirier9a69abf2013-04-16 10:07:23 -0400265
266 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) {
267 /* 3 is for the arrow and spaces */
268 len += strlen(pos->text) + 3;
269 }
270
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100271 wmove(stdscr, 1, 1);
Benjamin Poirier9a69abf2013-04-16 10:07:23 -0400272 if (len > COLS - 2) {
273 const char *ellipsis = "[...] ";
274 waddstr(stdscr, ellipsis);
275 skip = len - (COLS - 2 - strlen(ellipsis));
276 }
277
278 for (pos = dlg.subtitles; pos != NULL; pos = pos->next) {
279 if (skip == 0)
280 waddch(stdscr, ACS_RARROW);
281 else
282 skip--;
283
284 if (skip == 0)
285 waddch(stdscr, ' ');
286 else
287 skip--;
288
289 if (skip < strlen(pos->text)) {
290 waddstr(stdscr, pos->text + skip);
291 skip = 0;
292 } else
293 skip -= strlen(pos->text);
294
295 if (skip == 0)
296 waddch(stdscr, ' ');
297 else
298 skip--;
299 }
300
301 for (i = len + 1; i < COLS - 1; i++)
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100302 waddch(stdscr, ACS_HLINE);
303 }
304 wnoutrefresh(stdscr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/*
308 * Do some initialization for dialog
309 */
Ladislav Michl09af0912007-12-17 19:07:41 +0100310int init_dialog(const char *backtitle)
Sam Ravnborg2982de62006-07-27 22:10:27 +0200311{
Ladislav Michl09af0912007-12-17 19:07:41 +0100312 int height, width;
313
314 initscr(); /* Init curses */
Dirk Gouders3eb95c82012-08-06 16:48:23 +0200315
316 /* Get current cursor position for signal handler in mconf.c */
317 getyx(stdscr, saved_y, saved_x);
318
Ladislav Michl09af0912007-12-17 19:07:41 +0100319 getmaxyx(stdscr, height, width);
Sedat Dilek851f6652013-06-15 11:07:35 +0200320 if (height < WINDOW_HEIGTH_MIN || width < WINDOW_WIDTH_MIN) {
Ladislav Michl09af0912007-12-17 19:07:41 +0100321 endwin();
322 return -ERRDISPLAYTOOSMALL;
323 }
324
Sam Ravnborg2982de62006-07-27 22:10:27 +0200325 dlg.backtitle = backtitle;
326 color_setup(getenv("MENUCONFIG_COLOR"));
Ladislav Michl09af0912007-12-17 19:07:41 +0100327
328 keypad(stdscr, TRUE);
329 cbreak();
330 noecho();
331 dialog_clear();
332
333 return 0;
Sam Ravnborg2982de62006-07-27 22:10:27 +0200334}
335
Sam Ravnborg95e30f92007-03-18 10:48:46 +0100336void set_dialog_backtitle(const char *backtitle)
337{
338 dlg.backtitle = backtitle;
339}
340
Benjamin Poirier9a69abf2013-04-16 10:07:23 -0400341void set_dialog_subtitles(struct subtitle_list *subtitles)
342{
343 dlg.subtitles = subtitles;
344}
345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * End using dialog functions.
348 */
Ladislav Michl09af0912007-12-17 19:07:41 +0100349void end_dialog(int x, int y)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Ladislav Michl09af0912007-12-17 19:07:41 +0100351 /* move cursor back to original position */
352 move(y, x);
353 refresh();
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100354 endwin();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100357/* Print the title of the dialog. Center the title and truncate
358 * tile if wider than dialog (- 2 chars).
359 **/
360void print_title(WINDOW *dialog, const char *title, int width)
361{
362 if (title) {
363 int tlen = MIN(width - 2, strlen(title));
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200364 wattrset(dialog, dlg.title.atr);
Sam Ravnborgfa7009d2005-11-19 23:38:06 +0100365 mvwaddch(dialog, 0, (width - tlen) / 2 - 1, ' ');
366 mvwaddnstr(dialog, 0, (width - tlen)/2, title, tlen);
367 waddch(dialog, ' ');
368 }
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371/*
372 * Print a string of text in a window, automatically wrap around to the
373 * next line if the string is too long to fit on one line. Newline
Dirk Gouders13763912013-05-08 17:29:42 +0200374 * characters '\n' are propperly processed. We start on a new line
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * if there is no room for at least 4 nonblanks following a double-space.
376 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100377void print_autowrap(WINDOW * win, const char *prompt, int width, int y, int x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100379 int newl, cur_x, cur_y;
Dirk Gouders13763912013-05-08 17:29:42 +0200380 int prompt_len, room, wlen;
381 char tempstr[MAX_LEN + 1], *word, *sp, *sp2, *newline_separator = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100383 strcpy(tempstr, prompt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100385 prompt_len = strlen(tempstr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100387 if (prompt_len <= width - x * 2) { /* If prompt is short */
388 wmove(win, y, (width - prompt_len) / 2);
389 waddstr(win, tempstr);
390 } else {
391 cur_x = x;
392 cur_y = y;
393 newl = 1;
394 word = tempstr;
395 while (word && *word) {
Dirk Gouders13763912013-05-08 17:29:42 +0200396 sp = strpbrk(word, "\n ");
397 if (sp && *sp == '\n')
398 newline_separator = sp;
399
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100400 if (sp)
401 *sp++ = 0;
402
403 /* Wrap to next line if either the word does not fit,
404 or it is the first word of a new sentence, and it is
405 short, and the next word does not fit. */
406 room = width - cur_x;
407 wlen = strlen(word);
408 if (wlen > room ||
409 (newl && wlen < 4 && sp
410 && wlen + 1 + strlen(sp) > room
Dirk Gouders13763912013-05-08 17:29:42 +0200411 && (!(sp2 = strpbrk(sp, "\n "))
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100412 || wlen + 1 + (sp2 - sp) > room))) {
413 cur_y++;
414 cur_x = x;
415 }
416 wmove(win, cur_y, cur_x);
417 waddstr(win, word);
418 getyx(win, cur_y, cur_x);
Dirk Gouders13763912013-05-08 17:29:42 +0200419
420 /* Move to the next line if the word separator was a newline */
421 if (newline_separator) {
422 cur_y++;
423 cur_x = x;
424 newline_separator = 0;
425 } else
426 cur_x++;
427
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100428 if (sp && *sp == ' ') {
429 cur_x++; /* double space */
430 while (*++sp == ' ') ;
431 newl = 1;
432 } else
433 newl = 0;
434 word = sp;
435 }
436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
439/*
440 * Print a button
441 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100442void print_button(WINDOW * win, const char *label, int y, int x, int selected)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100444 int i, temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100446 wmove(win, y, x);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200447 wattrset(win, selected ? dlg.button_active.atr
448 : dlg.button_inactive.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100449 waddstr(win, "<");
450 temp = strspn(label, " ");
451 label += temp;
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200452 wattrset(win, selected ? dlg.button_label_active.atr
453 : dlg.button_label_inactive.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100454 for (i = 0; i < temp; i++)
455 waddch(win, ' ');
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200456 wattrset(win, selected ? dlg.button_key_active.atr
457 : dlg.button_key_inactive.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100458 waddch(win, label[0]);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200459 wattrset(win, selected ? dlg.button_label_active.atr
460 : dlg.button_label_inactive.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100461 waddstr(win, (char *)label + 1);
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200462 wattrset(win, selected ? dlg.button_active.atr
463 : dlg.button_inactive.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100464 waddstr(win, ">");
465 wmove(win, y, x + temp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
468/*
469 * Draw a rectangular box with line drawing characters
470 */
471void
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100472draw_box(WINDOW * win, int y, int x, int height, int width,
473 chtype box, chtype border)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100475 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100477 wattrset(win, 0);
478 for (i = 0; i < height; i++) {
479 wmove(win, y + i, x);
480 for (j = 0; j < width; j++)
481 if (!i && !j)
482 waddch(win, border | ACS_ULCORNER);
483 else if (i == height - 1 && !j)
484 waddch(win, border | ACS_LLCORNER);
485 else if (!i && j == width - 1)
486 waddch(win, box | ACS_URCORNER);
487 else if (i == height - 1 && j == width - 1)
488 waddch(win, box | ACS_LRCORNER);
489 else if (!i)
490 waddch(win, border | ACS_HLINE);
491 else if (i == height - 1)
492 waddch(win, box | ACS_HLINE);
493 else if (!j)
494 waddch(win, border | ACS_VLINE);
495 else if (j == width - 1)
496 waddch(win, box | ACS_VLINE);
497 else
498 waddch(win, box | ' ');
499 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/*
503 * Draw shadows along the right and bottom edge to give a more 3D look
504 * to the boxes
505 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100506void draw_shadow(WINDOW * win, int y, int x, int height, int width)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100508 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100510 if (has_colors()) { /* Whether terminal supports color? */
Sam Ravnborg98e5a152006-07-24 21:40:46 +0200511 wattrset(win, dlg.shadow.atr);
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100512 wmove(win, y + height, x + 2);
513 for (i = 0; i < width; i++)
514 waddch(win, winch(win) & A_CHARTEXT);
515 for (i = y + 1; i < y + height + 1; i++) {
516 wmove(win, i, x + width);
517 waddch(win, winch(win) & A_CHARTEXT);
518 waddch(win, winch(win) & A_CHARTEXT);
519 }
520 wnoutrefresh(win);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/*
525 * Return the position of the first alphabetic character in a string.
526 */
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100527int first_alpha(const char *string, const char *exempt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100529 int i, in_paren = 0, c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
531 for (i = 0; i < strlen(string); i++) {
532 c = tolower(string[i]);
533
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100534 if (strchr("<[(", c))
535 ++in_paren;
536 if (strchr(">])", c) && in_paren > 0)
537 --in_paren;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Sam Ravnborgb1c5f1c2005-11-19 19:13:34 +0100539 if ((!in_paren) && isalpha(c) && strchr(exempt, c) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return i;
541 }
542
543 return 0;
544}
Sam Ravnborg2982de62006-07-27 22:10:27 +0200545
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200546/*
547 * ncurses uses ESC to detect escaped char sequences. This resutl in
548 * a small timeout before ESC is actually delivered to the application.
549 * lxdialog suggest <ESC> <ESC> which is correctly translated to two
550 * times esc. But then we need to ignore the second esc to avoid stepping
551 * out one menu too much. Filter away all escaped key sequences since
552 * keypad(FALSE) turn off ncurses support for escape sequences - and thats
553 * needed to make notimeout() do as expected.
554 */
555int on_key_esc(WINDOW *win)
556{
557 int key;
558 int key2;
559 int key3;
560
561 nodelay(win, TRUE);
562 keypad(win, FALSE);
563 key = wgetch(win);
564 key2 = wgetch(win);
565 do {
566 key3 = wgetch(win);
567 } while (key3 != ERR);
568 nodelay(win, FALSE);
569 keypad(win, TRUE);
570 if (key == KEY_ESC && key2 == ERR)
571 return KEY_ESC;
572 else if (key != ERR && key != KEY_ESC && key2 == ERR)
573 ungetch(key);
574
575 return -1;
576}
577
Sam Ravnborgc8dc68a2006-07-29 22:48:57 +0200578/* redraw screen in new size */
579int on_key_resize(void)
580{
581 dialog_clear();
582 return KEY_RESIZE;
583}
Sam Ravnborgf3cbcdc2006-07-28 23:57:48 +0200584
Sam Ravnborg2982de62006-07-27 22:10:27 +0200585struct dialog_list *item_cur;
586struct dialog_list item_nil;
587struct dialog_list *item_head;
588
589void item_reset(void)
590{
591 struct dialog_list *p, *next;
592
593 for (p = item_head; p; p = next) {
594 next = p->next;
595 free(p);
596 }
597 item_head = NULL;
598 item_cur = &item_nil;
599}
600
601void item_make(const char *fmt, ...)
602{
603 va_list ap;
604 struct dialog_list *p = malloc(sizeof(*p));
605
606 if (item_head)
607 item_cur->next = p;
608 else
609 item_head = p;
610 item_cur = p;
611 memset(p, 0, sizeof(*p));
612
613 va_start(ap, fmt);
614 vsnprintf(item_cur->node.str, sizeof(item_cur->node.str), fmt, ap);
615 va_end(ap);
616}
617
618void item_add_str(const char *fmt, ...)
619{
620 va_list ap;
621 size_t avail;
622
623 avail = sizeof(item_cur->node.str) - strlen(item_cur->node.str);
624
625 va_start(ap, fmt);
626 vsnprintf(item_cur->node.str + strlen(item_cur->node.str),
627 avail, fmt, ap);
628 item_cur->node.str[sizeof(item_cur->node.str) - 1] = '\0';
629 va_end(ap);
630}
631
632void item_set_tag(char tag)
633{
634 item_cur->node.tag = tag;
635}
636void item_set_data(void *ptr)
637{
638 item_cur->node.data = ptr;
639}
640
641void item_set_selected(int val)
642{
643 item_cur->node.selected = val;
644}
645
646int item_activate_selected(void)
647{
648 item_foreach()
649 if (item_is_selected())
650 return 1;
651 return 0;
652}
653
654void *item_data(void)
655{
656 return item_cur->node.data;
657}
658
659char item_tag(void)
660{
661 return item_cur->node.tag;
662}
663
664int item_count(void)
665{
666 int n = 0;
667 struct dialog_list *p;
668
669 for (p = item_head; p; p = p->next)
670 n++;
671 return n;
672}
673
674void item_set(int n)
675{
676 int i = 0;
677 item_foreach()
678 if (i++ == n)
679 return;
680}
681
682int item_n(void)
683{
684 int n = 0;
685 struct dialog_list *p;
686
687 for (p = item_head; p; p = p->next) {
688 if (p == item_cur)
689 return n;
690 n++;
691 }
692 return 0;
693}
694
695const char *item_str(void)
696{
697 return item_cur->node.str;
698}
699
700int item_is_selected(void)
701{
702 return (item_cur->node.selected != 0);
703}
704
705int item_is_tag(char tag)
706{
707 return (item_cur->node.tag == tag);
708}