menu_sys.def revision 1.53 1 1.53 dsl /* $NetBSD: menu_sys.def,v 1.53 2004/02/29 23:13:23 dsl Exp $ */
2 1.1 phil
3 1.1 phil /*
4 1.1 phil * Copyright 1997 Piermont Information Systems Inc.
5 1.1 phil * All rights reserved.
6 1.1 phil *
7 1.1 phil * Written by Philip A. Nelson for Piermont Information Systems Inc.
8 1.1 phil *
9 1.1 phil * Redistribution and use in source and binary forms, with or without
10 1.1 phil * modification, are permitted provided that the following conditions
11 1.1 phil * are met:
12 1.1 phil * 1. Redistributions of source code must retain the above copyright
13 1.1 phil * notice, this list of conditions and the following disclaimer.
14 1.1 phil * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 phil * notice, this list of conditions and the following disclaimer in the
16 1.1 phil * documentation and/or other materials provided with the distribution.
17 1.1 phil * 3. All advertising materials mentioning features or use of this software
18 1.1 phil * must display the following acknowledgement:
19 1.1 phil * This product includes software develooped for the NetBSD Project by
20 1.1 phil * Piermont Information Systems Inc.
21 1.1 phil * 4. The name of Piermont Information Systems Inc. may not be used to endorse
22 1.1 phil * or promote products derived from this software without specific prior
23 1.1 phil * written permission.
24 1.1 phil *
25 1.1 phil * THIS SOFTWARE IS PROVIDED BY PIERMONT INFORMATION SYSTEMS INC. ``AS IS''
26 1.1 phil * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 phil * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 phil * ARE DISCLAIMED. IN NO EVENT SHALL PIERMONT INFORMATION SYSTEMS INC. BE
29 1.1 phil * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.1 phil * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.1 phil * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.1 phil * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.1 phil * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.1 phil * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
35 1.1 phil * THE POSSIBILITY OF SUCH DAMAGE.
36 1.1 phil *
37 1.1 phil */
38 1.1 phil
39 1.1 phil /* menu_sys.defs -- Menu system standard routines. */
40 1.1 phil
41 1.1 phil #include <string.h>
42 1.1 phil #include <ctype.h>
43 1.1 phil
44 1.3 phil #define REQ_EXECUTE 1000
45 1.3 phil #define REQ_NEXT_ITEM 1001
46 1.3 phil #define REQ_PREV_ITEM 1002
47 1.3 phil #define REQ_REDISPLAY 1003
48 1.9 phil #define REQ_SCROLLDOWN 1004
49 1.9 phil #define REQ_SCROLLUP 1005
50 1.9 phil #define REQ_HELP 1006
51 1.9 phil
52 1.9 phil /* Macros */
53 1.1 phil #define MAX(x,y) ((x)>(y)?(x):(y))
54 1.7 phil #define MIN(x,y) ((x)<(y)?(x):(y))
55 1.1 phil
56 1.1 phil /* Initialization state. */
57 1.1 phil static int __menu_init = 0;
58 1.1 phil int __m_endwin = 0;
59 1.17 cgd static int max_lines = 0, max_cols = 0;
60 1.48 dsl #ifndef scrolltext
61 1.44 dsl static const char *scrolltext = " <: page up, >: page down";
62 1.48 dsl #endif
63 1.1 phil
64 1.14 phil #ifdef DYNAMIC_MENUS
65 1.14 phil static int num_menus = 0;
66 1.14 phil #define DYN_INIT_NUM 32
67 1.52 dsl static menudesc **menu_list;
68 1.52 dsl #define MENUS(n) (*(menu_list[n]))
69 1.52 dsl #else
70 1.52 dsl #define MENUS(n) (menu_def[n])
71 1.14 phil #endif
72 1.14 phil
73 1.1 phil /* prototypes for in here! */
74 1.39 dsl static void init_menu(menudesc *m);
75 1.43 dsl static char opt_ch(menudesc *m, int op_no);
76 1.43 dsl static void draw_menu(menudesc *m, void *arg);
77 1.52 dsl static void process_help(menudesc *m);
78 1.52 dsl static void process_req(menudesc *m, void *arg, int req);
79 1.36 dsl static int menucmd(WINDOW *w);
80 1.1 phil
81 1.1 phil #ifndef NULL
82 1.36 dsl #define NULL 0
83 1.1 phil #endif
84 1.1 phil
85 1.1 phil /* menu system processing routines */
86 1.27 christos #define mbeep() (void)fputc('\a', stderr)
87 1.1 phil
88 1.23 hubertf static int
89 1.35 dsl menucmd(WINDOW *w)
90 1.1 phil {
91 1.1 phil int ch;
92 1.1 phil
93 1.1 phil while (TRUE) {
94 1.29 blymn ch = wgetch(w);
95 1.1 phil
96 1.1 phil switch (ch) {
97 1.1 phil case '\n':
98 1.1 phil return REQ_EXECUTE;
99 1.31 dsl case '\016': /* Control-P */
100 1.29 blymn case KEY_DOWN:
101 1.1 phil return REQ_NEXT_ITEM;
102 1.11 phil case '\020': /* Control-N */
103 1.29 blymn case KEY_UP:
104 1.1 phil return REQ_PREV_ITEM;
105 1.11 phil case '\014': /* Control-L */
106 1.36 dsl return REQ_REDISPLAY;
107 1.9 phil case '<':
108 1.11 phil case '\010': /* Control-H (backspace) */
109 1.29 blymn case KEY_PPAGE:
110 1.31 dsl case KEY_LEFT:
111 1.9 phil return REQ_SCROLLUP;
112 1.31 dsl case '\026': /* Control-V */
113 1.9 phil case '>':
114 1.11 phil case ' ':
115 1.29 blymn case KEY_NPAGE:
116 1.31 dsl case KEY_RIGHT:
117 1.9 phil return REQ_SCROLLDOWN;
118 1.9 phil case '?':
119 1.9 phil return REQ_HELP;
120 1.29 blymn case '\033': /* esc-v is scroll down */
121 1.29 blymn ch = wgetch(w);
122 1.29 blymn if (ch == 'v')
123 1.29 blymn return REQ_SCROLLUP;
124 1.29 blymn else
125 1.29 blymn ch = 0; /* zap char so we beep */
126 1.1 phil }
127 1.1 phil
128 1.9 phil if (isalpha(ch))
129 1.36 dsl return ch;
130 1.1 phil
131 1.1 phil mbeep();
132 1.1 phil wrefresh(w);
133 1.1 phil }
134 1.1 phil }
135 1.1 phil
136 1.23 hubertf static void
137 1.39 dsl init_menu(menudesc *m)
138 1.1 phil {
139 1.18 cgd int wmax;
140 1.18 cgd int hadd, wadd, exithadd;
141 1.14 phil int i;
142 1.50 dsl int x, y, w;
143 1.50 dsl const char *title, *tp, *ep;
144 1.1 phil
145 1.50 dsl x = m->x;
146 1.50 dsl y = m->y;
147 1.50 dsl w = m->w;
148 1.50 dsl wmax = 0;
149 1.18 cgd hadd = ((m->mopt & MC_NOBOX) ? 0 : 2);
150 1.18 cgd wadd = ((m->mopt & MC_NOBOX) ? 2 : 4);
151 1.18 cgd
152 1.40 dsl if (m->title && *(title = MSG_XLAT(m->title)) != 0) {
153 1.50 dsl /* Allow multiple line titles */
154 1.50 dsl for (tp = title; ep = strchr(tp, '\n'); tp = ep + 1) {
155 1.50 dsl i = ep - tp;
156 1.50 dsl wmax = MAX(wmax, i);
157 1.50 dsl hadd++;
158 1.50 dsl }
159 1.50 dsl hadd++;
160 1.50 dsl i = strlen(tp);
161 1.51 dsl wmax = MAX(wmax, i);
162 1.50 dsl if (i != 0)
163 1.50 dsl hadd++;
164 1.40 dsl } else {
165 1.40 dsl m->title = NULL;
166 1.40 dsl title = "untitled";
167 1.40 dsl }
168 1.18 cgd exithadd = ((m->mopt & MC_NOEXITOPT) ? 0 : 1);
169 1.18 cgd
170 1.47 dsl #ifdef MSG_DEFS_H
171 1.53 dsl if (y < 0) {
172 1.53 dsl /* put menu box below message text */
173 1.53 dsl y = -y;
174 1.53 dsl i = msg_row();
175 1.53 dsl if (i > y)
176 1.53 dsl y = i;
177 1.53 dsl }
178 1.47 dsl #endif
179 1.1 phil
180 1.7 phil /* Calculate h? h == number of visible options. */
181 1.38 dsl if (m->h == 0)
182 1.18 cgd m->h = m->numopts + exithadd;
183 1.50 dsl m->h = MIN(m->h, max_lines - y - hadd);
184 1.7 phil
185 1.48 dsl if (m->h < m->numopts + exithadd || m->mopt & MC_ALWAYS_SCROLL) {
186 1.48 dsl if (!(m->mopt & (MC_SCROLL | MC_ALWAYS_SCROLL)) || m->h < 3) {
187 1.7 phil endwin();
188 1.35 dsl (void)fprintf(stderr,
189 1.17 cgd "Window too short for menu \"%s\"\n",
190 1.40 dsl title);
191 1.7 phil exit(1);
192 1.7 phil }
193 1.38 dsl hadd++;
194 1.51 dsl m->h = MIN(m->h, max_lines - y - hadd);
195 1.51 dsl i = strlen(scrolltext);
196 1.51 dsl wmax = MAX(wmax, i);
197 1.51 dsl }
198 1.9 phil
199 1.1 phil /* Calculate w? */
200 1.50 dsl if (w == 0) {
201 1.49 dsl int l;
202 1.49 dsl for (i = 0; i < m->numopts; i++) {
203 1.49 dsl l = strlen(MSG_XLAT(m->opts[i].opt_name));
204 1.49 dsl if (!(m->mopt & MC_NOSHORTCUT))
205 1.49 dsl l += 3;
206 1.49 dsl wmax = MAX(wmax, l);
207 1.49 dsl }
208 1.50 dsl w = wmax;
209 1.1 phil }
210 1.1 phil
211 1.17 cgd /* check and adjust for screen fit */
212 1.50 dsl if (w + wadd > max_cols) {
213 1.17 cgd endwin();
214 1.35 dsl (void)fprintf(stderr,
215 1.40 dsl "Screen too narrow for menu \"%s\"\n", title);
216 1.17 cgd exit(1);
217 1.17 cgd
218 1.17 cgd }
219 1.50 dsl if (x == -1)
220 1.50 dsl x = (max_cols - (w + wadd)) / 2; /* center */
221 1.50 dsl else if (x + w + wadd > max_cols)
222 1.50 dsl x = max_cols - (w + wadd); /* right align */
223 1.17 cgd
224 1.1 phil /* Get the windows. */
225 1.50 dsl m->mw = newwin(m->h + hadd, w + wadd, y, x);
226 1.1 phil
227 1.1 phil if (m->mw == NULL) {
228 1.1 phil endwin();
229 1.35 dsl (void)fprintf(stderr,
230 1.42 dsl "Could not create window (%d + %d, %d + %d, %d, %d) for menu \"%s\"\n",
231 1.50 dsl m->h, hadd, w, wadd, y, x, title);
232 1.1 phil exit(1);
233 1.26 perry }
234 1.38 dsl keypad(m->mw, TRUE); /* enable multi-key assembling for win */
235 1.26 perry
236 1.26 perry /* XXX is it even worth doing this right? */
237 1.26 perry if (has_colors()) {
238 1.26 perry wbkgd(m->mw, COLOR_PAIR(1));
239 1.26 perry wattrset(m->mw, COLOR_PAIR(1));
240 1.26 perry }
241 1.1 phil }
242 1.1 phil
243 1.23 hubertf static char
244 1.43 dsl opt_ch(menudesc *m, int op_no)
245 1.14 phil {
246 1.14 phil char c;
247 1.43 dsl
248 1.43 dsl if (op_no == m->numopts)
249 1.43 dsl return 'x';
250 1.43 dsl
251 1.14 phil if (op_no < 25) {
252 1.14 phil c = 'a' + op_no;
253 1.35 dsl if (c >= 'x')
254 1.35 dsl c++;
255 1.14 phil } else
256 1.14 phil c = 'A' + op_no - 25;
257 1.35 dsl return c;
258 1.14 phil }
259 1.14 phil
260 1.23 hubertf static void
261 1.43 dsl draw_menu_line(menudesc *m, int opt, int cury, void *arg, const char *text)
262 1.36 dsl {
263 1.36 dsl int hasbox = m->mopt & MC_NOBOX ? 0 : 1;
264 1.36 dsl
265 1.43 dsl if (m->cursel == opt) {
266 1.36 dsl mvwaddstr(m->mw, cury, hasbox, ">");
267 1.36 dsl wstandout(m->mw);
268 1.36 dsl } else
269 1.36 dsl mvwaddstr(m->mw, cury, hasbox, " ");
270 1.36 dsl if (!(m->mopt & MC_NOSHORTCUT))
271 1.43 dsl wprintw(m->mw, "%c: ", opt_ch(m, opt));
272 1.43 dsl
273 1.43 dsl if (!text && m->draw_line)
274 1.43 dsl m->draw_line(m, opt, arg);
275 1.43 dsl else
276 1.43 dsl waddstr(m->mw, MSG_XLAT(text));
277 1.43 dsl if (m->cursel == opt)
278 1.36 dsl wstandend(m->mw);
279 1.36 dsl }
280 1.36 dsl
281 1.36 dsl static void
282 1.43 dsl draw_menu(menudesc *m, void *arg)
283 1.1 phil {
284 1.38 dsl int opt;
285 1.36 dsl int hasbox, cury, maxy;
286 1.1 phil int tadd;
287 1.45 dsl int hasexit = (m->mopt & MC_NOEXITOPT ? 0 : 1);
288 1.50 dsl const char *tp, *ep;
289 1.1 phil
290 1.50 dsl hasbox = (m->mopt & MC_NOBOX ? 0 : 1);
291 1.1 phil
292 1.9 phil /* Clear the window */
293 1.35 dsl wclear(m->mw);
294 1.9 phil
295 1.50 dsl tadd = hasbox;
296 1.40 dsl if (m->title) {
297 1.50 dsl for (tp = MSG_XLAT(m->title); ; tp = ep + 1) {
298 1.50 dsl ep = strchr(tp , '\n');
299 1.50 dsl mvwaddnstr(m->mw, tadd++, hasbox + 1, tp,
300 1.50 dsl ep ? ep - tp : -1);
301 1.50 dsl if (ep == NULL || *ep == 0)
302 1.50 dsl break;
303 1.50 dsl }
304 1.50 dsl tadd++;
305 1.50 dsl }
306 1.50 dsl
307 1.50 dsl cury = tadd;
308 1.50 dsl maxy = getmaxy(m->mw) - hasbox;
309 1.51 dsl if (m->numopts + hasexit > m->h)
310 1.51 dsl /* allow for scroll text */
311 1.51 dsl maxy--;
312 1.1 phil
313 1.39 dsl if (m->cursel == -1) {
314 1.39 dsl m->cursel = m->numopts;
315 1.39 dsl if (m->h <= m->numopts)
316 1.39 dsl m->topline = m->numopts + 1 - m->h;
317 1.39 dsl }
318 1.39 dsl
319 1.45 dsl while (m->cursel >= m->topline + m->h)
320 1.45 dsl m->topline = MIN(m->topline + m->h,
321 1.45 dsl m->numopts + hasexit - m->h);
322 1.45 dsl while (m->cursel < m->topline)
323 1.45 dsl m->topline = MAX(0, m->topline - m->h);
324 1.45 dsl
325 1.38 dsl for (opt = m->topline; opt < m->numopts; opt++) {
326 1.36 dsl if (cury >= maxy)
327 1.36 dsl break;
328 1.43 dsl draw_menu_line(m, opt, cury++, arg, m->opts[opt].opt_name);
329 1.1 phil }
330 1.7 phil
331 1.7 phil /* Add the exit option. */
332 1.38 dsl if (!(m->mopt & MC_NOEXITOPT)) {
333 1.38 dsl if (cury < maxy)
334 1.43 dsl draw_menu_line(m, m->numopts, cury++, arg, m->exitstr);
335 1.38 dsl else
336 1.38 dsl opt = 0;
337 1.38 dsl }
338 1.7 phil
339 1.7 phil /* Add the scroll line */
340 1.38 dsl if (opt != m->numopts || m->topline != 0)
341 1.35 dsl mvwaddstr(m->mw, cury, hasbox, scrolltext);
342 1.7 phil
343 1.7 phil /* Add the box. */
344 1.14 phil if (!(m->mopt & MC_NOBOX))
345 1.26 perry box(m->mw, 0, 0);
346 1.1 phil
347 1.50 dsl wmove(m->mw, tadd + m->cursel - m->topline, hasbox);
348 1.36 dsl wrefresh(m->mw);
349 1.1 phil }
350 1.1 phil
351 1.23 hubertf static void
352 1.30 christos /*ARGSUSED*/
353 1.52 dsl process_help(menudesc *m)
354 1.5 phil {
355 1.34 dsl const char *help = m->helpstr;
356 1.7 phil int lineoff = 0;
357 1.5 phil int curoff = 0;
358 1.5 phil int again;
359 1.7 phil int winin;
360 1.5 phil
361 1.6 phil /* Is there help? */
362 1.6 phil if (!help) {
363 1.6 phil mbeep();
364 1.6 phil return;
365 1.6 phil }
366 1.40 dsl help = MSG_XLAT(help);
367 1.6 phil
368 1.6 phil /* Display the help information. */
369 1.7 phil do {
370 1.5 phil if (lineoff < curoff) {
371 1.40 dsl help = MSG_XLAT(m->helpstr);
372 1.5 phil curoff = 0;
373 1.5 phil }
374 1.5 phil while (*help && curoff < lineoff) {
375 1.5 phil if (*help == '\n')
376 1.5 phil curoff++;
377 1.5 phil help++;
378 1.5 phil }
379 1.5 phil
380 1.5 phil wclear(stdscr);
381 1.35 dsl mvwaddstr(stdscr, 0, 0,
382 1.9 phil "Help: exit: x, page up: u <, page down: d >");
383 1.35 dsl mvwaddstr(stdscr, 2, 0, help);
384 1.35 dsl wmove(stdscr, 1, 0);
385 1.36 dsl wrefresh(stdscr);
386 1.5 phil
387 1.5 phil do {
388 1.29 blymn winin = wgetch(stdscr);
389 1.29 blymn if (winin < KEY_MIN)
390 1.9 phil winin = tolower(winin);
391 1.5 phil again = 0;
392 1.5 phil switch (winin) {
393 1.5 phil case '<':
394 1.5 phil case 'u':
395 1.29 blymn case KEY_UP:
396 1.29 blymn case KEY_LEFT:
397 1.29 blymn case KEY_PPAGE:
398 1.5 phil if (lineoff)
399 1.5 phil lineoff -= max_lines - 2;
400 1.7 phil else
401 1.7 phil again = 1;
402 1.5 phil break;
403 1.5 phil case '>':
404 1.5 phil case 'd':
405 1.29 blymn case KEY_DOWN:
406 1.29 blymn case KEY_RIGHT:
407 1.29 blymn case KEY_NPAGE:
408 1.5 phil if (*help)
409 1.5 phil lineoff += max_lines - 2;
410 1.7 phil else
411 1.7 phil again = 1;
412 1.5 phil break;
413 1.10 phil case 'q':
414 1.10 phil break;
415 1.9 phil case 'x':
416 1.10 phil winin = 'q';
417 1.5 phil break;
418 1.5 phil default:
419 1.5 phil again = 1;
420 1.5 phil }
421 1.9 phil if (again)
422 1.9 phil mbeep();
423 1.5 phil } while (again);
424 1.5 phil } while (winin != 'q');
425 1.5 phil }
426 1.5 phil
427 1.23 hubertf static void
428 1.52 dsl process_req(menudesc *m, void *arg, int req)
429 1.1 phil {
430 1.1 phil int ch;
431 1.35 dsl int hasexit = (m->mopt & MC_NOEXITOPT ? 0 : 1);
432 1.1 phil
433 1.35 dsl switch(req) {
434 1.35 dsl
435 1.35 dsl case REQ_EXECUTE:
436 1.1 phil return;
437 1.7 phil
438 1.35 dsl case REQ_NEXT_ITEM:
439 1.41 dsl ch = m->cursel;
440 1.41 dsl for (;;) {
441 1.41 dsl ch++;
442 1.41 dsl if (ch >= m->numopts + hasexit) {
443 1.41 dsl mbeep();
444 1.41 dsl return;
445 1.41 dsl }
446 1.41 dsl if (hasexit && ch == m->numopts)
447 1.41 dsl break;
448 1.43 dsl if (!(m->opts[ch].opt_flags & OPT_IGNORE))
449 1.41 dsl break;
450 1.35 dsl }
451 1.41 dsl m->cursel = ch;
452 1.48 dsl if (m->cursel >= m->topline + m->h)
453 1.41 dsl m->topline = m->cursel - m->h + 1;
454 1.35 dsl break;
455 1.7 phil
456 1.35 dsl case REQ_PREV_ITEM:
457 1.41 dsl ch = m->cursel;
458 1.41 dsl for (;;) {
459 1.41 dsl if (ch <= 0) {
460 1.41 dsl mbeep();
461 1.41 dsl return;
462 1.41 dsl }
463 1.41 dsl ch--;
464 1.43 dsl if (!(m->opts[ch].opt_flags & OPT_IGNORE))
465 1.41 dsl break;
466 1.35 dsl }
467 1.41 dsl m->cursel = ch;
468 1.35 dsl if (m->cursel < m->topline)
469 1.41 dsl m->topline = m->cursel;
470 1.35 dsl break;
471 1.3 phil
472 1.39 dsl case REQ_HELP:
473 1.52 dsl process_help(m);
474 1.39 dsl /* FALLTHROUGH */
475 1.39 dsl
476 1.35 dsl case REQ_REDISPLAY:
477 1.3 phil wclear(stdscr);
478 1.3 phil wrefresh(stdscr);
479 1.14 phil if (m->post_act)
480 1.39 dsl (*m->post_act)(m, arg);
481 1.35 dsl break;
482 1.7 phil
483 1.35 dsl case REQ_SCROLLUP:
484 1.35 dsl if (m->cursel == 0) {
485 1.7 phil mbeep();
486 1.35 dsl return;
487 1.7 phil }
488 1.36 dsl m->topline = MAX(0, m->topline - m->h);
489 1.36 dsl m->cursel = MAX(0, m->cursel - m->h);
490 1.35 dsl wclear(m->mw);
491 1.35 dsl break;
492 1.7 phil
493 1.35 dsl case REQ_SCROLLDOWN:
494 1.35 dsl if (m->cursel >= m->numopts + hasexit - 1) {
495 1.7 phil mbeep();
496 1.35 dsl return;
497 1.7 phil }
498 1.36 dsl m->topline = MIN(m->topline + m->h,
499 1.38 dsl MAX(m->numopts + hasexit - m->h, 0));
500 1.36 dsl m->cursel = MIN(m->numopts + hasexit - 1, m->cursel + m->h);
501 1.35 dsl wclear(m->mw);
502 1.35 dsl break;
503 1.7 phil
504 1.35 dsl default:
505 1.9 phil ch = req;
506 1.7 phil if (ch == 'x' && hasexit) {
507 1.1 phil m->cursel = m->numopts;
508 1.35 dsl break;
509 1.35 dsl }
510 1.35 dsl if (m->mopt & MC_NOSHORTCUT) {
511 1.35 dsl mbeep();
512 1.35 dsl return;
513 1.35 dsl }
514 1.35 dsl if (ch > 'z')
515 1.35 dsl ch = 255;
516 1.35 dsl if (ch >= 'a') {
517 1.35 dsl if (ch > 'x')
518 1.35 dsl ch--;
519 1.35 dsl ch = ch - 'a';
520 1.35 dsl } else
521 1.35 dsl ch = 25 + ch - 'A';
522 1.35 dsl if (ch < 0 || ch >= m->numopts) {
523 1.41 dsl mbeep();
524 1.41 dsl return;
525 1.41 dsl }
526 1.43 dsl if (m->opts[ch].opt_flags & OPT_IGNORE) {
527 1.35 dsl mbeep();
528 1.35 dsl return;
529 1.35 dsl }
530 1.35 dsl m->cursel = ch;
531 1.1 phil }
532 1.9 phil
533 1.43 dsl draw_menu(m, arg);
534 1.1 phil }
535 1.1 phil
536 1.23 hubertf int
537 1.35 dsl menu_init(void)
538 1.17 cgd {
539 1.52 dsl int i;
540 1.17 cgd
541 1.17 cgd if (__menu_init)
542 1.17 cgd return 0;
543 1.33 dsl
544 1.33 dsl #ifdef USER_MENU_INIT
545 1.33 dsl if (USER_MENU_INIT)
546 1.33 dsl return 1;
547 1.33 dsl #endif
548 1.17 cgd
549 1.17 cgd if (initscr() == NULL)
550 1.17 cgd return 1;
551 1.17 cgd
552 1.17 cgd cbreak();
553 1.17 cgd noecho();
554 1.26 perry
555 1.26 perry /* XXX Should be configurable but it almost isn't worth it. */
556 1.26 perry if (has_colors()) {
557 1.26 perry start_color();
558 1.26 perry init_pair(1, COLOR_WHITE, COLOR_BLUE);
559 1.26 perry bkgd(COLOR_PAIR(1));
560 1.26 perry attrset(COLOR_PAIR(1));
561 1.26 perry }
562 1.26 perry
563 1.17 cgd max_lines = getmaxy(stdscr);
564 1.17 cgd max_cols = getmaxx(stdscr);
565 1.29 blymn keypad(stdscr, TRUE);
566 1.17 cgd #ifdef DYNAMIC_MENUS
567 1.17 cgd num_menus = DYN_INIT_NUM;
568 1.17 cgd while (num_menus < DYN_MENU_START)
569 1.17 cgd num_menus *= 2;
570 1.52 dsl menu_list = malloc(sizeof *menu_list * num_menus);
571 1.52 dsl if (menu_list == NULL)
572 1.17 cgd return 2;
573 1.52 dsl (void)memset(menu_list, 0, sizeof *menu_list * num_menus);
574 1.52 dsl for (i = 0; i < DYN_MENU_START; i++)
575 1.52 dsl menu_list[i] = &menu_def[i];
576 1.17 cgd #endif
577 1.17 cgd
578 1.17 cgd __menu_init = 1;
579 1.36 dsl return 0;
580 1.17 cgd }
581 1.17 cgd
582 1.23 hubertf void
583 1.37 dsl process_menu(int num, void *arg)
584 1.1 phil {
585 1.1 phil int sel = 0;
586 1.50 dsl int req;
587 1.37 dsl menu_ent *opt;
588 1.1 phil
589 1.39 dsl menudesc *m;
590 1.14 phil
591 1.52 dsl m = &MENUS(num);
592 1.1 phil
593 1.1 phil /* Initialize? */
594 1.17 cgd if (menu_init()) {
595 1.17 cgd __menu_initerror();
596 1.17 cgd return;
597 1.1 phil }
598 1.17 cgd
599 1.1 phil if (__m_endwin) {
600 1.7 phil wclear(stdscr);
601 1.1 phil wrefresh(stdscr);
602 1.1 phil __m_endwin = 0;
603 1.1 phil }
604 1.1 phil
605 1.39 dsl /* Default to select option 0 and display from 0 */
606 1.7 phil m->topline = 0;
607 1.39 dsl if ((m->mopt & (MC_DFLTEXIT | MC_NOEXITOPT)) == MC_DFLTEXIT)
608 1.39 dsl m->cursel = -1;
609 1.39 dsl else
610 1.39 dsl m->cursel = 0;
611 1.1 phil
612 1.50 dsl for (;;) {
613 1.1 phil if (__m_endwin) {
614 1.1 phil wclear(stdscr);
615 1.1 phil wrefresh(stdscr);
616 1.1 phil __m_endwin = 0;
617 1.1 phil }
618 1.1 phil /* Process the display action */
619 1.14 phil if (m->post_act)
620 1.39 dsl (*m->post_act)(m, arg);
621 1.47 dsl if (m->mw == NULL)
622 1.47 dsl init_menu(m);
623 1.43 dsl draw_menu(m, arg);
624 1.1 phil
625 1.36 dsl while ((req = menucmd(m->mw)) != REQ_EXECUTE)
626 1.52 dsl process_req(m, arg, req);
627 1.1 phil
628 1.1 phil sel = m->cursel;
629 1.38 dsl if (!(m->mopt & MC_NOCLEAR)) {
630 1.38 dsl wclear(m->mw);
631 1.38 dsl wrefresh(m->mw);
632 1.38 dsl }
633 1.1 phil
634 1.1 phil /* Process the items */
635 1.50 dsl if (sel >= m->numopts)
636 1.50 dsl /* exit option */
637 1.50 dsl break;
638 1.50 dsl
639 1.50 dsl opt = &m->opts[sel];
640 1.50 dsl if (opt->opt_flags & OPT_IGNORE)
641 1.50 dsl continue;
642 1.50 dsl if (opt->opt_flags & OPT_ENDWIN) {
643 1.50 dsl endwin();
644 1.50 dsl __m_endwin = 1;
645 1.50 dsl }
646 1.50 dsl if (opt->opt_action && (*opt->opt_action)(m, arg))
647 1.50 dsl break;
648 1.50 dsl
649 1.50 dsl if (opt->opt_menu != -1) {
650 1.50 dsl if (!(opt->opt_flags & OPT_SUB)) {
651 1.50 dsl num = opt->opt_menu;
652 1.50 dsl delwin(m->mw);
653 1.50 dsl m->mw = NULL;
654 1.52 dsl m = &MENUS(num);
655 1.43 dsl continue;
656 1.14 phil }
657 1.50 dsl process_menu(opt->opt_menu, arg);
658 1.50 dsl }
659 1.50 dsl if (opt->opt_flags & OPT_EXIT)
660 1.50 dsl break;
661 1.1 phil }
662 1.1 phil
663 1.38 dsl if (m->mopt & MC_NOCLEAR) {
664 1.38 dsl wclear(m->mw);
665 1.38 dsl wrefresh(m->mw);
666 1.38 dsl }
667 1.38 dsl
668 1.1 phil /* Process the exit action */
669 1.14 phil if (m->exit_act)
670 1.39 dsl (*m->exit_act)(m, arg);
671 1.50 dsl delwin(m->mw);
672 1.50 dsl m->mw = NULL;
673 1.1 phil }
674 1.13 phil
675 1.52 dsl
676 1.52 dsl void
677 1.52 dsl set_menu_numopts(int menu, int numopts)
678 1.52 dsl {
679 1.52 dsl
680 1.52 dsl MENUS(menu).numopts = numopts;
681 1.52 dsl }
682 1.52 dsl
683 1.13 phil /* Control L is end of standard routines, remaining only for dynamic. */
685 1.13 phil
686 1.13 phil /* Beginning of routines for dynamic menus. */
687 1.24 phil
688 1.35 dsl static int
689 1.14 phil double_menus(void)
690 1.52 dsl {
691 1.52 dsl menudesc **temp;
692 1.14 phil int sz = sizeof *menu_list * num_menus;
693 1.52 dsl
694 1.14 phil temp = realloc(menu_list, sz * 2);
695 1.14 phil if (temp == NULL)
696 1.39 dsl return 0;
697 1.52 dsl (void)memset(temp + num_menus, 0, sz);
698 1.14 phil menu_list = temp;
699 1.14 phil num_menus *= 2;
700 1.14 phil
701 1.14 phil return 1;
702 1.14 phil }
703 1.23 hubertf
704 1.38 dsl int
705 1.24 phil new_menu(const char *title, menu_ent *opts, int numopts,
706 1.39 dsl int x, int y, int h, int w, int mopt,
707 1.43 dsl void (*post_act)(menudesc *, void *),
708 1.39 dsl void (*draw_line)(menudesc *, int, void *),
709 1.44 dsl void (*exit_act)(menudesc *, void *),
710 1.14 phil const char *help, const char *exit_str)
711 1.14 phil {
712 1.39 dsl int ix;
713 1.7 phil menudesc *m;
714 1.39 dsl
715 1.39 dsl /* Find free menu entry. */
716 1.46 takemura for (ix = DYN_MENU_START; ; ix++) {
717 1.14 phil if (ix >= num_menus && !double_menus())
718 1.52 dsl return -1;
719 1.52 dsl m = menu_list[ix];
720 1.52 dsl if (m == NULL) {
721 1.52 dsl m = calloc(sizeof *m, 1);
722 1.52 dsl if (m == NULL)
723 1.52 dsl return -1;
724 1.52 dsl menu_list[ix] = m;
725 1.52 dsl break;
726 1.52 dsl }
727 1.39 dsl if (!(m->mopt & MC_VALID))
728 1.39 dsl break;
729 1.14 phil }
730 1.14 phil
731 1.40 dsl /* Set Entries */
732 1.39 dsl m->title = title;
733 1.39 dsl m->opts = opts;
734 1.39 dsl m->numopts = numopts;
735 1.39 dsl m->x = x;
736 1.39 dsl m->y = y;
737 1.39 dsl m->h = h;
738 1.39 dsl m->w = w;
739 1.39 dsl m->mopt = mopt | MC_VALID;
740 1.43 dsl m->post_act = post_act;
741 1.39 dsl m->draw_line = draw_line;
742 1.39 dsl m->exit_act = exit_act;
743 1.44 dsl m->helpstr = help;
744 1.14 phil m->exitstr = exit_str ? exit_str : "Exit";
745 1.14 phil
746 1.14 phil return ix;
747 1.14 phil }
748 1.23 hubertf
749 1.35 dsl void
750 1.14 phil free_menu(int menu_no)
751 1.39 dsl {
752 1.39 dsl menudesc *m;
753 1.39 dsl
754 1.39 dsl if (menu_no < 0 || menu_no >= num_menus)
755 1.39 dsl return;
756 1.52 dsl
757 1.50 dsl m = menu_list[menu_no];
758 1.39 dsl if (!(m->mopt & MC_VALID))
759 1.39 dsl return;
760 1.39 dsl if (m->mw != NULL)
761 1.39 dsl delwin(m->mw);
762 1.39 dsl memset(m, 0, sizeof *m);
763 }
764