/* Mixmaster version 2.9 -- (C) 1999 - 2003 Anonymizer Inc. and others.
Mixmaster may be redistributed and modified under certain conditions.
This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
ANY KIND, either express or implied. See the file COPYRIGHT for
details.
Menu-based user interface - utility functions
$Id: menuutil.c 665 2003-11-09 01:47:32Z rabbi $ */
#include "menu.h"
#include <stdarg.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
int menu_initialized = 0;
#ifdef USE_NCURSES
void cl(int y, int x)
{
move(y, x);
hline(' ', COLS - x);
}
#endif /* USE_NCURSES */
void menu_init(void)
{
#ifdef USE_NCURSES
initscr();
cbreak();
noecho();
nonl();
intrflush(stdscr, FALSE);
keypad(stdscr, TRUE);
menu_initialized = 1;
#endif /* USE_NCURSES */
}
void menu_exit(void)
{
user_delpass();
#ifdef USE_NCURSES
endwin();
#endif /* USE_NCURSES */
}
#ifdef USE_NCURSES
void askfilename(char *path)
{
char line[PATHMAX];
printw("\rFile name: ");
echo();
wgetnstr(stdscr, path, PATHMAX);
noecho();
printw("\r");
if (path[0] == '~') {
char *h;
if ((h = getenv("HOME")) != NULL) {
strncpy(line, h, PATHMAX);
strcatn(line, "/", PATHMAX);
strcatn(line, path + 1, PATHMAX);
strncpy(path, line, PATHMAX);
}
}
}
void savemsg(BUFFER *message)
{
char savename[PATHMAX];
FILE *f;
askfilename(savename);
f = fopen(savename, "a");
if (f != NULL) {
buf_write(message, f);
fclose(f);
}
}
#endif /* USE_NCURSES */
int menu_getuserpass(BUFFER *b, int mode)
{
#ifdef USE_NCURSES
char p[LINELEN];
if (menu_initialized) {
cl(LINES - 1, 10);
if (mode == 0)
printw("enter passphrase: ");
else
printw("re-enter passphrase: ");
wgetnstr(stdscr, p, LINELEN);
cl(LINES - 1, 10);
refresh();
if (mode == 0)
buf_appends(b, p);
else
return (bufeq(b, p));
return (0);
}
#endif /* USE_NCURSES */
return (-1);
}
syntax highlighted by Code2HTML, v. 0.9.1