X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fnewdemo.c;h=8187982be2932d5b601bed9769ce3e546eacc465;hp=7f583389c321bfa83b517f67cf96e5c0e7c56eb7;hb=99c50261a07b29bfad4ab33ebe9f6597558e8c88;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01 diff --git a/test/newdemo.c b/test/newdemo.c index 7f583389..8187982b 100644 --- a/test/newdemo.c +++ b/test/newdemo.c @@ -2,19 +2,17 @@ * newdemo.c - A demo program using PDCurses. The program illustrate * the use of colours for text output. * - * $Id: newdemo.c,v 1.24 2002/06/29 23:32:18 tom Exp $ + * $Id: newdemo.c,v 1.32 2009/08/29 18:47:26 tom Exp $ */ -#include - #include -#define delay_output(x) napms(x) +#include /* * The Australian map */ -const char *AusMap[16] = +static CONST_MENUS char *AusMap[16] = { " A A ", " N.T. AAAAA AAAA ", @@ -35,7 +33,7 @@ const char *AusMap[16] = */ #define NMESSAGES 6 -NCURSES_CONST char *messages[] = +static NCURSES_CONST char *messages[] = { "Hello from the Land Down Under", "The Land of crocs. and a big Red Rock", @@ -86,19 +84,19 @@ set_colors(WINDOW *win, int pair, int foreground, int background) if (pair > COLOR_PAIRS) pair = COLOR_PAIRS; init_pair(pair, foreground, background); - wattrset(win, COLOR_PAIR(pair)); + (void) wattrset(win, COLOR_PAIR(pair)); } } -static int -use_colors(WINDOW *win, int pair, int attrs) +static chtype +use_colors(WINDOW *win, int pair, chtype attrs) { if (has_colors()) { if (pair > COLOR_PAIRS) pair = COLOR_PAIRS; attrs |= COLOR_PAIR(pair); } - wattrset(win, attrs); + (void) wattrset(win, attrs); return attrs; } @@ -225,12 +223,13 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) setlocale(LC_ALL, ""); + CATCHALL(trap); + initscr(); if (has_colors()) start_color(); cbreak(); curs_set(0); - signal(SIGINT, trap); width = 48; height = 14; /* Create a drawing window */ win = newwin(height, width, (LINES - height) / 2, (COLS - width) / 2); @@ -320,6 +319,7 @@ main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED) j = 0; /* Draw running As across in RED */ set_colors(win, 7, COLOR_RED, COLOR_GREEN); + memset(save, ' ', sizeof(save)); for (i = 2; i < width - 4; ++i) { k = mvwinch(win, 4, i); if (k == ERR)