Home | History | Annotate | Line # | Download | only in menuc
menu_sys.def revision 1.56
      1  1.56  wrstuden /*	$NetBSD: menu_sys.def,v 1.56 2004/09/17 18:15:01 wrstuden 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.17       cgd static int max_lines = 0, max_cols = 0;
     59  1.48       dsl #ifndef scrolltext
     60  1.44       dsl static const char *scrolltext = " <: page up, >: page down";
     61  1.48       dsl #endif
     62   1.1      phil 
     63  1.14      phil #ifdef DYNAMIC_MENUS
     64  1.14      phil static int num_menus  = 0;
     65  1.14      phil #define DYN_INIT_NUM 32
     66  1.52       dsl static menudesc **menu_list;
     67  1.52       dsl #define MENUS(n) (*(menu_list[n]))
     68  1.52       dsl #else
     69  1.52       dsl #define MENUS(n) (menu_def[n])
     70  1.14      phil #endif
     71  1.14      phil 
     72   1.1      phil /* prototypes for in here! */
     73  1.39       dsl static void init_menu(menudesc *m);
     74  1.43       dsl static char opt_ch(menudesc *m, int op_no);
     75  1.43       dsl static void draw_menu(menudesc *m, void *arg);
     76  1.52       dsl static void process_help(menudesc *m);
     77  1.52       dsl static void process_req(menudesc *m, void *arg, int req);
     78  1.36       dsl static int menucmd(WINDOW *w);
     79   1.1      phil 
     80   1.1      phil #ifndef NULL
     81  1.36       dsl #define NULL 0
     82   1.1      phil #endif
     83   1.1      phil 
     84   1.1      phil /* menu system processing routines */
     85  1.27  christos #define mbeep() (void)fputc('\a', stderr)
     86   1.1      phil 
     87  1.23   hubertf static int
     88  1.35       dsl menucmd(WINDOW *w)
     89   1.1      phil {
     90   1.1      phil 	int ch;
     91   1.1      phil 
     92   1.1      phil 	while (TRUE) {
     93  1.29     blymn 		ch = wgetch(w);
     94   1.1      phil 
     95   1.1      phil 		switch (ch) {
     96   1.1      phil 		case '\n':
     97   1.1      phil 			return REQ_EXECUTE;
     98  1.31       dsl 		case '\016':  /* Control-P */
     99  1.29     blymn 		case KEY_DOWN:
    100   1.1      phil 			return REQ_NEXT_ITEM;
    101  1.11      phil 		case '\020':  /* Control-N */
    102  1.29     blymn 		case KEY_UP:
    103   1.1      phil 			return REQ_PREV_ITEM;
    104  1.11      phil 		case '\014':  /* Control-L */
    105  1.36       dsl 			return REQ_REDISPLAY;
    106   1.9      phil 		case '<':
    107  1.11      phil 		case '\010':  /* Control-H (backspace) */
    108  1.29     blymn 		case KEY_PPAGE:
    109  1.31       dsl 		case KEY_LEFT:
    110   1.9      phil 			return REQ_SCROLLUP;
    111  1.31       dsl 		case '\026':  /* Control-V */
    112   1.9      phil 		case '>':
    113  1.11      phil 		case ' ':
    114  1.29     blymn 		case KEY_NPAGE:
    115  1.31       dsl 		case KEY_RIGHT:
    116   1.9      phil 			return REQ_SCROLLDOWN;
    117   1.9      phil 		case '?':
    118   1.9      phil 			return REQ_HELP;
    119  1.29     blymn 		case '\033': /* esc-v is scroll down */
    120  1.29     blymn 			ch = wgetch(w);
    121  1.29     blymn 			if (ch == 'v')
    122  1.29     blymn 				return REQ_SCROLLUP;
    123  1.29     blymn 			else
    124  1.29     blymn 				ch = 0; /* zap char so we beep */
    125   1.1      phil 		}
    126   1.1      phil 
    127   1.9      phil 		if (isalpha(ch))
    128  1.36       dsl 			return ch;
    129   1.1      phil 
    130   1.1      phil 		mbeep();
    131   1.1      phil 		wrefresh(w);
    132   1.1      phil 	}
    133   1.1      phil }
    134   1.1      phil 
    135  1.23   hubertf static void
    136  1.39       dsl init_menu(menudesc *m)
    137   1.1      phil {
    138  1.18       cgd 	int wmax;
    139  1.18       cgd 	int hadd, wadd, exithadd;
    140  1.14      phil 	int i;
    141  1.50       dsl 	int x, y, w;
    142  1.50       dsl 	const char *title, *tp, *ep;
    143   1.1      phil 
    144  1.50       dsl 	x = m->x;
    145  1.50       dsl 	y = m->y;
    146  1.50       dsl 	w = m->w;
    147  1.50       dsl 	wmax = 0;
    148  1.18       cgd 	hadd = ((m->mopt & MC_NOBOX) ? 0 : 2);
    149  1.18       cgd 	wadd = ((m->mopt & MC_NOBOX) ? 2 : 4);
    150  1.18       cgd 
    151  1.40       dsl 	if (m->title && *(title = MSG_XLAT(m->title)) != 0) {
    152  1.50       dsl 		/* Allow multiple line titles */
    153  1.56  wrstuden 		for (tp = title; (ep = strchr(tp, '\n')); tp = ep + 1) {
    154  1.50       dsl 			i = ep - tp;
    155  1.50       dsl 			wmax = MAX(wmax, i);
    156  1.50       dsl 			hadd++;
    157  1.50       dsl 		}
    158  1.50       dsl 		hadd++;
    159  1.50       dsl 		i = strlen(tp);
    160  1.51       dsl 		wmax = MAX(wmax, i);
    161  1.50       dsl 		if (i != 0)
    162  1.50       dsl 			hadd++;
    163  1.40       dsl 	} else {
    164  1.40       dsl 		m->title = NULL;
    165  1.40       dsl 		title = "untitled";
    166  1.40       dsl 	}
    167  1.18       cgd 	exithadd = ((m->mopt & MC_NOEXITOPT) ? 0 : 1);
    168  1.18       cgd 
    169  1.47       dsl #ifdef MSG_DEFS_H
    170  1.53       dsl 	if (y < 0) {
    171  1.53       dsl 		/* put menu box below message text */
    172  1.53       dsl 		y = -y;
    173  1.53       dsl 		i = msg_row();
    174  1.53       dsl 		if (i > y)
    175  1.53       dsl 		    y = i;
    176  1.53       dsl 	}
    177  1.47       dsl #endif
    178   1.1      phil 
    179   1.7      phil 	/* Calculate h? h == number of visible options. */
    180  1.38       dsl 	if (m->h == 0)
    181  1.18       cgd 		m->h = m->numopts + exithadd;
    182  1.54       dsl 
    183  1.54       dsl 	if (m->h > max_lines - y - hadd) {
    184  1.54       dsl 		/* Not enough space for all the options */
    185  1.54       dsl 		if (m->h <= 4 || !(m->mopt & (MC_SCROLL | MC_ALWAYS_SCROLL))) {
    186  1.54       dsl 			/* move menu up screen */
    187  1.54       dsl 			y = max_lines - hadd - m->h;
    188  1.54       dsl 			if (y < 0)
    189  1.54       dsl 				y = 0;
    190  1.54       dsl 		}
    191  1.54       dsl 		m->h = max_lines - y - hadd;
    192  1.54       dsl 	}
    193   1.7      phil 
    194  1.48       dsl 	if (m->h < m->numopts + exithadd || m->mopt & MC_ALWAYS_SCROLL) {
    195  1.54       dsl 		/* We need to add the scroll text...
    196  1.54       dsl 		 * The used to be a check for MC_SCROLL here, but it is
    197  1.54       dsl 		 * fairly pointless - you just don't want the program
    198  1.54       dsl 		 * to exit on this sort of error.
    199  1.54       dsl 		 */
    200  1.54       dsl 		if (m->h < 3) {
    201   1.7      phil 			endwin();
    202  1.35       dsl 			(void)fprintf(stderr,
    203  1.54       dsl 				"Window too short (m->h %d, m->numopts %d, exithadd %d, y %d, max_lines %d, hadd %d) for menu \"%.30s\"\n",
    204  1.54       dsl 				m->h, m->numopts, exithadd, y, max_lines, hadd,
    205  1.40       dsl 				title);
    206   1.7      phil 			exit(1);
    207   1.7      phil 		}
    208  1.38       dsl 		hadd++;
    209  1.51       dsl 		m->h = MIN(m->h, max_lines - y - hadd);
    210  1.51       dsl 		i = strlen(scrolltext);
    211  1.51       dsl 		wmax = MAX(wmax, i);
    212  1.51       dsl 	}
    213   1.9      phil 
    214   1.1      phil 	/* Calculate w? */
    215  1.50       dsl 	if (w == 0) {
    216  1.49       dsl 		int l;
    217  1.49       dsl 		for (i = 0; i < m->numopts; i++) {
    218  1.49       dsl 			l = strlen(MSG_XLAT(m->opts[i].opt_name));
    219  1.49       dsl 			if (!(m->mopt & MC_NOSHORTCUT))
    220  1.49       dsl 				l += 3;
    221  1.49       dsl 			wmax = MAX(wmax, l);
    222  1.49       dsl 		}
    223  1.50       dsl 		w = wmax;
    224   1.1      phil 	}
    225   1.1      phil 
    226  1.17       cgd 	/* check and adjust for screen fit */
    227  1.50       dsl 	if (w + wadd > max_cols) {
    228  1.17       cgd 		endwin();
    229  1.35       dsl 		(void)fprintf(stderr,
    230  1.54       dsl 			"Screen too narrow (%d + %d > %d) for menu \"%s\"\n",
    231  1.54       dsl 				w, wadd, max_cols, title);
    232  1.17       cgd 		exit(1);
    233  1.17       cgd 
    234  1.17       cgd 	}
    235  1.54       dsl 
    236  1.50       dsl 	if (x == -1)
    237  1.50       dsl 		x = (max_cols - (w + wadd)) / 2;	/* center */
    238  1.50       dsl 	else if (x + w + wadd > max_cols)
    239  1.50       dsl 		x = max_cols - (w + wadd);	/* right align */
    240  1.17       cgd 
    241  1.54       dsl 	if (y == 0) {
    242  1.54       dsl 		/* Center - rather than top */
    243  1.54       dsl 		y = (max_lines - hadd - m->h) / 2;
    244  1.54       dsl 	}
    245  1.54       dsl 
    246   1.1      phil 	/* Get the windows. */
    247  1.50       dsl 	m->mw = newwin(m->h + hadd, w + wadd, y, x);
    248   1.1      phil 
    249   1.1      phil 	if (m->mw == NULL) {
    250   1.1      phil 		endwin();
    251  1.35       dsl 		(void)fprintf(stderr,
    252  1.42       dsl 			"Could not create window (%d + %d, %d + %d, %d, %d) for menu \"%s\"\n",
    253  1.50       dsl 			m->h, hadd, w, wadd, y, x, title);
    254   1.1      phil 		exit(1);
    255  1.26     perry 	}
    256  1.38       dsl 	keypad(m->mw, TRUE); /* enable multi-key assembling for win */
    257  1.26     perry 
    258  1.26     perry 	/* XXX is it even worth doing this right? */
    259  1.26     perry 	if (has_colors()) {
    260  1.26     perry 		wbkgd(m->mw, COLOR_PAIR(1));
    261  1.26     perry 		wattrset(m->mw, COLOR_PAIR(1));
    262  1.26     perry 	}
    263  1.54       dsl 
    264  1.54       dsl 	if (m->mopt & MC_SUBMENU) {
    265  1.54       dsl 		/* Keep a copy of what is on the screen under the window */
    266  1.55       dsl 		m->sv_mw = newwin(m->h + hadd, w + wadd, y, x);
    267  1.55       dsl 		/*
    268  1.55       dsl 		 * cursrc contains post-doupdate() data, not post-refresh()
    269  1.55       dsl 		 * data so we must call doupdate to ensure we save the
    270  1.55       dsl 		 * correct data.  Avoids PR 26660.
    271  1.55       dsl 		 */
    272  1.55       dsl 		doupdate();
    273  1.54       dsl 		if (m->sv_mw)
    274  1.54       dsl 			overwrite(curscr, m->sv_mw);
    275  1.54       dsl 	}
    276   1.1      phil }
    277   1.1      phil 
    278  1.23   hubertf static char
    279  1.43       dsl opt_ch(menudesc *m, int op_no)
    280  1.14      phil {
    281  1.14      phil 	char c;
    282  1.43       dsl 
    283  1.43       dsl 	if (op_no == m->numopts)
    284  1.43       dsl 		return 'x';
    285  1.43       dsl 
    286  1.14      phil 	if (op_no < 25) {
    287  1.14      phil 		c = 'a' + op_no;
    288  1.35       dsl 		if (c >= 'x')
    289  1.35       dsl 			c++;
    290  1.14      phil 	} else
    291  1.14      phil 		c = 'A' + op_no - 25;
    292  1.35       dsl 	return c;
    293  1.14      phil }
    294  1.14      phil 
    295  1.23   hubertf static void
    296  1.43       dsl draw_menu_line(menudesc *m, int opt, int cury, void *arg, const char *text)
    297  1.36       dsl {
    298  1.36       dsl 	int hasbox = m->mopt & MC_NOBOX ? 0 : 1;
    299  1.36       dsl 
    300  1.43       dsl 	if (m->cursel == opt) {
    301  1.36       dsl 		mvwaddstr(m->mw, cury, hasbox, ">");
    302  1.36       dsl 		wstandout(m->mw);
    303  1.36       dsl 	} else
    304  1.36       dsl 		mvwaddstr(m->mw, cury, hasbox, " ");
    305  1.36       dsl 	if (!(m->mopt & MC_NOSHORTCUT))
    306  1.43       dsl 		wprintw(m->mw, "%c: ", opt_ch(m, opt));
    307  1.43       dsl 
    308  1.43       dsl 	if (!text && m->draw_line)
    309  1.43       dsl 		m->draw_line(m, opt, arg);
    310  1.43       dsl 	else
    311  1.43       dsl 		waddstr(m->mw, MSG_XLAT(text));
    312  1.43       dsl 	if (m->cursel == opt)
    313  1.36       dsl 		wstandend(m->mw);
    314  1.36       dsl }
    315  1.36       dsl 
    316  1.36       dsl static void
    317  1.43       dsl draw_menu(menudesc *m, void *arg)
    318   1.1      phil {
    319  1.38       dsl 	int opt;
    320  1.36       dsl 	int hasbox, cury, maxy;
    321   1.1      phil 	int tadd;
    322  1.45       dsl 	int hasexit = (m->mopt & MC_NOEXITOPT ? 0 : 1);
    323  1.50       dsl 	const char *tp, *ep;
    324   1.1      phil 
    325  1.50       dsl 	hasbox = (m->mopt & MC_NOBOX ? 0 : 1);
    326   1.1      phil 
    327   1.9      phil 	/* Clear the window */
    328  1.35       dsl 	wclear(m->mw);
    329   1.9      phil 
    330  1.50       dsl 	tadd = hasbox;
    331  1.40       dsl 	if (m->title) {
    332  1.50       dsl 		for (tp = MSG_XLAT(m->title); ; tp = ep + 1) {
    333  1.50       dsl 			ep = strchr(tp , '\n');
    334  1.50       dsl 			mvwaddnstr(m->mw, tadd++, hasbox + 1, tp,
    335  1.50       dsl 			    ep ? ep - tp : -1);
    336  1.50       dsl 			if (ep == NULL || *ep == 0)
    337  1.50       dsl 				break;
    338  1.50       dsl 		}
    339  1.50       dsl 		tadd++;
    340  1.50       dsl 	}
    341  1.50       dsl 
    342  1.50       dsl 	cury = tadd;
    343  1.50       dsl 	maxy = getmaxy(m->mw) - hasbox;
    344  1.51       dsl 	if (m->numopts + hasexit > m->h)
    345  1.51       dsl 		/* allow for scroll text */
    346  1.51       dsl 		maxy--;
    347   1.1      phil 
    348  1.39       dsl 	if (m->cursel == -1) {
    349  1.39       dsl 		m->cursel = m->numopts;
    350  1.39       dsl 		if (m->h <= m->numopts)
    351  1.39       dsl 			m->topline = m->numopts + 1 - m->h;
    352  1.39       dsl 	}
    353  1.39       dsl 
    354  1.45       dsl 	while (m->cursel >= m->topline + m->h)
    355  1.45       dsl 		m->topline = MIN(m->topline + m->h,
    356  1.45       dsl 				 m->numopts + hasexit - m->h);
    357  1.45       dsl 	while (m->cursel < m->topline)
    358  1.45       dsl 		m->topline = MAX(0, m->topline - m->h);
    359  1.45       dsl 
    360  1.38       dsl 	for (opt = m->topline; opt < m->numopts; opt++) {
    361  1.36       dsl 		if (cury >= maxy)
    362  1.36       dsl 			break;
    363  1.43       dsl 		draw_menu_line(m, opt, cury++, arg, m->opts[opt].opt_name);
    364   1.1      phil 	}
    365   1.7      phil 
    366   1.7      phil 	/* Add the exit option. */
    367  1.38       dsl 	if (!(m->mopt & MC_NOEXITOPT)) {
    368  1.38       dsl 		if (cury < maxy)
    369  1.43       dsl 			draw_menu_line(m, m->numopts, cury++, arg, m->exitstr);
    370  1.38       dsl 		else
    371  1.38       dsl 			opt = 0;
    372  1.38       dsl 	}
    373   1.7      phil 
    374   1.7      phil 	/* Add the scroll line */
    375  1.38       dsl 	if (opt != m->numopts || m->topline != 0)
    376  1.35       dsl 		mvwaddstr(m->mw, cury, hasbox, scrolltext);
    377   1.7      phil 
    378   1.7      phil 	/* Add the box. */
    379  1.14      phil 	if (!(m->mopt & MC_NOBOX))
    380  1.26     perry 		box(m->mw, 0, 0);
    381   1.1      phil 
    382  1.50       dsl 	wmove(m->mw, tadd + m->cursel - m->topline, hasbox);
    383  1.36       dsl 	wrefresh(m->mw);
    384   1.1      phil }
    385   1.1      phil 
    386  1.54       dsl 
    387  1.23   hubertf static void
    388  1.30  christos /*ARGSUSED*/
    389  1.52       dsl process_help(menudesc *m)
    390   1.5      phil {
    391  1.34       dsl 	const char *help = m->helpstr;
    392  1.54       dsl 	WINDOW *sv_curscr;
    393   1.7      phil 	int lineoff = 0;
    394   1.5      phil 	int curoff = 0;
    395   1.5      phil 	int again;
    396   1.7      phil 	int winin;
    397   1.5      phil 
    398   1.6      phil 	/* Is there help? */
    399   1.6      phil 	if (!help) {
    400   1.6      phil 		mbeep();
    401   1.6      phil 		return;
    402   1.6      phil 	}
    403  1.54       dsl 	sv_curscr = newwin(getmaxy(curscr), getmaxx(curscr), 0, 0);
    404  1.54       dsl 	if (!sv_curscr) {
    405  1.54       dsl 		mbeep();
    406  1.54       dsl 		return;
    407  1.54       dsl 	}
    408  1.55       dsl 	/*
    409  1.55       dsl 	 * Save screen contents so we can restore before returning.
    410  1.55       dsl 	 * cursrc contains post-doupdate() data, not post-refresh()
    411  1.55       dsl 	 * data so we must call doupdate to ensure we save the
    412  1.55       dsl 	 * correct data.  Avoids PR 26660.
    413  1.55       dsl 	 */
    414  1.55       dsl 	doupdate();
    415  1.54       dsl 	overwrite(curscr, sv_curscr);
    416  1.54       dsl 	touchwin(stdscr);
    417  1.54       dsl 
    418  1.40       dsl 	help = MSG_XLAT(help);
    419   1.6      phil 	/* Display the help information. */
    420   1.7      phil 	do {
    421   1.5      phil 		if (lineoff < curoff) {
    422  1.40       dsl 			help = MSG_XLAT(m->helpstr);
    423   1.5      phil 			curoff = 0;
    424   1.5      phil 		}
    425   1.5      phil 		while (*help && curoff < lineoff) {
    426   1.5      phil 			if (*help == '\n')
    427   1.5      phil 				curoff++;
    428   1.5      phil 			help++;
    429   1.5      phil 		}
    430   1.5      phil 
    431   1.5      phil 		wclear(stdscr);
    432  1.35       dsl 		mvwaddstr(stdscr, 0, 0,
    433   1.9      phil 			"Help: exit: x,  page up: u <, page down: d >");
    434  1.35       dsl 		mvwaddstr(stdscr, 2, 0, help);
    435  1.35       dsl 		wmove(stdscr, 1, 0);
    436  1.36       dsl 		wrefresh(stdscr);
    437   1.5      phil 
    438   1.5      phil 		do {
    439  1.29     blymn 			winin = wgetch(stdscr);
    440  1.29     blymn 			if (winin < KEY_MIN)
    441   1.9      phil 				winin = tolower(winin);
    442   1.5      phil 			again = 0;
    443   1.5      phil 			switch (winin) {
    444   1.5      phil 				case '<':
    445   1.5      phil 				case 'u':
    446  1.29     blymn 				case KEY_UP:
    447  1.29     blymn 				case KEY_LEFT:
    448  1.29     blymn 				case KEY_PPAGE:
    449   1.5      phil 					if (lineoff)
    450   1.5      phil 						lineoff -= max_lines - 2;
    451   1.7      phil 					else
    452   1.7      phil 						again = 1;
    453   1.5      phil 					break;
    454   1.5      phil 				case '>':
    455   1.5      phil 				case 'd':
    456  1.29     blymn 				case KEY_DOWN:
    457  1.29     blymn 				case KEY_RIGHT:
    458  1.29     blymn 				case KEY_NPAGE:
    459   1.5      phil 					if (*help)
    460   1.5      phil 						lineoff += max_lines - 2;
    461   1.7      phil 					else
    462   1.7      phil 						again = 1;
    463   1.5      phil 					break;
    464  1.10      phil 				case 'q':
    465  1.10      phil 					break;
    466   1.9      phil 				case 'x':
    467  1.10      phil 					winin = 'q';
    468   1.5      phil 					break;
    469   1.5      phil 				default:
    470   1.5      phil 					again = 1;
    471   1.5      phil 			}
    472   1.9      phil 			if (again)
    473   1.9      phil 				mbeep();
    474   1.5      phil 		} while (again);
    475   1.5      phil 	} while (winin != 'q');
    476  1.54       dsl 
    477  1.54       dsl 	/* Restore the original screen contents */
    478  1.54       dsl 	touchwin(sv_curscr);
    479  1.54       dsl 	wnoutrefresh(sv_curscr);
    480  1.54       dsl 	delwin(sv_curscr);
    481  1.54       dsl 
    482  1.54       dsl 	/* Some code thinks that wrefresh(stdout) is a good idea... */
    483  1.54       dsl 	wclear(stdscr);
    484   1.5      phil }
    485   1.5      phil 
    486  1.23   hubertf static void
    487  1.52       dsl process_req(menudesc *m, void *arg, int req)
    488   1.1      phil {
    489   1.1      phil 	int ch;
    490  1.35       dsl 	int hasexit = (m->mopt & MC_NOEXITOPT ? 0 : 1);
    491   1.1      phil 
    492  1.35       dsl 	switch(req) {
    493  1.35       dsl 
    494  1.35       dsl 	case REQ_EXECUTE:
    495   1.1      phil 		return;
    496   1.7      phil 
    497  1.35       dsl 	case REQ_NEXT_ITEM:
    498  1.41       dsl 		ch = m->cursel;
    499  1.41       dsl 		for (;;) {
    500  1.41       dsl 			ch++;
    501  1.41       dsl 			if (ch >= m->numopts + hasexit) {
    502  1.41       dsl 				mbeep();
    503  1.41       dsl 				return;
    504  1.41       dsl 			}
    505  1.41       dsl 			if (hasexit && ch == m->numopts)
    506  1.41       dsl 				break;
    507  1.43       dsl 			if (!(m->opts[ch].opt_flags & OPT_IGNORE))
    508  1.41       dsl 				break;
    509  1.35       dsl 		}
    510  1.41       dsl 		m->cursel = ch;
    511  1.48       dsl 		if (m->cursel >= m->topline + m->h)
    512  1.41       dsl 			m->topline = m->cursel - m->h + 1;
    513  1.35       dsl 		break;
    514   1.7      phil 
    515  1.35       dsl 	case REQ_PREV_ITEM:
    516  1.41       dsl 		ch = m->cursel;
    517  1.41       dsl 		for (;;) {
    518  1.41       dsl 			if (ch <= 0) {
    519  1.41       dsl 				mbeep();
    520  1.41       dsl 				return;
    521  1.41       dsl 			}
    522  1.41       dsl 			ch--;
    523  1.43       dsl 			if (!(m->opts[ch].opt_flags & OPT_IGNORE))
    524  1.41       dsl 				break;
    525  1.35       dsl 		}
    526  1.41       dsl 		m->cursel = ch;
    527  1.35       dsl 		if (m->cursel < m->topline)
    528  1.41       dsl 			m->topline = m->cursel;
    529  1.35       dsl 		break;
    530   1.3      phil 
    531  1.39       dsl 	case REQ_HELP:
    532  1.52       dsl 		process_help(m);
    533  1.54       dsl 		break;
    534  1.39       dsl 
    535  1.35       dsl 	case REQ_REDISPLAY:
    536  1.54       dsl 		endwin();
    537  1.54       dsl 		doupdate();
    538  1.35       dsl 		break;
    539   1.7      phil 
    540  1.35       dsl 	case REQ_SCROLLUP:
    541  1.35       dsl 		if (m->cursel == 0) {
    542   1.7      phil 			mbeep();
    543  1.35       dsl 			return;
    544   1.7      phil 		}
    545  1.36       dsl 		m->topline = MAX(0, m->topline - m->h);
    546  1.36       dsl 		m->cursel = MAX(0, m->cursel - m->h);
    547  1.35       dsl 		wclear(m->mw);
    548  1.35       dsl 		break;
    549   1.7      phil 
    550  1.35       dsl 	case REQ_SCROLLDOWN:
    551  1.35       dsl 		if (m->cursel >= m->numopts + hasexit - 1) {
    552   1.7      phil 			mbeep();
    553  1.35       dsl 			return;
    554   1.7      phil 		}
    555  1.36       dsl 		m->topline = MIN(m->topline + m->h,
    556  1.38       dsl 				 MAX(m->numopts + hasexit - m->h, 0));
    557  1.36       dsl 		m->cursel = MIN(m->numopts + hasexit - 1, m->cursel + m->h);
    558  1.35       dsl 		wclear(m->mw);
    559  1.35       dsl 		break;
    560   1.7      phil 
    561  1.35       dsl 	default:
    562   1.9      phil 		ch = req;
    563   1.7      phil 		if (ch == 'x' && hasexit) {
    564   1.1      phil 			m->cursel = m->numopts;
    565  1.35       dsl 			break;
    566  1.35       dsl 		}
    567  1.35       dsl 		if (m->mopt & MC_NOSHORTCUT) {
    568  1.35       dsl 			mbeep();
    569  1.35       dsl 			return;
    570  1.35       dsl 		}
    571  1.35       dsl 		if (ch > 'z')
    572  1.35       dsl 			ch = 255;
    573  1.35       dsl 		if (ch >= 'a') {
    574  1.35       dsl 			if (ch > 'x')
    575  1.35       dsl 				ch--;
    576  1.35       dsl 			ch = ch - 'a';
    577  1.35       dsl 		} else
    578  1.35       dsl 			ch = 25 + ch - 'A';
    579  1.35       dsl 		if (ch < 0 || ch >= m->numopts) {
    580  1.41       dsl 			mbeep();
    581  1.41       dsl 			return;
    582  1.41       dsl 		}
    583  1.43       dsl 		if (m->opts[ch].opt_flags & OPT_IGNORE) {
    584  1.35       dsl 			mbeep();
    585  1.35       dsl 			return;
    586  1.35       dsl 		}
    587  1.35       dsl 		m->cursel = ch;
    588   1.1      phil 	}
    589   1.9      phil 
    590  1.43       dsl 	draw_menu(m, arg);
    591   1.1      phil }
    592   1.1      phil 
    593  1.23   hubertf int
    594  1.35       dsl menu_init(void)
    595  1.17       cgd {
    596  1.52       dsl 	int i;
    597  1.17       cgd 
    598  1.17       cgd 	if (__menu_init)
    599  1.17       cgd 		return 0;
    600  1.33       dsl 
    601  1.33       dsl #ifdef	USER_MENU_INIT
    602  1.33       dsl 	if (USER_MENU_INIT)
    603  1.33       dsl 		return 1;
    604  1.33       dsl #endif
    605  1.17       cgd 
    606  1.17       cgd 	if (initscr() == NULL)
    607  1.17       cgd 		return 1;
    608  1.17       cgd 
    609  1.17       cgd 	cbreak();
    610  1.17       cgd 	noecho();
    611  1.26     perry 
    612  1.26     perry 	/* XXX Should be configurable but it almost isn't worth it. */
    613  1.26     perry 	if (has_colors()) {
    614  1.26     perry 		start_color();
    615  1.26     perry 		init_pair(1, COLOR_WHITE, COLOR_BLUE);
    616  1.26     perry 		bkgd(COLOR_PAIR(1));
    617  1.26     perry 		attrset(COLOR_PAIR(1));
    618  1.26     perry 	}
    619  1.26     perry 
    620  1.17       cgd 	max_lines = getmaxy(stdscr);
    621  1.17       cgd 	max_cols = getmaxx(stdscr);
    622  1.29     blymn 	keypad(stdscr, TRUE);
    623  1.17       cgd #ifdef DYNAMIC_MENUS
    624  1.17       cgd 	num_menus = DYN_INIT_NUM;
    625  1.17       cgd 	while (num_menus < DYN_MENU_START)
    626  1.17       cgd 		num_menus *= 2;
    627  1.52       dsl 	menu_list = malloc(sizeof *menu_list * num_menus);
    628  1.52       dsl 	if (menu_list == NULL)
    629  1.17       cgd 		return 2;
    630  1.52       dsl 	(void)memset(menu_list, 0, sizeof *menu_list * num_menus);
    631  1.52       dsl 	for (i = 0; i < DYN_MENU_START; i++)
    632  1.52       dsl 		menu_list[i] = &menu_def[i];
    633  1.17       cgd #endif
    634  1.17       cgd 
    635  1.17       cgd 	__menu_init = 1;
    636  1.36       dsl 	return 0;
    637  1.17       cgd }
    638  1.17       cgd 
    639  1.23   hubertf void
    640  1.37       dsl process_menu(int num, void *arg)
    641   1.1      phil {
    642   1.1      phil 	int sel = 0;
    643  1.50       dsl 	int req;
    644  1.37       dsl 	menu_ent *opt;
    645   1.1      phil 
    646  1.39       dsl 	menudesc *m;
    647  1.14      phil 
    648  1.52       dsl 	m = &MENUS(num);
    649   1.1      phil 
    650   1.1      phil 	/* Initialize? */
    651  1.17       cgd 	if (menu_init()) {
    652  1.17       cgd 		__menu_initerror();
    653  1.17       cgd 		return;
    654   1.1      phil 	}
    655  1.17       cgd 
    656  1.39       dsl 	/* Default to select option 0 and display from 0 */
    657   1.7      phil 	m->topline = 0;
    658  1.39       dsl 	if ((m->mopt & (MC_DFLTEXIT | MC_NOEXITOPT)) == MC_DFLTEXIT)
    659  1.39       dsl 		m->cursel = -1;
    660  1.39       dsl 	else
    661  1.39       dsl 		m->cursel = 0;
    662   1.1      phil 
    663  1.50       dsl 	for (;;) {
    664  1.54       dsl 		if (isendwin())
    665  1.54       dsl 			/* I'm not sure this is needed with netbsd's curses */
    666  1.54       dsl 			doupdate();
    667   1.1      phil 		/* Process the display action */
    668  1.14      phil 		if (m->post_act)
    669  1.39       dsl 			(*m->post_act)(m, arg);
    670  1.47       dsl 		if (m->mw == NULL)
    671  1.47       dsl 			init_menu(m);
    672  1.43       dsl 		draw_menu(m, arg);
    673   1.1      phil 
    674  1.36       dsl 		while ((req = menucmd(m->mw)) != REQ_EXECUTE)
    675  1.52       dsl 			process_req(m, arg, req);
    676   1.1      phil 
    677   1.1      phil 		sel = m->cursel;
    678  1.38       dsl 		if (!(m->mopt & MC_NOCLEAR)) {
    679  1.38       dsl 			wclear(m->mw);
    680  1.54       dsl 			if (m->sv_mw)
    681  1.54       dsl 				overwrite(m->sv_mw, m->mw);
    682  1.54       dsl 			wnoutrefresh(m->mw);
    683  1.38       dsl 		}
    684   1.1      phil 
    685   1.1      phil 		/* Process the items */
    686  1.50       dsl 		if (sel >= m->numopts)
    687  1.50       dsl 			/* exit option */
    688  1.50       dsl 			break;
    689  1.50       dsl 
    690  1.50       dsl 		opt = &m->opts[sel];
    691  1.50       dsl 		if (opt->opt_flags & OPT_IGNORE)
    692  1.50       dsl 			continue;
    693  1.54       dsl 		if (opt->opt_flags & OPT_ENDWIN)
    694  1.50       dsl 			endwin();
    695  1.50       dsl 		if (opt->opt_action && (*opt->opt_action)(m, arg))
    696  1.50       dsl 			break;
    697  1.50       dsl 
    698  1.50       dsl 		if (opt->opt_menu != -1) {
    699  1.50       dsl 			if (!(opt->opt_flags & OPT_SUB)) {
    700  1.50       dsl 				num = opt->opt_menu;
    701  1.54       dsl 				wclear(m->mw);
    702  1.54       dsl 				if (m->sv_mw) {
    703  1.54       dsl 					overwrite(m->sv_mw, m->mw);
    704  1.54       dsl 					delwin(m->sv_mw);
    705  1.54       dsl 					m->sv_mw = NULL;
    706  1.54       dsl 				}
    707  1.54       dsl 				wnoutrefresh(m->mw);
    708  1.50       dsl 				delwin(m->mw);
    709  1.50       dsl 				m->mw = NULL;
    710  1.52       dsl 				m = &MENUS(num);
    711  1.43       dsl 				continue;
    712  1.14      phil 			}
    713  1.50       dsl 			process_menu(opt->opt_menu, arg);
    714  1.50       dsl 		}
    715  1.50       dsl 		if (opt->opt_flags & OPT_EXIT)
    716  1.50       dsl 			break;
    717   1.1      phil 	}
    718   1.1      phil 
    719  1.38       dsl 	if (m->mopt & MC_NOCLEAR) {
    720  1.38       dsl 		wclear(m->mw);
    721  1.54       dsl 		if (m->sv_mw)
    722  1.54       dsl 			overwrite(m->sv_mw, m->mw);
    723  1.54       dsl 		wnoutrefresh(m->mw);
    724  1.38       dsl 	}
    725  1.38       dsl 
    726   1.1      phil 	/* Process the exit action */
    727  1.14      phil 	if (m->exit_act)
    728  1.39       dsl 		(*m->exit_act)(m, arg);
    729  1.50       dsl 	delwin(m->mw);
    730  1.50       dsl 	m->mw = NULL;
    731  1.54       dsl 	if (m->sv_mw) {
    732  1.54       dsl 		delwin(m->sv_mw);
    733  1.54       dsl 		m->sv_mw = NULL;
    734  1.54       dsl 	}
    735   1.1      phil }
    736  1.13      phil 
    737  1.52       dsl 
    738  1.52       dsl void
    739  1.52       dsl set_menu_numopts(int menu, int numopts)
    740  1.52       dsl {
    741  1.52       dsl 
    742  1.52       dsl 	MENUS(menu).numopts = numopts;
    743  1.52       dsl }
    744  1.52       dsl 
    745  1.13      phil /* Control L is end of standard routines, remaining only for dynamic. */
    747  1.13      phil 
    748  1.13      phil /* Beginning of routines for dynamic menus. */
    749  1.24      phil 
    750  1.35       dsl static int
    751  1.14      phil double_menus(void)
    752  1.52       dsl {
    753  1.52       dsl 	menudesc **temp;
    754  1.14      phil 	int sz = sizeof *menu_list * num_menus;
    755  1.52       dsl 
    756  1.14      phil 	temp  = realloc(menu_list, sz * 2);
    757  1.14      phil 	if (temp == NULL)
    758  1.39       dsl 		return 0;
    759  1.52       dsl 	(void)memset(temp + num_menus, 0, sz);
    760  1.14      phil 	menu_list = temp;
    761  1.14      phil 	num_menus *= 2;
    762  1.14      phil 
    763  1.14      phil 	return 1;
    764  1.14      phil }
    765  1.23   hubertf 
    766  1.38       dsl int
    767  1.24      phil new_menu(const char *title, menu_ent *opts, int numopts,
    768  1.39       dsl 	int x, int y, int h, int w, int mopt,
    769  1.43       dsl 	void (*post_act)(menudesc *, void *),
    770  1.39       dsl 	void (*draw_line)(menudesc *, int, void *),
    771  1.44       dsl 	void (*exit_act)(menudesc *, void *),
    772  1.14      phil 	const char *help, const char *exit_str)
    773  1.14      phil {
    774  1.39       dsl 	int ix;
    775   1.7      phil 	menudesc *m;
    776  1.39       dsl 
    777  1.39       dsl 	/* Find free menu entry. */
    778  1.46  takemura 	for (ix = DYN_MENU_START; ; ix++) {
    779  1.14      phil 		if (ix >= num_menus && !double_menus())
    780  1.52       dsl 			return -1;
    781  1.52       dsl 		m = menu_list[ix];
    782  1.52       dsl 		if (m == NULL) {
    783  1.52       dsl 			m = calloc(sizeof *m, 1);
    784  1.52       dsl 			if (m == NULL)
    785  1.52       dsl 				return -1;
    786  1.52       dsl 			menu_list[ix] = m;
    787  1.52       dsl 			break;
    788  1.52       dsl 		}
    789  1.39       dsl 		if (!(m->mopt & MC_VALID))
    790  1.39       dsl 			break;
    791  1.14      phil 	}
    792  1.14      phil 
    793  1.40       dsl 	/* Set Entries */
    794  1.39       dsl 	m->title = title;
    795  1.39       dsl 	m->opts = opts;
    796  1.39       dsl 	m->numopts = numopts;
    797  1.39       dsl 	m->x = x;
    798  1.39       dsl 	m->y = y;
    799  1.39       dsl 	m->h = h;
    800  1.39       dsl 	m->w = w;
    801  1.39       dsl 	m->mopt = mopt | MC_VALID;
    802  1.43       dsl 	m->post_act = post_act;
    803  1.39       dsl 	m->draw_line = draw_line;
    804  1.39       dsl 	m->exit_act = exit_act;
    805  1.44       dsl 	m->helpstr  = help;
    806  1.14      phil 	m->exitstr  = exit_str ? exit_str : "Exit";
    807  1.14      phil 
    808  1.14      phil 	return ix;
    809  1.14      phil }
    810  1.23   hubertf 
    811  1.35       dsl void
    812  1.14      phil free_menu(int menu_no)
    813  1.39       dsl {
    814  1.39       dsl 	menudesc *m;
    815  1.39       dsl 
    816  1.39       dsl 	if (menu_no < 0 || menu_no >= num_menus)
    817  1.39       dsl 		return;
    818  1.52       dsl 
    819  1.50       dsl 	m = menu_list[menu_no];
    820  1.39       dsl 	if (!(m->mopt & MC_VALID))
    821  1.39       dsl 		return;
    822  1.39       dsl 	if (m->mw != NULL)
    823  1.39       dsl 		delwin(m->mw);
    824  1.39       dsl 	memset(m, 0, sizeof *m);
    825                 }
    826