1995-04-27 12:50:35 +00:00
|
|
|
/*
|
1999-08-28 01:35:59 +00:00
|
|
|
* $FreeBSD$
|
1995-04-27 12:50:35 +00:00
|
|
|
*
|
|
|
|
* Copyright (c) 1995
|
|
|
|
* Jordan Hubbard. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
1995-05-30 08:29:07 +00:00
|
|
|
* notice, this list of conditions and the following disclaimer,
|
|
|
|
* verbatim and that no modifications are made prior to this
|
1995-04-27 12:50:35 +00:00
|
|
|
* point in the file.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY JORDAN HUBBARD ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL JORDAN HUBBARD OR HIS PETS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, LIFE OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-08-07 23:35:49 +00:00
|
|
|
#include "sade.h"
|
1996-11-09 16:47:08 +00:00
|
|
|
#include <errno.h>
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1995-12-07 10:34:59 +00:00
|
|
|
#define MAX_MENU 15
|
1995-04-27 12:50:35 +00:00
|
|
|
|
1995-12-07 10:34:59 +00:00
|
|
|
static int
|
|
|
|
menu_height(DMenu *menu, int n)
|
|
|
|
{
|
|
|
|
int max;
|
|
|
|
char *t;
|
|
|
|
|
1996-08-01 10:58:54 +00:00
|
|
|
max = MAX_MENU;
|
|
|
|
if (StatusLine > 24)
|
|
|
|
max += StatusLine - 24;
|
|
|
|
for (t = menu->prompt; *t; t++) {
|
1995-12-07 10:34:59 +00:00
|
|
|
if (*t == '\n')
|
|
|
|
--max;
|
|
|
|
}
|
|
|
|
return n > max ? max : n;
|
|
|
|
}
|
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Traverse over an internal menu */
|
1995-06-11 19:33:05 +00:00
|
|
|
Boolean
|
2011-11-24 18:37:16 +00:00
|
|
|
dmenuOpen(DMenu *menu)
|
1995-04-27 12:50:35 +00:00
|
|
|
{
|
1996-04-07 03:52:36 +00:00
|
|
|
int n, rval = 0;
|
|
|
|
|
|
|
|
/* Count up all the items */
|
2011-11-24 18:37:16 +00:00
|
|
|
for (n = 0; menu->items[n].title; n++)
|
|
|
|
;
|
1995-04-27 12:50:35 +00:00
|
|
|
|
|
|
|
while (1) {
|
1995-05-01 21:56:32 +00:00
|
|
|
char buf[FILENAME_MAX];
|
2011-11-24 18:37:16 +00:00
|
|
|
DIALOG_VARS save_vars;
|
1999-12-14 04:25:29 +00:00
|
|
|
WINDOW *w = savescr();
|
1995-05-01 21:56:32 +00:00
|
|
|
|
1995-04-29 19:33:06 +00:00
|
|
|
/* Any helpful hints, put 'em up! */
|
2011-11-24 18:37:16 +00:00
|
|
|
dlg_save_vars(&save_vars);
|
|
|
|
dialog_vars.help_line = menu->helpline;
|
|
|
|
dialog_vars.help_file = systemHelpFile(menu->helpfile, buf);
|
|
|
|
dlg_clear();
|
1999-12-14 04:25:29 +00:00
|
|
|
/* Pop up that dialog! */
|
2011-11-24 18:37:16 +00:00
|
|
|
if (menu->type & DMENU_NORMAL_TYPE) {
|
|
|
|
rval = xdialog_menu(menu->title, menu->prompt,
|
|
|
|
-1, -1, menu_height(menu, n), n, menu->items);
|
|
|
|
} else if (menu->type & DMENU_RADIO_TYPE) {
|
|
|
|
rval = xdialog_radiolist(menu->title, menu->prompt,
|
|
|
|
-1, -1, menu_height(menu, n), n, menu->items);
|
|
|
|
} else {
|
1996-04-13 13:32:15 +00:00
|
|
|
msgFatal("Menu: `%s' is of an unknown type\n", menu->title);
|
1995-04-29 19:33:06 +00:00
|
|
|
}
|
2011-11-24 18:37:16 +00:00
|
|
|
dlg_restore_vars(&save_vars);
|
|
|
|
if (rval) {
|
1999-12-14 04:25:29 +00:00
|
|
|
restorescr(w);
|
1996-04-28 00:37:38 +00:00
|
|
|
return FALSE;
|
2011-11-24 18:37:16 +00:00
|
|
|
} else if (menu->type & DMENU_SELECTION_RETURNS) {
|
1999-12-14 04:25:29 +00:00
|
|
|
restorescr(w);
|
1996-04-28 00:37:38 +00:00
|
|
|
return TRUE;
|
2011-11-24 18:37:16 +00:00
|
|
|
} else
|
|
|
|
delwin(w);
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|
|
|
|
}
|