1994-10-11 23:30:51 +00:00
|
|
|
/*
|
|
|
|
* menubox.c -- implements the menu box
|
|
|
|
*
|
|
|
|
* AUTHOR: Savio Lam (lam836@cs.cuhk.hk)
|
|
|
|
*
|
1995-12-23 01:10:20 +00:00
|
|
|
* Substantial rennovation: 12/18/95, Jordan K. Hubbard
|
|
|
|
*
|
1994-10-11 23:30:51 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <dialog.h>
|
1994-10-20 21:56:45 +00:00
|
|
|
#include "dialog.priv.h"
|
1995-02-15 19:44:08 +00:00
|
|
|
#include <ncurses.h>
|
1994-10-11 23:30:51 +00:00
|
|
|
|
1996-01-01 03:43:58 +00:00
|
|
|
static void print_item(WINDOW *win, unsigned char *tag, unsigned char *item, int choice, int selected,
|
|
|
|
dialogMenuItem *me);
|
|
|
|
|
|
|
|
#define DREF(di, item) ((di) ? &((di)[(item)]) : NULL)
|
1994-10-11 23:30:51 +00:00
|
|
|
|
|
|
|
static int menu_width, tag_x, item_x;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Display a menu for choosing among a number of options
|
|
|
|
*/
|
1996-01-01 03:43:58 +00:00
|
|
|
int
|
|
|
|
dialog_menu(unsigned char *title, unsigned char *prompt, int height, int width, int menu_height,
|
1996-04-20 01:28:20 +00:00
|
|
|
int cnt, void *it, unsigned char *result, int *ch, int *sc)
|
1994-10-11 23:30:51 +00:00
|
|
|
{
|
1996-04-08 10:28:07 +00:00
|
|
|
int i, j, x, y, cur_x, cur_y, box_x, box_y, key = 0, button = 0, choice = 0,
|
1996-04-20 01:28:20 +00:00
|
|
|
l, k, scroll = 0, max_choice, item_no, redraw_menu = FALSE;
|
1996-04-08 10:28:07 +00:00
|
|
|
char okButton, cancelButton;
|
1996-04-18 13:21:26 +00:00
|
|
|
WINDOW *dialog, *menu;
|
1996-04-20 01:28:20 +00:00
|
|
|
unsigned char **items = NULL;
|
1996-04-08 10:28:07 +00:00
|
|
|
dialogMenuItem *ditems;
|
|
|
|
|
1996-04-20 01:28:20 +00:00
|
|
|
draw:
|
1996-04-08 10:28:07 +00:00
|
|
|
if (ch) /* restore menu item info */
|
|
|
|
choice = *ch;
|
|
|
|
if (sc)
|
|
|
|
scroll = *sc;
|
|
|
|
|
|
|
|
/* If item_no is a positive integer, use old item specification format */
|
1996-04-20 01:28:20 +00:00
|
|
|
if (cnt >= 0) {
|
1996-04-08 10:28:07 +00:00
|
|
|
items = it;
|
|
|
|
ditems = NULL;
|
1996-04-20 01:28:20 +00:00
|
|
|
item_no = cnt;
|
1996-04-08 10:28:07 +00:00
|
|
|
}
|
|
|
|
/* It's the new specification format - fake the rest of the code out */
|
|
|
|
else {
|
1996-04-20 01:28:20 +00:00
|
|
|
item_no = abs(cnt);
|
1996-04-08 10:28:07 +00:00
|
|
|
ditems = it;
|
1996-04-20 01:28:20 +00:00
|
|
|
if (!items)
|
|
|
|
items = (unsigned char **)alloca((item_no * 2) * sizeof(unsigned char *));
|
1996-04-08 10:28:07 +00:00
|
|
|
|
|
|
|
/* Initializes status */
|
|
|
|
for (i = 0; i < item_no; i++) {
|
|
|
|
items[i*2] = ditems[i].prompt;
|
|
|
|
items[i*2 + 1] = ditems[i].title;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
max_choice = MIN(menu_height, item_no);
|
|
|
|
|
|
|
|
tag_x = 0;
|
|
|
|
item_x = 0;
|
|
|
|
/* Find length of longest item in order to center menu */
|
1995-12-23 01:10:20 +00:00
|
|
|
for (i = 0; i < item_no; i++) {
|
1996-04-08 10:28:07 +00:00
|
|
|
l = strlen(items[i*2]);
|
|
|
|
for (j = 0; j < item_no; j++) {
|
|
|
|
k = strlen(items[j*2 + 1]);
|
|
|
|
tag_x = MAX(tag_x, l + k + 2);
|
|
|
|
}
|
|
|
|
item_x = MAX(item_x, l);
|
1995-12-23 01:10:20 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
if (height < 0)
|
|
|
|
height = strheight(prompt)+menu_height+4+2;
|
|
|
|
if (width < 0) {
|
|
|
|
i = strwidth(prompt);
|
|
|
|
j = ((title != NULL) ? strwidth(title) : 0);
|
|
|
|
width = MAX(i,j);
|
|
|
|
width = MAX(width,tag_x+4)+4;
|
1994-11-17 19:21:51 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
width = MAX(width,24);
|
|
|
|
|
|
|
|
if (width > COLS)
|
|
|
|
width = COLS;
|
|
|
|
if (height > LINES)
|
|
|
|
height = LINES;
|
|
|
|
/* center dialog box on screen */
|
|
|
|
x = DialogX ? DialogX : (COLS - width)/2;
|
|
|
|
y = DialogY ? DialogY : (LINES - height)/2;
|
|
|
|
|
1994-10-11 23:30:51 +00:00
|
|
|
#ifdef HAVE_NCURSES
|
1996-04-08 10:28:07 +00:00
|
|
|
if (use_shadow)
|
|
|
|
draw_shadow(stdscr, y, x, height, width);
|
1994-10-11 23:30:51 +00:00
|
|
|
#endif
|
1996-04-08 10:28:07 +00:00
|
|
|
dialog = newwin(height, width, y, x);
|
|
|
|
if (dialog == NULL) {
|
|
|
|
endwin();
|
|
|
|
fprintf(stderr, "\nnewwin(%d,%d,%d,%d) failed, maybe wrong dims\n", height,width,y,x);
|
|
|
|
return -1;
|
1995-12-23 01:10:20 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
keypad(dialog, TRUE);
|
|
|
|
|
|
|
|
draw_box(dialog, 0, 0, height, width, dialog_attr, border_attr);
|
|
|
|
wattrset(dialog, border_attr);
|
|
|
|
wmove(dialog, height-3, 0);
|
|
|
|
waddch(dialog, ACS_LTEE);
|
|
|
|
for (i = 0; i < width-2; i++)
|
|
|
|
waddch(dialog, ACS_HLINE);
|
|
|
|
wattrset(dialog, dialog_attr);
|
|
|
|
waddch(dialog, ACS_RTEE);
|
|
|
|
wmove(dialog, height-2, 1);
|
|
|
|
for (i = 0; i < width-2; i++)
|
|
|
|
waddch(dialog, ' ');
|
|
|
|
|
|
|
|
if (title != NULL) {
|
|
|
|
wattrset(dialog, title_attr);
|
|
|
|
wmove(dialog, 0, (width - strlen(title))/2 - 1);
|
|
|
|
waddch(dialog, ' ');
|
|
|
|
waddstr(dialog, title);
|
|
|
|
waddch(dialog, ' ');
|
1995-12-23 01:10:20 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
wattrset(dialog, dialog_attr);
|
|
|
|
wmove(dialog, 1, 2);
|
|
|
|
print_autowrap(dialog, prompt, height-1, width-2, width, 1, 2, TRUE, FALSE);
|
|
|
|
|
|
|
|
menu_width = width-6;
|
|
|
|
getyx(dialog, cur_y, cur_x);
|
|
|
|
box_y = cur_y + 1;
|
|
|
|
box_x = (width - menu_width)/2 - 1;
|
|
|
|
|
|
|
|
/* create new window for the menu */
|
|
|
|
menu = subwin(dialog, menu_height, menu_width, y + box_y + 1, x + box_x + 1);
|
|
|
|
if (menu == NULL) {
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(dialog);
|
1996-04-08 10:28:07 +00:00
|
|
|
endwin();
|
|
|
|
fprintf(stderr, "\nsubwin(dialog,%d,%d,%d,%d) failed, maybe wrong dims\n", menu_height,menu_width,y+box_y+1,x+box_x+1);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
keypad(menu, TRUE);
|
|
|
|
|
|
|
|
/* draw a box around the menu items */
|
|
|
|
draw_box(dialog, box_y, box_x, menu_height+2, menu_width+2, menubox_border_attr, menubox_attr);
|
|
|
|
|
|
|
|
tag_x = (menu_width - tag_x) / 2;
|
|
|
|
item_x = tag_x + item_x + 2;
|
|
|
|
|
|
|
|
/* Print the menu */
|
1994-10-11 23:30:51 +00:00
|
|
|
for (i = 0; i < max_choice; i++)
|
1996-04-08 10:28:07 +00:00
|
|
|
print_item(menu, items[(scroll+i)*2], items[(scroll+i)*2 + 1], i, i == choice, DREF(ditems, scroll + i));
|
|
|
|
wnoutrefresh(menu);
|
|
|
|
print_arrows(dialog, scroll, menu_height, item_no, box_x, box_y, tag_x, cur_x, cur_y);
|
|
|
|
|
|
|
|
display_helpline(dialog, height-1, width);
|
|
|
|
|
|
|
|
x = width/2-11;
|
|
|
|
y = height-2;
|
|
|
|
|
|
|
|
if (ditems && result) {
|
|
|
|
cancelButton = toupper(ditems[CANCEL_BUTTON].prompt[0]);
|
|
|
|
print_button(dialog, ditems[CANCEL_BUTTON].prompt, y, x + strlen(ditems[OK_BUTTON].prompt) + 5,
|
|
|
|
ditems[CANCEL_BUTTON].checked ? ditems[CANCEL_BUTTON].checked(&ditems[CANCEL_BUTTON]) : FALSE);
|
|
|
|
okButton = toupper(ditems[OK_BUTTON].prompt[0]);
|
|
|
|
print_button(dialog, ditems[OK_BUTTON].prompt, y, x,
|
|
|
|
ditems[OK_BUTTON].checked ? ditems[OK_BUTTON].checked(&ditems[OK_BUTTON]) : TRUE);
|
1994-10-11 23:30:51 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
else {
|
|
|
|
cancelButton = 'C';
|
|
|
|
print_button(dialog, "Cancel", y, x + 14, FALSE);
|
|
|
|
okButton = 'O';
|
|
|
|
print_button(dialog, " OK ", y, x, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
wrefresh(dialog);
|
|
|
|
|
|
|
|
while (key != ESC) {
|
|
|
|
key = wgetch(dialog);
|
|
|
|
|
|
|
|
/* Shortcut to OK? */
|
|
|
|
if (toupper(key) == okButton) {
|
|
|
|
if (ditems && result && ditems[OK_BUTTON].fire) {
|
1996-04-16 12:17:27 +00:00
|
|
|
int status;
|
1996-04-18 13:21:26 +00:00
|
|
|
WINDOW *save;
|
|
|
|
|
|
|
|
save = dupwin(newscr);
|
1996-04-16 12:17:27 +00:00
|
|
|
status = ditems[OK_BUTTON].fire(&ditems[OK_BUTTON]);
|
1996-04-18 13:21:26 +00:00
|
|
|
if (status & DITEM_RESTORE) {
|
|
|
|
touchwin(save);
|
|
|
|
wrefresh(save);
|
1996-04-16 12:17:27 +00:00
|
|
|
}
|
1996-04-18 13:21:26 +00:00
|
|
|
delwin(save);
|
1996-04-08 10:28:07 +00:00
|
|
|
}
|
1996-04-28 02:13:07 +00:00
|
|
|
else if (result)
|
1996-04-16 12:17:27 +00:00
|
|
|
strcpy(result, items[(scroll + choice) * 2]);
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(menu);
|
1996-04-18 13:21:26 +00:00
|
|
|
delwin(dialog);
|
1996-04-08 10:28:07 +00:00
|
|
|
return 0;
|
1995-02-15 19:44:08 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
/* Shortcut to cancel? */
|
|
|
|
else if (toupper(key) == cancelButton) {
|
|
|
|
if (ditems && result && ditems[CANCEL_BUTTON].fire) {
|
1996-04-16 12:17:27 +00:00
|
|
|
int status;
|
1996-04-18 13:21:26 +00:00
|
|
|
WINDOW *save;
|
|
|
|
|
|
|
|
save = dupwin(newscr);
|
1996-04-16 12:17:27 +00:00
|
|
|
status = ditems[CANCEL_BUTTON].fire(&ditems[CANCEL_BUTTON]);
|
1996-04-18 13:21:26 +00:00
|
|
|
if (status & DITEM_RESTORE) {
|
1996-04-16 12:17:27 +00:00
|
|
|
touchwin(save);
|
|
|
|
wrefresh(save);
|
|
|
|
}
|
1996-04-18 13:21:26 +00:00
|
|
|
delwin(save);
|
1996-04-08 10:28:07 +00:00
|
|
|
}
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(menu);
|
1996-04-08 10:28:07 +00:00
|
|
|
delwin(dialog);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if key pressed matches first character of any item tag in menu */
|
|
|
|
for (i = 0; i < max_choice; i++)
|
|
|
|
if (key < 0x100 && toupper(key) == toupper(items[(scroll+i)*2][0]))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (i < max_choice || (key >= '1' && key <= MIN('9', '0'+max_choice)) ||
|
|
|
|
key == KEY_UP || key == KEY_DOWN || key == '-' || key == '+') {
|
|
|
|
if (key >= '1' && key <= MIN('9', '0'+max_choice))
|
|
|
|
i = key - '1';
|
|
|
|
else if (key == KEY_UP || key == '-') {
|
|
|
|
if (!choice) {
|
|
|
|
if (scroll) {
|
|
|
|
/* Scroll menu down */
|
|
|
|
getyx(dialog, cur_y, cur_x); /* Save cursor position */
|
|
|
|
if (menu_height > 1) {
|
|
|
|
/* De-highlight current first item before scrolling down */
|
|
|
|
print_item(menu, items[scroll*2], items[scroll*2 + 1], 0, FALSE, DREF(ditems, scroll));
|
|
|
|
scrollok(menu, TRUE);
|
|
|
|
wscrl(menu, -1);
|
|
|
|
scrollok(menu, FALSE);
|
|
|
|
}
|
|
|
|
scroll--;
|
|
|
|
print_item(menu, items[scroll*2], items[scroll*2 + 1], 0, TRUE, DREF(ditems, scroll));
|
|
|
|
wnoutrefresh(menu);
|
|
|
|
print_arrows(dialog, scroll, menu_height, item_no, box_x, box_y, tag_x, cur_x, cur_y);
|
|
|
|
wrefresh(dialog);
|
|
|
|
}
|
|
|
|
continue; /* wait for another key press */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
i = choice - 1;
|
|
|
|
}
|
|
|
|
else if (key == KEY_DOWN || key == '+')
|
|
|
|
if (choice == max_choice - 1) {
|
|
|
|
if (scroll+choice < item_no-1) {
|
|
|
|
/* Scroll menu up */
|
|
|
|
getyx(dialog, cur_y, cur_x); /* Save cursor position */
|
|
|
|
if (menu_height > 1) {
|
|
|
|
/* De-highlight current last item before scrolling up */
|
|
|
|
print_item(menu, items[(scroll + max_choice - 1) * 2], items[(scroll + max_choice - 1) * 2 + 1],
|
|
|
|
max_choice-1, FALSE, DREF(ditems, scroll + max_choice - 1));
|
|
|
|
scrollok(menu, TRUE);
|
|
|
|
scroll(menu);
|
|
|
|
scrollok(menu, FALSE);
|
|
|
|
}
|
|
|
|
scroll++;
|
|
|
|
print_item(menu, items[(scroll + max_choice - 1) * 2], items[(scroll + max_choice - 1) * 2 + 1],
|
|
|
|
max_choice - 1, TRUE, DREF(ditems, scroll + max_choice - 1));
|
|
|
|
wnoutrefresh(menu);
|
|
|
|
print_arrows(dialog, scroll, menu_height, item_no, box_x, box_y, tag_x, cur_x, cur_y);
|
|
|
|
wrefresh(dialog);
|
|
|
|
}
|
|
|
|
continue; /* wait for another key press */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
i = choice + 1;
|
|
|
|
|
|
|
|
if (i != choice) {
|
|
|
|
/* De-highlight current item */
|
|
|
|
getyx(dialog, cur_y, cur_x); /* Save cursor position */
|
|
|
|
print_item(menu, items[(scroll + choice) * 2], items[(scroll + choice) * 2 + 1], choice, FALSE,
|
|
|
|
DREF(ditems, scroll + choice));
|
|
|
|
|
|
|
|
/* Highlight new item */
|
|
|
|
choice = i;
|
|
|
|
print_item(menu, items[(scroll + choice) * 2], items[(scroll + choice) * 2 + 1], choice, TRUE,
|
|
|
|
DREF(ditems, scroll + choice));
|
|
|
|
wnoutrefresh(menu);
|
|
|
|
wmove(dialog, cur_y, cur_x); /* Restore cursor to previous position */
|
|
|
|
wrefresh(dialog);
|
|
|
|
}
|
|
|
|
continue; /* wait for another key press */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* save info about menu item position */
|
|
|
|
if (ch)
|
|
|
|
*ch = choice;
|
|
|
|
if (sc)
|
|
|
|
*sc = scroll;
|
|
|
|
|
|
|
|
switch (key) {
|
|
|
|
case KEY_PPAGE:
|
|
|
|
if (scroll > height-4) { /* can we go up? */
|
|
|
|
scroll -= (height-4);
|
|
|
|
} else {
|
|
|
|
scroll = 0;
|
|
|
|
}
|
|
|
|
redraw_menu = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_NPAGE:
|
|
|
|
if (scroll + menu_height >= item_no-1 - menu_height) { /* can we go down a full page? */
|
|
|
|
scroll = item_no - menu_height;
|
|
|
|
if (scroll < 0) scroll = 0;
|
|
|
|
} else {
|
|
|
|
scroll += menu_height;
|
|
|
|
}
|
|
|
|
redraw_menu = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_HOME:
|
|
|
|
scroll = 0;
|
|
|
|
choice = 0;
|
|
|
|
redraw_menu = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_END:
|
1995-02-15 19:44:08 +00:00
|
|
|
scroll = item_no - menu_height;
|
|
|
|
if (scroll < 0) scroll = 0;
|
1996-04-08 10:28:07 +00:00
|
|
|
choice = max_choice - 1;
|
|
|
|
redraw_menu = TRUE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_BTAB:
|
|
|
|
case TAB:
|
|
|
|
case KEY_LEFT:
|
|
|
|
case KEY_RIGHT:
|
|
|
|
button = !button;
|
|
|
|
if (ditems && result) {
|
|
|
|
if (button) {
|
|
|
|
print_button(dialog, ditems[OK_BUTTON].prompt, y, x,
|
|
|
|
ditems[OK_BUTTON].checked ? ditems[OK_BUTTON].checked(&ditems[OK_BUTTON]) : !button);
|
|
|
|
print_button(dialog, ditems[CANCEL_BUTTON].prompt, y, x + strlen(ditems[OK_BUTTON].prompt) + 5,
|
|
|
|
ditems[CANCEL_BUTTON].checked ? ditems[CANCEL_BUTTON].checked(&ditems[CANCEL_BUTTON]) : button);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print_button(dialog, ditems[CANCEL_BUTTON].prompt, y, x + strlen(ditems[OK_BUTTON].prompt) + 5,
|
|
|
|
ditems[CANCEL_BUTTON].checked ? ditems[CANCEL_BUTTON].checked(&ditems[CANCEL_BUTTON]) : button);
|
|
|
|
print_button(dialog, ditems[OK_BUTTON].prompt, y, x,
|
|
|
|
ditems[OK_BUTTON].checked ? ditems[OK_BUTTON].checked(&ditems[OK_BUTTON]) : !button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (button) {
|
|
|
|
print_button(dialog, " OK ", y, x, !button);
|
|
|
|
print_button(dialog, "Cancel", y, x + 14, button);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
print_button(dialog, "Cancel", y, x + 14, button);
|
|
|
|
print_button(dialog, " OK ", y, x, !button);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
wrefresh(dialog);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ' ':
|
|
|
|
case '\r':
|
|
|
|
case '\n':
|
|
|
|
if (!button) {
|
1996-04-16 12:17:27 +00:00
|
|
|
/* A fire routine can do just about anything to the screen, so be prepared
|
|
|
|
to accept some hints as to what to do in the aftermath. */
|
1996-04-08 10:28:07 +00:00
|
|
|
if (ditems && ditems[scroll + choice].fire) {
|
1996-04-16 12:17:27 +00:00
|
|
|
int status;
|
1996-04-18 13:21:26 +00:00
|
|
|
WINDOW *save;
|
|
|
|
|
|
|
|
save = dupwin(newscr);
|
1996-04-16 12:17:27 +00:00
|
|
|
status = ditems[scroll + choice].fire(&ditems[scroll + choice]);
|
1996-04-18 13:21:26 +00:00
|
|
|
if (status & DITEM_RESTORE) {
|
1996-04-16 12:17:27 +00:00
|
|
|
touchwin(save);
|
|
|
|
wrefresh(save);
|
|
|
|
}
|
1996-04-25 17:27:18 +00:00
|
|
|
delwin(save);
|
|
|
|
if (status & DITEM_CONTINUE)
|
|
|
|
continue;
|
1996-04-27 07:09:41 +00:00
|
|
|
else if (status & DITEM_RECREATE && !(status & DITEM_LEAVE_MENU)) {
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(menu);
|
1996-04-16 12:17:27 +00:00
|
|
|
delwin(dialog);
|
1996-07-05 07:42:23 +00:00
|
|
|
dialog_clear();
|
1996-04-16 12:17:27 +00:00
|
|
|
goto draw;
|
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
}
|
|
|
|
else if (result)
|
|
|
|
strcpy(result, items[(scroll+choice)*2]);
|
|
|
|
}
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(menu);
|
1996-04-08 10:28:07 +00:00
|
|
|
delwin(dialog);
|
|
|
|
return button;
|
|
|
|
|
|
|
|
case ESC:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case KEY_F(1):
|
|
|
|
case '?':
|
|
|
|
display_helpfile();
|
1995-02-15 19:44:08 +00:00
|
|
|
break;
|
1995-12-23 01:10:20 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
|
|
|
|
if (redraw_menu) {
|
|
|
|
for (i = 0; i < max_choice; i++) {
|
|
|
|
print_item(menu, items[(scroll + i) * 2], items[(scroll + i) * 2 + 1], i, i == choice,
|
|
|
|
DREF(ditems, scroll + i));
|
|
|
|
}
|
|
|
|
wnoutrefresh(menu);
|
|
|
|
print_arrows(dialog, scroll, menu_height, item_no, box_x, box_y, tag_x, cur_x, cur_y);
|
1996-04-08 10:02:55 +00:00
|
|
|
wrefresh(dialog);
|
1996-04-08 10:28:07 +00:00
|
|
|
redraw_menu = FALSE;
|
1995-02-15 19:44:08 +00:00
|
|
|
}
|
1994-10-11 23:30:51 +00:00
|
|
|
}
|
1996-04-08 10:28:07 +00:00
|
|
|
|
1996-04-18 13:36:39 +00:00
|
|
|
delwin(menu);
|
1996-04-08 10:28:07 +00:00
|
|
|
delwin(dialog);
|
|
|
|
return -1; /* ESC pressed */
|
1994-10-11 23:30:51 +00:00
|
|
|
}
|
|
|
|
/* End of dialog_menu() */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print menu item
|
|
|
|
*/
|
1996-01-01 03:43:58 +00:00
|
|
|
static void
|
|
|
|
print_item(WINDOW *win, unsigned char *tag, unsigned char *item, int choice, int selected, dialogMenuItem *me)
|
1994-10-11 23:30:51 +00:00
|
|
|
{
|
1996-04-08 10:28:07 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Clear 'residue' of last item */
|
|
|
|
wattrset(win, menubox_attr);
|
|
|
|
wmove(win, choice, 0);
|
|
|
|
for (i = 0; i < menu_width; i++)
|
|
|
|
waddch(win, ' ');
|
|
|
|
wmove(win, choice, tag_x);
|
|
|
|
wattrset(win, selected ? tag_key_selected_attr : tag_key_attr);
|
|
|
|
waddch(win, tag[0]);
|
|
|
|
wattrset(win, selected ? tag_selected_attr : tag_attr);
|
|
|
|
waddstr(win, tag + 1);
|
|
|
|
wmove(win, choice, item_x);
|
|
|
|
wattrset(win, selected ? item_selected_attr : item_attr);
|
|
|
|
waddstr(win, item);
|
|
|
|
/* If have a selection handler for this, call it */
|
|
|
|
if (me && me->selected) {
|
|
|
|
wrefresh(win);
|
|
|
|
me->selected(me, selected);
|
|
|
|
}
|
1994-10-11 23:30:51 +00:00
|
|
|
}
|
|
|
|
/* End of print_item() */
|