X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fnewdemo.c;h=1e6942693ff8329f8b33b85d8faf61da220cbd48;hp=7f583389c321bfa83b517f67cf96e5c0e7c56eb7;hb=efd59f16f336b4c4c698ff783e1723f3161026ef;hpb=46722468f47c2b77b3987729b4bcf2321cccfd01;ds=sidebyside diff --git a/test/newdemo.c b/test/newdemo.c index 7f583389..1e694269 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.29 2006/12/03 00:15:28 tom Exp $ */ -#include - #include -#define delay_output(x) napms(x) +#include /* * The Australian map */ -const char *AusMap[16] = +static const 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", @@ -90,8 +88,8 @@ set_colors(WINDOW *win, int pair, int foreground, int background) } } -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) @@ -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);