Blame view

scripts/kconfig/nconf.gui.c 14.7 KB
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  /*
   * Copyright (C) 2008 Nir Tzachar <nir.tzachar@gmail.com?
   * Released under the terms of the GNU GPL v2.0.
   *
   * Derived from menuconfig.
   *
   */
  #include "nconf.h"
  
  /* a list of all the different widgets we use */
  attributes_t attributes[ATTR_MAX+1] = {0};
  
  /* available colors:
     COLOR_BLACK   0
     COLOR_RED     1
     COLOR_GREEN   2
     COLOR_YELLOW  3
     COLOR_BLUE    4
     COLOR_MAGENTA 5
     COLOR_CYAN    6
     COLOR_WHITE   7
     */
851190c93   Michal Marek   nconfig: mark loc...
23
  static void set_normal_colors(void)
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  {
  	init_pair(NORMAL, -1, -1);
  	init_pair(MAIN_HEADING, COLOR_MAGENTA, -1);
  
  	/* FORE is for the selected item */
  	init_pair(MAIN_MENU_FORE, -1, -1);
  	/* BACK for all the rest */
  	init_pair(MAIN_MENU_BACK, -1, -1);
  	init_pair(MAIN_MENU_GREY, -1, -1);
  	init_pair(MAIN_MENU_HEADING, COLOR_GREEN, -1);
  	init_pair(MAIN_MENU_BOX, COLOR_YELLOW, -1);
  
  	init_pair(SCROLLWIN_TEXT, -1, -1);
  	init_pair(SCROLLWIN_HEADING, COLOR_GREEN, -1);
  	init_pair(SCROLLWIN_BOX, COLOR_YELLOW, -1);
  
  	init_pair(DIALOG_TEXT, -1, -1);
  	init_pair(DIALOG_BOX, COLOR_YELLOW, -1);
  	init_pair(DIALOG_MENU_BACK, COLOR_YELLOW, -1);
  	init_pair(DIALOG_MENU_FORE, COLOR_RED, -1);
  
  	init_pair(INPUT_BOX, COLOR_YELLOW, -1);
  	init_pair(INPUT_HEADING, COLOR_GREEN, -1);
  	init_pair(INPUT_TEXT, -1, -1);
  	init_pair(INPUT_FIELD, -1, -1);
  
  	init_pair(FUNCTION_HIGHLIGHT, -1, -1);
c5ffa130f   Roland Eggner   nconf: function k...
51
  	init_pair(FUNCTION_TEXT, COLOR_YELLOW, -1);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
  }
  
  /* available attributes:
     A_NORMAL        Normal display (no highlight)
     A_STANDOUT      Best highlighting mode of the terminal.
     A_UNDERLINE     Underlining
     A_REVERSE       Reverse video
     A_BLINK         Blinking
     A_DIM           Half bright
     A_BOLD          Extra bright or bold
     A_PROTECT       Protected mode
     A_INVIS         Invisible or blank mode
     A_ALTCHARSET    Alternate character set
     A_CHARTEXT      Bit-mask to extract a character
     COLOR_PAIR(n)   Color-pair number n
     */
851190c93   Michal Marek   nconfig: mark loc...
68
  static void normal_color_theme(void)
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
  {
  	/* automatically add color... */
  #define mkattr(name, attr) do { \
  attributes[name] = attr | COLOR_PAIR(name); } while (0)
  	mkattr(NORMAL, NORMAL);
  	mkattr(MAIN_HEADING, A_BOLD | A_UNDERLINE);
  
  	mkattr(MAIN_MENU_FORE, A_REVERSE);
  	mkattr(MAIN_MENU_BACK, A_NORMAL);
  	mkattr(MAIN_MENU_GREY, A_NORMAL);
  	mkattr(MAIN_MENU_HEADING, A_BOLD);
  	mkattr(MAIN_MENU_BOX, A_NORMAL);
  
  	mkattr(SCROLLWIN_TEXT, A_NORMAL);
  	mkattr(SCROLLWIN_HEADING, A_BOLD);
  	mkattr(SCROLLWIN_BOX, A_BOLD);
  
  	mkattr(DIALOG_TEXT, A_BOLD);
  	mkattr(DIALOG_BOX, A_BOLD);
  	mkattr(DIALOG_MENU_FORE, A_STANDOUT);
  	mkattr(DIALOG_MENU_BACK, A_NORMAL);
  
  	mkattr(INPUT_BOX, A_NORMAL);
  	mkattr(INPUT_HEADING, A_BOLD);
  	mkattr(INPUT_TEXT, A_NORMAL);
  	mkattr(INPUT_FIELD, A_UNDERLINE);
  
  	mkattr(FUNCTION_HIGHLIGHT, A_BOLD);
  	mkattr(FUNCTION_TEXT, A_REVERSE);
  }
851190c93   Michal Marek   nconfig: mark loc...
99
  static void no_colors_theme(void)
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
  {
  	/* automatically add highlight, no color */
  #define mkattrn(name, attr) { attributes[name] = attr; }
  
  	mkattrn(NORMAL, NORMAL);
  	mkattrn(MAIN_HEADING, A_BOLD | A_UNDERLINE);
  
  	mkattrn(MAIN_MENU_FORE, A_STANDOUT);
  	mkattrn(MAIN_MENU_BACK, A_NORMAL);
  	mkattrn(MAIN_MENU_GREY, A_NORMAL);
  	mkattrn(MAIN_MENU_HEADING, A_BOLD);
  	mkattrn(MAIN_MENU_BOX, A_NORMAL);
  
  	mkattrn(SCROLLWIN_TEXT, A_NORMAL);
  	mkattrn(SCROLLWIN_HEADING, A_BOLD);
  	mkattrn(SCROLLWIN_BOX, A_BOLD);
  
  	mkattrn(DIALOG_TEXT, A_NORMAL);
  	mkattrn(DIALOG_BOX, A_BOLD);
  	mkattrn(DIALOG_MENU_FORE, A_STANDOUT);
  	mkattrn(DIALOG_MENU_BACK, A_NORMAL);
  
  	mkattrn(INPUT_BOX, A_BOLD);
  	mkattrn(INPUT_HEADING, A_BOLD);
  	mkattrn(INPUT_TEXT, A_NORMAL);
  	mkattrn(INPUT_FIELD, A_UNDERLINE);
  
  	mkattrn(FUNCTION_HIGHLIGHT, A_BOLD);
  	mkattrn(FUNCTION_TEXT, A_REVERSE);
  }
  
  void set_colors()
  {
  	start_color();
  	use_default_colors();
  	set_normal_colors();
  	if (has_colors()) {
  		normal_color_theme();
  	} else {
c24035b9e   Arnaud Lacombe   kbuild: fix typo
139
  		/* give defaults */
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  		no_colors_theme();
  	}
  }
  
  
  /* this changes the windows attributes !!! */
  void print_in_middle(WINDOW *win,
  		int starty,
  		int startx,
  		int width,
  		const char *string,
  		chtype color)
  {      int length, x, y;
  	float temp;
  
  
  	if (win == NULL)
  		win = stdscr;
  	getyx(win, y, x);
  	if (startx != 0)
  		x = startx;
  	if (starty != 0)
  		y = starty;
  	if (width == 0)
  		width = 80;
  
  	length = strlen(string);
  	temp = (width - length) / 2;
  	x = startx + (int)temp;
a72f3e2b8   Nir Tzachar   nconfig: add sear...
169
  	(void) wattrset(win, color);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
  	mvwprintw(win, y, x, "%s", string);
  	refresh();
  }
  
  int get_line_no(const char *text)
  {
  	int i;
  	int total = 1;
  
  	if (!text)
  		return 0;
  
  	for (i = 0; text[i] != '\0'; i++)
  		if (text[i] == '
  ')
  			total++;
  	return total;
  }
  
  const char *get_line(const char *text, int line_no)
  {
  	int i;
  	int lines = 0;
  
  	if (!text)
  		return 0;
  
  	for (i = 0; text[i] != '\0' && lines < line_no; i++)
  		if (text[i] == '
  ')
  			lines++;
  	return text+i;
  }
  
  int get_line_length(const char *line)
  {
  	int res = 0;
  	while (*line != '\0' && *line != '
  ') {
  		line++;
  		res++;
  	}
  	return res;
  }
  
  /* print all lines to the window. */
  void fill_window(WINDOW *win, const char *text)
  {
  	int x, y;
  	int total_lines = get_line_no(text);
  	int i;
  
  	getmaxyx(win, y, x);
  	/* do not go over end of line */
  	total_lines = min(total_lines, y);
  	for (i = 0; i < total_lines; i++) {
  		char tmp[x+10];
  		const char *line = get_line(text, i);
  		int len = get_line_length(line);
  		strncpy(tmp, line, min(len, x));
  		tmp[len] = '\0';
58f915a31   Stephen Boyd   nconfig: Fix segf...
231
  		mvwprintw(win, i, 0, "%s", tmp);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
  	}
  }
  
  /* get the message, and buttons.
   * each button must be a char*
   * return the selected button
   *
   * this dialog is used for 2 different things:
   * 1) show a text box, no buttons.
   * 2) show a dialog, with horizontal buttons
   */
  int btn_dialog(WINDOW *main_window, const char *msg, int btn_num, ...)
  {
  	va_list ap;
  	char *btn;
  	int btns_width = 0;
  	int msg_lines = 0;
  	int msg_width = 0;
  	int total_width;
  	int win_rows = 0;
  	WINDOW *win;
  	WINDOW *msg_win;
  	WINDOW *menu_win;
  	MENU *menu;
  	ITEM *btns[btn_num+1];
  	int i, x, y;
  	int res = -1;
  
  
  	va_start(ap, btn_num);
  	for (i = 0; i < btn_num; i++) {
  		btn = va_arg(ap, char *);
  		btns[i] = new_item(btn, "");
  		btns_width += strlen(btn)+1;
  	}
  	va_end(ap);
  	btns[btn_num] = NULL;
  
  	/* find the widest line of msg: */
  	msg_lines = get_line_no(msg);
  	for (i = 0; i < msg_lines; i++) {
  		const char *line = get_line(msg, i);
  		int len = get_line_length(line);
  		if (msg_width < len)
  			msg_width = len;
  	}
  
  	total_width = max(msg_width, btns_width);
  	/* place dialog in middle of screen */
e0b42605e   Dirk Gouders   nconf: use functi...
281
282
  	y = (getmaxy(stdscr)-(msg_lines+4))/2;
  	x = (getmaxx(stdscr)-(total_width+4))/2;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
  
  
  	/* create the windows */
  	if (btn_num > 0)
  		win_rows = msg_lines+4;
  	else
  		win_rows = msg_lines+2;
  
  	win = newwin(win_rows, total_width+4, y, x);
  	keypad(win, TRUE);
  	menu_win = derwin(win, 1, btns_width, win_rows-2,
  			1+(total_width+2-btns_width)/2);
  	menu = new_menu(btns);
  	msg_win = derwin(win, win_rows-2, msg_width, 1,
  			1+(total_width+2-msg_width)/2);
  
  	set_menu_fore(menu, attributes[DIALOG_MENU_FORE]);
  	set_menu_back(menu, attributes[DIALOG_MENU_BACK]);
a72f3e2b8   Nir Tzachar   nconfig: add sear...
301
  	(void) wattrset(win, attributes[DIALOG_BOX]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
302
303
304
  	box(win, 0, 0);
  
  	/* print message */
a72f3e2b8   Nir Tzachar   nconfig: add sear...
305
  	(void) wattrset(msg_win, attributes[DIALOG_TEXT]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
  	fill_window(msg_win, msg);
  
  	set_menu_win(menu, win);
  	set_menu_sub(menu, menu_win);
  	set_menu_format(menu, 1, btn_num);
  	menu_opts_off(menu, O_SHOWDESC);
  	menu_opts_off(menu, O_SHOWMATCH);
  	menu_opts_on(menu, O_ONEVALUE);
  	menu_opts_on(menu, O_NONCYCLIC);
  	set_menu_mark(menu, "");
  	post_menu(menu);
  
  
  	touchwin(win);
  	refresh_all_windows(main_window);
  	while ((res = wgetch(win))) {
  		switch (res) {
  		case KEY_LEFT:
  			menu_driver(menu, REQ_LEFT_ITEM);
  			break;
  		case KEY_RIGHT:
  			menu_driver(menu, REQ_RIGHT_ITEM);
  			break;
  		case 10: /* ENTER */
  		case 27: /* ESCAPE */
  		case ' ':
  		case KEY_F(F_BACK):
  		case KEY_F(F_EXIT):
  			break;
  		}
  		touchwin(win);
  		refresh_all_windows(main_window);
  
  		if (res == 10 || res == ' ') {
  			res = item_index(current_item(menu));
  			break;
  		} else if (res == 27 || res == KEY_F(F_BACK) ||
  				res == KEY_F(F_EXIT)) {
  			res = KEY_EXIT;
  			break;
  		}
  	}
  
  	unpost_menu(menu);
  	free_menu(menu);
  	for (i = 0; i < btn_num; i++)
  		free_item(btns[i]);
  
  	delwin(win);
  	return res;
  }
  
  int dialog_inputbox(WINDOW *main_window,
  		const char *title, const char *prompt,
5ea9f64ff   Cheng Renquan   scripts/kconfig/n...
360
  		const char *init, char **resultp, int *result_len)
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
361
362
363
364
365
366
367
  {
  	int prompt_lines = 0;
  	int prompt_width = 0;
  	WINDOW *win;
  	WINDOW *prompt_win;
  	WINDOW *form_win;
  	PANEL *panel;
d024532a9   Ben Hutchings   kconfig/nconf: Fi...
368
  	int i, x, y, lines, columns, win_lines, win_cols;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
369
370
  	int res = -1;
  	int cursor_position = strlen(init);
e631a57a1   Cheng Renquan   scripts/kconfig/n...
371
  	int cursor_form_win;
5ea9f64ff   Cheng Renquan   scripts/kconfig/n...
372
  	char *result = *resultp;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
373

d024532a9   Ben Hutchings   kconfig/nconf: Fi...
374
  	getmaxyx(stdscr, lines, columns);
5ea9f64ff   Cheng Renquan   scripts/kconfig/n...
375
376
377
378
  	if (strlen(init)+1 > *result_len) {
  		*result_len = strlen(init)+1;
  		*resultp = result = realloc(result, *result_len);
  	}
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
379
380
381
382
383
384
385
386
387
388
389
  
  	/* find the widest line of msg: */
  	prompt_lines = get_line_no(prompt);
  	for (i = 0; i < prompt_lines; i++) {
  		const char *line = get_line(prompt, i);
  		int len = get_line_length(line);
  		prompt_width = max(prompt_width, len);
  	}
  
  	if (title)
  		prompt_width = max(prompt_width, strlen(title));
d024532a9   Ben Hutchings   kconfig/nconf: Fi...
390
391
392
393
  	win_lines = min(prompt_lines+6, lines-2);
  	win_cols = min(prompt_width+7, columns-2);
  	prompt_lines = max(win_lines-6, 0);
  	prompt_width = max(win_cols-7, 0);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
394
  	/* place dialog in middle of screen */
d024532a9   Ben Hutchings   kconfig/nconf: Fi...
395
396
  	y = (lines-win_lines)/2;
  	x = (columns-win_cols)/2;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
397

5ea9f64ff   Cheng Renquan   scripts/kconfig/n...
398
  	strncpy(result, init, *result_len);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
399
400
  
  	/* create the windows */
d024532a9   Ben Hutchings   kconfig/nconf: Fi...
401
  	win = newwin(win_lines, win_cols, y, x);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
402
403
404
  	prompt_win = derwin(win, prompt_lines+1, prompt_width, 2, 2);
  	form_win = derwin(win, 1, prompt_width, prompt_lines+3, 2);
  	keypad(form_win, TRUE);
a72f3e2b8   Nir Tzachar   nconfig: add sear...
405
  	(void) wattrset(form_win, attributes[INPUT_FIELD]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
406

a72f3e2b8   Nir Tzachar   nconfig: add sear...
407
  	(void) wattrset(win, attributes[INPUT_BOX]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
408
  	box(win, 0, 0);
a72f3e2b8   Nir Tzachar   nconfig: add sear...
409
  	(void) wattrset(win, attributes[INPUT_HEADING]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
410
411
412
413
  	if (title)
  		mvwprintw(win, 0, 3, "%s", title);
  
  	/* print message */
a72f3e2b8   Nir Tzachar   nconfig: add sear...
414
  	(void) wattrset(prompt_win, attributes[INPUT_TEXT]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
415
416
417
  	fill_window(prompt_win, prompt);
  
  	mvwprintw(form_win, 0, 0, "%*s", prompt_width, " ");
e631a57a1   Cheng Renquan   scripts/kconfig/n...
418
419
420
  	cursor_form_win = min(cursor_position, prompt_width-1);
  	mvwprintw(form_win, 0, 0, "%s",
  		  result + cursor_position-cursor_form_win);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
  
  	/* create panels */
  	panel = new_panel(win);
  
  	/* show the cursor */
  	curs_set(1);
  
  	touchwin(win);
  	refresh_all_windows(main_window);
  	while ((res = wgetch(form_win))) {
  		int len = strlen(result);
  		switch (res) {
  		case 10: /* ENTER */
  		case 27: /* ESCAPE */
  		case KEY_F(F_HELP):
  		case KEY_F(F_EXIT):
  		case KEY_F(F_BACK):
  			break;
  		case 127:
  		case KEY_BACKSPACE:
  			if (cursor_position > 0) {
  				memmove(&result[cursor_position-1],
  						&result[cursor_position],
  						len-cursor_position+1);
  				cursor_position--;
e631a57a1   Cheng Renquan   scripts/kconfig/n...
446
447
  				cursor_form_win--;
  				len--;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
448
449
450
451
452
453
454
  			}
  			break;
  		case KEY_DC:
  			if (cursor_position >= 0 && cursor_position < len) {
  				memmove(&result[cursor_position],
  						&result[cursor_position+1],
  						len-cursor_position+1);
e631a57a1   Cheng Renquan   scripts/kconfig/n...
455
  				len--;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
456
457
458
459
  			}
  			break;
  		case KEY_UP:
  		case KEY_RIGHT:
e631a57a1   Cheng Renquan   scripts/kconfig/n...
460
  			if (cursor_position < len) {
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
461
  				cursor_position++;
e631a57a1   Cheng Renquan   scripts/kconfig/n...
462
463
  				cursor_form_win++;
  			}
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
464
465
466
  			break;
  		case KEY_DOWN:
  		case KEY_LEFT:
e631a57a1   Cheng Renquan   scripts/kconfig/n...
467
  			if (cursor_position > 0) {
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
468
  				cursor_position--;
e631a57a1   Cheng Renquan   scripts/kconfig/n...
469
470
  				cursor_form_win--;
  			}
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
471
  			break;
93072c3ec   Cheng Renquan   scripts/kconfig/n...
472
473
474
475
476
477
478
479
  		case KEY_HOME:
  			cursor_position = 0;
  			cursor_form_win = 0;
  			break;
  		case KEY_END:
  			cursor_position = len;
  			cursor_form_win = min(cursor_position, prompt_width-1);
  			break;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
480
  		default:
5ea9f64ff   Cheng Renquan   scripts/kconfig/n...
481
482
483
484
485
486
487
  			if ((isgraph(res) || isspace(res))) {
  				/* one for new char, one for '\0' */
  				if (len+2 > *result_len) {
  					*result_len = len+2;
  					*resultp = result = realloc(result,
  								*result_len);
  				}
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
488
489
490
  				/* insert the char at the proper position */
  				memmove(&result[cursor_position+1],
  						&result[cursor_position],
cd58a90fa   Cheng Renquan   scripts/kconfig/n...
491
  						len-cursor_position+1);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
492
493
  				result[cursor_position] = res;
  				cursor_position++;
e631a57a1   Cheng Renquan   scripts/kconfig/n...
494
495
  				cursor_form_win++;
  				len++;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
496
  			} else {
4e24dbfc2   Cheng Renquan   scripts/kconfig/n...
497
498
  				mvprintw(0, 0, "unknown key: %d
  ", res);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
499
500
501
  			}
  			break;
  		}
e631a57a1   Cheng Renquan   scripts/kconfig/n...
502
503
504
505
  		if (cursor_form_win < 0)
  			cursor_form_win = 0;
  		else if (cursor_form_win > prompt_width-1)
  			cursor_form_win = prompt_width-1;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
506
507
508
  		wmove(form_win, 0, 0);
  		wclrtoeol(form_win);
  		mvwprintw(form_win, 0, 0, "%*s", prompt_width, " ");
e631a57a1   Cheng Renquan   scripts/kconfig/n...
509
510
511
  		mvwprintw(form_win, 0, 0, "%s",
  			result + cursor_position-cursor_form_win);
  		wmove(form_win, 0, cursor_form_win);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
  		touchwin(win);
  		refresh_all_windows(main_window);
  
  		if (res == 10) {
  			res = 0;
  			break;
  		} else if (res == 27 || res == KEY_F(F_BACK) ||
  				res == KEY_F(F_EXIT)) {
  			res = KEY_EXIT;
  			break;
  		} else if (res == KEY_F(F_HELP)) {
  			res = 1;
  			break;
  		}
  	}
  
  	/* hide the cursor */
  	curs_set(0);
  	del_panel(panel);
  	delwin(prompt_win);
  	delwin(form_win);
  	delwin(win);
  	return res;
  }
  
  /* refresh all windows in the correct order */
  void refresh_all_windows(WINDOW *main_window)
  {
  	update_panels();
  	touchwin(main_window);
  	refresh();
  }
  
  /* layman's scrollable window... */
  void show_scroll_win(WINDOW *main_window,
  		const char *title,
  		const char *text)
  {
  	int res;
  	int total_lines = get_line_no(text);
e0b42605e   Dirk Gouders   nconf: use functi...
552
  	int x, y, lines, columns;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
553
554
555
556
557
558
559
560
561
  	int start_x = 0, start_y = 0;
  	int text_lines = 0, text_cols = 0;
  	int total_cols = 0;
  	int win_cols = 0;
  	int win_lines = 0;
  	int i = 0;
  	WINDOW *win;
  	WINDOW *pad;
  	PANEL *panel;
e0b42605e   Dirk Gouders   nconf: use functi...
562
  	getmaxyx(stdscr, lines, columns);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
563
564
565
566
567
568
569
570
571
572
  	/* find the widest line of msg: */
  	total_lines = get_line_no(text);
  	for (i = 0; i < total_lines; i++) {
  		const char *line = get_line(text, i);
  		int len = get_line_length(line);
  		total_cols = max(total_cols, len+2);
  	}
  
  	/* create the pad */
  	pad = newpad(total_lines+10, total_cols+10);
a72f3e2b8   Nir Tzachar   nconfig: add sear...
573
  	(void) wattrset(pad, attributes[SCROLLWIN_TEXT]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
574
  	fill_window(pad, text);
e0b42605e   Dirk Gouders   nconf: use functi...
575
576
  	win_lines = min(total_lines+4, lines-2);
  	win_cols = min(total_cols+2, columns-2);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
577
578
579
580
  	text_lines = max(win_lines-4, 0);
  	text_cols = max(win_cols-2, 0);
  
  	/* place window in middle of screen */
e0b42605e   Dirk Gouders   nconf: use functi...
581
582
  	y = (lines-win_lines)/2;
  	x = (columns-win_cols)/2;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
583
584
585
586
  
  	win = newwin(win_lines, win_cols, y, x);
  	keypad(win, TRUE);
  	/* show the help in the help window, and show the help panel */
a72f3e2b8   Nir Tzachar   nconfig: add sear...
587
  	(void) wattrset(win, attributes[SCROLLWIN_BOX]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
588
  	box(win, 0, 0);
a72f3e2b8   Nir Tzachar   nconfig: add sear...
589
  	(void) wattrset(win, attributes[SCROLLWIN_HEADING]);
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
  	mvwprintw(win, 0, 3, " %s ", title);
  	panel = new_panel(win);
  
  	/* handle scrolling */
  	do {
  
  		copywin(pad, win, start_y, start_x, 2, 2, text_lines,
  				text_cols, 0);
  		print_in_middle(win,
  				text_lines+2,
  				0,
  				text_cols,
  				"<OK>",
  				attributes[DIALOG_MENU_FORE]);
  		wrefresh(win);
  
  		res = wgetch(win);
  		switch (res) {
  		case KEY_NPAGE:
  		case ' ':
d68e818bc   Benjamin Poirier   nconf: add u, d c...
610
  		case 'd':
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
611
612
613
  			start_y += text_lines-2;
  			break;
  		case KEY_PPAGE:
d68e818bc   Benjamin Poirier   nconf: add u, d c...
614
  		case 'u':
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
  			start_y -= text_lines+2;
  			break;
  		case KEY_HOME:
  			start_y = 0;
  			break;
  		case KEY_END:
  			start_y = total_lines-text_lines;
  			break;
  		case KEY_DOWN:
  		case 'j':
  			start_y++;
  			break;
  		case KEY_UP:
  		case 'k':
  			start_y--;
  			break;
  		case KEY_LEFT:
  		case 'h':
  			start_x--;
  			break;
  		case KEY_RIGHT:
  		case 'l':
  			start_x++;
  			break;
  		}
d68e818bc   Benjamin Poirier   nconf: add u, d c...
640
641
642
  		if (res == 10 || res == 27 || res == 'q' ||
  			res == KEY_F(F_HELP) || res == KEY_F(F_BACK) ||
  			res == KEY_F(F_EXIT))
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
643
  			break;
692d97c38   nir.tzachar@gmail.com   kconfig: new conf...
644
645
646
647
648
649
650
651
652
653
654
655
656
657
  		if (start_y < 0)
  			start_y = 0;
  		if (start_y >= total_lines-text_lines)
  			start_y = total_lines-text_lines;
  		if (start_x < 0)
  			start_x = 0;
  		if (start_x >= total_cols-text_cols)
  			start_x = total_cols-text_cols;
  	} while (res);
  
  	del_panel(panel);
  	delwin(win);
  	refresh_all_windows(main_window);
  }