1995-04-27 12:50:35 +00:00
|
|
|
/*
|
|
|
|
* The new sysinstall program.
|
|
|
|
*
|
|
|
|
* This is probably the last attempt in the `sysinstall' line, the next
|
|
|
|
* generation being slated for what's essentially a complete rewrite.
|
|
|
|
*
|
1996-07-11 18:37:48 +00:00
|
|
|
* $Id: dmenu.c,v 1.22 1996/07/05 08:35:53 jkh Exp $
|
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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sysinstall.h"
|
1995-06-11 19:33:05 +00:00
|
|
|
#include <sys/types.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
|
|
|
|
1996-04-28 00:37:38 +00:00
|
|
|
static Boolean exited;
|
1996-04-07 03:52:36 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
dmenuDisplayFile(dialogMenuItem *tmp)
|
|
|
|
{
|
|
|
|
systemDisplayHelp((char *)tmp->data);
|
1996-04-23 01:29:35 +00:00
|
|
|
return DITEM_SUCCESS | DITEM_RESTORE;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dmenuSubmenu(dialogMenuItem *tmp)
|
|
|
|
{
|
1996-07-02 01:03:55 +00:00
|
|
|
return (dmenuOpenSimple((DMenu *)(tmp->data), FALSE) ? DITEM_SUCCESS : DITEM_FAILURE) |
|
1996-07-05 08:36:02 +00:00
|
|
|
DITEM_RECREATE;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-04-23 01:29:35 +00:00
|
|
|
dmenuSystemCommand(dialogMenuItem *self)
|
1996-04-07 03:52:36 +00:00
|
|
|
{
|
1996-04-23 01:29:35 +00:00
|
|
|
WINDOW *w = NULL; /* Keep lint happy */
|
|
|
|
|
|
|
|
/* If aux is set, the command is known not to produce any screen-spoiling output */
|
|
|
|
if (!self->aux)
|
|
|
|
w = savescr();
|
|
|
|
systemExecute((char *)self->data);
|
|
|
|
if (!self->aux)
|
|
|
|
restorescr(w);
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_SUCCESS;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dmenuSystemCommandBox(dialogMenuItem *tmp)
|
|
|
|
{
|
|
|
|
use_helpfile(NULL);
|
|
|
|
use_helpline("Select OK to dismiss this dialog");
|
|
|
|
dialog_prgbox(tmp->title, (char *)tmp->data, 22, 76, 1, 1);
|
1996-04-23 01:29:35 +00:00
|
|
|
return DITEM_SUCCESS | DITEM_RESTORE;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
1996-04-28 00:37:38 +00:00
|
|
|
dmenuExit(dialogMenuItem *tmp)
|
1996-04-07 03:52:36 +00:00
|
|
|
{
|
1996-04-28 00:37:38 +00:00
|
|
|
exited = TRUE;
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_LEAVE_MENU;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dmenuSetVariable(dialogMenuItem *tmp)
|
|
|
|
{
|
|
|
|
variable_set((char *)tmp->data);
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_SUCCESS;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
1996-06-12 14:02:13 +00:00
|
|
|
int
|
|
|
|
dmenuToggleVariable(dialogMenuItem *tmp)
|
|
|
|
{
|
|
|
|
if (!variable_get((char *)tmp->data))
|
|
|
|
variable_set((char *)tmp->data);
|
|
|
|
else
|
|
|
|
variable_unset((char *)tmp->data);
|
|
|
|
return DITEM_SUCCESS;
|
|
|
|
}
|
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
int
|
|
|
|
dmenuSetFlag(dialogMenuItem *tmp)
|
|
|
|
{
|
1996-04-13 13:32:15 +00:00
|
|
|
if (*((unsigned int *)tmp->data) & tmp->aux)
|
|
|
|
*((unsigned int *)tmp->data) &= ~tmp->aux;
|
|
|
|
else
|
|
|
|
*((unsigned int *)tmp->data) |= tmp->aux;
|
|
|
|
return DITEM_SUCCESS;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
dmenuSetValue(dialogMenuItem *tmp)
|
|
|
|
{
|
|
|
|
*((unsigned int *)tmp->data) = tmp->aux;
|
1996-04-13 13:32:15 +00:00
|
|
|
return DITEM_SUCCESS;
|
1996-04-07 03:52:36 +00:00
|
|
|
}
|
|
|
|
|
1995-05-16 02:53:31 +00:00
|
|
|
/* Traverse menu but give user no control over positioning */
|
1995-06-11 19:33:05 +00:00
|
|
|
Boolean
|
1996-07-02 01:03:55 +00:00
|
|
|
dmenuOpenSimple(DMenu *menu, Boolean buttons)
|
1995-05-16 02:53:31 +00:00
|
|
|
{
|
|
|
|
int choice, scroll, curr, max;
|
|
|
|
|
|
|
|
choice = scroll = curr = max = 0;
|
1996-07-02 01:03:55 +00:00
|
|
|
return dmenuOpen(menu, &choice, &scroll, &curr, &max, buttons);
|
1995-06-11 19:33:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Work functions for the state hook */
|
1996-04-07 03:52:36 +00:00
|
|
|
int
|
|
|
|
dmenuFlagCheck(dialogMenuItem *item)
|
1995-06-11 19:33:05 +00:00
|
|
|
{
|
1996-04-07 03:52:36 +00:00
|
|
|
return (*((unsigned int *)item->data) & item->aux);
|
1995-06-11 19:33:05 +00:00
|
|
|
}
|
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
int
|
|
|
|
dmenuVarCheck(dialogMenuItem *item)
|
1995-06-11 19:33:05 +00:00
|
|
|
{
|
1995-12-07 10:34:59 +00:00
|
|
|
char *w, *cp, *cp2, tmp[256];
|
1995-06-11 19:33:05 +00:00
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
w = (char *)item->aux;
|
1995-12-07 10:34:59 +00:00
|
|
|
if (!w)
|
1996-04-07 03:52:36 +00:00
|
|
|
w = (char *)item->data;
|
1995-12-07 10:34:59 +00:00
|
|
|
if (!w)
|
1996-04-07 03:52:36 +00:00
|
|
|
return FALSE;
|
1995-12-07 10:34:59 +00:00
|
|
|
strncpy(tmp, w, 256);
|
1995-06-11 19:33:05 +00:00
|
|
|
if ((cp = index(tmp, '=')) != NULL) {
|
1995-12-07 10:34:59 +00:00
|
|
|
*(cp++) = '\0';
|
|
|
|
cp2 = getenv(tmp);
|
|
|
|
if (cp2)
|
1996-04-07 03:52:36 +00:00
|
|
|
return !strcmp(cp, cp2);
|
1995-12-07 10:34:59 +00:00
|
|
|
else
|
1996-04-07 03:52:36 +00:00
|
|
|
return FALSE;
|
1995-06-11 19:33:05 +00:00
|
|
|
}
|
|
|
|
else
|
1996-04-07 03:52:36 +00:00
|
|
|
return (int)getenv(tmp);
|
1995-06-11 19:33:05 +00:00
|
|
|
}
|
|
|
|
|
1996-04-07 03:52:36 +00:00
|
|
|
int
|
|
|
|
dmenuRadioCheck(dialogMenuItem *item)
|
1995-06-11 19:33:05 +00:00
|
|
|
{
|
1996-04-07 03:52:36 +00:00
|
|
|
return (*((unsigned int *)item->data) == item->aux);
|
1995-05-16 02:53:31 +00:00
|
|
|
}
|
|
|
|
|
1995-12-07 10:34:59 +00:00
|
|
|
static int
|
|
|
|
menu_height(DMenu *menu, int n)
|
|
|
|
{
|
|
|
|
int max;
|
|
|
|
char *t;
|
|
|
|
|
1996-07-11 18:37:48 +00:00
|
|
|
for (t = menu->prompt, max = MAX_MENU; *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
|
1996-07-02 01:03:55 +00:00
|
|
|
dmenuOpen(DMenu *menu, int *choice, int *scroll, int *curr, int *max, Boolean buttons)
|
1995-04-27 12:50:35 +00:00
|
|
|
{
|
1996-04-07 03:52:36 +00:00
|
|
|
int n, rval = 0;
|
1996-07-02 01:03:55 +00:00
|
|
|
dialogMenuItem *items;
|
1996-04-07 03:52:36 +00:00
|
|
|
|
1996-07-02 01:03:55 +00:00
|
|
|
items = menu->items;
|
|
|
|
if (buttons)
|
|
|
|
items += 2;
|
1996-04-07 03:52:36 +00:00
|
|
|
/* Count up all the items */
|
1996-07-02 01:03:55 +00:00
|
|
|
for (n = 0; 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];
|
|
|
|
|
1995-04-29 19:33:06 +00:00
|
|
|
/* Any helpful hints, put 'em up! */
|
1995-05-01 21:56:32 +00:00
|
|
|
use_helpline(menu->helpline);
|
|
|
|
use_helpfile(systemHelpFile(menu->helpfile, buf));
|
1995-04-29 19:33:06 +00:00
|
|
|
|
1995-04-27 12:50:35 +00:00
|
|
|
/* Pop up that dialog! */
|
1996-04-23 01:29:35 +00:00
|
|
|
dialog_clear();
|
1996-04-13 13:32:15 +00:00
|
|
|
if (menu->type & DMENU_NORMAL_TYPE)
|
1995-06-11 19:33:05 +00:00
|
|
|
rval = dialog_menu((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
|
1996-07-02 01:03:55 +00:00
|
|
|
menu_height(menu, n), -n, items, (char *)buttons, choice, scroll);
|
1995-12-07 10:34:59 +00:00
|
|
|
|
1996-04-13 13:32:15 +00:00
|
|
|
else if (menu->type & DMENU_RADIO_TYPE)
|
1995-06-11 19:33:05 +00:00
|
|
|
rval = dialog_radiolist((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
|
1996-07-02 01:03:55 +00:00
|
|
|
menu_height(menu, n), -n, items, (char *)buttons);
|
1995-12-07 10:34:59 +00:00
|
|
|
|
1996-04-13 13:32:15 +00:00
|
|
|
else if (menu->type & DMENU_CHECKLIST_TYPE)
|
1995-06-11 19:33:05 +00:00
|
|
|
rval = dialog_checklist((u_char *)menu->title, (u_char *)menu->prompt, -1, -1,
|
1996-07-02 01:03:55 +00:00
|
|
|
menu_height(menu, n), -n, items, (char *)buttons);
|
1996-04-13 13:32:15 +00:00
|
|
|
else
|
|
|
|
msgFatal("Menu: `%s' is of an unknown type\n", menu->title);
|
1996-04-25 17:31:27 +00:00
|
|
|
clearok(stdscr, TRUE);
|
1996-04-28 00:37:38 +00:00
|
|
|
if (exited) {
|
|
|
|
exited = FALSE;
|
1996-04-07 03:52:36 +00:00
|
|
|
return TRUE;
|
1995-04-29 19:33:06 +00:00
|
|
|
}
|
1996-04-28 00:37:38 +00:00
|
|
|
else if (rval)
|
|
|
|
return FALSE;
|
|
|
|
else if (menu->type & DMENU_SELECTION_RETURNS)
|
|
|
|
return TRUE;
|
1995-04-27 12:50:35 +00:00
|
|
|
}
|
|
|
|
}
|