From f3410da7f0bd208a5f2d792131b215454e782e93 Mon Sep 17 00:00:00 2001 From: Jonathan McCrohan Date: Sun, 5 Feb 2012 19:04:33 +0000 Subject: Imported Upstream version 0.7.3 --- about_scr.c | 50 +++++++++++--------------------------------------- 1 file changed, 11 insertions(+), 39 deletions(-) (limited to 'about_scr.c') diff --git a/about_scr.c b/about_scr.c index 6c64c8e..31ac37b 100644 --- a/about_scr.c +++ b/about_scr.c @@ -20,6 +20,8 @@ #include "wavemon.h" /* GLOBALS */ +static WINDOW *w_about; + static char *about_lines[] = { "wavemon - status monitor for wireless network devices", "version " PACKAGE_VERSION " (built " BUILD_DATE ")", @@ -33,14 +35,14 @@ static char *about_lines[] = { "please send suggestions and bug reports to ", PACKAGE_BUGREPORT, "", - "http://eden-feed.erg.abdn.ac.uk/wavemon", + PACKAGE_URL }; -static int *linecd[ARRAY_SIZE(about_lines)]; +static int *linecd[ARRAY_SIZE(about_lines)], i, j; -static void init_scramble(void) +void scr_about_init(void) { - int i, j; + w_about = newwin_title(0, WAV_HEIGHT, "About", false); for (i = 0; i < ARRAY_SIZE(about_lines); i++) { linecd[i] = malloc(strlen(about_lines[i]) * sizeof(int)); @@ -49,17 +51,8 @@ static void init_scramble(void) } } -static void free_scramble(void) +int scr_about_loop(WINDOW *w_menu) { - int i; - - for (i = 0; i < ARRAY_SIZE(about_lines); i++) - free(linecd[i]); -} - -static void draw_lines(WINDOW *w_about) -{ - int i, j; char buf[0x100]; for (i = 0; i < ARRAY_SIZE(about_lines); i++) { @@ -78,33 +71,12 @@ static void draw_lines(WINDOW *w_about) waddstr_center(w_about, (WAV_HEIGHT - ARRAY_SIZE(about_lines))/2 + i, buf); } wrefresh(w_about); + return wgetch(w_menu); } -enum wavemon_screen scr_about(WINDOW *w_menu) +void scr_about_fini(void) { - WINDOW *w_about; - int key = 0; - - w_about = newwin_title(0, WAV_HEIGHT, "About", false); - - init_scramble(); - - while (key < KEY_F(1) || key > KEY_F(10)) { - do { - draw_lines(w_about); - key = wgetch(w_menu); - usleep(5000); - } while (key <= 0); - - /* Keyboard shortcuts */ - if (key == 'q') - key = KEY_F(10); - else if (key == 'i') - key = KEY_F(1); - } - - free_scramble(); delwin(w_about); - - return key - KEY_F(1); + for (i = 0; i < ARRAY_SIZE(about_lines); i++) + free(linecd[i]); } -- cgit v1.2.3