X-Git-Url: https://ncurses.scripts.mit.edu/?a=blobdiff_plain;f=test%2Fview.c;h=da073151e3fb98d0225938f4bc4426ac203e1f04;hb=5c2245b6fc619f8d96ce940281dfbf13b5b8900b;hp=fcc0705431f6624c54b0b868e9d9ec0e50923d2d;hpb=9eb6f4991977566a493a5b1c36de2299f2754449;p=ncurses.git diff --git a/test/view.c b/test/view.c index fcc07054..da073151 100644 --- a/test/view.c +++ b/test/view.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2013,2015 Free Software Foundation, Inc. * + * Copyright (c) 1998-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 * @@ -50,11 +50,12 @@ * scroll operation worked, and the refresh() code only had to do a * partial repaint. * - * $Id: view.c,v 1.95 2015/10/10 20:03:58 tom Exp $ + * $Id: view.c,v 1.101 2017/04/15 20:14:01 tom Exp $ */ #include #include +#include #include @@ -227,6 +228,28 @@ ch_dup(char *src) int main(int argc, char *argv[]) { + static const char *help[] = + { + "Commands:", + " q,^Q,ESC - quit this program", + "", + " p, - scroll the viewport up by one row", + " n, - scroll the viewport down by one row", + " l, - scroll the viewport left by one column", + " r, - scroll the viewport right by one column", + "", + " h, - scroll the viewport to top of file", + " e, - scroll the viewport to end of file", + "", + " ^L - repaint using redrawwin()", + "", + " 0 through 9 - enter digits for count", + " s - use entered count for halfdelay() parameter", + " - if no entered count, stop nodelay()", + " - begin nodelay()", + 0 + }; + int MAXLINES = 1000; FILE *fp; char buf[BUFSIZ]; @@ -353,7 +376,8 @@ main(int argc, char *argv[]) col++; d++; } else { - sprintf(d, "\\%03o", UChar(*s)); + _nc_SPRINTF(d, _nc_SLIMIT(sizeof(temp) - (d - buf)) + "\\%03o", UChar(*s)); d += strlen(d); col = (int) (d - temp); } @@ -472,6 +496,8 @@ main(int argc, char *argv[]) break; case 'q': + case QUIT: + case ESCAPE: done = TRUE; break; @@ -498,6 +524,9 @@ main(int argc, char *argv[]) if (!my_delay) napms(50); break; + case HELP_KEY_1: + popup_msg(stdscr, help); + break; default: beep(); break; @@ -566,22 +595,25 @@ show_all(const char *tag) time_t this_time; #if CAN_RESIZE - sprintf(temp, "%.20s (%3dx%3d) col %d ", tag, LINES, COLS, shift); + _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) + "%.20s (%3dx%3d) col %d ", tag, LINES, COLS, shift); i = (int) strlen(temp); if ((i + 7) < (int) sizeof(temp)) { - sprintf(temp + i, "view %.*s", - (int) (sizeof(temp) - 7 - (size_t) i), - fname); + _nc_SPRINTF(temp + i, _nc_SLIMIT(sizeof(temp) - (size_t) i) + "view %.*s", + (int) (sizeof(temp) - 7 - (size_t) i), + fname); } #else (void) tag; - sprintf(temp, "view %.*s", (int) sizeof(temp) - 7, fname); + _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) + "view %.*s", (int) sizeof(temp) - 7, fname); #endif move(0, 0); printw("%.*s", COLS, temp); clrtoeol(); this_time = time((time_t *) 0); - strncpy(temp, ctime(&this_time), (size_t) 30); + _nc_STRNCPY(temp, ctime(&this_time), (size_t) 30); if ((i = (int) strlen(temp)) != 0) { temp[--i] = 0; if (move(0, COLS - i - 2) != ERR)