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