X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fdemo_panels.c;h=d28592511c835fe20aac3afed38b0907967ec74a;hp=f9af6cc7bbe2abde79ebc81330e04d286cdcf8c6;hb=12b49d3c56a6130feb2d39fbe2d6c1bc0838f0fa;hpb=d49a800c7f54c8d9e77f745423c821a8535ada59 diff --git a/test/demo_panels.c b/test/demo_panels.c index f9af6cc7..d2859251 100644 --- a/test/demo_panels.c +++ b/test/demo_panels.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2007-2008,2010 Free Software Foundation, Inc. * + * Copyright (c) 2007-2016,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -26,7 +26,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: demo_panels.c,v 1.34 2010/03/06 18:14:04 tom Exp $ + * $Id: demo_panels.c,v 1.41 2017/04/15 18:39:29 tom Exp $ * * Demonstrate a variety of functions from the panel library. */ @@ -117,10 +117,9 @@ get_position(NCURSES_CONST char *text, int result = 0; int x1, y1; char cmd; - WINDOW *win; getyx(stdscr, y1, x1); - win = statusline(); + (void) statusline(); show_position(text, also, which, y1, x1); @@ -223,7 +222,7 @@ mkpanel(short color, int rows, int cols, int tly, int tlx) wbkgdset(win, A_BOLD | ' '); } } - sprintf(userdata, "p%d", color % 8); + _nc_SPRINTF(userdata, _nc_SLIMIT(3) "p%d", color % 8); set_panel_userptr(pan, (NCURSES_CONST void *) userdata); return pan; } @@ -272,7 +271,7 @@ my_create_panel(PANEL ** pans, int which, FillPanel myFill) if (code > 0) { char also[80]; - sprintf(also, " (first %d,%d)", y0, x0); + _nc_SPRINTF(also, _nc_SLIMIT(sizeof(also)) " (first %d,%d)", y0, x0); /* get the position of the opposite corner */ while ((code = get_position("Opposite corner", also, which, &x1, &y1)) == 0) { @@ -303,7 +302,7 @@ my_move_panel(PANEL ** pans, int which, bool continuous) char also[80]; getbegyx(win, y0, x0); - sprintf(also, " (start %d,%d)", y0, x0); + _nc_SPRINTF(also, _nc_SLIMIT(sizeof(also)) " (start %d,%d)", y0, x0); wmove(stdscr, y0, x0); while ((code = get_position("Move panel", also, which, &x1, &y1)) == 0) { if (continuous) { @@ -328,7 +327,7 @@ my_resize_panel(PANEL ** pans, int which, FillPanel myFill) char also[80]; getbegyx(win, y0, x0); - sprintf(also, " (start %d,%d)", y0, x0); + _nc_SPRINTF(also, _nc_SLIMIT(sizeof(also)) " (start %d,%d)", y0, x0); wmove(stdscr, y0, x0); while ((code = get_position("Resize panel", also, which, &x1, &y1)) == 0) { @@ -407,7 +406,7 @@ make_fullwidth_digit(cchar_t *target, int digit) { wchar_t source[2]; - source[0] = digit + 0xff10; + source[0] = (wchar_t) (digit + 0xff10); source[1] = 0; setcchar(target, source, A_NORMAL, 0, 0); } @@ -480,7 +479,7 @@ show_panels(PANEL * px[MAX_PANELS + 1]) " m - move the panel (M for continuous move)", " r - resize the panel", " s - show the panel", - " b - put the panel on the top of the stack" + " t - put the panel on the top of the stack" }; struct { @@ -508,7 +507,7 @@ show_panels(PANEL * px[MAX_PANELS + 1]) keypad(win, TRUE); if ((pan = new_panel(win)) != 0) { werase(win); - mvwprintw(win, 0, 0, "Panels:\n"); + MvWPrintw(win, 0, 0, "Panels:\n"); for (j = 1; j <= MAX_PANELS; ++j) { if (table[j].valid) { wprintw(win, " %d:", j); @@ -656,7 +655,7 @@ get_command(PANEL * px[MAX_PANELS + 1], char *buffer, int limit) wrefresh(curscr); } else if (ch == '\n' || ch == KEY_ENTER) { break; - } else if (ch == '?') { + } else if (ch == HELP_KEY_1) { show_panels(px); } else if (length + 3 < limit) { if (ch >= KEY_MIN) {