]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/ncurses.c
ncurses 5.6 - patch 20070505
[ncurses.git] / test / ncurses.c
1 /****************************************************************************
2  * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28 /****************************************************************************
29
30 NAME
31    ncurses.c --- ncurses library exerciser
32
33 SYNOPSIS
34    ncurses
35
36 DESCRIPTION
37    An interactive test module for the ncurses library.
38
39 AUTHOR
40    Author: Eric S. Raymond <esr@snark.thyrsus.com> 1993
41            Thomas E. Dickey (beginning revision 1.27 in 1996).
42
43 $Id: ncurses.c,v 1.283 2007/03/10 19:11:50 tom Exp $
44
45 ***************************************************************************/
46
47 #include <test.priv.h>
48
49 #ifdef __hpux
50 #undef mvwdelch                 /* HPUX 11.23 macro will not compile */
51 #endif
52
53 #if HAVE_GETTIMEOFDAY
54 #if HAVE_SYS_TIME_H && HAVE_SYS_TIME_SELECT
55 #include <sys/time.h>
56 #endif
57 #if HAVE_SYS_SELECT_H
58 #include <sys/select.h>
59 #endif
60 #endif
61
62 #if USE_LIBPANEL
63 #include <panel.h>
64 #endif
65
66 #if USE_LIBMENU
67 #include <menu.h>
68 #endif
69
70 #if USE_LIBFORM
71 #include <form.h>
72 #endif
73
74 #ifdef NCURSES_VERSION
75
76 #define NCURSES_CONST_PARAM const void
77
78 #ifdef TRACE
79 static unsigned save_trace = TRACE_ORDINARY | TRACE_CALLS;
80 extern unsigned _nc_tracing;
81 #endif
82
83 #else
84
85 #define NCURSES_CONST_PARAM char
86
87 #define mmask_t chtype          /* not specified in XSI */
88
89 #ifndef ACS_S3
90 #ifdef CURSES_ACS_ARRAY
91 #define ACS_S3          (CURSES_ACS_ARRAY['p'])         /* scan line 3 */
92 #define ACS_S7          (CURSES_ACS_ARRAY['r'])         /* scan line 7 */
93 #define ACS_LEQUAL      (CURSES_ACS_ARRAY['y'])         /* less/equal */
94 #define ACS_GEQUAL      (CURSES_ACS_ARRAY['z'])         /* greater/equal */
95 #define ACS_PI          (CURSES_ACS_ARRAY['{'])         /* Pi */
96 #define ACS_NEQUAL      (CURSES_ACS_ARRAY['|'])         /* not equal */
97 #define ACS_STERLING    (CURSES_ACS_ARRAY['}'])         /* UK pound sign */
98 #else
99 #define ACS_S3          (A_ALTCHARSET + 'p')    /* scan line 3 */
100 #define ACS_S7          (A_ALTCHARSET + 'r')    /* scan line 7 */
101 #define ACS_LEQUAL      (A_ALTCHARSET + 'y')    /* less/equal */
102 #define ACS_GEQUAL      (A_ALTCHARSET + 'z')    /* greater/equal */
103 #define ACS_PI          (A_ALTCHARSET + '{')    /* Pi */
104 #define ACS_NEQUAL      (A_ALTCHARSET + '|')    /* not equal */
105 #define ACS_STERLING    (A_ALTCHARSET + '}')    /* UK pound sign */
106 #endif
107 #endif /* ACS_S3 */
108
109 #ifdef CURSES_WACS_ARRAY
110 #define WACS_S3         (&(CURSES_WACS_ARRAY['p']))     /* scan line 3 */
111 #define WACS_S7         (&(CURSES_WACS_ARRAY['r']))     /* scan line 7 */
112 #define WACS_LEQUAL     (&(CURSES_WACS_ARRAY['y']))     /* less/equal */
113 #define WACS_GEQUAL     (&(CURSES_WACS_ARRAY['z']))     /* greater/equal */
114 #define WACS_PI         (&(CURSES_WACS_ARRAY['{']))     /* Pi */
115 #define WACS_NEQUAL     (&(CURSES_WACS_ARRAY['|']))     /* not equal */
116 #define WACS_STERLING   (&(CURSES_WACS_ARRAY['}']))     /* UK pound sign */
117 #endif
118
119 #endif
120
121 #define P(string)       printw("%s\n", string)
122
123 #define BLANK           ' '     /* this is the background character */
124
125 #undef max_colors
126 static int max_colors;          /* the actual number of colors we'll use */
127 static int min_colors;          /* the minimum color code */
128 static bool use_colors;         /* true if we use colors */
129
130 #undef max_pairs
131 static int max_pairs;           /* ...and the number of color pairs */
132
133 typedef struct {
134     short red;
135     short green;
136     short blue;
137 } RGB_DATA;
138
139 static RGB_DATA *all_colors;
140
141 static void main_menu(bool);
142
143 /* The behavior of mvhline, mvvline for negative/zero length is unspecified,
144  * though we can rely on negative x/y values to stop the macro.
145  */
146 static void
147 do_h_line(int y, int x, chtype c, int to)
148 {
149     if ((to) > (x))
150         mvhline(y, x, c, (to) - (x));
151 }
152
153 static void
154 do_v_line(int y, int x, chtype c, int to)
155 {
156     if ((to) > (y))
157         mvvline(y, x, c, (to) - (y));
158 }
159
160 static void
161 Repaint(void)
162 {
163     touchwin(stdscr);
164     touchwin(curscr);
165     wrefresh(curscr);
166 }
167
168 static bool
169 isQuit(int c)
170 {
171     return ((c) == QUIT || (c) == ESCAPE);
172 }
173 #define case_QUIT       case QUIT: case ESCAPE
174
175 /* Common function to allow ^T to toggle trace-mode in the middle of a test
176  * so that trace-files can be made smaller.
177  */
178 static int
179 wGetchar(WINDOW *win)
180 {
181     int c;
182 #ifdef TRACE
183     while ((c = wgetch(win)) == CTRL('T')) {
184         if (_nc_tracing) {
185             save_trace = _nc_tracing;
186             _tracef("TOGGLE-TRACING OFF");
187             _nc_tracing = 0;
188         } else {
189             _nc_tracing = save_trace;
190         }
191         trace(_nc_tracing);
192         if (_nc_tracing)
193             _tracef("TOGGLE-TRACING ON");
194     }
195 #else
196     c = wgetch(win);
197 #endif
198     return c;
199 }
200 #define Getchar() wGetchar(stdscr)
201
202 /* replaces wgetnstr(), since we want to be able to edit values */
203 static void
204 wGetstring(WINDOW *win, char *buffer, int limit)
205 {
206     int y0, x0, x, ch;
207     bool done = FALSE;
208
209     echo();
210     getyx(win, y0, x0);
211     wattrset(win, A_REVERSE);
212
213     x = strlen(buffer);
214     while (!done) {
215         if (x > (int) strlen(buffer))
216             x = (int) strlen(buffer);
217         wmove(win, y0, x0);
218         wprintw(win, "%-*s", limit, buffer);
219         wmove(win, y0, x0 + x);
220         switch (ch = wGetchar(win)) {
221         case '\n':
222         case KEY_ENTER:
223             done = TRUE;
224             break;
225         case CTRL('U'):
226             *buffer = '\0';
227             break;
228         case '\b':
229         case KEY_BACKSPACE:
230         case KEY_DC:
231             if (x > 0) {
232                 int j;
233                 for (j = --x; (buffer[j] = buffer[j + 1]) != '\0'; ++j) {
234                     ;
235                 }
236             } else {
237                 beep();
238             }
239             break;
240         case KEY_LEFT:
241             if (x > 0) {
242                 --x;
243             } else {
244                 flash();
245             }
246             break;
247         case KEY_RIGHT:
248             ++x;
249             break;
250         default:
251             if (!isprint(ch) || ch >= KEY_MIN) {
252                 beep();
253             } else if ((int) strlen(buffer) < limit) {
254                 int j;
255                 for (j = strlen(buffer) + 1; j > x; --j) {
256                     buffer[j] = buffer[j - 1];
257                 }
258                 buffer[x++] = ch;
259             } else {
260                 flash();
261             }
262         }
263     }
264
265     wattroff(win, A_REVERSE);
266     wmove(win, y0, x0);
267     noecho();
268 }
269
270 #if USE_WIDEC_SUPPORT
271 static int
272 wGet_wchar(WINDOW *win, wint_t *result)
273 {
274     int c;
275 #ifdef TRACE
276     while ((c = wget_wch(win, result)) == CTRL('T')) {
277         if (_nc_tracing) {
278             save_trace = _nc_tracing;
279             _tracef("TOGGLE-TRACING OFF");
280             _nc_tracing = 0;
281         } else {
282             _nc_tracing = save_trace;
283         }
284         trace(_nc_tracing);
285         if (_nc_tracing)
286             _tracef("TOGGLE-TRACING ON");
287     }
288 #else
289     c = wget_wch(win, result);
290 #endif
291     return c;
292 }
293 #define Get_wchar(result) wGet_wchar(stdscr, result)
294
295 /* replaces wgetn_wstr(), since we want to be able to edit values */
296 static void
297 wGet_wstring(WINDOW *win, wchar_t *buffer, int limit)
298 {
299     int y0, x0, x;
300     wint_t ch;
301     bool done = FALSE;
302     bool fkey = FALSE;
303
304     echo();
305     getyx(win, y0, x0);
306     wattrset(win, A_REVERSE);
307
308     x = wcslen(buffer);
309     while (!done) {
310         if (x > (int) wcslen(buffer))
311             x = (int) wcslen(buffer);
312
313         /* clear the "window' */
314         wmove(win, y0, x0);
315         wprintw(win, "%*s", limit, " ");
316
317         /* write the existing buffer contents */
318         wmove(win, y0, x0);
319         waddnwstr(win, buffer, limit);
320
321         /* positions the cursor past character 'x' */
322         wmove(win, y0, x0);
323         waddnwstr(win, buffer, x);
324
325         switch (wGet_wchar(win, &ch)) {
326         case KEY_CODE_YES:
327             fkey = TRUE;
328             switch (ch) {
329             case KEY_ENTER:
330                 ch = '\n';
331                 fkey = FALSE;
332                 break;
333             case KEY_BACKSPACE:
334             case KEY_DC:
335                 ch = '\b';
336                 fkey = FALSE;
337                 break;
338             case KEY_LEFT:
339             case KEY_RIGHT:
340                 break;
341             default:
342                 ch = (wint_t) -1;
343                 break;
344             }
345             break;
346         case OK:
347             fkey = FALSE;
348             break;
349         default:
350             ch = (wint_t) -1;
351             fkey = TRUE;
352             break;
353         }
354
355         switch (ch) {
356         case '\n':
357             done = TRUE;
358             break;
359         case CTRL('U'):
360             *buffer = '\0';
361             break;
362         case '\b':
363             if (x > 0) {
364                 int j;
365                 for (j = --x; (buffer[j] = buffer[j + 1]) != '\0'; ++j) {
366                     ;
367                 }
368             } else {
369                 beep();
370             }
371             break;
372         case KEY_LEFT:
373             if (x > 0) {
374                 --x;
375             } else {
376                 beep();
377             }
378             break;
379         case KEY_RIGHT:
380             ++x;
381             break;
382         default:
383             if (fkey) {
384                 beep();
385             } else if ((int) wcslen(buffer) < limit) {
386                 int j;
387                 for (j = wcslen(buffer) + 1; j > x; --j) {
388                     buffer[j] = buffer[j - 1];
389                 }
390                 buffer[x++] = ch;
391             } else {
392                 beep();
393             }
394         }
395     }
396
397     wattroff(win, A_REVERSE);
398     wmove(win, y0, x0);
399     noecho();
400 }
401
402 #endif
403
404 static void
405 Pause(void)
406 {
407     move(LINES - 1, 0);
408     addstr("Press any key to continue... ");
409     (void) Getchar();
410 }
411
412 static void
413 Cannot(const char *what)
414 {
415     printw("\nThis %s terminal %s\n\n", getenv("TERM"), what);
416     Pause();
417 }
418
419 static void
420 ShellOut(bool message)
421 {
422     if (message)
423         addstr("Shelling out...");
424     def_prog_mode();
425     endwin();
426     system("sh");
427     if (message)
428         addstr("returned from shellout.\n");
429     refresh();
430 }
431
432 #ifdef NCURSES_MOUSE_VERSION
433 /*
434  * This function is the same as _tracemouse(), but we cannot count on that
435  * being available in the non-debug library.
436  */
437 static const char *
438 mouse_decode(MEVENT const *ep)
439 {
440     static char buf[80 + (5 * 10) + (32 * 15)];
441
442     (void) sprintf(buf, "id %2d  at (%2d, %2d, %2d) state %4lx = {",
443                    ep->id, ep->x, ep->y, ep->z, (unsigned long) ep->bstate);
444
445 #define SHOW(m, s) if ((ep->bstate & m)==m) {strcat(buf,s); strcat(buf, ", ");}
446
447     SHOW(BUTTON1_RELEASED, "release-1");
448     SHOW(BUTTON1_PRESSED, "press-1");
449     SHOW(BUTTON1_CLICKED, "click-1");
450     SHOW(BUTTON1_DOUBLE_CLICKED, "doubleclick-1");
451     SHOW(BUTTON1_TRIPLE_CLICKED, "tripleclick-1");
452 #if NCURSES_MOUSE_VERSION == 1
453     SHOW(BUTTON1_RESERVED_EVENT, "reserved-1");
454 #endif
455
456     SHOW(BUTTON2_RELEASED, "release-2");
457     SHOW(BUTTON2_PRESSED, "press-2");
458     SHOW(BUTTON2_CLICKED, "click-2");
459     SHOW(BUTTON2_DOUBLE_CLICKED, "doubleclick-2");
460     SHOW(BUTTON2_TRIPLE_CLICKED, "tripleclick-2");
461 #if NCURSES_MOUSE_VERSION == 1
462     SHOW(BUTTON2_RESERVED_EVENT, "reserved-2");
463 #endif
464
465     SHOW(BUTTON3_RELEASED, "release-3");
466     SHOW(BUTTON3_PRESSED, "press-3");
467     SHOW(BUTTON3_CLICKED, "click-3");
468     SHOW(BUTTON3_DOUBLE_CLICKED, "doubleclick-3");
469     SHOW(BUTTON3_TRIPLE_CLICKED, "tripleclick-3");
470 #if NCURSES_MOUSE_VERSION == 1
471     SHOW(BUTTON3_RESERVED_EVENT, "reserved-3");
472 #endif
473
474     SHOW(BUTTON4_RELEASED, "release-4");
475     SHOW(BUTTON4_PRESSED, "press-4");
476     SHOW(BUTTON4_CLICKED, "click-4");
477     SHOW(BUTTON4_DOUBLE_CLICKED, "doubleclick-4");
478     SHOW(BUTTON4_TRIPLE_CLICKED, "tripleclick-4");
479 #if NCURSES_MOUSE_VERSION == 1
480     SHOW(BUTTON4_RESERVED_EVENT, "reserved-4");
481 #endif
482
483 #if NCURSES_MOUSE_VERSION == 2
484     SHOW(BUTTON5_RELEASED, "release-5");
485     SHOW(BUTTON5_PRESSED, "press-5");
486     SHOW(BUTTON5_CLICKED, "click-5");
487     SHOW(BUTTON5_DOUBLE_CLICKED, "doubleclick-5");
488     SHOW(BUTTON5_TRIPLE_CLICKED, "tripleclick-5");
489 #endif
490
491     SHOW(BUTTON_CTRL, "ctrl");
492     SHOW(BUTTON_SHIFT, "shift");
493     SHOW(BUTTON_ALT, "alt");
494     SHOW(ALL_MOUSE_EVENTS, "all-events");
495     SHOW(REPORT_MOUSE_POSITION, "position");
496
497 #undef SHOW
498
499     if (buf[strlen(buf) - 1] == ' ')
500         buf[strlen(buf) - 2] = '\0';
501     (void) strcat(buf, "}");
502     return (buf);
503 }
504 #endif /* NCURSES_MOUSE_VERSION */
505
506 /****************************************************************************
507  *
508  * Character input test
509  *
510  ****************************************************************************/
511
512 static void
513 setup_getch(WINDOW *win, bool flags[])
514 {
515     keypad(win, flags['k']);    /* should be redundant, but for testing */
516     meta(win, flags['m']);      /* force this to a known state */
517     if (flags['e'])
518         echo();
519     else
520         noecho();
521 }
522
523 static void
524 wgetch_help(WINDOW *win, bool flags[])
525 {
526     static const char *help[] =
527     {
528         "e  -- toggle echo mode"
529         ,"g  -- triggers a getstr test"
530         ,"k  -- toggle keypad/literal mode"
531         ,"m  -- toggle meta (7-bit/8-bit) mode"
532         ,"^q -- quit"
533         ,"s  -- shell out\n"
534         ,"w  -- create a new window"
535 #ifdef SIGTSTP
536         ,"z  -- suspend this process"
537 #endif
538     };
539     int y, x;
540     unsigned chk = ((SIZEOF(help) + 1) / 2);
541     unsigned n;
542
543     getyx(win, y, x);
544     move(0, 0);
545     printw("Type any key to see its %s value.  Also:\n",
546            flags['k'] ? "keypad" : "literal");
547     for (n = 0; n < SIZEOF(help); ++n) {
548         int row = 1 + (n % chk);
549         int col = (n >= chk) ? COLS / 2 : 0;
550         int flg = ((strstr(help[n], "toggle") != 0)
551                    && (flags[UChar(*help[n])] != FALSE));
552         if (flg)
553             standout();
554         mvprintw(row, col, "%s", help[n]);
555         if (col == 0)
556             clrtoeol();
557         if (flg)
558             standend();
559     }
560     wrefresh(stdscr);
561     wmove(win, y, x);
562 }
563
564 static void
565 wgetch_wrap(WINDOW *win, int first_y)
566 {
567     int last_y = getmaxy(win) - 1;
568     int y = getcury(win) + 1;
569
570     if (y >= last_y)
571         y = first_y;
572     wmove(win, y, 0);
573     wclrtoeol(win);
574 }
575
576 #if defined(NCURSES_VERSION) && defined(KEY_RESIZE) && HAVE_WRESIZE
577 typedef struct {
578     WINDOW *text;
579     WINDOW *frame;
580 } WINSTACK;
581
582 static WINSTACK *winstack = 0;
583 static unsigned len_winstack = 0;
584
585 static void
586 forget_boxes(void)
587 {
588     if (winstack != 0) {
589         free(winstack);
590     }
591     winstack = 0;
592     len_winstack = 0;
593 }
594
595 static void
596 remember_boxes(unsigned level, WINDOW *txt_win, WINDOW *box_win)
597 {
598     unsigned need = (level + 1) * 2;
599
600     if (winstack == 0) {
601         len_winstack = 20;
602         winstack = (WINSTACK *) malloc(len_winstack * sizeof(WINSTACK));
603     } else if (need >= len_winstack) {
604         len_winstack = need;
605         winstack = (WINSTACK *) realloc(winstack, len_winstack * sizeof(WINSTACK));
606     }
607     winstack[level].text = txt_win;
608     winstack[level].frame = box_win;
609 }
610
611 /*
612  * For wgetch_test(), we create pairs of windows - one for a box, one for text.
613  * Resize both and paint the box in the parent.
614  */
615 static void
616 resize_boxes(unsigned level, WINDOW *win)
617 {
618     unsigned n;
619     int base = 5;
620     int high = LINES - base;
621     int wide = COLS;
622
623     touchwin(stdscr);
624     wnoutrefresh(stdscr);
625
626 #if USE_SOFTKEYS
627     /* FIXME: this chunk should be done in resizeterm() */
628     slk_touch();
629     slk_clear();
630     slk_noutrefresh();
631 #endif
632
633     for (n = 0; n < level; ++n) {
634         wresize(winstack[n].frame, high, wide);
635         wresize(winstack[n].text, high - 2, wide - 2);
636         high -= 2;
637         wide -= 2;
638         werase(winstack[n].text);
639         box(winstack[n].frame, 0, 0);
640         wnoutrefresh(winstack[n].frame);
641         wprintw(winstack[n].text,
642                 "size %dx%d\n",
643                 getmaxy(winstack[n].text),
644                 getmaxx(winstack[n].text));
645         wnoutrefresh(winstack[n].text);
646         if (winstack[n].text == win)
647             break;
648     }
649     doupdate();
650 }
651 #else
652 #define forget_boxes()          /* nothing */
653 #define remember_boxes(level,text,frame)        /* nothing */
654 #endif
655
656 static void
657 wgetch_test(unsigned level, WINDOW *win, int delay)
658 {
659     char buf[BUFSIZ];
660     int first_y, first_x;
661     int c;
662     int incount = 0;
663     bool flags[256];
664     bool blocking = (delay < 0);
665
666     memset(flags, FALSE, sizeof(flags));
667     flags[UChar('k')] = (win == stdscr);
668
669     setup_getch(win, flags);
670     wtimeout(win, delay);
671     getyx(win, first_y, first_x);
672
673     wgetch_help(win, flags);
674     wsetscrreg(win, first_y, getmaxy(win) - 1);
675     scrollok(win, TRUE);
676
677     for (;;) {
678         while ((c = wGetchar(win)) == ERR) {
679             incount++;
680             if (blocking) {
681                 (void) wprintw(win, "%05d: input error", incount);
682                 break;
683             } else {
684                 (void) wprintw(win, "%05d: input timed out", incount);
685             }
686             wgetch_wrap(win, first_y);
687         }
688         if (c == ERR && blocking) {
689             wprintw(win, "ERR");
690             wgetch_wrap(win, first_y);
691         } else if (isQuit(c)) {
692             break;
693         } else if (c == 'e') {
694             flags[UChar('e')] = !flags[UChar('e')];
695             setup_getch(win, flags);
696             wgetch_help(win, flags);
697         } else if (c == 'g') {
698             waddstr(win, "getstr test: ");
699             echo();
700             wgetnstr(win, buf, sizeof(buf) - 1);
701             noecho();
702             wprintw(win, "I saw %d characters:\n\t`%s'.", (int) strlen(buf), buf);
703             wclrtoeol(win);
704             wgetch_wrap(win, first_y);
705         } else if (c == 'k') {
706             flags[UChar('k')] = !flags[UChar('k')];
707             setup_getch(win, flags);
708             wgetch_help(win, flags);
709         } else if (c == 'm') {
710             flags[UChar('m')] = !flags[UChar('m')];
711             setup_getch(win, flags);
712             wgetch_help(win, flags);
713         } else if (c == 's') {
714             ShellOut(TRUE);
715         } else if (c == 'w') {
716             int high = getmaxy(win) - 1 - first_y + 1;
717             int wide = getmaxx(win) - first_x;
718             int old_y, old_x;
719             int new_y = first_y + getbegy(win);
720             int new_x = first_x + getbegx(win);
721
722             getyx(win, old_y, old_x);
723             if (high > 2 && wide > 2) {
724                 WINDOW *wb = newwin(high, wide, new_y, new_x);
725                 WINDOW *wi = newwin(high - 2, wide - 2, new_y + 1, new_x + 1);
726
727                 box(wb, 0, 0);
728                 wrefresh(wb);
729                 wmove(wi, 0, 0);
730                 remember_boxes(level, wi, wb);
731                 wgetch_test(level + 1, wi, delay);
732                 delwin(wi);
733                 delwin(wb);
734
735                 wgetch_help(win, flags);
736                 wmove(win, old_y, old_x);
737                 touchwin(win);
738                 wrefresh(win);
739                 doupdate();
740             }
741 #ifdef SIGTSTP
742         } else if (c == 'z') {
743             kill(getpid(), SIGTSTP);
744 #endif
745         } else {
746             wprintw(win, "Key pressed: %04o ", c);
747 #ifdef NCURSES_MOUSE_VERSION
748             if (c == KEY_MOUSE) {
749                 int y, x;
750                 MEVENT event;
751
752                 getmouse(&event);
753                 wprintw(win, "KEY_MOUSE, %s", mouse_decode(&event));
754                 getyx(win, y, x);
755                 move(event.y, event.x);
756                 addch('*');
757                 wmove(win, y, x);
758             } else
759 #endif /* NCURSES_MOUSE_VERSION */
760             if (c >= KEY_MIN) {
761 #if defined(NCURSES_VERSION) && defined(KEY_RESIZE) && HAVE_WRESIZE
762                 if (c == KEY_RESIZE) {
763                     resize_boxes(level, win);
764                 }
765 #endif
766                 (void) waddstr(win, keyname(c));
767             } else if (c > 0x80) {
768                 unsigned c2 = (c & 0x7f);
769                 if (isprint(c2))
770                     (void) wprintw(win, "M-%c", UChar(c2));
771                 else
772                     (void) wprintw(win, "M-%s", unctrl(c2));
773                 waddstr(win, " (high-half character)");
774             } else {
775                 if (isprint(c))
776                     (void) wprintw(win, "%c (ASCII printable character)", c);
777                 else
778                     (void) wprintw(win, "%s (ASCII control character)",
779                                    unctrl(UChar(c)));
780             }
781             wgetch_wrap(win, first_y);
782         }
783     }
784
785     wtimeout(win, -1);
786 }
787
788 static int
789 begin_getch_test(void)
790 {
791     char buf[BUFSIZ];
792     int delay;
793
794     refresh();
795
796 #ifdef NCURSES_MOUSE_VERSION
797     mousemask(ALL_MOUSE_EVENTS, (mmask_t *) 0);
798 #endif
799
800     (void) printw("Delay in 10ths of a second (<CR> for blocking input)? ");
801     echo();
802     getnstr(buf, sizeof(buf) - 1);
803     noecho();
804     nonl();
805
806     if (isdigit(UChar(buf[0]))) {
807         delay = atoi(buf) * 100;
808     } else {
809         delay = -1;
810     }
811     raw();
812     move(5, 0);
813     return delay;
814 }
815
816 static void
817 finish_getch_test(void)
818 {
819 #ifdef NCURSES_MOUSE_VERSION
820     mousemask(0, (mmask_t *) 0);
821 #endif
822     erase();
823     noraw();
824     nl();
825     endwin();
826 }
827
828 static void
829 getch_test(void)
830 {
831     int delay = begin_getch_test();
832     wgetch_test(0, stdscr, delay);
833     forget_boxes();
834     finish_getch_test();
835 }
836
837 #if USE_WIDEC_SUPPORT
838 /*
839  * For wgetch_test(), we create pairs of windows - one for a box, one for text.
840  * Resize both and paint the box in the parent.
841  */
842 #ifdef KEY_RESIZE
843 static void
844 resize_wide_boxes(unsigned level, WINDOW *win)
845 {
846     unsigned n;
847     int base = 5;
848     int high = LINES - base;
849     int wide = COLS;
850
851     touchwin(stdscr);
852     wnoutrefresh(stdscr);
853
854 #if USE_SOFTKEYS
855     /* FIXME: this chunk should be done in resizeterm() */
856     slk_touch();
857     slk_clear();
858     slk_noutrefresh();
859 #endif
860
861     for (n = 0; n < level; ++n) {
862         wresize(winstack[n].frame, high, wide);
863         wresize(winstack[n].text, high - 2, wide - 2);
864         high -= 2;
865         wide -= 2;
866         werase(winstack[n].text);
867         box_set(winstack[n].frame, 0, 0);
868         wnoutrefresh(winstack[n].frame);
869         wprintw(winstack[n].text,
870                 "size %dx%d\n",
871                 getmaxy(winstack[n].text),
872                 getmaxx(winstack[n].text));
873         wnoutrefresh(winstack[n].text);
874         if (winstack[n].text == win)
875             break;
876     }
877     doupdate();
878 }
879 #endif /* KEY_RESIZE */
880
881 static char *
882 wcstos(const wchar_t *src)
883 {
884     int need;
885     mbstate_t state;
886     char *result = 0;
887     const wchar_t *tmp = src;
888
889     memset(&state, 0, sizeof(state));
890     if ((need = wcsrtombs(0, &tmp, 0, &state)) > 0) {
891         unsigned have = need;
892         result = (char *) calloc(have + 1, 1);
893         tmp = src;
894         if (wcsrtombs(result, &tmp, have, &state) != have) {
895             free(result);
896             result = 0;
897         }
898     }
899     return result;
900 }
901
902 static void
903 wget_wch_test(unsigned level, WINDOW *win, int delay)
904 {
905     wchar_t wchar_buf[BUFSIZ];
906     wint_t wint_buf[BUFSIZ];
907     int first_y, first_x;
908     wint_t c;
909     int incount = 0;
910     bool flags[256];
911     bool blocking = (delay < 0);
912     int y, x, code;
913     char *temp;
914
915     memset(flags, FALSE, sizeof(flags));
916     flags[UChar('k')] = (win == stdscr);
917
918     setup_getch(win, flags);
919     wtimeout(win, delay);
920     getyx(win, first_y, first_x);
921
922     wgetch_help(win, flags);
923     wsetscrreg(win, first_y, getmaxy(win) - 1);
924     scrollok(win, TRUE);
925
926     for (;;) {
927         while ((code = wGet_wchar(win, &c)) == ERR) {
928             incount++;
929             if (blocking) {
930                 (void) wprintw(win, "%05d: input error", incount);
931                 break;
932             } else {
933                 (void) wprintw(win, "%05d: input timed out", incount);
934             }
935             wgetch_wrap(win, first_y);
936         }
937         if (code == ERR && blocking) {
938             wprintw(win, "ERR");
939             wgetch_wrap(win, first_y);
940         } else if (isQuit((int) c)) {
941             break;
942         } else if (c == 'e') {
943             flags[UChar('e')] = !flags[UChar('e')];
944             setup_getch(win, flags);
945             wgetch_help(win, flags);
946         } else if (c == 'g') {
947             waddstr(win, "getstr test: ");
948             echo();
949             code = wgetn_wstr(win, wint_buf, sizeof(wint_buf) - 1);
950             noecho();
951             if (code == ERR) {
952                 wprintw(win, "wgetn_wstr returns an error.");
953             } else {
954                 int n;
955                 for (n = 0; (wchar_buf[n] = wint_buf[n]) != 0; ++n) ;
956                 if ((temp = wcstos(wchar_buf)) != 0) {
957                     wprintw(win, "I saw %d characters:\n\t`%s'.",
958                             wcslen(wchar_buf), temp);
959                     free(temp);
960                 } else {
961                     wprintw(win, "I saw %d characters (cannot convert).",
962                             wcslen(wchar_buf));
963                 }
964             }
965             wclrtoeol(win);
966             wgetch_wrap(win, first_y);
967         } else if (c == 'k') {
968             flags[UChar('k')] = !flags[UChar('k')];
969             setup_getch(win, flags);
970             wgetch_help(win, flags);
971         } else if (c == 'm') {
972             flags[UChar('m')] = !flags[UChar('m')];
973             setup_getch(win, flags);
974             wgetch_help(win, flags);
975         } else if (c == 's') {
976             ShellOut(TRUE);
977         } else if (c == 'w') {
978             int high = getmaxy(win) - 1 - first_y + 1;
979             int wide = getmaxx(win) - first_x;
980             int old_y, old_x;
981             int new_y = first_y + getbegy(win);
982             int new_x = first_x + getbegx(win);
983
984             getyx(win, old_y, old_x);
985             if (high > 2 && wide > 2) {
986                 WINDOW *wb = newwin(high, wide, new_y, new_x);
987                 WINDOW *wi = newwin(high - 2, wide - 2, new_y + 1, new_x + 1);
988
989                 box_set(wb, 0, 0);
990                 wrefresh(wb);
991                 wmove(wi, 0, 0);
992                 remember_boxes(level, wi, wb);
993                 wget_wch_test(level + 1, wi, delay);
994                 delwin(wi);
995                 delwin(wb);
996
997                 wgetch_help(win, flags);
998                 wmove(win, old_y, old_x);
999                 touchwin(win);
1000                 wrefresh(win);
1001             }
1002 #ifdef SIGTSTP
1003         } else if (c == 'z') {
1004             kill(getpid(), SIGTSTP);
1005 #endif
1006         } else {
1007             wprintw(win, "Key pressed: %04o ", c);
1008 #ifdef NCURSES_MOUSE_VERSION
1009             if (c == KEY_MOUSE) {
1010                 MEVENT event;
1011
1012                 getmouse(&event);
1013                 wprintw(win, "KEY_MOUSE, %s", mouse_decode(&event));
1014                 getyx(win, y, x);
1015                 move(event.y, event.x);
1016                 addch('*');
1017                 wmove(win, y, x);
1018             } else
1019 #endif /* NCURSES_MOUSE_VERSION */
1020             if (code == KEY_CODE_YES) {
1021 #ifdef KEY_RESIZE
1022                 if (c == KEY_RESIZE) {
1023                     resize_wide_boxes(level, win);
1024                 }
1025 #endif
1026                 (void) waddstr(win, key_name((wchar_t) c));
1027             } else {
1028                 if (c < 256 && iscntrl(c)) {
1029                     (void) wprintw(win, "%s (control character)", unctrl(c));
1030                 } else {
1031                     wchar_t c2 = c;
1032                     waddnwstr(win, &c2, 1);
1033                     (void) wprintw(win, " = %#x (printable character)", c);
1034                 }
1035             }
1036             wgetch_wrap(win, first_y);
1037         }
1038     }
1039
1040     wtimeout(win, -1);
1041 }
1042
1043 static void
1044 get_wch_test(void)
1045 {
1046     int delay = begin_getch_test();
1047     wget_wch_test(0, stdscr, delay);
1048     forget_boxes();
1049     finish_getch_test();
1050 }
1051 #endif
1052
1053 /****************************************************************************
1054  *
1055  * Character attributes test
1056  *
1057  ****************************************************************************/
1058
1059 #if HAVE_SETUPTERM || HAVE_TGETENT
1060 #define get_ncv() TIGETNUM("ncv","NC")
1061 #define get_xmc() TIGETNUM("xmc","sg")
1062 #else
1063 #define get_ncv() -1
1064 #define get_xmc() -1
1065 #endif
1066
1067 #if !HAVE_TERMATTRS
1068 static chtype
1069 my_termattrs(void)
1070 {
1071     static int first = TRUE;
1072     static chtype result = 0;
1073
1074     if (first) {
1075 #if !HAVE_TIGETSTR
1076         char buffer[4096];
1077         char parsed[4096];
1078         char *area_pointer = parsed;
1079
1080         tgetent(buffer, getenv("TERM"));
1081 #endif
1082
1083         if (TIGETSTR("smso", "so"))
1084             result |= A_STANDOUT;
1085         if (TIGETSTR("smul", "us"))
1086             result |= A_UNDERLINE;
1087         if (TIGETSTR("rev", "mr"))
1088             result |= A_REVERSE;
1089         if (TIGETSTR("blink", "mb"))
1090             result |= A_BLINK;
1091         if (TIGETSTR("dim", "mh"))
1092             result |= A_DIM;
1093         if (TIGETSTR("bold", "md"))
1094             result |= A_BOLD;
1095         if (TIGETSTR("smacs", "ac"))
1096             result |= A_ALTCHARSET;
1097
1098         first = FALSE;
1099     }
1100     return result;
1101 }
1102 #define termattrs() my_termattrs()
1103 #endif
1104
1105 #define MAX_ATTRSTRING 31
1106 #define LEN_ATTRSTRING 26
1107
1108 static char attr_test_string[MAX_ATTRSTRING + 1];
1109
1110 static void
1111 attr_legend(WINDOW *helpwin)
1112 {
1113     int row = 1;
1114     int col = 1;
1115
1116     mvwprintw(helpwin, row++, col,
1117               "ESC to exit.");
1118     mvwprintw(helpwin, row++, col,
1119               "^L repaints.");
1120     ++row;
1121     mvwprintw(helpwin, row++, col,
1122               "Modify the test strings:");
1123     mvwprintw(helpwin, row++, col,
1124               "  A digit sets gaps on each side of displayed attributes");
1125     mvwprintw(helpwin, row++, col,
1126               "  </> shifts the text left/right. ");
1127     ++row;
1128     mvwprintw(helpwin, row++, col,
1129               "Toggles:");
1130     if (use_colors) {
1131         mvwprintw(helpwin, row++, col,
1132                   "  f/F/b/F toggle foreground/background background color");
1133         mvwprintw(helpwin, row++, col,
1134                   "  t/T     toggle text/background color attribute");
1135     }
1136     mvwprintw(helpwin, row++, col,
1137               "  a/A     toggle ACS (alternate character set) mapping");
1138     mvwprintw(helpwin, row++, col,
1139               "  v/V     toggle video attribute to combine with each line");
1140 }
1141
1142 static void
1143 show_color_attr(int fg, int bg, int tx)
1144 {
1145     if (use_colors) {
1146         printw("  Colors (fg %d, bg %d", fg, bg);
1147         if (tx >= 0)
1148             printw(", text %d", tx);
1149         printw("),");
1150     }
1151 }
1152
1153 static bool
1154 cycle_color_attr(int ch, short *fg, short *bg, short *tx)
1155 {
1156     bool error = FALSE;
1157
1158     if (use_colors) {
1159         switch (ch) {
1160         case 'f':
1161             *fg = (*fg + 1);
1162             break;
1163         case 'F':
1164             *fg = (*fg - 1);
1165             break;
1166         case 'b':
1167             *bg = (*bg + 1);
1168             break;
1169         case 'B':
1170             *bg = (*bg - 1);
1171             break;
1172         case 't':
1173             *tx = (*tx + 1);
1174             break;
1175         case 'T':
1176             *tx = (*tx - 1);
1177             break;
1178         default:
1179             beep();
1180             error = TRUE;
1181             break;
1182         }
1183         if (*fg >= COLORS)
1184             *fg = min_colors;
1185         if (*fg < min_colors)
1186             *fg = COLORS - 1;
1187         if (*bg >= COLORS)
1188             *bg = min_colors;
1189         if (*bg < min_colors)
1190             *bg = COLORS - 1;
1191         if (*tx >= COLORS)
1192             *tx = -1;
1193         if (*tx < -1)
1194             *tx = COLORS - 1;
1195     } else {
1196         beep();
1197         error = TRUE;
1198     }
1199     return error;
1200 }
1201
1202 static void
1203 adjust_attr_string(int adjust)
1204 {
1205     int first = ((int) UChar(attr_test_string[0])) + adjust;
1206     int last = first + LEN_ATTRSTRING;
1207
1208     if (first >= ' ' && last <= '~') {  /* 32..126 */
1209         int j, k;
1210         for (j = 0, k = first; j < MAX_ATTRSTRING && k <= last; ++j, ++k) {
1211             attr_test_string[j] = k;
1212             if (((k + 1 - first) % 5) == 0) {
1213                 ++j;
1214                 if (j < MAX_ATTRSTRING)
1215                     attr_test_string[j] = ' ';
1216             }
1217         }
1218         while (j < MAX_ATTRSTRING)
1219             attr_test_string[j++] = ' ';
1220         attr_test_string[j] = '\0';
1221     } else {
1222         beep();
1223     }
1224 }
1225
1226 static void
1227 init_attr_string(void)
1228 {
1229     attr_test_string[0] = 'a';
1230     adjust_attr_string(0);
1231 }
1232
1233 static int
1234 show_attr(int row, int skip, bool arrow, chtype attr, const char *name)
1235 {
1236     int ncv = get_ncv();
1237     chtype test = attr & (chtype) (~A_ALTCHARSET);
1238
1239     if (arrow)
1240         mvprintw(row, 5, "-->");
1241     mvprintw(row, 8, "%s mode:", name);
1242     mvprintw(row, 24, "|");
1243     if (skip)
1244         printw("%*s", skip, " ");
1245     /*
1246      * Just for testing, write text using the alternate character set one
1247      * character at a time (to pass its rendition directly), and use the
1248      * string operation for the other attributes.
1249      */
1250     if (attr & A_ALTCHARSET) {
1251         const char *s;
1252         chtype ch;
1253
1254         for (s = attr_test_string; *s != '\0'; ++s) {
1255             ch = UChar(*s);
1256             addch(ch | attr);
1257         }
1258     } else {
1259         attrset(attr);
1260         addstr(attr_test_string);
1261         attroff(attr);
1262     }
1263     if (skip)
1264         printw("%*s", skip, " ");
1265     printw("|");
1266     if (test != A_NORMAL) {
1267         if (!(termattrs() & test)) {
1268             printw(" (N/A)");
1269         } else {
1270             if (ncv > 0 && (getbkgd(stdscr) & A_COLOR)) {
1271                 static const chtype table[] =
1272                 {
1273                     A_STANDOUT,
1274                     A_UNDERLINE,
1275                     A_REVERSE,
1276                     A_BLINK,
1277                     A_DIM,
1278                     A_BOLD,
1279 #ifdef A_INVIS
1280                     A_INVIS,
1281 #endif
1282                     A_PROTECT,
1283                     A_ALTCHARSET
1284                 };
1285                 unsigned n;
1286                 bool found = FALSE;
1287                 for (n = 0; n < SIZEOF(table); n++) {
1288                     if ((table[n] & attr) != 0
1289                         && ((1 << n) & ncv) != 0) {
1290                         found = TRUE;
1291                         break;
1292                     }
1293                 }
1294                 if (found)
1295                     printw(" (NCV)");
1296             }
1297             if ((termattrs() & test) != test)
1298                 printw(" (Part)");
1299         }
1300     }
1301     return row + 2;
1302 }
1303 /* *INDENT-OFF* */
1304 static const struct {
1305     attr_t                      attr;
1306     NCURSES_CONST char *        name;
1307 } attrs_to_test[] = {
1308     { A_STANDOUT,       "STANDOUT" },
1309     { A_REVERSE,        "REVERSE" },
1310     { A_BOLD,           "BOLD" },
1311     { A_UNDERLINE,      "UNDERLINE" },
1312     { A_DIM,            "DIM" },
1313     { A_BLINK,          "BLINK" },
1314     { A_PROTECT,        "PROTECT" },
1315 #ifdef A_INVIS
1316     { A_INVIS,          "INVISIBLE" },
1317 #endif
1318     { A_NORMAL,         "NORMAL" },
1319 };
1320 /* *INDENT-ON* */
1321
1322 static bool
1323 attr_getc(int *skip, short *fg, short *bg, short *tx, int *ac, unsigned *kc)
1324 {
1325     bool result = TRUE;
1326     bool error = FALSE;
1327     WINDOW *helpwin;
1328
1329     do {
1330         int ch = Getchar();
1331
1332         error = FALSE;
1333         if (ch < 256 && isdigit(ch)) {
1334             *skip = (ch - '0');
1335         } else {
1336             switch (ch) {
1337             case CTRL('L'):
1338                 Repaint();
1339                 break;
1340             case '?':
1341                 if ((helpwin = newwin(LINES - 1, COLS - 2, 0, 0)) != 0) {
1342                     box(helpwin, 0, 0);
1343                     attr_legend(helpwin);
1344                     wGetchar(helpwin);
1345                     delwin(helpwin);
1346                 }
1347                 break;
1348             case 'a':
1349                 *ac = 0;
1350                 break;
1351             case 'A':
1352                 *ac = A_ALTCHARSET;
1353                 break;
1354             case 'v':
1355                 if (*kc == 0)
1356                     *kc = SIZEOF(attrs_to_test) - 1;
1357                 else
1358                     *kc -= 1;
1359                 break;
1360             case 'V':
1361                 *kc += 1;
1362                 if (*kc >= SIZEOF(attrs_to_test))
1363                     *kc = 0;
1364                 break;
1365             case '<':
1366                 adjust_attr_string(-1);
1367                 break;
1368             case '>':
1369                 adjust_attr_string(1);
1370                 break;
1371               case_QUIT:
1372                 result = FALSE;
1373                 break;
1374             default:
1375                 error = cycle_color_attr(ch, fg, bg, tx);
1376                 break;
1377             }
1378         }
1379     } while (error);
1380     return result;
1381 }
1382
1383 static void
1384 attr_test(void)
1385 /* test text attributes */
1386 {
1387     int n;
1388     int skip = get_xmc();
1389     short fg = COLOR_BLACK;     /* color pair 0 is special */
1390     short bg = COLOR_BLACK;
1391     short tx = -1;
1392     int ac = 0;
1393     unsigned j, k;
1394
1395     if (skip < 0)
1396         skip = 0;
1397
1398     n = skip;                   /* make it easy */
1399     k = SIZEOF(attrs_to_test) - 1;
1400     init_attr_string();
1401
1402     do {
1403         int row = 2;
1404         chtype normal = A_NORMAL | BLANK;
1405         chtype extras = ac;
1406
1407         if (use_colors) {
1408             short pair = (fg != COLOR_BLACK || bg != COLOR_BLACK);
1409             if (pair != 0) {
1410                 pair = 1;
1411                 if (init_pair(pair, fg, bg) == ERR) {
1412                     beep();
1413                 } else {
1414                     normal |= COLOR_PAIR(pair);
1415                 }
1416             }
1417             if (tx >= 0) {
1418                 pair = 2;
1419                 if (init_pair(pair, tx, bg) == ERR) {
1420                     beep();
1421                 } else {
1422                     extras |= COLOR_PAIR(pair);
1423                 }
1424             }
1425         }
1426         bkgd(normal);
1427         bkgdset(normal);
1428         erase();
1429
1430         box(stdscr, 0, 0);
1431         mvaddstr(0, 20, "Character attribute test display");
1432
1433         for (j = 0; j < SIZEOF(attrs_to_test); ++j) {
1434             bool arrow = (j == k);
1435             row = show_attr(row, n, arrow,
1436                             extras |
1437                             attrs_to_test[j].attr |
1438                             attrs_to_test[k].attr,
1439                             attrs_to_test[j].name);
1440         }
1441
1442         mvprintw(row, 8,
1443                  "This terminal does %shave the magic-cookie glitch",
1444                  get_xmc() > -1 ? "" : "not ");
1445         mvprintw(row + 1, 8, "Enter '?' for help.");
1446         show_color_attr(fg, bg, tx);
1447         printw("  ACS (%d)", ac != 0);
1448
1449         refresh();
1450     } while (attr_getc(&n, &fg, &bg, &tx, &ac, &k));
1451
1452     bkgdset(A_NORMAL | BLANK);
1453     erase();
1454     endwin();
1455 }
1456
1457 #if USE_WIDEC_SUPPORT
1458 static wchar_t wide_attr_test_string[MAX_ATTRSTRING + 1];
1459
1460 static void
1461 wide_adjust_attr_string(int adjust)
1462 {
1463     int first = ((int) UChar(wide_attr_test_string[0])) + adjust;
1464     int last = first + LEN_ATTRSTRING;
1465
1466     if (first >= ' ' && last <= '~') {  /* 32..126 */
1467         int j, k;
1468         for (j = 0, k = first; j < MAX_ATTRSTRING && k <= last; ++j, ++k) {
1469             wide_attr_test_string[j] = k;
1470             if (((k + 1 - first) % 5) == 0) {
1471                 ++j;
1472                 if (j < MAX_ATTRSTRING)
1473                     wide_attr_test_string[j] = ' ';
1474             }
1475         }
1476         while (j < MAX_ATTRSTRING)
1477             wide_attr_test_string[j++] = ' ';
1478         wide_attr_test_string[j] = '\0';
1479     } else {
1480         beep();
1481     }
1482 }
1483
1484 static void
1485 wide_init_attr_string(void)
1486 {
1487     wide_attr_test_string[0] = 'a';
1488     wide_adjust_attr_string(0);
1489 }
1490
1491 static void
1492 set_wide_background(short pair)
1493 {
1494     cchar_t normal;
1495     wchar_t blank[2];
1496
1497     blank[0] = ' ';
1498     blank[1] = 0;
1499     setcchar(&normal, blank, A_NORMAL, pair, 0);
1500     bkgrnd(&normal);
1501     bkgrndset(&normal);
1502 }
1503
1504 static attr_t
1505 get_wide_background(void)
1506 {
1507     attr_t result = A_NORMAL;
1508     attr_t attr;
1509     cchar_t ch;
1510     short pair;
1511     wchar_t wch[10];
1512
1513     if (getbkgrnd(&ch) != ERR) {
1514         if (getcchar(&ch, wch, &attr, &pair, 0) != ERR) {
1515             result = attr;
1516         }
1517     }
1518     return result;
1519 }
1520
1521 static int
1522 wide_show_attr(int row, int skip, bool arrow, chtype attr, short pair, const char *name)
1523 {
1524     int ncv = get_ncv();
1525     chtype test = attr & ~WA_ALTCHARSET;
1526
1527     if (arrow)
1528         mvprintw(row, 5, "-->");
1529     mvprintw(row, 8, "%s mode:", name);
1530     mvprintw(row, 24, "|");
1531     if (skip)
1532         printw("%*s", skip, " ");
1533
1534     /*
1535      * Just for testing, write text using the alternate character set one
1536      * character at a time (to pass its rendition directly), and use the
1537      * string operation for the other attributes.
1538      */
1539     if (attr & WA_ALTCHARSET) {
1540         const wchar_t *s;
1541         cchar_t ch;
1542
1543         for (s = wide_attr_test_string; *s != L'\0'; ++s) {
1544             wchar_t fill[2];
1545             fill[0] = *s;
1546             fill[1] = L'\0';
1547             setcchar(&ch, fill, attr, pair, 0);
1548             add_wch(&ch);
1549         }
1550     } else {
1551         attr_t old_attr;
1552         short old_pair;
1553
1554         attr_get(&old_attr, &old_pair, 0);
1555         attr_set(attr, pair, 0);
1556         addwstr(wide_attr_test_string);
1557         attr_set(old_attr, old_pair, 0);
1558     }
1559     if (skip)
1560         printw("%*s", skip, " ");
1561     printw("|");
1562     if (test != A_NORMAL) {
1563         if (!(term_attrs() & test)) {
1564             printw(" (N/A)");
1565         } else {
1566             if (ncv > 0 && (get_wide_background() & A_COLOR)) {
1567                 static const attr_t table[] =
1568                 {
1569                     WA_STANDOUT,
1570                     WA_UNDERLINE,
1571                     WA_REVERSE,
1572                     WA_BLINK,
1573                     WA_DIM,
1574                     WA_BOLD,
1575                     WA_INVIS,
1576                     WA_PROTECT,
1577                     WA_ALTCHARSET
1578                 };
1579                 unsigned n;
1580                 bool found = FALSE;
1581                 for (n = 0; n < SIZEOF(table); n++) {
1582                     if ((table[n] & attr) != 0
1583                         && ((1 << n) & ncv) != 0) {
1584                         found = TRUE;
1585                         break;
1586                     }
1587                 }
1588                 if (found)
1589                     printw(" (NCV)");
1590             }
1591             if ((term_attrs() & test) != test)
1592                 printw(" (Part)");
1593         }
1594     }
1595     return row + 2;
1596 }
1597
1598 static bool
1599 wide_attr_getc(int *skip, short *fg, short *bg, short *tx, int *ac, unsigned *kc)
1600 {
1601     bool result = TRUE;
1602     bool error = FALSE;
1603     WINDOW *helpwin;
1604
1605     do {
1606         int ch = Getchar();
1607
1608         error = FALSE;
1609         if (ch < 256 && isdigit(ch)) {
1610             *skip = (ch - '0');
1611         } else {
1612             switch (ch) {
1613             case CTRL('L'):
1614                 Repaint();
1615                 break;
1616             case '?':
1617                 if ((helpwin = newwin(LINES - 1, COLS - 2, 0, 0)) != 0) {
1618                     box_set(helpwin, 0, 0);
1619                     attr_legend(helpwin);
1620                     wGetchar(helpwin);
1621                     delwin(helpwin);
1622                 }
1623                 break;
1624             case 'a':
1625                 *ac = 0;
1626                 break;
1627             case 'A':
1628                 *ac = A_ALTCHARSET;
1629                 break;
1630             case 'v':
1631                 if (*kc == 0)
1632                     *kc = SIZEOF(attrs_to_test) - 1;
1633                 else
1634                     *kc -= 1;
1635                 break;
1636             case 'V':
1637                 *kc += 1;
1638                 if (*kc >= SIZEOF(attrs_to_test))
1639                     *kc = 0;
1640                 break;
1641             case '<':
1642                 wide_adjust_attr_string(-1);
1643                 break;
1644             case '>':
1645                 wide_adjust_attr_string(1);
1646                 break;
1647               case_QUIT:
1648                 result = FALSE;
1649                 break;
1650             default:
1651                 error = cycle_color_attr(ch, fg, bg, tx);
1652                 break;
1653             }
1654         }
1655     } while (error);
1656     return result;
1657 }
1658
1659 static void
1660 wide_attr_test(void)
1661 /* test text attributes using wide-character calls */
1662 {
1663     int n;
1664     int skip = get_xmc();
1665     short fg = COLOR_BLACK;     /* color pair 0 is special */
1666     short bg = COLOR_BLACK;
1667     short tx = -1;
1668     int ac = 0;
1669     unsigned j, k;
1670
1671     if (skip < 0)
1672         skip = 0;
1673
1674     n = skip;                   /* make it easy */
1675     k = SIZEOF(attrs_to_test) - 1;
1676     wide_init_attr_string();
1677
1678     do {
1679         int row = 2;
1680         short pair = 0;
1681         short extras = 0;
1682
1683         if (use_colors) {
1684             pair = (fg != COLOR_BLACK || bg != COLOR_BLACK);
1685             if (pair != 0) {
1686                 pair = 1;
1687                 if (init_pair(pair, fg, bg) == ERR) {
1688                     beep();
1689                 }
1690             }
1691             extras = pair;
1692             if (tx >= 0) {
1693                 extras = 2;
1694                 if (init_pair(extras, tx, bg) == ERR) {
1695                     beep();
1696                 }
1697             }
1698         }
1699         set_wide_background(pair);
1700         erase();
1701
1702         box_set(stdscr, 0, 0);
1703         mvaddstr(0, 20, "Character attribute test display");
1704
1705         for (j = 0; j < SIZEOF(attrs_to_test); ++j) {
1706             row = wide_show_attr(row, n, j == k,
1707                                  ac |
1708                                  attrs_to_test[j].attr |
1709                                  attrs_to_test[k].attr,
1710                                  extras,
1711                                  attrs_to_test[j].name);
1712         }
1713
1714         mvprintw(row, 8,
1715                  "This terminal does %shave the magic-cookie glitch",
1716                  get_xmc() > -1 ? "" : "not ");
1717         mvprintw(row + 1, 8, "Enter '?' for help.");
1718         show_color_attr(fg, bg, tx);
1719         printw("  ACS (%d)", ac != 0);
1720
1721         refresh();
1722     } while (wide_attr_getc(&n, &fg, &bg, &tx, &ac, &k));
1723
1724     set_wide_background(0);
1725     erase();
1726     endwin();
1727 }
1728 #endif
1729
1730 /****************************************************************************
1731  *
1732  * Color support tests
1733  *
1734  ****************************************************************************/
1735
1736 static NCURSES_CONST char *the_color_names[] =
1737 {
1738     "black",
1739     "red",
1740     "green",
1741     "yellow",
1742     "blue",
1743     "magenta",
1744     "cyan",
1745     "white",
1746     "BLACK",
1747     "RED",
1748     "GREEN",
1749     "YELLOW",
1750     "BLUE",
1751     "MAGENTA",
1752     "CYAN",
1753     "WHITE"
1754 };
1755
1756 static void
1757 show_color_name(int y, int x, int color, bool wide)
1758 {
1759     if (move(y, x) != ERR) {
1760         char temp[80];
1761         int width = 8;
1762
1763         if (wide) {
1764             sprintf(temp, "%02d", color);
1765             width = 4;
1766         } else if (color >= 8) {
1767             sprintf(temp, "[%02d]", color);
1768         } else {
1769             strcpy(temp, the_color_names[color]);
1770         }
1771         printw("%-*.*s", width, width, temp);
1772     }
1773 }
1774
1775 static void
1776 color_legend(WINDOW *helpwin)
1777 {
1778     int row = 1;
1779     int col = 1;
1780
1781     mvwprintw(helpwin, row++, col,
1782               "ESC to exit.");
1783     ++row;
1784     mvwprintw(helpwin, row++, col,
1785               "Use up/down arrow to scroll through the display if it is");
1786     mvwprintw(helpwin, row++, col,
1787               "longer than one screen. Control/N and Control/P can be used");
1788     mvwprintw(helpwin, row++, col,
1789               "in place up up/down arrow.  Use pageup/pagedown to scroll a");
1790     mvwprintw(helpwin, row++, col,
1791               "full screen; control/B and control/F can be used here.");
1792     ++row;
1793     mvwprintw(helpwin, row++, col,
1794               "Toggles:");
1795     mvwprintw(helpwin, row++, col,
1796               "  b/B     toggle bold off/on");
1797     mvwprintw(helpwin, row++, col,
1798               "  n/N     toggle text/number on/off");
1799     mvwprintw(helpwin, row++, col,
1800               "  w/W     toggle width between 8/16 colors");
1801 }
1802
1803 #define set_color_test(name, value) if (name != value) { name = value; base_row = 0; }
1804
1805 /* generate a color test pattern */
1806 static void
1807 color_test(void)
1808 {
1809     short i;
1810     int top = 0, width;
1811     int base_row = 0;
1812     int grid_top = top + 3;
1813     int page_size = (LINES - grid_top);
1814     int pairs_max = PAIR_NUMBER(A_COLOR) + 1;
1815     int row_limit;
1816     int per_row;
1817     char numbered[80];
1818     const char *hello;
1819     bool done = FALSE;
1820     bool opt_bold = FALSE;
1821     bool opt_wide = FALSE;
1822     bool opt_nums = FALSE;
1823     WINDOW *helpwin;
1824
1825     if (pairs_max > COLOR_PAIRS)
1826         pairs_max = COLOR_PAIRS;
1827
1828     while (!done) {
1829         int shown = 0;
1830
1831         /* this assumes an 80-column line */
1832         if (opt_wide) {
1833             width = 4;
1834             hello = "Test";
1835             per_row = (COLORS > 8) ? 16 : 8;
1836         } else {
1837             width = 8;
1838             hello = "Hello";
1839             per_row = 8;
1840         }
1841
1842         row_limit = (pairs_max + per_row - 1) / per_row;
1843
1844         move(0, 0);
1845         (void) printw("There are %d color pairs and %d colors\n",
1846                       pairs_max, COLORS);
1847
1848         clrtobot();
1849         (void) mvprintw(top + 1, 0,
1850                         "%dx%d matrix of foreground/background colors, bold *%s*\n",
1851                         row_limit,
1852                         per_row,
1853                         opt_bold ? "on" : "off");
1854
1855         /* show color names/numbers across the top */
1856         for (i = 0; i < per_row; i++)
1857             show_color_name(top + 2, (i + 1) * width, i, opt_wide);
1858
1859         /* show a grid of colors, with color names/ numbers on the left */
1860         for (i = (base_row * per_row); i < pairs_max; i++) {
1861             int row = grid_top + (i / per_row) - base_row;
1862             int col = (i % per_row + 1) * width;
1863             short pair = i;
1864
1865             if (row >= 0 && move(row, col) != ERR) {
1866                 short fg = i % COLORS;
1867                 short bg = i / COLORS;
1868
1869                 init_pair(pair, fg, bg);
1870                 attron((attr_t) COLOR_PAIR(pair));
1871                 if (opt_bold)
1872                     attron((attr_t) A_BOLD);
1873
1874                 if (opt_nums) {
1875                     sprintf(numbered, "{%02X}", i);
1876                     hello = numbered;
1877                 }
1878                 printw("%-*.*s", width, width, hello);
1879                 attrset(A_NORMAL);
1880
1881                 if ((i % per_row) == 0 && (i % COLORS) == 0) {
1882                     show_color_name(row, 0, i / COLORS, opt_wide);
1883                 }
1884                 ++shown;
1885             } else if (shown) {
1886                 break;
1887             }
1888         }
1889
1890         switch (wGetchar(stdscr)) {
1891         case 'b':
1892             opt_bold = FALSE;
1893             break;
1894         case 'B':
1895             opt_bold = TRUE;
1896             break;
1897         case 'n':
1898             opt_nums = FALSE;
1899             break;
1900         case 'N':
1901             opt_nums = TRUE;
1902             break;
1903           case_QUIT:
1904             done = TRUE;
1905             continue;
1906         case 'w':
1907             set_color_test(opt_wide, FALSE);
1908             break;
1909         case 'W':
1910             set_color_test(opt_wide, TRUE);
1911             break;
1912         case CTRL('p'):
1913         case KEY_UP:
1914             if (base_row <= 0) {
1915                 beep();
1916             } else {
1917                 base_row -= 1;
1918             }
1919             break;
1920         case CTRL('n'):
1921         case KEY_DOWN:
1922             if (base_row + page_size >= row_limit) {
1923                 beep();
1924             } else {
1925                 base_row += 1;
1926             }
1927             break;
1928         case CTRL('b'):
1929         case KEY_PREVIOUS:
1930         case KEY_PPAGE:
1931             if (base_row <= 0) {
1932                 beep();
1933             } else {
1934                 base_row -= (page_size - 1);
1935                 if (base_row < 0)
1936                     base_row = 0;
1937             }
1938             break;
1939         case CTRL('f'):
1940         case KEY_NEXT:
1941         case KEY_NPAGE:
1942             if (base_row + page_size >= row_limit) {
1943                 beep();
1944             } else {
1945                 base_row += page_size - 1;
1946                 if (base_row + page_size >= row_limit) {
1947                     base_row = row_limit - page_size - 1;
1948                 }
1949             }
1950             break;
1951         case '?':
1952             if ((helpwin = newwin(LINES - 1, COLS - 2, 0, 0)) != 0) {
1953                 box(helpwin, 0, 0);
1954                 color_legend(helpwin);
1955                 wGetchar(helpwin);
1956                 delwin(helpwin);
1957             }
1958             break;
1959         default:
1960             beep();
1961             continue;
1962         }
1963     }
1964
1965     erase();
1966     endwin();
1967 }
1968
1969 #if USE_WIDEC_SUPPORT
1970 /* generate a color test pattern */
1971 static void
1972 wide_color_test(void)
1973 {
1974     int c;
1975     int i;
1976     int top = 0, width;
1977     int base_row = 0;
1978     int grid_top = top + 3;
1979     int page_size = (LINES - grid_top);
1980     int pairs_max = COLOR_PAIRS;
1981     int row_limit;
1982     int per_row;
1983     char numbered[80];
1984     const char *hello;
1985     bool done = FALSE;
1986     bool opt_bold = FALSE;
1987     bool opt_wide = FALSE;
1988     bool opt_nums = FALSE;
1989     WINDOW *helpwin;
1990
1991     while (!done) {
1992         int shown = 0;
1993
1994         /* this assumes an 80-column line */
1995         if (opt_wide) {
1996             width = 4;
1997             hello = "Test";
1998             per_row = (COLORS > 8) ? 16 : 8;
1999         } else {
2000             width = 8;
2001             hello = "Hello";
2002             per_row = 8;
2003         }
2004
2005         row_limit = (pairs_max + per_row - 1) / per_row;
2006
2007         move(0, 0);
2008         (void) printw("There are %d color pairs and %d colors\n",
2009                       pairs_max, COLORS);
2010
2011         clrtobot();
2012         (void) mvprintw(top + 1, 0,
2013                         "%dx%d matrix of foreground/background colors, bold *%s*\n",
2014                         row_limit,
2015                         per_row,
2016                         opt_bold ? "on" : "off");
2017
2018         /* show color names/numbers across the top */
2019         for (i = 0; i < per_row; i++)
2020             show_color_name(top + 2, (i + 1) * width, i, opt_wide);
2021
2022         /* show a grid of colors, with color names/ numbers on the left */
2023         for (i = (base_row * per_row); i < pairs_max; i++) {
2024             int row = grid_top + (i / per_row) - base_row;
2025             int col = (i % per_row + 1) * width;
2026             int pair = i;
2027
2028             if (row >= 0 && move(row, col) != ERR) {
2029                 init_pair(pair, i % COLORS, i / COLORS);
2030                 color_set(pair, NULL);
2031                 if (opt_bold)
2032                     attr_on((attr_t) A_BOLD, NULL);
2033
2034                 if (opt_nums) {
2035                     sprintf(numbered, "{%02X}", i);
2036                     hello = numbered;
2037                 }
2038                 printw("%-*.*s", width, width, hello);
2039                 attr_set(A_NORMAL, 0, NULL);
2040
2041                 if ((i % per_row) == 0 && (i % COLORS) == 0) {
2042                     show_color_name(row, 0, i / COLORS, opt_wide);
2043                 }
2044                 ++shown;
2045             } else if (shown) {
2046                 break;
2047             }
2048         }
2049
2050         switch (c = wGetchar(stdscr)) {
2051         case 'b':
2052             opt_bold = FALSE;
2053             break;
2054         case 'B':
2055             opt_bold = TRUE;
2056             break;
2057         case 'n':
2058             opt_nums = FALSE;
2059             break;
2060         case 'N':
2061             opt_nums = TRUE;
2062             break;
2063           case_QUIT:
2064             done = TRUE;
2065             continue;
2066         case 'w':
2067             set_color_test(opt_wide, FALSE);
2068             break;
2069         case 'W':
2070             set_color_test(opt_wide, TRUE);
2071             break;
2072         case CTRL('p'):
2073         case KEY_UP:
2074             if (base_row <= 0) {
2075                 beep();
2076             } else {
2077                 base_row -= 1;
2078             }
2079             break;
2080         case CTRL('n'):
2081         case KEY_DOWN:
2082             if (base_row + page_size >= row_limit) {
2083                 beep();
2084             } else {
2085                 base_row += 1;
2086             }
2087             break;
2088         case CTRL('b'):
2089         case KEY_PREVIOUS:
2090         case KEY_PPAGE:
2091             if (base_row <= 0) {
2092                 beep();
2093             } else {
2094                 base_row -= (page_size - 1);
2095                 if (base_row < 0)
2096                     base_row = 0;
2097             }
2098             break;
2099         case CTRL('f'):
2100         case KEY_NEXT:
2101         case KEY_NPAGE:
2102             if (base_row + page_size >= row_limit) {
2103                 beep();
2104             } else {
2105                 base_row += page_size - 1;
2106                 if (base_row + page_size >= row_limit) {
2107                     base_row = row_limit - page_size - 1;
2108                 }
2109             }
2110             break;
2111         case '?':
2112             if ((helpwin = newwin(LINES - 1, COLS - 2, 0, 0)) != 0) {
2113                 box(helpwin, 0, 0);
2114                 color_legend(helpwin);
2115                 wGetchar(helpwin);
2116                 delwin(helpwin);
2117             }
2118             break;
2119         default:
2120             beep();
2121             continue;
2122         }
2123     }
2124
2125     erase();
2126     endwin();
2127 }
2128 #endif /* USE_WIDEC_SUPPORT */
2129
2130 static void
2131 change_color(short current, int field, int value, int usebase)
2132 {
2133     short red, green, blue;
2134
2135     color_content(current, &red, &green, &blue);
2136
2137     switch (field) {
2138     case 0:
2139         red = usebase ? red + value : value;
2140         break;
2141     case 1:
2142         green = usebase ? green + value : value;
2143         break;
2144     case 2:
2145         blue = usebase ? blue + value : value;
2146         break;
2147     }
2148
2149     if (init_color(current, red, green, blue) == ERR)
2150         beep();
2151 }
2152
2153 static void
2154 init_all_colors(void)
2155 {
2156     short c;
2157
2158     for (c = 0; c < COLORS; ++c)
2159         init_color(c,
2160                    all_colors[c].red,
2161                    all_colors[c].green,
2162                    all_colors[c].blue);
2163 }
2164
2165 #define scaled_rgb(n) ((255 * (n)) / 1000)
2166
2167 static void
2168 color_edit(void)
2169 /* display the color test pattern, without trying to edit colors */
2170 {
2171     short i;
2172     short current = 0;
2173     int this_c = 0, value = 0, field = 0;
2174     int last_c;
2175     int top_color = 0;
2176     int page_size = (LINES - 6);
2177
2178     init_all_colors();
2179     refresh();
2180
2181     for (i = 0; i < max_colors; i++)
2182         init_pair(i, COLOR_WHITE, i);
2183
2184     mvprintw(LINES - 2, 0, "Number: %d", value);
2185
2186     do {
2187         short red, green, blue;
2188
2189         attron(A_BOLD);
2190         mvaddstr(0, 20, "Color RGB Value Editing");
2191         attroff(A_BOLD);
2192
2193         for (i = top_color;
2194              (i - top_color < page_size)
2195              && (i < max_colors); i++) {
2196             char numeric[80];
2197
2198             sprintf(numeric, "[%d]", i);
2199             mvprintw(2 + i - top_color, 0, "%c %-8s:",
2200                      (i == current ? '>' : ' '),
2201                      (i < (int) SIZEOF(the_color_names)
2202                       ? the_color_names[i] : numeric));
2203             attrset(COLOR_PAIR(i));
2204             addstr("        ");
2205             attrset(A_NORMAL);
2206
2207             color_content(i, &red, &green, &blue);
2208             addstr("   R = ");
2209             if (current == i && field == 0)
2210                 attron(A_STANDOUT);
2211             printw("%04d", red);
2212             if (current == i && field == 0)
2213                 attrset(A_NORMAL);
2214             addstr(", G = ");
2215             if (current == i && field == 1)
2216                 attron(A_STANDOUT);
2217             printw("%04d", green);
2218             if (current == i && field == 1)
2219                 attrset(A_NORMAL);
2220             addstr(", B = ");
2221             if (current == i && field == 2)
2222                 attron(A_STANDOUT);
2223             printw("%04d", blue);
2224             if (current == i && field == 2)
2225                 attrset(A_NORMAL);
2226             attrset(A_NORMAL);
2227             printw(" ( %3d %3d %3d )",
2228                    scaled_rgb(red),
2229                    scaled_rgb(green),
2230                    scaled_rgb(blue));
2231         }
2232
2233         mvaddstr(LINES - 3, 0,
2234                  "Use up/down to select a color, left/right to change fields.");
2235         mvaddstr(LINES - 2, 0,
2236                  "Modify field by typing nnn=, nnn-, or nnn+.  ? for help.");
2237
2238         move(2 + current - top_color, 0);
2239
2240         last_c = this_c;
2241         this_c = Getchar();
2242         if (this_c < 256 && isdigit(this_c) && !isdigit(last_c))
2243             value = 0;
2244
2245         switch (this_c) {
2246         case CTRL('b'):
2247         case KEY_PPAGE:
2248             if (current > 0)
2249                 current -= (page_size - 1);
2250             else
2251                 beep();
2252             break;
2253
2254         case CTRL('f'):
2255         case KEY_NPAGE:
2256             if (current < (max_colors - 1))
2257                 current += (page_size - 1);
2258             else
2259                 beep();
2260             break;
2261
2262         case CTRL('p'):
2263         case KEY_UP:
2264             current = (current == 0 ? (max_colors - 1) : current - 1);
2265             break;
2266
2267         case CTRL('n'):
2268         case KEY_DOWN:
2269             current = (current == (max_colors - 1) ? 0 : current + 1);
2270             break;
2271
2272         case KEY_RIGHT:
2273             field = (field == 2 ? 0 : field + 1);
2274             break;
2275
2276         case KEY_LEFT:
2277             field = (field == 0 ? 2 : field - 1);
2278             break;
2279
2280         case '0':
2281         case '1':
2282         case '2':
2283         case '3':
2284         case '4':
2285         case '5':
2286         case '6':
2287         case '7':
2288         case '8':
2289         case '9':
2290             value = value * 10 + (this_c - '0');
2291             break;
2292
2293         case '+':
2294             change_color(current, field, value, 1);
2295             break;
2296
2297         case '-':
2298             change_color(current, field, -value, 1);
2299             break;
2300
2301         case '=':
2302             change_color(current, field, value, 0);
2303             break;
2304
2305         case '?':
2306             erase();
2307             P("                      RGB Value Editing Help");
2308             P("");
2309             P("You are in the RGB value editor.  Use the arrow keys to select one of");
2310             P("the fields in one of the RGB triples of the current colors; the one");
2311             P("currently selected will be reverse-video highlighted.");
2312             P("");
2313             P("To change a field, enter the digits of the new value; they are echoed");
2314             P("as entered.  Finish by typing `='.  The change will take effect instantly.");
2315             P("To increment or decrement a value, use the same procedure, but finish");
2316             P("with a `+' or `-'.");
2317             P("");
2318             P("Press 'm' to invoke the top-level menu with the current color settings.");
2319             P("To quit, do ESC");
2320
2321             Pause();
2322             erase();
2323             break;
2324
2325         case 'm':
2326             endwin();
2327             main_menu(FALSE);
2328             refresh();
2329             break;
2330
2331           case_QUIT:
2332             break;
2333
2334         default:
2335             beep();
2336             break;
2337         }
2338
2339         if (current < 0)
2340             current = 0;
2341         if (current >= max_colors)
2342             current = max_colors - 1;
2343         if (current < top_color)
2344             top_color = current;
2345         if (current - top_color >= page_size)
2346             top_color = current - (page_size - 1);
2347
2348         mvprintw(LINES - 1, 0, "Number: %d", value);
2349         clrtoeol();
2350     } while
2351         (!isQuit(this_c));
2352
2353     erase();
2354
2355     /*
2356      * ncurses does not reset each color individually when calling endwin().
2357      */
2358     init_all_colors();
2359
2360     endwin();
2361 }
2362
2363 /****************************************************************************
2364  *
2365  * Soft-key label test
2366  *
2367  ****************************************************************************/
2368
2369 #if USE_SOFTKEYS
2370
2371 #define SLK_HELP 17
2372 #define SLK_WORK (SLK_HELP + 3)
2373
2374 static void
2375 slk_help(void)
2376 {
2377     static const char *table[] =
2378     {
2379         "Available commands are:"
2380         ,""
2381         ,"^L         -- repaint this message and activate soft keys"
2382         ,"a/d        -- activate/disable soft keys"
2383         ,"c          -- set centered format for labels"
2384         ,"l          -- set left-justified format for labels"
2385         ,"r          -- set right-justified format for labels"
2386         ,"[12345678] -- set label; labels are numbered 1 through 8"
2387         ,"e          -- erase stdscr (should not erase labels)"
2388         ,"s          -- test scrolling of shortened screen"
2389 #if HAVE_SLK_COLOR
2390         ,"F/B        -- cycle through foreground/background colors"
2391 #endif
2392         ,"ESC  -- return to main menu"
2393         ,""
2394         ,"Note: if activating the soft keys causes your terminal to scroll up"
2395         ,"one line, your terminal auto-scrolls when anything is written to the"
2396         ,"last screen position.  The ncurses code does not yet handle this"
2397         ,"gracefully."
2398     };
2399     unsigned j;
2400
2401     move(2, 0);
2402     for (j = 0; j < SIZEOF(table); ++j) {
2403         P(table[j]);
2404     }
2405     refresh();
2406 }
2407
2408 #if HAVE_SLK_COLOR
2409 static void
2410 call_slk_color(short fg, short bg)
2411 {
2412     init_pair(1, bg, fg);
2413     slk_color(1);
2414     mvprintw(SLK_WORK, 0, "Colors %d/%d\n", fg, bg);
2415     clrtoeol();
2416     refresh();
2417 }
2418 #endif
2419
2420 static void
2421 slk_test(void)
2422 /* exercise the soft keys */
2423 {
2424     int c, fmt = 1;
2425     char buf[9];
2426     char *s;
2427 #if HAVE_SLK_COLOR
2428     short fg = COLOR_BLACK;
2429     short bg = COLOR_WHITE;
2430 #endif
2431
2432     c = CTRL('l');
2433 #if HAVE_SLK_COLOR
2434     if (use_colors) {
2435         call_slk_color(fg, bg);
2436     }
2437 #endif
2438
2439     do {
2440         move(0, 0);
2441         switch (c) {
2442         case CTRL('l'):
2443             erase();
2444             attron(A_BOLD);
2445             mvaddstr(0, 20, "Soft Key Exerciser");
2446             attroff(A_BOLD);
2447
2448             slk_help();
2449             /* fall through */
2450
2451         case 'a':
2452             slk_restore();
2453             break;
2454
2455         case 'e':
2456             wclear(stdscr);
2457             break;
2458
2459         case 's':
2460             mvprintw(SLK_WORK, 0, "Press Q to stop the scrolling-test: ");
2461             while ((c = Getchar()) != 'Q' && (c != ERR))
2462                 addch((chtype) c);
2463             break;
2464
2465         case 'd':
2466             slk_clear();
2467             break;
2468
2469         case 'l':
2470             fmt = 0;
2471             break;
2472
2473         case 'c':
2474             fmt = 1;
2475             break;
2476
2477         case 'r':
2478             fmt = 2;
2479             break;
2480
2481         case '1':
2482         case '2':
2483         case '3':
2484         case '4':
2485         case '5':
2486         case '6':
2487         case '7':
2488         case '8':
2489             (void) mvaddstr(SLK_WORK, 0, "Please enter the label value: ");
2490             strcpy(buf, "");
2491             if ((s = slk_label(c - '0')) != 0) {
2492                 strncpy(buf, s, 8);
2493             }
2494             wGetstring(stdscr, buf, 8);
2495             slk_set((c - '0'), buf, fmt);
2496             slk_refresh();
2497             move(SLK_WORK, 0);
2498             clrtobot();
2499             break;
2500
2501           case_QUIT:
2502             goto done;
2503
2504 #if HAVE_SLK_COLOR
2505         case 'F':
2506             if (use_colors) {
2507                 fg = (fg + 1) % COLORS;
2508                 call_slk_color(fg, bg);
2509             }
2510             break;
2511         case 'B':
2512             if (use_colors) {
2513                 bg = (bg + 1) % COLORS;
2514                 call_slk_color(fg, bg);
2515             }
2516             break;
2517 #endif
2518
2519         default:
2520             beep();
2521         }
2522     } while
2523         ((c = Getchar()) != EOF);
2524
2525   done:
2526     slk_clear();
2527     erase();
2528     endwin();
2529 }
2530
2531 #if USE_WIDEC_SUPPORT
2532 #define SLKLEN 8
2533 static void
2534 wide_slk_test(void)
2535 /* exercise the soft keys */
2536 {
2537     int c, fmt = 1;
2538     wchar_t buf[SLKLEN + 1];
2539     char *s;
2540     short fg = COLOR_BLACK;
2541     short bg = COLOR_WHITE;
2542
2543     c = CTRL('l');
2544     if (use_colors) {
2545         call_slk_color(fg, bg);
2546     }
2547     do {
2548         move(0, 0);
2549         switch (c) {
2550         case CTRL('l'):
2551             erase();
2552             attr_on(WA_BOLD, NULL);
2553             mvaddstr(0, 20, "Soft Key Exerciser");
2554             attr_off(WA_BOLD, NULL);
2555
2556             slk_help();
2557             /* fall through */
2558
2559         case 'a':
2560             slk_restore();
2561             break;
2562
2563         case 'e':
2564             wclear(stdscr);
2565             break;
2566
2567         case 's':
2568             mvprintw(SLK_WORK, 0, "Press Q to stop the scrolling-test: ");
2569             while ((c = Getchar()) != 'Q' && (c != ERR))
2570                 addch((chtype) c);
2571             break;
2572
2573         case 'd':
2574             slk_clear();
2575             break;
2576
2577         case 'l':
2578             fmt = 0;
2579             break;
2580
2581         case 'c':
2582             fmt = 1;
2583             break;
2584
2585         case 'r':
2586             fmt = 2;
2587             break;
2588
2589         case '1':
2590         case '2':
2591         case '3':
2592         case '4':
2593         case '5':
2594         case '6':
2595         case '7':
2596         case '8':
2597             (void) mvaddstr(SLK_WORK, 0, "Please enter the label value: ");
2598             *buf = 0;
2599             if ((s = slk_label(c - '0')) != 0) {
2600                 char *temp = strdup(s);
2601                 size_t used = strlen(temp);
2602                 size_t want = SLKLEN;
2603                 size_t test;
2604                 mbstate_t state;
2605
2606                 buf[0] = L'\0';
2607                 while (want > 0 && used != 0) {
2608                     const char *base = s;
2609                     memset(&state, 0, sizeof(state));
2610                     test = mbsrtowcs(0, &base, 0, &state);
2611                     if (test == (size_t) -1) {
2612                         temp[--used] = 0;
2613                     } else if (test > want) {
2614                         temp[--used] = 0;
2615                     } else {
2616                         memset(&state, 0, sizeof(state));
2617                         mbsrtowcs(buf, &base, want, &state);
2618                         break;
2619                     }
2620                 }
2621                 free(temp);
2622             }
2623             wGet_wstring(stdscr, buf, SLKLEN);
2624             slk_wset((c - '0'), buf, fmt);
2625             slk_refresh();
2626             move(SLK_WORK, 0);
2627             clrtobot();
2628             break;
2629
2630           case_QUIT:
2631             goto done;
2632
2633         case 'F':
2634             if (use_colors) {
2635                 fg = (fg + 1) % COLORS;
2636                 call_slk_color(fg, bg);
2637             }
2638             break;
2639         case 'B':
2640             if (use_colors) {
2641                 bg = (bg + 1) % COLORS;
2642                 call_slk_color(fg, bg);
2643             }
2644             break;
2645
2646         default:
2647             beep();
2648         }
2649     } while
2650         ((c = Getchar()) != EOF);
2651
2652   done:
2653     slk_clear();
2654     erase();
2655     endwin();
2656 }
2657 #endif
2658 #endif /* SLK_INIT */
2659
2660 /****************************************************************************
2661  *
2662  * Alternate character-set stuff
2663  *
2664  ****************************************************************************/
2665
2666 /* ISO 6429:  codes 0x80 to 0x9f may be control characters that cause the
2667  * terminal to perform functions.  The remaining codes can be graphic.
2668  */
2669 static void
2670 show_upper_chars(unsigned first)
2671 {
2672     bool C1 = (first == 128);
2673     unsigned code;
2674     unsigned last = first + 31;
2675     int reply;
2676
2677     erase();
2678     attron(A_BOLD);
2679     mvprintw(0, 20, "Display of %s Character Codes %d to %d",
2680              C1 ? "C1" : "GR", first, last);
2681     attroff(A_BOLD);
2682     refresh();
2683
2684     for (code = first; code <= last; code++) {
2685         int row = 2 + ((code - first) % 16);
2686         int col = ((code - first) / 16) * COLS / 2;
2687         char tmp[80];
2688         sprintf(tmp, "%3u (0x%x)", code, code);
2689         mvprintw(row, col, "%*s: ", COLS / 4, tmp);
2690         if (C1)
2691             nodelay(stdscr, TRUE);
2692         echochar(code);
2693         if (C1) {
2694             /* (yes, this _is_ crude) */
2695             while ((reply = Getchar()) != ERR) {
2696                 addch(UChar(reply));
2697                 napms(10);
2698             }
2699             nodelay(stdscr, FALSE);
2700         }
2701     }
2702 }
2703
2704 static void
2705 show_pc_chars(void)
2706 {
2707     unsigned code;
2708
2709     erase();
2710     attron(A_BOLD);
2711     mvprintw(0, 20, "Display of PC Character Codes");
2712     attroff(A_BOLD);
2713     refresh();
2714
2715     for (code = 0; code < 16; ++code) {
2716         mvprintw(2, (int) code * 3 + 8, "%X", code);
2717     }
2718     for (code = 0; code < 256; code++) {
2719         int row = 3 + (code / 16) + (code >= 128);
2720         int col = 8 + (code % 16) * 3;
2721         if ((code % 16) == 0)
2722             mvprintw(row, 0, "0x%02x:", code);
2723         move(row, col);
2724         switch (code) {
2725         case '\n':
2726         case '\r':
2727         case '\b':
2728         case '\f':
2729         case '\033':
2730         case 0x9b:
2731             /*
2732              * Skip the ones that do not work.
2733              */
2734             break;
2735         default:
2736             addch(code | A_ALTCHARSET);
2737             break;
2738         }
2739     }
2740 }
2741
2742 static void
2743 show_box_chars(void)
2744 {
2745     erase();
2746     attron(A_BOLD);
2747     mvaddstr(0, 20, "Display of the ACS Line-Drawing Set");
2748     attroff(A_BOLD);
2749     refresh();
2750     box(stdscr, 0, 0);
2751     /* *INDENT-OFF* */
2752     mvhline(LINES / 2, 0,        ACS_HLINE, COLS);
2753     mvvline(0,         COLS / 2, ACS_VLINE, LINES);
2754     mvaddch(0,         COLS / 2, ACS_TTEE);
2755     mvaddch(LINES / 2, COLS / 2, ACS_PLUS);
2756     mvaddch(LINES - 1, COLS / 2, ACS_BTEE);
2757     mvaddch(LINES / 2, 0,        ACS_LTEE);
2758     mvaddch(LINES / 2, COLS - 1, ACS_RTEE);
2759     /* *INDENT-ON* */
2760
2761 }
2762
2763 static int
2764 show_1_acs(int n, const char *name, chtype code)
2765 {
2766     const int height = 16;
2767     int row = 2 + (n % height);
2768     int col = (n / height) * COLS / 2;
2769     mvprintw(row, col, "%*s : ", COLS / 4, name);
2770     addch(code);
2771     return n + 1;
2772 }
2773
2774 static void
2775 show_acs_chars(void)
2776 /* display the ACS character set */
2777 {
2778     int n;
2779
2780 #define BOTH(name) #name, name
2781
2782     erase();
2783     attron(A_BOLD);
2784     mvaddstr(0, 20, "Display of the ACS Character Set");
2785     attroff(A_BOLD);
2786     refresh();
2787
2788     n = show_1_acs(0, BOTH(ACS_ULCORNER));
2789     n = show_1_acs(n, BOTH(ACS_URCORNER));
2790     n = show_1_acs(n, BOTH(ACS_LLCORNER));
2791     n = show_1_acs(n, BOTH(ACS_LRCORNER));
2792
2793     n = show_1_acs(n, BOTH(ACS_LTEE));
2794     n = show_1_acs(n, BOTH(ACS_RTEE));
2795     n = show_1_acs(n, BOTH(ACS_TTEE));
2796     n = show_1_acs(n, BOTH(ACS_BTEE));
2797
2798     n = show_1_acs(n, BOTH(ACS_HLINE));
2799     n = show_1_acs(n, BOTH(ACS_VLINE));
2800
2801     /*
2802      * HPUX's ACS definitions are broken here.  Just give up.
2803      */
2804 #if !(defined(__hpux) && !defined(NCURSES_VERSION))
2805     n = show_1_acs(n, BOTH(ACS_LARROW));
2806     n = show_1_acs(n, BOTH(ACS_RARROW));
2807     n = show_1_acs(n, BOTH(ACS_UARROW));
2808     n = show_1_acs(n, BOTH(ACS_DARROW));
2809
2810     n = show_1_acs(n, BOTH(ACS_BLOCK));
2811     n = show_1_acs(n, BOTH(ACS_BOARD));
2812     n = show_1_acs(n, BOTH(ACS_LANTERN));
2813     n = show_1_acs(n, BOTH(ACS_BULLET));
2814     n = show_1_acs(n, BOTH(ACS_CKBOARD));
2815     n = show_1_acs(n, BOTH(ACS_DEGREE));
2816     n = show_1_acs(n, BOTH(ACS_DIAMOND));
2817     n = show_1_acs(n, BOTH(ACS_PLMINUS));
2818     n = show_1_acs(n, BOTH(ACS_PLUS));
2819
2820     n = show_1_acs(n, BOTH(ACS_GEQUAL));
2821     n = show_1_acs(n, BOTH(ACS_NEQUAL));
2822     n = show_1_acs(n, BOTH(ACS_LEQUAL));
2823
2824     n = show_1_acs(n, BOTH(ACS_STERLING));
2825     n = show_1_acs(n, BOTH(ACS_PI));
2826     n = show_1_acs(n, BOTH(ACS_S1));
2827     n = show_1_acs(n, BOTH(ACS_S3));
2828     n = show_1_acs(n, BOTH(ACS_S7));
2829     n = show_1_acs(n, BOTH(ACS_S9));
2830 #endif
2831 }
2832
2833 static void
2834 acs_display(void)
2835 {
2836     int c = 'a';
2837     char *term = getenv("TERM");
2838     const char *pch_kludge = ((term != 0 && strstr(term, "linux"))
2839                               ? "p=PC, "
2840                               : "");
2841
2842     do {
2843         switch (c) {
2844         case CTRL('L'):
2845             Repaint();
2846             break;
2847         case 'a':
2848             show_acs_chars();
2849             break;
2850         case 'x':
2851             show_box_chars();
2852             break;
2853         case '0':
2854         case '1':
2855         case '2':
2856         case '3':
2857             show_upper_chars((unsigned) ((c - '0') * 32 + 128));
2858             break;
2859         case 'p':
2860             show_pc_chars();
2861             break;
2862         default:
2863             beep();
2864             break;
2865         }
2866         mvprintw(LINES - 3, 0,
2867                  "Note: ANSI terminals may not display C1 characters.");
2868         mvprintw(LINES - 2, 0,
2869                  "Select: a=ACS, x=box, %s0=C1, 1,2,3=GR characters, ESC=quit",
2870                  pch_kludge);
2871         refresh();
2872     } while (!isQuit(c = Getchar()));
2873
2874     Pause();
2875     erase();
2876     endwin();
2877 }
2878
2879 #if USE_WIDEC_SUPPORT
2880 static cchar_t *
2881 merge_wide_attr(cchar_t *dst, cchar_t *src, attr_t attr, short pair)
2882 {
2883     int count = getcchar(src, NULL, NULL, NULL, 0);
2884     wchar_t *wch = 0;
2885     attr_t ignore_attr;
2886     short ignore_pair;
2887
2888     *dst = *src;
2889     if (count > 0) {
2890         if ((wch = typeMalloc(wchar_t, count)) != 0) {
2891             if (getcchar(src, wch, &ignore_attr, &ignore_pair, 0) != ERR) {
2892                 attr |= (ignore_attr & A_ALTCHARSET);
2893                 setcchar(dst, wch, attr, pair, 0);
2894             }
2895             free(wch);
2896         }
2897     }
2898     return dst;
2899 }
2900
2901 static void
2902 show_upper_widechars(int first, int repeat, int space, attr_t attr, short pair)
2903 {
2904     cchar_t temp;
2905     wchar_t code;
2906     int last = first + 31;
2907
2908     erase();
2909     attron(A_BOLD);
2910     mvprintw(0, 20, "Display of Character Codes %d to %d", first, last);
2911     attroff(A_BOLD);
2912
2913     for (code = first; code <= last; code++) {
2914         int row = 2 + ((code - first) % 16);
2915         int col = ((code - first) / 16) * COLS / 2;
2916         wchar_t codes[10];
2917         char tmp[80];
2918         int count = repeat;
2919         int y, x;
2920
2921         memset(&codes, 0, sizeof(codes));
2922         codes[0] = code;
2923         sprintf(tmp, "%3ld (0x%lx)", (long) code, (long) code);
2924         mvprintw(row, col, "%*s: ", COLS / 4, tmp);
2925         setcchar(&temp, codes, attr, pair, 0);
2926         do {
2927             /*
2928              * Give non-spacing characters something to combine with.  If we
2929              * don't, they'll bunch up in a heap on the space after the ":".
2930              * Mark them with reverse-video to make them simpler to find on
2931              * the display.
2932              */
2933             if (wcwidth(code) == 0)
2934                 addch(space | A_REVERSE);
2935             /*
2936              * This could use add_wch(), but is done for comparison with the
2937              * normal 'f' test (and to make a test-case for echo_wchar()).
2938              * The screen will flicker because the erase() at the top of the
2939              * function is met by the builtin refresh() in echo_wchar().
2940              */
2941             echo_wchar(&temp);
2942             /*
2943              * The repeat-count may make text wrap - avoid that.
2944              */
2945             getyx(stdscr, y, x);
2946             if (x >= col + (COLS / 2) - 2)
2947                 break;
2948         } while (--count > 0);
2949     }
2950 }
2951
2952 static int
2953 show_1_wacs(int n, const char *name, const cchar_t *code)
2954 {
2955     const int height = 16;
2956     int row = 2 + (n % height);
2957     int col = (n / height) * COLS / 2;
2958     mvprintw(row, col, "%*s : ", COLS / 4, name);
2959     add_wchnstr(code, 1);
2960     return n + 1;
2961 }
2962
2963 #define MERGE_ATTR(wch) merge_wide_attr(&temp, wch, attr, pair)
2964
2965 static void
2966 show_wacs_chars(attr_t attr, short pair)
2967 /* display the wide-ACS character set */
2968 {
2969     cchar_t temp;
2970
2971     int n;
2972
2973 /*#define BOTH2(name) #name, &(name) */
2974 #define BOTH2(name) #name, MERGE_ATTR(name)
2975
2976     erase();
2977     attron(A_BOLD);
2978     mvaddstr(0, 20, "Display of the Wide-ACS Character Set");
2979     attroff(A_BOLD);
2980     refresh();
2981
2982     n = show_1_wacs(0, BOTH2(WACS_ULCORNER));
2983     n = show_1_wacs(n, BOTH2(WACS_URCORNER));
2984     n = show_1_wacs(n, BOTH2(WACS_LLCORNER));
2985     n = show_1_wacs(n, BOTH2(WACS_LRCORNER));
2986
2987     n = show_1_wacs(n, BOTH2(WACS_LTEE));
2988     n = show_1_wacs(n, BOTH2(WACS_RTEE));
2989     n = show_1_wacs(n, BOTH2(WACS_TTEE));
2990     n = show_1_wacs(n, BOTH2(WACS_BTEE));
2991
2992     n = show_1_wacs(n, BOTH2(WACS_HLINE));
2993     n = show_1_wacs(n, BOTH2(WACS_VLINE));
2994
2995     n = show_1_wacs(n, BOTH2(WACS_LARROW));
2996     n = show_1_wacs(n, BOTH2(WACS_RARROW));
2997     n = show_1_wacs(n, BOTH2(WACS_UARROW));
2998     n = show_1_wacs(n, BOTH2(WACS_DARROW));
2999
3000     n = show_1_wacs(n, BOTH2(WACS_BLOCK));
3001     n = show_1_wacs(n, BOTH2(WACS_BOARD));
3002     n = show_1_wacs(n, BOTH2(WACS_LANTERN));
3003     n = show_1_wacs(n, BOTH2(WACS_BULLET));
3004     n = show_1_wacs(n, BOTH2(WACS_CKBOARD));
3005     n = show_1_wacs(n, BOTH2(WACS_DEGREE));
3006     n = show_1_wacs(n, BOTH2(WACS_DIAMOND));
3007     n = show_1_wacs(n, BOTH2(WACS_PLMINUS));
3008     n = show_1_wacs(n, BOTH2(WACS_PLUS));
3009
3010 #ifdef CURSES_WACS_ARRAY
3011     n = show_1_wacs(n, BOTH2(WACS_GEQUAL));
3012     n = show_1_wacs(n, BOTH2(WACS_NEQUAL));
3013     n = show_1_wacs(n, BOTH2(WACS_LEQUAL));
3014
3015     n = show_1_wacs(n, BOTH2(WACS_STERLING));
3016     n = show_1_wacs(n, BOTH2(WACS_PI));
3017     n = show_1_wacs(n, BOTH2(WACS_S1));
3018     n = show_1_wacs(n, BOTH2(WACS_S3));
3019     n = show_1_wacs(n, BOTH2(WACS_S7));
3020     n = show_1_wacs(n, BOTH2(WACS_S9));
3021 #endif
3022 }
3023
3024 #undef MERGE_ATTR
3025
3026 #define MERGE_ATTR(wch) merge_wide_attr(&temp, wch, attr, pair)
3027
3028 static void
3029 show_wbox_chars(attr_t attr, short pair)
3030 {
3031     cchar_t temp;
3032
3033     erase();
3034     attron(A_BOLD);
3035     mvaddstr(0, 20, "Display of the Wide-ACS Line-Drawing Set");
3036     attroff(A_BOLD);
3037     refresh();
3038
3039     attr_set(attr, pair, 0);
3040     box_set(stdscr, 0, 0);
3041     attr_set(A_NORMAL, 0, 0);
3042     /* *INDENT-OFF* */
3043     mvhline_set(LINES / 2, 0,        MERGE_ATTR(WACS_HLINE), COLS);
3044     mvvline_set(0,         COLS / 2, MERGE_ATTR(WACS_VLINE), LINES);
3045     mvadd_wch(0,           COLS / 2, MERGE_ATTR(WACS_TTEE));
3046     mvadd_wch(LINES / 2,   COLS / 2, MERGE_ATTR(WACS_PLUS));
3047     mvadd_wch(LINES - 1,   COLS / 2, MERGE_ATTR(WACS_BTEE));
3048     mvadd_wch(LINES / 2,   0,        MERGE_ATTR(WACS_LTEE));
3049     mvadd_wch(LINES / 2,   COLS - 1, MERGE_ATTR(WACS_RTEE));
3050     /* *INDENT-ON* */
3051
3052 }
3053
3054 #undef MERGE_ATTR
3055
3056 static int
3057 show_2_wacs(int n, const char *name, const char *code, attr_t attr, short pair)
3058 {
3059     const int height = 16;
3060     int row = 2 + (n % height);
3061     int col = (n / height) * COLS / 2;
3062     char temp[80];
3063
3064     mvprintw(row, col, "%*s : ", COLS / 4, name);
3065     attr_set(attr, pair, 0);
3066     addstr(strcpy(temp, code));
3067     attr_set(A_NORMAL, 0, 0);
3068     return n + 1;
3069 }
3070
3071 #define SHOW_UTF8(n, name, code) show_2_wacs(n, name, code, attr, pair)
3072
3073 static void
3074 show_utf8_chars(attr_t attr, short pair)
3075 {
3076     int n;
3077
3078     erase();
3079     attron(A_BOLD);
3080     mvaddstr(0, 20, "Display of the Wide-ACS Character Set");
3081     attroff(A_BOLD);
3082     refresh();
3083     /* *INDENT-OFF* */
3084     n = SHOW_UTF8(0, "WACS_ULCORNER",   "\342\224\214");
3085     n = SHOW_UTF8(n, "WACS_URCORNER",   "\342\224\220");
3086     n = SHOW_UTF8(n, "WACS_LLCORNER",   "\342\224\224");
3087     n = SHOW_UTF8(n, "WACS_LRCORNER",   "\342\224\230");
3088
3089     n = SHOW_UTF8(n, "WACS_LTEE",       "\342\224\234");
3090     n = SHOW_UTF8(n, "WACS_RTEE",       "\342\224\244");
3091     n = SHOW_UTF8(n, "WACS_TTEE",       "\342\224\254");
3092     n = SHOW_UTF8(n, "WACS_BTEE",       "\342\224\264");
3093
3094     n = SHOW_UTF8(n, "WACS_HLINE",      "\342\224\200");
3095     n = SHOW_UTF8(n, "WACS_VLINE",      "\342\224\202");
3096
3097     n = SHOW_UTF8(n, "WACS_LARROW",     "\342\206\220");
3098     n = SHOW_UTF8(n, "WACS_RARROW",     "\342\206\222");
3099     n = SHOW_UTF8(n, "WACS_UARROW",     "\342\206\221");
3100     n = SHOW_UTF8(n, "WACS_DARROW",     "\342\206\223");
3101
3102     n = SHOW_UTF8(n, "WACS_BLOCK",      "\342\226\256");
3103     n = SHOW_UTF8(n, "WACS_BOARD",      "\342\226\222");
3104     n = SHOW_UTF8(n, "WACS_LANTERN",    "\342\230\203");
3105     n = SHOW_UTF8(n, "WACS_BULLET",     "\302\267");
3106     n = SHOW_UTF8(n, "WACS_CKBOARD",    "\342\226\222");
3107     n = SHOW_UTF8(n, "WACS_DEGREE",     "\302\260");
3108     n = SHOW_UTF8(n, "WACS_DIAMOND",    "\342\227\206");
3109     n = SHOW_UTF8(n, "WACS_PLMINUS",    "\302\261");
3110     n = SHOW_UTF8(n, "WACS_PLUS",       "\342\224\274");
3111     n = SHOW_UTF8(n, "WACS_GEQUAL",     "\342\211\245");
3112     n = SHOW_UTF8(n, "WACS_NEQUAL",     "\342\211\240");
3113     n = SHOW_UTF8(n, "WACS_LEQUAL",     "\342\211\244");
3114
3115     n = SHOW_UTF8(n, "WACS_STERLING",   "\302\243");
3116     n = SHOW_UTF8(n, "WACS_PI",         "\317\200");
3117     n = SHOW_UTF8(n, "WACS_S1",         "\342\216\272");
3118     n = SHOW_UTF8(n, "WACS_S3",         "\342\216\273");
3119     n = SHOW_UTF8(n, "WACS_S7",         "\342\216\274");
3120     n = SHOW_UTF8(n, "WACS_S9",         "\342\216\275");
3121     /* *INDENT-ON* */
3122
3123 }
3124 /* *INDENT-OFF* */
3125 static struct {
3126     attr_t attr;
3127     const char *name;
3128 } attrs_to_cycle[] = {
3129     { A_NORMAL,         "normal" },
3130     { A_BOLD,           "bold" },
3131     { A_REVERSE,        "reverse" },
3132     { A_UNDERLINE,      "underline" },
3133 };
3134 /* *INDENT-ON* */
3135
3136 static bool
3137 cycle_attr(int ch, unsigned *at_code, chtype *attr)
3138 {
3139     bool result = TRUE;
3140
3141     switch (ch) {
3142     case 'v':
3143         if ((*at_code += 1) >= SIZEOF(attrs_to_cycle))
3144             *at_code = 0;
3145         break;
3146     case 'V':
3147         if (*at_code == 1)
3148             *at_code = SIZEOF(attrs_to_cycle) - 1;
3149         else
3150             *at_code -= 1;
3151         break;
3152     default:
3153         result = FALSE;
3154         break;
3155     }
3156     if (result)
3157         *attr = attrs_to_cycle[*at_code].attr;
3158     return result;
3159 }
3160
3161 static bool
3162 cycle_colors(int ch, int *fg, int *bg, short *pair)
3163 {
3164     bool result = FALSE;
3165
3166     if (use_colors) {
3167         result = TRUE;
3168         switch (ch) {
3169         case 'F':
3170             if ((*fg -= 1) < 0)
3171                 *fg = COLORS - 1;
3172             break;
3173         case 'f':
3174             if ((*fg += 1) >= COLORS)
3175                 *fg = 0;
3176             break;
3177         case 'B':
3178             if ((*bg -= 1) < 0)
3179                 *bg = COLORS - 1;
3180             break;
3181         case 'b':
3182             if ((*bg += 1) < 0)
3183                 *bg = 0;
3184             break;
3185         default:
3186             result = FALSE;
3187             break;
3188         }
3189         if (result) {
3190             *pair = (*fg != COLOR_BLACK || *bg != COLOR_BLACK);
3191             if (*pair != 0) {
3192                 *pair = 1;
3193                 if (init_pair(*pair, *fg, *bg) == ERR) {
3194                     result = FALSE;
3195                 }
3196             }
3197         }
3198     }
3199     return result;
3200 }
3201
3202 /* display the wide-ACS character set */
3203 static void
3204 wide_acs_display(void)
3205 {
3206     int c = 'a';
3207     int digit = 0;
3208     int repeat = 0;
3209     int space = ' ';
3210     chtype attr = A_NORMAL;
3211     int fg = COLOR_BLACK;
3212     int bg = COLOR_BLACK;
3213     unsigned at_code = 0;
3214     short pair = 0;
3215     void (*last_show_wacs) (attr_t, short) = 0;
3216
3217     do {
3218         switch (c) {
3219         case CTRL('L'):
3220             Repaint();
3221             break;
3222         case 'a':
3223             last_show_wacs = show_wacs_chars;
3224             break;
3225         case 'x':
3226             last_show_wacs = show_wbox_chars;
3227             break;
3228         case 'u':
3229             last_show_wacs = show_utf8_chars;
3230             break;
3231         default:
3232             if (c < 256 && isdigit(c)) {
3233                 digit = (c - '0');
3234             } else if (c == '+') {
3235                 ++digit;
3236             } else if (c == '-' && digit > 0) {
3237                 --digit;
3238             } else if (c == '>' && repeat < (COLS / 4)) {
3239                 ++repeat;
3240             } else if (c == '<' && repeat > 0) {
3241                 --repeat;
3242             } else if (c == '_') {
3243                 space = (space == ' ') ? '_' : ' ';
3244             } else if (cycle_attr(c, &at_code, &attr)
3245                        || cycle_colors(c, &fg, &bg, &pair)) {
3246                 if (last_show_wacs != 0)
3247                     break;
3248             } else {
3249                 beep();
3250                 break;
3251             }
3252             last_show_wacs = 0;
3253             show_upper_widechars(digit * 32 + 128, repeat, space, attr, pair);
3254             break;
3255         }
3256         if (last_show_wacs != 0)
3257             last_show_wacs(attr, pair);
3258
3259         mvprintw(LINES - 3, 0,
3260                  "Select: a WACS, x box, u UTF-8, 0-9,+/- non-ASCII, </> repeat, ESC=quit");
3261         if (use_colors) {
3262             mvprintw(LINES - 2, 0,
3263                      "v/V, f/F, b/B cycle through video attributes (%s) and color %d/%d.",
3264                      attrs_to_cycle[at_code].name,
3265                      fg, bg);
3266         } else {
3267             mvprintw(LINES - 2, 0,
3268                      "v/V cycles through video attributes (%s).",
3269                      attrs_to_cycle[at_code].name);
3270         }
3271         refresh();
3272     } while (!isQuit(c = Getchar()));
3273
3274     Pause();
3275     erase();
3276     endwin();
3277 }
3278
3279 #endif
3280
3281 /*
3282  * Graphic-rendition test (adapted from vttest)
3283  */
3284 static void
3285 test_sgr_attributes(void)
3286 {
3287     int pass;
3288
3289     for (pass = 0; pass < 2; pass++) {
3290         chtype normal = ((pass == 0 ? A_NORMAL : A_REVERSE)) | BLANK;
3291
3292         /* Use non-default colors if possible to exercise bce a little */
3293         if (use_colors) {
3294             init_pair(1, COLOR_WHITE, COLOR_BLUE);
3295             normal |= COLOR_PAIR(1);
3296         }
3297         bkgdset(normal);
3298         erase();
3299         mvprintw(1, 20, "Graphic rendition test pattern:");
3300
3301         mvprintw(4, 1, "vanilla");
3302
3303 #define set_sgr(mask) bkgdset((normal^(mask)));
3304         set_sgr(A_BOLD);
3305         mvprintw(4, 40, "bold");
3306
3307         set_sgr(A_UNDERLINE);
3308         mvprintw(6, 6, "underline");
3309
3310         set_sgr(A_BOLD | A_UNDERLINE);
3311         mvprintw(6, 45, "bold underline");
3312
3313         set_sgr(A_BLINK);
3314         mvprintw(8, 1, "blink");
3315
3316         set_sgr(A_BLINK | A_BOLD);
3317         mvprintw(8, 40, "bold blink");
3318
3319         set_sgr(A_UNDERLINE | A_BLINK);
3320         mvprintw(10, 6, "underline blink");
3321
3322         set_sgr(A_BOLD | A_UNDERLINE | A_BLINK);
3323         mvprintw(10, 45, "bold underline blink");
3324
3325         set_sgr(A_REVERSE);
3326         mvprintw(12, 1, "negative");
3327
3328         set_sgr(A_BOLD | A_REVERSE);
3329         mvprintw(12, 40, "bold negative");
3330
3331         set_sgr(A_UNDERLINE | A_REVERSE);
3332         mvprintw(14, 6, "underline negative");
3333
3334         set_sgr(A_BOLD | A_UNDERLINE | A_REVERSE);
3335         mvprintw(14, 45, "bold underline negative");
3336
3337         set_sgr(A_BLINK | A_REVERSE);
3338         mvprintw(16, 1, "blink negative");
3339
3340         set_sgr(A_BOLD | A_BLINK | A_REVERSE);
3341         mvprintw(16, 40, "bold blink negative");
3342
3343         set_sgr(A_UNDERLINE | A_BLINK | A_REVERSE);
3344         mvprintw(18, 6, "underline blink negative");
3345
3346         set_sgr(A_BOLD | A_UNDERLINE | A_BLINK | A_REVERSE);
3347         mvprintw(18, 45, "bold underline blink negative");
3348
3349         bkgdset(normal);
3350         mvprintw(LINES - 2, 1, "%s background. ", pass == 0 ? "Dark" :
3351                  "Light");
3352         clrtoeol();
3353         Pause();
3354     }
3355
3356     bkgdset(A_NORMAL | BLANK);
3357     erase();
3358     endwin();
3359 }
3360
3361 /****************************************************************************
3362  *
3363  * Windows and scrolling tester.
3364  *
3365  ****************************************************************************/
3366
3367 #define BOTLINES        4       /* number of line stolen from screen bottom */
3368
3369 typedef struct {
3370     int y, x;
3371 } pair;
3372
3373 #define FRAME struct frame
3374 FRAME
3375 {
3376     FRAME *next, *last;
3377     bool do_scroll;
3378     bool do_keypad;
3379     WINDOW *wind;
3380 };
3381
3382 #if defined(NCURSES_VERSION) && !NCURSES_OPAQUE
3383 #define keypad_active(win) (win)->_use_keypad
3384 #define scroll_active(win) (win)->_scroll
3385 #else
3386 #define keypad_active(win) FALSE
3387 #define scroll_active(win) FALSE
3388 #endif
3389
3390 /* We need to know if these flags are actually set, so don't look in FRAME.
3391  * These names are known to work with SVr4 curses as well as ncurses.  The
3392  * _use_keypad name does not work with Solaris 8.
3393  */
3394 static bool
3395 HaveKeypad(FRAME * curp)
3396 {
3397     WINDOW *win = (curp ? curp->wind : stdscr);
3398     (void) win;
3399     return keypad_active(win);
3400 }
3401
3402 static bool
3403 HaveScroll(FRAME * curp)
3404 {
3405     WINDOW *win = (curp ? curp->wind : stdscr);
3406     (void) win;
3407     return scroll_active(win);
3408 }
3409
3410 static void
3411 newwin_legend(FRAME * curp)
3412 {
3413     static const struct {
3414         const char *msg;
3415         int code;
3416     } legend[] = {
3417         {
3418             "^C = create window", 0
3419         },
3420         {
3421             "^N = next window", 0
3422         },
3423         {
3424             "^P = previous window", 0
3425         },
3426         {
3427             "^F = scroll forward", 0
3428         },
3429         {
3430             "^B = scroll backward", 0
3431         },
3432         {
3433             "^K = keypad(%s)", 1
3434         },
3435         {
3436             "^S = scrollok(%s)", 2
3437         },
3438         {
3439             "^W = save window to file", 0
3440         },
3441         {
3442             "^R = restore window", 0
3443         },
3444 #if HAVE_WRESIZE
3445         {
3446             "^X = resize", 0
3447         },
3448 #endif
3449         {
3450             "^Q%s = exit", 3
3451         }
3452     };
3453     size_t n;
3454     int x;
3455     bool do_keypad = HaveKeypad(curp);
3456     bool do_scroll = HaveScroll(curp);
3457     char buf[BUFSIZ];
3458
3459     move(LINES - 4, 0);
3460     for (n = 0; n < SIZEOF(legend); n++) {
3461         switch (legend[n].code) {
3462         default:
3463             strcpy(buf, legend[n].msg);
3464             break;
3465         case 1:
3466             sprintf(buf, legend[n].msg, do_keypad ? "yes" : "no");
3467             break;
3468         case 2:
3469             sprintf(buf, legend[n].msg, do_scroll ? "yes" : "no");
3470             break;
3471         case 3:
3472             sprintf(buf, legend[n].msg, do_keypad ? "/ESC" : "");
3473             break;
3474         }
3475         x = getcurx(stdscr);
3476         addstr((COLS < (x + 3 + (int) strlen(buf))) ? "\n" : (n ? ", " : ""));
3477         addstr(buf);
3478     }
3479     clrtoeol();
3480 }
3481
3482 static void
3483 transient(FRAME * curp, NCURSES_CONST char *msg)
3484 {
3485     newwin_legend(curp);
3486     if (msg) {
3487         mvaddstr(LINES - 1, 0, msg);
3488         refresh();
3489         napms(1000);
3490     }
3491
3492     move(LINES - 1, 0);
3493     printw("%s characters are echoed, window should %sscroll.",
3494            HaveKeypad(curp) ? "Non-arrow" : "All other",
3495            HaveScroll(curp) ? "" : "not ");
3496     clrtoeol();
3497 }
3498
3499 static void
3500 newwin_report(FRAME * curp)
3501 /* report on the cursor's current position, then restore it */
3502 {
3503     WINDOW *win = (curp != 0) ? curp->wind : stdscr;
3504     int y, x;
3505
3506     if (win != stdscr)
3507         transient(curp, (char *) 0);
3508     getyx(win, y, x);
3509     move(LINES - 1, COLS - 17);
3510     printw("Y = %2d X = %2d", y, x);
3511     if (win != stdscr)
3512         refresh();
3513     else
3514         wmove(win, y, x);
3515 }
3516
3517 static pair *
3518 selectcell(int uli, int ulj, int lri, int lrj)
3519 /* arrows keys move cursor, return location at current on non-arrow key */
3520 {
3521     static pair res;            /* result cell */
3522     int si = lri - uli + 1;     /* depth of the select area */
3523     int sj = lrj - ulj + 1;     /* width of the select area */
3524     int i = 0, j = 0;           /* offsets into the select area */
3525
3526     res.y = uli;
3527     res.x = ulj;
3528     for (;;) {
3529         move(uli + i, ulj + j);
3530         newwin_report((FRAME *) 0);
3531
3532         switch (Getchar()) {
3533         case KEY_UP:
3534             i += si - 1;
3535             break;
3536         case KEY_DOWN:
3537             i++;
3538             break;
3539         case KEY_LEFT:
3540             j += sj - 1;
3541             break;
3542         case KEY_RIGHT:
3543             j++;
3544             break;
3545           case_QUIT:
3546             return ((pair *) 0);
3547 #ifdef NCURSES_MOUSE_VERSION
3548         case KEY_MOUSE:
3549             {
3550                 MEVENT event;
3551
3552                 getmouse(&event);
3553                 if (event.y > uli && event.x > ulj) {
3554                     i = event.y - uli;
3555                     j = event.x - ulj;
3556                 } else {
3557                     beep();
3558                     break;
3559                 }
3560             }
3561             /* FALLTHRU */
3562 #endif
3563         default:
3564             res.y = uli + i;
3565             res.x = ulj + j;
3566             return (&res);
3567         }
3568         i %= si;
3569         j %= sj;
3570     }
3571 }
3572
3573 static void
3574 outerbox(pair ul, pair lr, bool onoff)
3575 /* draw or erase a box *outside* the given pair of corners */
3576 {
3577     mvaddch(ul.y - 1, lr.x - 1, onoff ? ACS_ULCORNER : ' ');
3578     mvaddch(ul.y - 1, lr.x + 1, onoff ? ACS_URCORNER : ' ');
3579     mvaddch(lr.y + 1, lr.x + 1, onoff ? ACS_LRCORNER : ' ');
3580     mvaddch(lr.y + 1, ul.x - 1, onoff ? ACS_LLCORNER : ' ');
3581     move(ul.y - 1, ul.x);
3582     hline(onoff ? ACS_HLINE : ' ', lr.x - ul.x + 1);
3583     move(ul.y, ul.x - 1);
3584     vline(onoff ? ACS_VLINE : ' ', lr.y - ul.y + 1);
3585     move(lr.y + 1, ul.x);
3586     hline(onoff ? ACS_HLINE : ' ', lr.x - ul.x + 1);
3587     move(ul.y, lr.x + 1);
3588     vline(onoff ? ACS_VLINE : ' ', lr.y - ul.y + 1);
3589 }
3590
3591 static WINDOW *
3592 getwindow(void)
3593 /* Ask user for a window definition */
3594 {
3595     WINDOW *rwindow;
3596     pair ul, lr, *tmp;
3597
3598     move(0, 0);
3599     clrtoeol();
3600     addstr("Use arrows to move cursor, anything else to mark corner 1");
3601     refresh();
3602     if ((tmp = selectcell(2, 1, LINES - BOTLINES - 2, COLS - 2)) == (pair *) 0)
3603         return ((WINDOW *) 0);
3604     memcpy(&ul, tmp, sizeof(pair));
3605     mvaddch(ul.y - 1, ul.x - 1, ACS_ULCORNER);
3606     move(0, 0);
3607     clrtoeol();
3608     addstr("Use arrows to move cursor, anything else to mark corner 2");
3609     refresh();
3610     if ((tmp = selectcell(ul.y, ul.x, LINES - BOTLINES - 2, COLS - 2)) ==
3611         (pair *) 0)
3612         return ((WINDOW *) 0);
3613     memcpy(&lr, tmp, sizeof(pair));
3614
3615     rwindow = subwin(stdscr, lr.y - ul.y + 1, lr.x - ul.x + 1, ul.y, ul.x);
3616
3617     outerbox(ul, lr, TRUE);
3618     refresh();
3619
3620     wrefresh(rwindow);
3621
3622     move(0, 0);
3623     clrtoeol();
3624     return (rwindow);
3625 }
3626
3627 static void
3628 newwin_move(FRAME * curp, int dy, int dx)
3629 {
3630     WINDOW *win = (curp != 0) ? curp->wind : stdscr;
3631     int cur_y, cur_x;
3632     int max_y, max_x;
3633
3634     getyx(win, cur_y, cur_x);
3635     getmaxyx(win, max_y, max_x);
3636     if ((cur_x += dx) < 0)
3637         cur_x = 0;
3638     else if (cur_x >= max_x)
3639         cur_x = max_x - 1;
3640     if ((cur_y += dy) < 0)
3641         cur_y = 0;
3642     else if (cur_y >= max_y)
3643         cur_y = max_y - 1;
3644     wmove(win, cur_y, cur_x);
3645 }
3646
3647 static FRAME *
3648 delete_framed(FRAME * fp, bool showit)
3649 {
3650     FRAME *np;
3651
3652     fp->last->next = fp->next;
3653     fp->next->last = fp->last;
3654
3655     if (showit) {
3656         werase(fp->wind);
3657         wrefresh(fp->wind);
3658     }
3659     delwin(fp->wind);
3660
3661     np = (fp == fp->next) ? 0 : fp->next;
3662     free(fp);
3663     return np;
3664 }
3665
3666 static void
3667 acs_and_scroll(void)
3668 /* Demonstrate windows */
3669 {
3670     int c, i;
3671     FRAME *current = (FRAME *) 0, *neww;
3672     WINDOW *usescr = stdscr;
3673 #if HAVE_PUTWIN && HAVE_GETWIN
3674     FILE *fp;
3675 #endif
3676
3677 #define DUMPFILE        "screendump"
3678
3679 #ifdef NCURSES_MOUSE_VERSION
3680     mousemask(BUTTON1_CLICKED, (mmask_t *) 0);
3681 #endif
3682     c = CTRL('C');
3683     raw();
3684     do {
3685         transient((FRAME *) 0, (char *) 0);
3686         switch (c) {
3687         case CTRL('C'):
3688             neww = (FRAME *) calloc(1, sizeof(FRAME));
3689             if ((neww->wind = getwindow()) == (WINDOW *) 0)
3690                 goto breakout;
3691
3692             if (current == 0) { /* First element,  */
3693                 neww->next = neww;      /*   so point it at itself */
3694                 neww->last = neww;
3695             } else {
3696                 neww->next = current->next;
3697                 neww->last = current;
3698                 neww->last->next = neww;
3699                 neww->next->last = neww;
3700             }
3701             current = neww;
3702             /* SVr4 curses sets the keypad on all newly-created windows to
3703              * false.  Someone reported that PDCurses makes new windows inherit
3704              * this flag.  Remove the following 'keypad()' call to test this
3705              */
3706             keypad(current->wind, TRUE);
3707             current->do_keypad = HaveKeypad(current);
3708             current->do_scroll = HaveScroll(current);
3709             break;
3710
3711         case CTRL('N'): /* go to next window */
3712             if (current)
3713                 current = current->next;
3714             break;
3715
3716         case CTRL('P'): /* go to previous window */
3717             if (current)
3718                 current = current->last;
3719             break;
3720
3721         case CTRL('F'): /* scroll current window forward */
3722             if (current)
3723                 wscrl(current->wind, 1);
3724             break;
3725
3726         case CTRL('B'): /* scroll current window backwards */
3727             if (current)
3728                 wscrl(current->wind, -1);
3729             break;
3730
3731         case CTRL('K'): /* toggle keypad mode for current */
3732             if (current) {
3733                 current->do_keypad = !current->do_keypad;
3734                 keypad(current->wind, current->do_keypad);
3735             }
3736             break;
3737
3738         case CTRL('S'):
3739             if (current) {
3740                 current->do_scroll = !current->do_scroll;
3741                 scrollok(current->wind, current->do_scroll);
3742             }
3743             break;
3744
3745 #if HAVE_PUTWIN && HAVE_GETWIN
3746         case CTRL('W'): /* save and delete window */
3747             if (current == current->next) {
3748                 transient(current, "Will not save/delete ONLY window");
3749                 break;
3750             } else if ((fp = fopen(DUMPFILE, "w")) == (FILE *) 0) {
3751                 transient(current, "Can't open screen dump file");
3752             } else {
3753                 (void) putwin(current->wind, fp);
3754                 (void) fclose(fp);
3755
3756                 current = delete_framed(current, TRUE);
3757             }
3758             break;
3759
3760         case CTRL('R'): /* restore window */
3761             if ((fp = fopen(DUMPFILE, "r")) == (FILE *) 0) {
3762                 transient(current, "Can't open screen dump file");
3763             } else {
3764                 neww = (FRAME *) calloc(1, sizeof(FRAME));
3765
3766                 neww->next = current->next;
3767                 neww->last = current;
3768                 neww->last->next = neww;
3769                 neww->next->last = neww;
3770
3771                 neww->wind = getwin(fp);
3772                 (void) fclose(fp);
3773
3774                 wrefresh(neww->wind);
3775             }
3776             break;
3777 #endif
3778
3779 #if HAVE_WRESIZE
3780         case CTRL('X'): /* resize window */
3781             if (current) {
3782                 pair *tmp, ul, lr;
3783                 int mx, my;
3784
3785                 move(0, 0);
3786                 clrtoeol();
3787                 addstr("Use arrows to move cursor, anything else to mark new corner");
3788                 refresh();
3789
3790                 getbegyx(current->wind, ul.y, ul.x);
3791
3792                 tmp = selectcell(ul.y, ul.x, LINES - BOTLINES - 2, COLS - 2);
3793                 if (tmp == (pair *) 0) {
3794                     beep();
3795                     break;
3796                 }
3797
3798                 getmaxyx(current->wind, lr.y, lr.x);
3799                 lr.y += (ul.y - 1);
3800                 lr.x += (ul.x - 1);
3801                 outerbox(ul, lr, FALSE);
3802                 wnoutrefresh(stdscr);
3803
3804                 /* strictly cosmetic hack for the test */
3805                 getmaxyx(current->wind, my, mx);
3806                 if (my > tmp->y - ul.y) {
3807                     getyx(current->wind, lr.y, lr.x);
3808                     wmove(current->wind, tmp->y - ul.y + 1, 0);
3809                     wclrtobot(current->wind);
3810                     wmove(current->wind, lr.y, lr.x);
3811                 }
3812                 if (mx > tmp->x - ul.x)
3813                     for (i = 0; i < my; i++) {
3814                         wmove(current->wind, i, tmp->x - ul.x + 1);
3815                         wclrtoeol(current->wind);
3816                     }
3817                 wnoutrefresh(current->wind);
3818
3819                 memcpy(&lr, tmp, sizeof(pair));
3820                 (void) wresize(current->wind, lr.y - ul.y + 0, lr.x - ul.x + 0);
3821
3822                 getbegyx(current->wind, ul.y, ul.x);
3823                 getmaxyx(current->wind, lr.y, lr.x);
3824                 lr.y += (ul.y - 1);
3825                 lr.x += (ul.x - 1);
3826                 outerbox(ul, lr, TRUE);
3827                 wnoutrefresh(stdscr);
3828
3829                 wnoutrefresh(current->wind);
3830                 move(0, 0);
3831                 clrtoeol();
3832                 doupdate();
3833             }
3834             break;
3835 #endif /* HAVE_WRESIZE */
3836
3837         case KEY_F(10): /* undocumented --- use this to test area clears */
3838             selectcell(0, 0, LINES - 1, COLS - 1);
3839             clrtobot();
3840             refresh();
3841             break;
3842
3843         case KEY_UP:
3844             newwin_move(current, -1, 0);
3845             break;
3846         case KEY_DOWN:
3847             newwin_move(current, 1, 0);
3848             break;
3849         case KEY_LEFT:
3850             newwin_move(current, 0, -1);
3851             break;
3852         case KEY_RIGHT:
3853             newwin_move(current, 0, 1);
3854             break;
3855
3856         case KEY_BACKSPACE:
3857             /* FALLTHROUGH */
3858         case KEY_DC:
3859             {
3860                 int y, x;
3861                 getyx(current->wind, y, x);
3862                 if (--x < 0) {
3863                     if (--y < 0)
3864                         break;
3865                     x = getmaxx(current->wind) - 1;
3866                 }
3867                 mvwdelch(current->wind, y, x);
3868             }
3869             break;
3870
3871         case '\r':
3872             c = '\n';
3873             /* FALLTHROUGH */
3874
3875         default:
3876             if (current)
3877                 waddch(current->wind, (chtype) c);
3878             else
3879                 beep();
3880             break;
3881         }
3882         newwin_report(current);
3883         usescr = (current ? current->wind : stdscr);
3884         wrefresh(usescr);
3885     } while
3886         (!isQuit(c = wGetchar(usescr))
3887          && (c != ERR));
3888
3889   breakout:
3890     while (current != 0)
3891         current = delete_framed(current, FALSE);
3892
3893     scrollok(stdscr, TRUE);     /* reset to driver's default */
3894 #ifdef NCURSES_MOUSE_VERSION
3895     mousemask(0, (mmask_t *) 0);
3896 #endif
3897     noraw();
3898     erase();
3899     endwin();
3900 }
3901
3902 /****************************************************************************
3903  *
3904  * Panels tester
3905  *
3906  ****************************************************************************/
3907
3908 #if USE_LIBPANEL
3909 static int nap_msec = 1;
3910
3911 static NCURSES_CONST char *mod[] =
3912 {
3913     "test ",
3914     "TEST ",
3915     "(**) ",
3916     "*()* ",
3917     "<--> ",
3918     "LAST "
3919 };
3920
3921 /*+-------------------------------------------------------------------------
3922         wait_a_while(msec)
3923 --------------------------------------------------------------------------*/
3924 static void
3925 wait_a_while(int msec GCC_UNUSED)
3926 {
3927 #if HAVE_NAPMS
3928     if (nap_msec == 1)
3929         wGetchar(stdscr);
3930     else
3931         napms(nap_msec);
3932 #else
3933     if (nap_msec == 1)
3934         wGetchar(stdscr);
3935     else if (msec > 1000)
3936         sleep((unsigned) msec / 1000);
3937     else
3938         sleep(1);
3939 #endif
3940 }                               /* end of wait_a_while */
3941
3942 /*+-------------------------------------------------------------------------
3943         saywhat(text)
3944 --------------------------------------------------------------------------*/
3945 static void
3946 saywhat(NCURSES_CONST char *text)
3947 {
3948     wmove(stdscr, LINES - 1, 0);
3949     wclrtoeol(stdscr);
3950     waddstr(stdscr, text);
3951 }                               /* end of saywhat */
3952
3953 /*+-------------------------------------------------------------------------
3954         mkpanel(rows,cols,tly,tlx) - alloc a win and panel and associate them
3955 --------------------------------------------------------------------------*/
3956 static PANEL *
3957 mkpanel(short color, int rows, int cols, int tly, int tlx)
3958 {
3959     WINDOW *win;
3960     PANEL *pan = 0;
3961
3962     if ((win = newwin(rows, cols, tly, tlx)) != 0) {
3963         if ((pan = new_panel(win)) == 0) {
3964             delwin(win);
3965         } else if (use_colors) {
3966             short fg = (color == COLOR_BLUE) ? COLOR_WHITE : COLOR_BLACK;
3967             short bg = color;
3968
3969             init_pair(color, fg, bg);
3970             wbkgdset(win, (chtype) (COLOR_PAIR(color) | ' '));
3971         } else {
3972             wbkgdset(win, A_BOLD | ' ');
3973         }
3974     }
3975     return pan;
3976 }                               /* end of mkpanel */
3977
3978 /*+-------------------------------------------------------------------------
3979         rmpanel(pan)
3980 --------------------------------------------------------------------------*/
3981 static void
3982 rmpanel(PANEL * pan)
3983 {
3984     WINDOW *win = panel_window(pan);
3985     del_panel(pan);
3986     delwin(win);
3987 }                               /* end of rmpanel */
3988
3989 /*+-------------------------------------------------------------------------
3990         pflush()
3991 --------------------------------------------------------------------------*/
3992 static void
3993 pflush(void)
3994 {
3995     update_panels();
3996     doupdate();
3997 }                               /* end of pflush */
3998
3999 /*+-------------------------------------------------------------------------
4000         fill_panel(win)
4001 --------------------------------------------------------------------------*/
4002 static void
4003 fill_panel(PANEL * pan)
4004 {
4005     WINDOW *win = panel_window(pan);
4006     int num = ((const char *) panel_userptr(pan))[1];
4007     int y, x;
4008
4009     wmove(win, 1, 1);
4010     wprintw(win, "-pan%c-", num);
4011     wclrtoeol(win);
4012     box(win, 0, 0);
4013     for (y = 2; y < getmaxy(win) - 1; y++) {
4014         for (x = 1; x < getmaxx(win) - 1; x++) {
4015             wmove(win, y, x);
4016             waddch(win, UChar(num));
4017         }
4018     }
4019 }                               /* end of fill_panel */
4020
4021 static void
4022 demo_panels(void)
4023 {
4024     int itmp;
4025     register int y, x;
4026
4027     refresh();
4028
4029     for (y = 0; y < LINES - 1; y++) {
4030         for (x = 0; x < COLS; x++)
4031             wprintw(stdscr, "%d", (y + x) % 10);
4032     }
4033     for (y = 0; y < 5; y++) {
4034         PANEL *p1;
4035         PANEL *p2;
4036         PANEL *p3;
4037         PANEL *p4;
4038         PANEL *p5;
4039
4040         p1 = mkpanel(COLOR_RED,
4041                      LINES / 2 - 2,
4042                      COLS / 8 + 1,
4043                      0,
4044                      0);
4045         set_panel_userptr(p1, (NCURSES_CONST void *) "p1");
4046
4047         p2 = mkpanel(COLOR_GREEN,
4048                      LINES / 2 + 1,
4049                      COLS / 7,
4050                      LINES / 4,
4051                      COLS / 10);
4052         set_panel_userptr(p2, (NCURSES_CONST void *) "p2");
4053
4054         p3 = mkpanel(COLOR_YELLOW,
4055                      LINES / 4,
4056                      COLS / 10,
4057                      LINES / 2,
4058                      COLS / 9);
4059         set_panel_userptr(p3, (NCURSES_CONST void *) "p3");
4060
4061         p4 = mkpanel(COLOR_BLUE,
4062                      LINES / 2 - 2,
4063                      COLS / 8,
4064                      LINES / 2 - 2,
4065                      COLS / 3);
4066         set_panel_userptr(p4, (NCURSES_CONST void *) "p4");
4067
4068         p5 = mkpanel(COLOR_MAGENTA,
4069                      LINES / 2 - 2,
4070                      COLS / 8,
4071                      LINES / 2,
4072                      COLS / 2 - 2);
4073         set_panel_userptr(p5, (NCURSES_CONST void *) "p5");
4074
4075         fill_panel(p1);
4076         fill_panel(p2);
4077         fill_panel(p3);
4078         fill_panel(p4);
4079         fill_panel(p5);
4080         hide_panel(p4);
4081         hide_panel(p5);
4082         pflush();
4083         saywhat("press any key to continue");
4084         wait_a_while(nap_msec);
4085
4086         saywhat("h3 s1 s2 s4 s5; press any key to continue");
4087         move_panel(p1, 0, 0);
4088         hide_panel(p3);
4089         show_panel(p1);
4090         show_panel(p2);
4091         show_panel(p4);
4092         show_panel(p5);
4093         pflush();
4094         wait_a_while(nap_msec);
4095
4096         saywhat("s1; press any key to continue");
4097         show_panel(p1);
4098         pflush();
4099         wait_a_while(nap_msec);
4100
4101         saywhat("s2; press any key to continue");
4102         show_panel(p2);
4103         pflush();
4104         wait_a_while(nap_msec);
4105
4106         saywhat("m2; press any key to continue");
4107         move_panel(p2, LINES / 3 + 1, COLS / 8);
4108         pflush();
4109         wait_a_while(nap_msec);
4110
4111         saywhat("s3;");
4112         show_panel(p3);
4113         pflush();
4114         wait_a_while(nap_msec);
4115
4116         saywhat("m3; press any key to continue");
4117         move_panel(p3, LINES / 4 + 1, COLS / 15);
4118         pflush();
4119         wait_a_while(nap_msec);
4120
4121         saywhat("b3; press any key to continue");
4122         bottom_panel(p3);
4123         pflush();
4124         wait_a_while(nap_msec);
4125
4126         saywhat("s4; press any key to continue");
4127         show_panel(p4);
4128         pflush();
4129         wait_a_while(nap_msec);
4130
4131         saywhat("s5; press any key to continue");
4132         show_panel(p5);
4133         pflush();
4134         wait_a_while(nap_msec);
4135
4136         saywhat("t3; press any key to continue");
4137         top_panel(p3);
4138         pflush();
4139         wait_a_while(nap_msec);
4140
4141         saywhat("t1; press any key to continue");
4142         top_panel(p1);
4143         pflush();
4144         wait_a_while(nap_msec);
4145
4146         saywhat("t2; press any key to continue");
4147         top_panel(p2);
4148         pflush();
4149         wait_a_while(nap_msec);
4150
4151         saywhat("t3; press any key to continue");
4152         top_panel(p3);
4153         pflush();
4154         wait_a_while(nap_msec);
4155
4156         saywhat("t4; press any key to continue");
4157         top_panel(p4);
4158         pflush();
4159         wait_a_while(nap_msec);
4160
4161         for (itmp = 0; itmp < 6; itmp++) {
4162             WINDOW *w4 = panel_window(p4);
4163             WINDOW *w5 = panel_window(p5);
4164
4165             saywhat("m4; press any key to continue");
4166             wmove(w4, LINES / 8, 1);
4167             waddstr(w4, mod[itmp]);
4168             move_panel(p4, LINES / 6, itmp * (COLS / 8));
4169             wmove(w5, LINES / 6, 1);
4170             waddstr(w5, mod[itmp]);
4171             pflush();
4172             wait_a_while(nap_msec);
4173
4174             saywhat("m5; press any key to continue");
4175             wmove(w4, LINES / 6, 1);
4176             waddstr(w4, mod[itmp]);
4177             move_panel(p5, LINES / 3 - 1, (itmp * 10) + 6);
4178             wmove(w5, LINES / 8, 1);
4179             waddstr(w5, mod[itmp]);
4180             pflush();
4181             wait_a_while(nap_msec);
4182         }
4183
4184         saywhat("m4; press any key to continue");
4185         move_panel(p4, LINES / 6, itmp * (COLS / 8));
4186         pflush();
4187         wait_a_while(nap_msec);
4188
4189         saywhat("t5; press any key to continue");
4190         top_panel(p5);
4191         pflush();
4192         wait_a_while(nap_msec);
4193
4194         saywhat("t2; press any key to continue");
4195         top_panel(p2);
4196         pflush();
4197         wait_a_while(nap_msec);
4198
4199         saywhat("t1; press any key to continue");
4200         top_panel(p1);
4201         pflush();
4202         wait_a_while(nap_msec);
4203
4204         saywhat("d2; press any key to continue");
4205         rmpanel(p2);
4206         pflush();
4207         wait_a_while(nap_msec);
4208
4209         saywhat("h3; press any key to continue");
4210         hide_panel(p3);
4211         pflush();
4212         wait_a_while(nap_msec);
4213
4214         saywhat("d1; press any key to continue");
4215         rmpanel(p1);
4216         pflush();
4217         wait_a_while(nap_msec);
4218
4219         saywhat("d4; press any key to continue");
4220         rmpanel(p4);
4221         pflush();
4222         wait_a_while(nap_msec);
4223
4224         saywhat("d5; press any key to continue");
4225         rmpanel(p5);
4226         pflush();
4227
4228         rmpanel(p3);
4229         pflush();
4230
4231         wait_a_while(nap_msec);
4232         if (nap_msec == 1)
4233             break;
4234         nap_msec = 100L;
4235     }
4236
4237     erase();
4238     endwin();
4239 }
4240 #endif /* USE_LIBPANEL */
4241
4242 /****************************************************************************
4243  *
4244  * Pad tester
4245  *
4246  ****************************************************************************/
4247
4248 #define GRIDSIZE        3
4249
4250 static bool pending_pan = FALSE;
4251 static bool show_panner_legend = TRUE;
4252
4253 static int
4254 panner_legend(int line)
4255 {
4256     static const char *const legend[] =
4257     {
4258         "Use arrow keys (or U,D,L,R) to pan, ESC to quit, ! to shell-out.",
4259         "Use +,- (or j,k) to grow/shrink the panner vertically.",
4260         "Use <,> (or h,l) to grow/shrink the panner horizontally.",
4261         "Number repeats.  Toggle legend:? filler:a timer:t scrollmark:s."
4262     };
4263     int n = (SIZEOF(legend) - (LINES - line));
4264     if (line < LINES && (n >= 0)) {
4265         move(line, 0);
4266         if (show_panner_legend)
4267             printw("%s", legend[n]);
4268         clrtoeol();
4269         return show_panner_legend;
4270     }
4271     return FALSE;
4272 }
4273
4274 static void
4275 panner_h_cleanup(int from_y, int from_x, int to_x)
4276 {
4277     if (!panner_legend(from_y))
4278         do_h_line(from_y, from_x, ' ', to_x);
4279 }
4280
4281 static void
4282 panner_v_cleanup(int from_y, int from_x, int to_y)
4283 {
4284     if (!panner_legend(from_y))
4285         do_v_line(from_y, from_x, ' ', to_y);
4286 }
4287
4288 static void
4289 fill_pad(WINDOW *panpad, bool pan_lines)
4290 {
4291     int y, x;
4292     unsigned gridcount = 0;
4293
4294     wmove(panpad, 0, 0);
4295     for (y = 0; y < getmaxy(panpad); y++) {
4296         for (x = 0; x < getmaxx(panpad); x++) {
4297             if (y % GRIDSIZE == 0 && x % GRIDSIZE == 0) {
4298                 if (y == 0 && x == 0)
4299                     waddch(panpad, pan_lines ? ACS_ULCORNER : '+');
4300                 else if (y == 0)
4301                     waddch(panpad, pan_lines ? ACS_TTEE : '+');
4302                 else if (y == 0 || x == 0)
4303                     waddch(panpad, pan_lines ? ACS_LTEE : '+');
4304                 else
4305                     waddch(panpad, (chtype) ((pan_lines ? 'a' : 'A') +
4306                                              (gridcount++ % 26)));
4307             } else if (y % GRIDSIZE == 0)
4308                 waddch(panpad, pan_lines ? ACS_HLINE : '-');
4309             else if (x % GRIDSIZE == 0)
4310                 waddch(panpad, pan_lines ? ACS_VLINE : '|');
4311             else
4312                 waddch(panpad, ' ');
4313         }
4314     }
4315 }
4316
4317 static void
4318 panner(WINDOW *pad,
4319        int top_x, int top_y, int porty, int portx,
4320        int (*pgetc) (WINDOW *))
4321 {
4322 #if HAVE_GETTIMEOFDAY
4323     struct timeval before, after;
4324     bool timing = TRUE;
4325 #endif
4326     bool pan_lines = FALSE;
4327     bool scrollers = TRUE;
4328     int basex = 0;
4329     int basey = 0;
4330     int pxmax, pymax, lowend, highend, c;
4331
4332     getmaxyx(pad, pymax, pxmax);
4333     scrollok(stdscr, FALSE);    /* we don't want stdscr to scroll! */
4334
4335     c = KEY_REFRESH;
4336     do {
4337 #ifdef NCURSES_VERSION
4338         /*
4339          * During shell-out, the user may have resized the window.  Adjust
4340          * the port size of the pad to accommodate this.  Ncurses automatically
4341          * resizes all of the normal windows to fit on the new screen.
4342          */
4343         if (top_x > COLS)
4344             top_x = COLS;
4345         if (portx > COLS)
4346             portx = COLS;
4347         if (top_y > LINES)
4348             top_y = LINES;
4349         if (porty > LINES)
4350             porty = LINES;
4351 #endif
4352         switch (c) {
4353         case KEY_REFRESH:
4354             erase();
4355
4356             /* FALLTHRU */
4357         case '?':
4358             if (c == '?')
4359                 show_panner_legend = !show_panner_legend;
4360             panner_legend(LINES - 4);
4361             panner_legend(LINES - 3);
4362             panner_legend(LINES - 2);
4363             panner_legend(LINES - 1);
4364             break;
4365         case 'a':
4366             pan_lines = !pan_lines;
4367             fill_pad(pad, pan_lines);
4368             pending_pan = FALSE;
4369             break;
4370
4371 #if HAVE_GETTIMEOFDAY
4372         case 't':
4373             timing = !timing;
4374             if (!timing)
4375                 panner_legend(LINES - 1);
4376             break;
4377 #endif
4378         case 's':
4379             scrollers = !scrollers;
4380             break;
4381
4382             /* Move the top-left corner of the pad, keeping the bottom-right
4383              * corner fixed.
4384              */
4385         case 'h':               /* increase-columns: move left edge to left */
4386             if (top_x <= 0)
4387                 beep();
4388             else {
4389                 panner_v_cleanup(top_y, top_x, porty);
4390                 top_x--;
4391             }
4392             break;
4393
4394         case 'j':               /* decrease-lines: move top-edge down */
4395             if (top_y >= porty)
4396                 beep();
4397             else {
4398                 panner_h_cleanup(top_y - 1, top_x - (top_x > 0), portx);
4399                 top_y++;
4400             }
4401             break;
4402
4403         case 'k':               /* increase-lines: move top-edge up */
4404             if (top_y <= 0)
4405                 beep();
4406             else {
4407                 top_y--;
4408                 panner_h_cleanup(top_y, top_x, portx);
4409             }
4410             break;
4411
4412         case 'l':               /* decrease-columns: move left-edge to right */
4413             if (top_x >= portx)
4414                 beep();
4415             else {
4416                 panner_v_cleanup(top_y - (top_y > 0), top_x - 1, porty);
4417                 top_x++;
4418             }
4419             break;
4420
4421             /* Move the bottom-right corner of the pad, keeping the top-left
4422              * corner fixed.
4423              */
4424         case KEY_IC:            /* increase-columns: move right-edge to right */
4425             if (portx >= pxmax || portx >= COLS)
4426                 beep();
4427             else {
4428                 panner_v_cleanup(top_y - (top_y > 0), portx - 1, porty);
4429                 ++portx;
4430             }
4431             break;
4432
4433         case KEY_IL:            /* increase-lines: move bottom-edge down */
4434             if (porty >= pymax || porty >= LINES)
4435                 beep();
4436             else {
4437                 panner_h_cleanup(porty - 1, top_x - (top_x > 0), portx);
4438                 ++porty;
4439             }
4440             break;
4441
4442         case KEY_DC:            /* decrease-columns: move bottom edge up */
4443             if (portx <= top_x)
4444                 beep();
4445             else {
4446                 portx--;
4447                 panner_v_cleanup(top_y - (top_y > 0), portx, porty);
4448             }
4449             break;
4450
4451         case KEY_DL:            /* decrease-lines */
4452             if (porty <= top_y)
4453                 beep();
4454             else {
4455                 porty--;
4456                 panner_h_cleanup(porty, top_x - (top_x > 0), portx);
4457             }
4458             break;
4459
4460         case KEY_LEFT:          /* pan leftwards */
4461             if (basex > 0)
4462                 basex--;
4463             else
4464                 beep();
4465             break;
4466
4467         case KEY_RIGHT: /* pan rightwards */
4468             if (basex + portx - (pymax > porty) < pxmax)
4469                 basex++;
4470             else
4471                 beep();
4472             break;
4473
4474         case KEY_UP:            /* pan upwards */
4475             if (basey > 0)
4476                 basey--;
4477             else
4478                 beep();
4479             break;
4480
4481         case KEY_DOWN:          /* pan downwards */
4482             if (basey + porty - (pxmax > portx) < pymax)
4483                 basey++;
4484             else
4485                 beep();
4486             break;
4487
4488         case 'H':
4489         case KEY_HOME:
4490         case KEY_FIND:
4491             basey = 0;
4492             break;
4493
4494         case 'E':
4495         case KEY_END:
4496         case KEY_SELECT:
4497             basey = pymax - porty;
4498             if (basey < 0)
4499                 basey = 0;
4500             break;
4501
4502         default:
4503             beep();
4504             break;
4505         }
4506
4507         mvaddch(top_y - 1, top_x - 1, ACS_ULCORNER);
4508         do_v_line(top_y, top_x - 1, ACS_VLINE, porty);
4509         do_h_line(top_y - 1, top_x, ACS_HLINE, portx);
4510
4511         if (scrollers && (pxmax > portx - 1)) {
4512             int length = (portx - top_x - 1);
4513             float ratio = ((float) length) / ((float) pxmax);
4514
4515             lowend = (int) (top_x + (basex * ratio));
4516             highend = (int) (top_x + ((basex + length) * ratio));
4517
4518             do_h_line(porty - 1, top_x, ACS_HLINE, lowend);
4519             if (highend < portx) {
4520                 attron(A_REVERSE);
4521                 do_h_line(porty - 1, lowend, ' ', highend + 1);
4522                 attroff(A_REVERSE);
4523                 do_h_line(porty - 1, highend + 1, ACS_HLINE, portx);
4524             }
4525         } else
4526             do_h_line(porty - 1, top_x, ACS_HLINE, portx);
4527
4528         if (scrollers && (pymax > porty - 1)) {
4529             int length = (porty - top_y - 1);
4530             float ratio = ((float) length) / ((float) pymax);
4531
4532             lowend = (int) (top_y + (basey * ratio));
4533             highend = (int) (top_y + ((basey + length) * ratio));
4534
4535             do_v_line(top_y, portx - 1, ACS_VLINE, lowend);
4536             if (highend < porty) {
4537                 attron(A_REVERSE);
4538                 do_v_line(lowend, portx - 1, ' ', highend + 1);
4539                 attroff(A_REVERSE);
4540                 do_v_line(highend + 1, portx - 1, ACS_VLINE, porty);
4541             }
4542         } else
4543             do_v_line(top_y, portx - 1, ACS_VLINE, porty);
4544
4545         mvaddch(top_y - 1, portx - 1, ACS_URCORNER);
4546         mvaddch(porty - 1, top_x - 1, ACS_LLCORNER);
4547         mvaddch(porty - 1, portx - 1, ACS_LRCORNER);
4548
4549         if (!pending_pan) {
4550 #if HAVE_GETTIMEOFDAY
4551             gettimeofday(&before, 0);
4552 #endif
4553             wnoutrefresh(stdscr);
4554
4555             pnoutrefresh(pad,
4556                          basey, basex,
4557                          top_y, top_x,
4558                          porty - (pxmax > portx) - 1,
4559                          portx - (pymax > porty) - 1);
4560
4561             doupdate();
4562 #if HAVE_GETTIMEOFDAY
4563             if (timing) {
4564                 double elapsed;
4565                 gettimeofday(&after, 0);
4566                 elapsed = (after.tv_sec + after.tv_usec / 1.0e6)
4567                     - (before.tv_sec + before.tv_usec / 1.0e6);
4568                 move(LINES - 1, COLS - 12);
4569                 printw("Secs: %2.03f", elapsed);
4570                 refresh();
4571             }
4572 #endif
4573         }
4574
4575     } while
4576         ((c = pgetc(pad)) != KEY_EXIT);
4577
4578     scrollok(stdscr, TRUE);     /* reset to driver's default */
4579 }
4580
4581 static int
4582 padgetch(WINDOW *win)
4583 {
4584     static int count;
4585     static int last;
4586     int c;
4587
4588     if ((pending_pan = (count > 0)) != FALSE) {
4589         count--;
4590         pending_pan = (count != 0);
4591     } else {
4592         for (;;) {
4593             switch (c = wGetchar(win)) {
4594             case '!':
4595                 ShellOut(FALSE);
4596                 /* FALLTHRU */
4597             case CTRL('r'):
4598                 endwin();
4599                 refresh();
4600                 c = KEY_REFRESH;
4601                 break;
4602             case CTRL('l'):
4603                 c = KEY_REFRESH;
4604                 break;
4605             case 'U':
4606                 c = KEY_UP;
4607                 break;
4608             case 'D':
4609                 c = KEY_DOWN;
4610                 break;
4611             case 'R':
4612                 c = KEY_RIGHT;
4613                 break;
4614             case 'L':
4615                 c = KEY_LEFT;
4616                 break;
4617             case '+':
4618                 c = KEY_IL;
4619                 break;
4620             case '-':
4621                 c = KEY_DL;
4622                 break;
4623             case '>':
4624                 c = KEY_IC;
4625                 break;
4626             case '<':
4627                 c = KEY_DC;
4628                 break;
4629             case ERR:           /* FALLTHRU */
4630               case_QUIT:
4631                 count = 0;
4632                 c = KEY_EXIT;
4633                 break;
4634             default:
4635                 if (c >= '0' && c <= '9') {
4636                     count = count * 10 + (c - '0');
4637                     continue;
4638                 }
4639                 break;
4640             }
4641             last = c;
4642             break;
4643         }
4644         if (count > 0)
4645             count--;
4646     }
4647     return (last);
4648 }
4649
4650 #define PAD_HIGH 200
4651 #define PAD_WIDE 200
4652
4653 static void
4654 demo_pad(void)
4655 /* Demonstrate pads. */
4656 {
4657     WINDOW *panpad = newpad(PAD_HIGH, PAD_WIDE);
4658
4659     if (panpad == 0) {
4660         Cannot("cannot create requested pad");
4661         return;
4662     }
4663
4664     fill_pad(panpad, FALSE);
4665
4666     panner_legend(LINES - 4);
4667     panner_legend(LINES - 3);
4668     panner_legend(LINES - 2);
4669     panner_legend(LINES - 1);
4670
4671     keypad(panpad, TRUE);
4672
4673     /* Make the pad (initially) narrow enough that a trace file won't wrap.
4674      * We'll still be able to widen it during a test, since that's required
4675      * for testing boundaries.
4676      */
4677     panner(panpad, 2, 2, LINES - 5, COLS - 15, padgetch);
4678
4679     delwin(panpad);
4680     endwin();
4681     erase();
4682 }
4683
4684 /****************************************************************************
4685  *
4686  * Tests from John Burnell's PDCurses tester
4687  *
4688  ****************************************************************************/
4689
4690 static void
4691 Continue(WINDOW *win)
4692 {
4693     noecho();
4694     wmove(win, 10, 1);
4695     mvwaddstr(win, 10, 1, " Press any key to continue");
4696     wrefresh(win);
4697     wGetchar(win);
4698 }
4699
4700 static void
4701 flushinp_test(WINDOW *win)
4702 /* Input test, adapted from John Burnell's PDCurses tester */
4703 {
4704     int w, h, bx, by, sw, sh, i;
4705
4706     WINDOW *subWin;
4707     wclear(win);
4708
4709     getmaxyx(win, h, w);
4710     getbegyx(win, by, bx);
4711     sw = w / 3;
4712     sh = h / 3;
4713     if ((subWin = subwin(win, sh, sw, by + h - sh - 2, bx + w - sw - 2)) == 0)
4714         return;
4715
4716 #ifdef A_COLOR
4717     if (use_colors) {
4718         init_pair(2, COLOR_CYAN, COLOR_BLUE);
4719         wbkgd(subWin, COLOR_PAIR(2) | ' ');
4720     }
4721 #endif
4722     wattrset(subWin, A_BOLD);
4723     box(subWin, ACS_VLINE, ACS_HLINE);
4724     mvwaddstr(subWin, 2, 1, "This is a subwindow");
4725     wrefresh(win);
4726
4727     /*
4728      * This used to set 'nocbreak()'.  However, Alexander Lukyanov says that
4729      * it only happened to "work" on SVr4 because that implementation does not
4730      * emulate nocbreak+noecho mode, whereas ncurses does.  To get the desired
4731      * test behavior, we're using 'cbreak()', which will allow a single
4732      * character to return without needing a newline. - T.Dickey 1997/10/11.
4733      */
4734     cbreak();
4735     mvwaddstr(win, 0, 1, "This is a test of the flushinp() call.");
4736
4737     mvwaddstr(win, 2, 1, "Type random keys for 5 seconds.");
4738     mvwaddstr(win, 3, 1,
4739               "These should be discarded (not echoed) after the subwindow goes away.");
4740     wrefresh(win);
4741
4742     for (i = 0; i < 5; i++) {
4743         mvwprintw(subWin, 1, 1, "Time = %d", i);
4744         wrefresh(subWin);
4745         napms(1000);
4746         flushinp();
4747     }
4748
4749     delwin(subWin);
4750     werase(win);
4751     flash();
4752     wrefresh(win);
4753     napms(1000);
4754
4755     mvwaddstr(win, 2, 1,
4756               "If you were still typing when the window timer expired,");
4757     mvwaddstr(win, 3, 1,
4758               "or else you typed nothing at all while it was running,");
4759     mvwaddstr(win, 4, 1,
4760               "test was invalid.  You'll see garbage or nothing at all. ");
4761     mvwaddstr(win, 6, 1, "Press a key");
4762     wmove(win, 9, 10);
4763     wrefresh(win);
4764     echo();
4765     wGetchar(win);
4766     flushinp();
4767     mvwaddstr(win, 12, 0,
4768               "If you see any key other than what you typed, flushinp() is broken.");
4769     Continue(win);
4770
4771     wmove(win, 9, 10);
4772     wdelch(win);
4773     wrefresh(win);
4774     wmove(win, 12, 0);
4775     clrtoeol();
4776     waddstr(win,
4777             "What you typed should now have been deleted; if not, wdelch() failed.");
4778     Continue(win);
4779
4780     cbreak();
4781 }
4782
4783 /****************************************************************************
4784  *
4785  * Menu test
4786  *
4787  ****************************************************************************/
4788
4789 #if USE_LIBMENU
4790
4791 #define MENU_Y  8
4792 #define MENU_X  8
4793
4794 static int
4795 menu_virtualize(int c)
4796 {
4797     if (c == '\n' || c == KEY_EXIT)
4798         return (MAX_COMMAND + 1);
4799     else if (c == 'u')
4800         return (REQ_SCR_ULINE);
4801     else if (c == 'd')
4802         return (REQ_SCR_DLINE);
4803     else if (c == 'b' || c == KEY_NPAGE)
4804         return (REQ_SCR_UPAGE);
4805     else if (c == 'f' || c == KEY_PPAGE)
4806         return (REQ_SCR_DPAGE);
4807     else if (c == 'n' || c == KEY_DOWN)
4808         return (REQ_NEXT_ITEM);
4809     else if (c == 'p' || c == KEY_UP)
4810         return (REQ_PREV_ITEM);
4811     else if (c == ' ')
4812         return (REQ_TOGGLE_ITEM);
4813     else {
4814         if (c != KEY_MOUSE)
4815             beep();
4816         return (c);
4817     }
4818 }
4819
4820 static const char *animals[] =
4821 {
4822     "Lions",
4823     "Tigers",
4824     "Bears",
4825     "(Oh my!)",
4826     "Newts",
4827     "Platypi",
4828     "Lemurs",
4829     "(Oh really?!)",
4830     "Leopards",
4831     "Panthers",
4832     "Pumas",
4833     "Lions, Tigers, Bears, (Oh my!), Newts, Platypi, Lemurs",
4834     "Lions, Tigers, Bears, (Oh my!), Newts, Platypi, Lemurs, Lions, Tigers, Bears, (Oh my!), Newts, Platypi, Lemurs",
4835     (char *) 0
4836 };
4837
4838 static void
4839 menu_test(void)
4840 {
4841     MENU *m;
4842     ITEM *items[SIZEOF(animals)];
4843     ITEM **ip = items;
4844     const char **ap;
4845     int mrows, mcols, c;
4846     WINDOW *menuwin;
4847
4848 #ifdef NCURSES_MOUSE_VERSION
4849     mousemask(ALL_MOUSE_EVENTS, (mmask_t *) 0);
4850 #endif
4851     mvaddstr(0, 0, "This is the menu test:");
4852     mvaddstr(2, 0, "  Use up and down arrow to move the select bar.");
4853     mvaddstr(3, 0, "  'n' and 'p' act like arrows.");
4854     mvaddstr(4, 0,
4855              "  'b' and 'f' scroll up/down (page), 'u' and 'd' (line).");
4856     mvaddstr(5, 0, "  Press return to exit.");
4857     refresh();
4858
4859     for (ap = animals; *ap; ap++)
4860         *ip++ = new_item(*ap, "");
4861     *ip = (ITEM *) 0;
4862
4863     m = new_menu(items);
4864
4865     set_menu_format(m, (SIZEOF(animals) + 1) / 2, 1);
4866     scale_menu(m, &mrows, &mcols);
4867
4868     menuwin = newwin(mrows + 2, mcols + 2, MENU_Y, MENU_X);
4869     set_menu_win(m, menuwin);
4870     keypad(menuwin, TRUE);
4871     box(menuwin, 0, 0);
4872
4873     set_menu_sub(m, derwin(menuwin, mrows, mcols, 1, 1));
4874
4875     post_menu(m);
4876
4877     while ((c = menu_driver(m, menu_virtualize(wGetchar(menuwin)))) != E_UNKNOWN_COMMAND) {
4878         if (c == E_NOT_POSTED)
4879             break;
4880         if (c == E_REQUEST_DENIED)
4881             beep();
4882         continue;
4883     }
4884
4885     (void) mvprintw(LINES - 2, 0,
4886                     "You chose: %s\n", item_name(current_item(m)));
4887     (void) addstr("Press any key to continue...");
4888     wGetchar(stdscr);
4889
4890     unpost_menu(m);
4891     delwin(menuwin);
4892
4893     free_menu(m);
4894     for (ip = items; *ip; ip++)
4895         free_item(*ip);
4896 #ifdef NCURSES_MOUSE_VERSION
4897     mousemask(0, (mmask_t *) 0);
4898 #endif
4899 }
4900
4901 #ifdef TRACE
4902 #define T_TBL(name) { #name, name }
4903 static struct {
4904     const char *name;
4905     unsigned mask;
4906 } t_tbl[] = {
4907
4908     T_TBL(TRACE_DISABLE),
4909         T_TBL(TRACE_TIMES),
4910         T_TBL(TRACE_TPUTS),
4911         T_TBL(TRACE_UPDATE),
4912         T_TBL(TRACE_MOVE),
4913         T_TBL(TRACE_CHARPUT),
4914         T_TBL(TRACE_ORDINARY),
4915         T_TBL(TRACE_CALLS),
4916         T_TBL(TRACE_VIRTPUT),
4917         T_TBL(TRACE_IEVENT),
4918         T_TBL(TRACE_BITS),
4919         T_TBL(TRACE_ICALLS),
4920         T_TBL(TRACE_CCALLS),
4921         T_TBL(TRACE_DATABASE),
4922         T_TBL(TRACE_ATTRS),
4923         T_TBL(TRACE_MAXIMUM),
4924     {
4925         (char *) 0, 0
4926     }
4927 };
4928
4929 static char *
4930 tracetrace(unsigned tlevel)
4931 {
4932     static char *buf;
4933     int n;
4934
4935     if (buf == 0) {
4936         size_t need = 12;
4937         for (n = 0; t_tbl[n].name != 0; n++)
4938             need += strlen(t_tbl[n].name) + 2;
4939         buf = (char *) malloc(need);
4940     }
4941     sprintf(buf, "0x%02x = {", tlevel);
4942     if (tlevel == 0) {
4943         sprintf(buf + strlen(buf), "%s, ", t_tbl[0].name);
4944     } else {
4945         for (n = 1; t_tbl[n].name != 0; n++)
4946             if ((tlevel & t_tbl[n].mask) == t_tbl[n].mask) {
4947                 strcat(buf, t_tbl[n].name);
4948                 strcat(buf, ", ");
4949             }
4950     }
4951     if (buf[strlen(buf) - 2] == ',')
4952         buf[strlen(buf) - 2] = '\0';
4953     return (strcat(buf, "}"));
4954 }
4955
4956 /* fake a dynamically reconfigurable menu using the 0th entry to deselect
4957  * the others
4958  */
4959 static int
4960 run_trace_menu(MENU * m)
4961 {
4962     ITEM **items;
4963     ITEM *i, **p;
4964
4965     for (;;) {
4966         bool changed = FALSE;
4967         switch (menu_driver(m, menu_virtualize(wGetchar(menu_win(m))))) {
4968         case E_UNKNOWN_COMMAND:
4969             return FALSE;
4970         default:
4971             items = menu_items(m);
4972             i = current_item(m);
4973             if (i == items[0]) {
4974                 if (item_value(i)) {
4975                     for (p = items + 1; *p != 0; p++)
4976                         if (item_value(*p)) {
4977                             set_item_value(*p, FALSE);
4978                             changed = TRUE;
4979                         }
4980                 }
4981             } else {
4982                 for (p = items + 1; *p != 0; p++)
4983                     if (item_value(*p)) {
4984                         set_item_value(items[0], FALSE);
4985                         changed = TRUE;
4986                         break;
4987                     }
4988             }
4989             if (!changed)
4990                 return TRUE;
4991         }
4992     }
4993 }
4994
4995 static void
4996 trace_set(void)
4997 /* interactively set the trace level */
4998 {
4999     MENU *m;
5000     ITEM *items[SIZEOF(t_tbl)];
5001     ITEM **ip = items;
5002     int mrows, mcols;
5003     unsigned newtrace;
5004     int n;
5005     WINDOW *menuwin;
5006
5007     mvaddstr(0, 0, "Interactively set trace level:");
5008     mvaddstr(2, 0, "  Press space bar to toggle a selection.");
5009     mvaddstr(3, 0, "  Use up and down arrow to move the select bar.");
5010     mvaddstr(4, 0, "  Press return to set the trace level.");
5011     mvprintw(6, 0, "(Current trace level is %s)", tracetrace(_nc_tracing));
5012
5013     refresh();
5014
5015     for (n = 0; t_tbl[n].name != 0; n++)
5016         *ip++ = new_item(t_tbl[n].name, "");
5017     *ip = (ITEM *) 0;
5018
5019     m = new_menu(items);
5020
5021     set_menu_format(m, 0, 2);
5022     scale_menu(m, &mrows, &mcols);
5023
5024     menu_opts_off(m, O_ONEVALUE);
5025     menuwin = newwin(mrows + 2, mcols + 2, MENU_Y, MENU_X);
5026     set_menu_win(m, menuwin);
5027     keypad(menuwin, TRUE);
5028     box(menuwin, 0, 0);
5029
5030     set_menu_sub(m, derwin(menuwin, mrows, mcols, 1, 1));
5031
5032     post_menu(m);
5033
5034     for (ip = menu_items(m); *ip; ip++) {
5035         unsigned mask = t_tbl[item_index(*ip)].mask;
5036         if (mask == 0)
5037             set_item_value(*ip, _nc_tracing == 0);
5038         else if ((mask & _nc_tracing) == mask)
5039             set_item_value(*ip, TRUE);
5040     }
5041
5042     while (run_trace_menu(m))
5043         continue;
5044
5045     newtrace = 0;
5046     for (ip = menu_items(m); *ip; ip++)
5047         if (item_value(*ip))
5048             newtrace |= t_tbl[item_index(*ip)].mask;
5049     trace(newtrace);
5050     _tracef("trace level interactively set to %s", tracetrace(_nc_tracing));
5051
5052     (void) mvprintw(LINES - 2, 0,
5053                     "Trace level is %s\n", tracetrace(_nc_tracing));
5054     (void) addstr("Press any key to continue...");
5055     wGetchar(stdscr);
5056
5057     unpost_menu(m);
5058     delwin(menuwin);
5059
5060     free_menu(m);
5061     for (ip = items; *ip; ip++)
5062         free_item(*ip);
5063 }
5064 #endif /* TRACE */
5065 #endif /* USE_LIBMENU */
5066
5067 /****************************************************************************
5068  *
5069  * Forms test
5070  *
5071  ****************************************************************************/
5072 #if USE_LIBFORM
5073 static FIELD *
5074 make_label(int frow, int fcol, NCURSES_CONST char *label)
5075 {
5076     FIELD *f = new_field(1, (int) strlen(label), frow, fcol, 0, 0);
5077
5078     if (f) {
5079         set_field_buffer(f, 0, label);
5080         set_field_opts(f, (int) (field_opts(f) & ~O_ACTIVE));
5081     }
5082     return (f);
5083 }
5084
5085 static FIELD *
5086 make_field(int frow, int fcol, int rows, int cols, bool secure)
5087 {
5088     FIELD *f = new_field(rows, cols, frow, fcol, 0, secure ? 1 : 0);
5089
5090     if (f) {
5091         set_field_back(f, A_UNDERLINE);
5092         set_field_userptr(f, (void *) 0);
5093     }
5094     return (f);
5095 }
5096
5097 static void
5098 display_form(FORM * f)
5099 {
5100     WINDOW *w;
5101     int rows, cols;
5102
5103     scale_form(f, &rows, &cols);
5104
5105     if ((w = newwin(rows + 2, cols + 4, 0, 0)) != (WINDOW *) 0) {
5106         set_form_win(f, w);
5107         set_form_sub(f, derwin(w, rows, cols, 1, 2));
5108         box(w, 0, 0);
5109         keypad(w, TRUE);
5110     }
5111
5112     if (post_form(f) != E_OK)
5113         wrefresh(w);
5114 }
5115
5116 static void
5117 erase_form(FORM * f)
5118 {
5119     WINDOW *w = form_win(f);
5120     WINDOW *s = form_sub(f);
5121
5122     unpost_form(f);
5123     werase(w);
5124     wrefresh(w);
5125     delwin(s);
5126     delwin(w);
5127 }
5128
5129 static int
5130 edit_secure(FIELD * me, int c)
5131 {
5132     int rows, cols, frow, fcol, nrow, nbuf;
5133
5134     if (field_info(me, &rows, &cols, &frow, &fcol, &nrow, &nbuf) == E_OK
5135         && nbuf > 0) {
5136         char *source = field_buffer(me, 1);
5137         char temp[80];
5138         long len;
5139
5140         strcpy(temp, source ? source : "");
5141         len = (long) (char *) field_userptr(me);
5142         if (c <= KEY_MAX) {
5143             if (isgraph(c) && (len + 1) < (int) sizeof(temp)) {
5144                 temp[len++] = c;
5145                 temp[len] = 0;
5146                 set_field_buffer(me, 1, temp);
5147                 c = '*';
5148             } else {
5149                 c = 0;
5150             }
5151         } else {
5152             switch (c) {
5153             case REQ_BEG_FIELD:
5154             case REQ_CLR_EOF:
5155             case REQ_CLR_EOL:
5156             case REQ_DEL_LINE:
5157             case REQ_DEL_WORD:
5158             case REQ_DOWN_CHAR:
5159             case REQ_END_FIELD:
5160             case REQ_INS_CHAR:
5161             case REQ_INS_LINE:
5162             case REQ_LEFT_CHAR:
5163             case REQ_NEW_LINE:
5164             case REQ_NEXT_WORD:
5165             case REQ_PREV_WORD:
5166             case REQ_RIGHT_CHAR:
5167             case REQ_UP_CHAR:
5168                 c = 0;          /* we don't want to do inline editing */
5169                 break;
5170             case REQ_CLR_FIELD:
5171                 if (len) {
5172                     temp[0] = 0;
5173                     set_field_buffer(me, 1, temp);
5174                 }
5175                 break;
5176             case REQ_DEL_CHAR:
5177             case REQ_DEL_PREV:
5178                 if (len) {
5179                     temp[--len] = 0;
5180                     set_field_buffer(me, 1, temp);
5181                 }
5182                 break;
5183             }
5184         }
5185         set_field_userptr(me, (void *) len);
5186     }
5187     return c;
5188 }
5189
5190 static int
5191 form_virtualize(FORM * f, WINDOW *w)
5192 {
5193     /* *INDENT-OFF* */
5194     static const struct {
5195         int code;
5196         int result;
5197     } lookup[] = {
5198         { CTRL('A'),    REQ_NEXT_CHOICE },
5199         { CTRL('B'),    REQ_PREV_WORD },
5200         { CTRL('C'),    REQ_CLR_EOL },
5201         { CTRL('D'),    REQ_DOWN_FIELD },
5202         { CTRL('E'),    REQ_END_FIELD },
5203         { CTRL('F'),    REQ_NEXT_PAGE },
5204         { CTRL('G'),    REQ_DEL_WORD },
5205         { CTRL('H'),    REQ_DEL_PREV },
5206         { CTRL('I'),    REQ_INS_CHAR },
5207         { CTRL('K'),    REQ_CLR_EOF },
5208         { CTRL('L'),    REQ_LEFT_FIELD },
5209         { CTRL('M'),    REQ_NEW_LINE },
5210         { CTRL('N'),    REQ_NEXT_FIELD },
5211         { CTRL('O'),    REQ_INS_LINE },
5212         { CTRL('P'),    REQ_PREV_FIELD },
5213         { CTRL('R'),    REQ_RIGHT_FIELD },
5214         { CTRL('S'),    REQ_BEG_FIELD },
5215         { CTRL('U'),    REQ_UP_FIELD },
5216         { CTRL('V'),    REQ_DEL_CHAR },
5217         { CTRL('W'),    REQ_NEXT_WORD },
5218         { CTRL('X'),    REQ_CLR_FIELD },
5219         { CTRL('Y'),    REQ_DEL_LINE },
5220         { CTRL('Z'),    REQ_PREV_CHOICE },
5221         { ESCAPE,       MAX_FORM_COMMAND + 1 },
5222         { KEY_BACKSPACE, REQ_DEL_PREV },
5223         { KEY_DOWN,     REQ_DOWN_CHAR },
5224         { KEY_END,      REQ_LAST_FIELD },
5225         { KEY_HOME,     REQ_FIRST_FIELD },
5226         { KEY_LEFT,     REQ_LEFT_CHAR },
5227         { KEY_LL,       REQ_LAST_FIELD },
5228         { KEY_NEXT,     REQ_NEXT_FIELD },
5229         { KEY_NPAGE,    REQ_NEXT_PAGE },
5230         { KEY_PPAGE,    REQ_PREV_PAGE },
5231         { KEY_PREVIOUS, REQ_PREV_FIELD },
5232         { KEY_RIGHT,    REQ_RIGHT_CHAR },
5233         { KEY_UP,       REQ_UP_CHAR },
5234         { QUIT,         MAX_FORM_COMMAND + 1 }
5235     };
5236     /* *INDENT-ON* */
5237
5238     static int mode = REQ_INS_MODE;
5239     int c = wGetchar(w);
5240     unsigned n;
5241     FIELD *me = current_field(f);
5242     bool current = TRUE;
5243
5244     if (c == CTRL(']')) {
5245         if (mode == REQ_INS_MODE) {
5246             mode = REQ_OVL_MODE;
5247         } else {
5248             mode = REQ_INS_MODE;
5249         }
5250         c = mode;
5251     } else {
5252         for (n = 0; n < SIZEOF(lookup); n++) {
5253             if (lookup[n].code == c) {
5254                 c = lookup[n].result;
5255                 break;
5256             }
5257         }
5258     }
5259     mvprintw(0, COLS - 6, "(%s)", mode == REQ_INS_MODE ? "INS" : "OVL");
5260
5261     /*
5262      * Force the field that the user is typing into to be in reverse video,
5263      * while the other fields are shown underlined.
5264      */
5265     switch (c) {
5266     case REQ_BEG_FIELD:
5267     case REQ_CLR_EOF:
5268     case REQ_CLR_EOL:
5269     case REQ_CLR_FIELD:
5270     case REQ_DEL_CHAR:
5271     case REQ_DEL_LINE:
5272     case REQ_DEL_PREV:
5273     case REQ_DEL_WORD:
5274     case REQ_END_FIELD:
5275     case REQ_INS_CHAR:
5276     case REQ_INS_LINE:
5277     case REQ_LEFT_CHAR:
5278     case REQ_LEFT_FIELD:
5279     case REQ_NEXT_WORD:
5280     case REQ_RIGHT_CHAR:
5281         current = TRUE;
5282         break;
5283     default:
5284         current = (c < KEY_MAX);
5285         break;
5286     }
5287     if (current) {
5288         c = edit_secure(me, c);
5289         set_field_back(me, A_REVERSE);
5290     } else {
5291         c = edit_secure(me, c);
5292         set_field_back(me, A_UNDERLINE);
5293     }
5294     return c;
5295 }
5296
5297 static int
5298 my_form_driver(FORM * form, int c)
5299 {
5300     if (c == (MAX_FORM_COMMAND + 1)
5301         && form_driver(form, REQ_VALIDATION) == E_OK)
5302         return (TRUE);
5303     else {
5304         beep();
5305         return (FALSE);
5306     }
5307 }
5308
5309 #ifdef NCURSES_VERSION
5310 #define FIELDCHECK_CB(func) bool func(FIELD * fld, const void * data GCC_UNUSED)
5311 #define CHAR_CHECK_CB(func) bool func(int ch, const void *data GCC_UNUSED)
5312 #else
5313 #define FIELDCHECK_CB(func) int func(FIELD * fld, char * data GCC_UNUSED)
5314 #define CHAR_CHECK_CB(func) int func(int ch, char *data GCC_UNUSED)
5315 #endif
5316
5317 /*
5318  * Allow a middle initial, optionally with a '.' to end it.
5319  */
5320 static
5321 FIELDCHECK_CB(mi_field_check)
5322 {
5323     char *s = field_buffer(fld, 0);
5324     int state = 0;
5325     int n;
5326
5327     for (n = 0; s[n] != '\0'; ++n) {
5328         switch (state) {
5329         case 0:
5330             if (s[n] == '.') {
5331                 if (n != 1)
5332                     return FALSE;
5333                 state = 2;
5334             } else if (isspace(UChar(s[n]))) {
5335                 state = 2;
5336             }
5337             break;
5338         case 2:
5339             if (!isspace(UChar(s[n])))
5340                 return FALSE;
5341             break;
5342         }
5343     }
5344
5345     /* force the form to display a leading capital */
5346     if (islower(UChar(s[0]))) {
5347         s[0] = toupper(UChar(s[0]));
5348         set_field_buffer(fld, 0, s);
5349     }
5350     return TRUE;
5351 }
5352
5353 static
5354 CHAR_CHECK_CB(mi_char_check)
5355 {
5356     return ((isalpha(ch) || ch == '.') ? TRUE : FALSE);
5357 }
5358
5359 /*
5360  * Passwords should be at least 6 characters.
5361  */
5362 static
5363 FIELDCHECK_CB(pw_field_check)
5364 {
5365     char *s = field_buffer(fld, 0);
5366     int n;
5367
5368     for (n = 0; s[n] != '\0'; ++n) {
5369         if (isspace(UChar(s[n]))) {
5370             if (n < 6)
5371                 return FALSE;
5372         }
5373     }
5374     return TRUE;
5375 }
5376
5377 static
5378 CHAR_CHECK_CB(pw_char_check)
5379 {
5380     return (isgraph(ch) ? TRUE : FALSE);
5381 }
5382
5383 static void
5384 demo_forms(void)
5385 {
5386     WINDOW *w;
5387     FORM *form;
5388     FIELD *f[12], *secure;
5389     FIELDTYPE *fty_middle = new_fieldtype(mi_field_check, mi_char_check);
5390     FIELDTYPE *fty_passwd = new_fieldtype(pw_field_check, pw_char_check);
5391     int finished = 0, c;
5392     unsigned n = 0;
5393
5394     move(18, 0);
5395     addstr("Defined edit/traversal keys:   ^Q/ESC- exit form\n");
5396     addstr("^N   -- go to next field       ^P  -- go to previous field\n");
5397     addstr("Home -- go to first field      End -- go to last field\n");
5398     addstr("^L   -- go to field to left    ^R  -- go to field to right\n");
5399     addstr("^U   -- move upward to field   ^D  -- move downward to field\n");
5400     addstr("^W   -- go to next word        ^B  -- go to previous word\n");
5401     addstr("^S   -- go to start of field   ^E  -- go to end of field\n");
5402     addstr("^H   -- delete previous char   ^Y  -- delete line\n");
5403     addstr("^G   -- delete current word    ^C  -- clear to end of line\n");
5404     addstr("^K   -- clear to end of field  ^X  -- clear field\n");
5405     addstr("Arrow keys move within a field as you would expect. ^] toggles overlay mode.");
5406
5407     mvaddstr(4, 57, "Forms Entry Test");
5408
5409     refresh();
5410
5411     /* describe the form */
5412     f[n++] = make_label(0, 15, "Sample Form");
5413
5414     f[n++] = make_label(2, 0, "Last Name");
5415     f[n++] = make_field(3, 0, 1, 18, FALSE);
5416     set_field_type(f[n - 1], TYPE_ALPHA, 1);
5417
5418     f[n++] = make_label(2, 20, "First Name");
5419     f[n++] = make_field(3, 20, 1, 12, FALSE);
5420     set_field_type(f[n - 1], TYPE_ALPHA, 1);
5421
5422     f[n++] = make_label(2, 34, "Middle Name");
5423     f[n++] = make_field(3, 34, 1, 12, FALSE);
5424     set_field_type(f[n - 1], fty_middle);
5425
5426     f[n++] = make_label(5, 0, "Comments");
5427     f[n++] = make_field(6, 0, 4, 46, FALSE);
5428
5429     f[n++] = make_label(5, 20, "Password:");
5430     secure =
5431         f[n++] = make_field(5, 30, 1, 9, TRUE);
5432     set_field_type(f[n - 1], fty_passwd);
5433     f[n++] = (FIELD *) 0;
5434
5435     form = new_form(f);
5436
5437     display_form(form);
5438
5439     w = form_win(form);
5440     raw();
5441     nonl();                     /* lets us read ^M's */
5442     while (!finished) {
5443         switch (form_driver(form, c = form_virtualize(form, w))) {
5444         case E_OK:
5445             mvaddstr(5, 57, field_buffer(secure, 1));
5446             clrtoeol();
5447             refresh();
5448             break;
5449         case E_UNKNOWN_COMMAND:
5450             finished = my_form_driver(form, c);
5451             break;
5452         default:
5453             beep();
5454             break;
5455         }
5456     }
5457
5458     erase_form(form);
5459
5460     free_form(form);
5461     for (c = 0; f[c] != 0; c++)
5462         free_field(f[c]);
5463     free_fieldtype(fty_middle);
5464     free_fieldtype(fty_passwd);
5465     noraw();
5466     nl();
5467 }
5468 #endif /* USE_LIBFORM */
5469
5470 /****************************************************************************
5471  *
5472  * Overlap test
5473  *
5474  ****************************************************************************/
5475
5476 static void
5477 fillwin(WINDOW *win, char ch)
5478 {
5479     int y, x;
5480     int y1, x1;
5481
5482     getmaxyx(win, y1, x1);
5483     for (y = 0; y < y1; y++) {
5484         wmove(win, y, 0);
5485         for (x = 0; x < x1; x++)
5486             waddch(win, UChar(ch));
5487     }
5488 }
5489
5490 static void
5491 crosswin(WINDOW *win, char ch)
5492 {
5493     int y, x;
5494     int y1, x1;
5495
5496     getmaxyx(win, y1, x1);
5497     for (y = 0; y < y1; y++) {
5498         for (x = 0; x < x1; x++)
5499             if (((x > (x1 - 1) / 3) && (x <= (2 * (x1 - 1)) / 3))
5500                 || (((y > (y1 - 1) / 3) && (y <= (2 * (y1 - 1)) / 3)))) {
5501                 wmove(win, y, x);
5502                 waddch(win, UChar(ch));
5503             }
5504     }
5505 }
5506
5507 #define OVERLAP_FLAVORS 5
5508
5509 static void
5510 overlap_helpitem(int state, int item, char *message)
5511 {
5512     int row = (item / 2);
5513     int col = ((item % 2) ? COLS / 2 : 0);
5514
5515     move(LINES - 6 + row, col);
5516     printw("%c%c = %s", state == row ? '>' : ' ', 'a' + item, message);
5517     clrtoeol();
5518 }
5519
5520 static void
5521 overlap_test_1_attr(WINDOW *win, int flavor, int col)
5522 {
5523     short cpair = 1 + (flavor * 2) + col;
5524
5525     switch (flavor) {
5526     case 0:
5527         wattrset(win, A_NORMAL);
5528         break;
5529     case 1:
5530         wattrset(win, A_BOLD);
5531         break;
5532     case 2:
5533         init_pair(cpair, COLOR_BLUE, COLOR_WHITE);
5534         wattrset(win, COLOR_PAIR(cpair) | A_NORMAL);
5535         break;
5536     case 3:
5537         init_pair(cpair, COLOR_WHITE, COLOR_BLUE);
5538         wattrset(win, COLOR_PAIR(cpair) | A_BOLD);
5539         break;
5540     }
5541 }
5542
5543 static void
5544 overlap_test_2_attr(WINDOW *win, int flavor, int col)
5545 {
5546     short cpair = 9 + (flavor * 2) + col;
5547
5548     switch (flavor) {
5549     case 0:
5550         /* no effect */
5551         break;
5552     case 1:
5553         /* no effect */
5554         break;
5555     case 2:
5556         init_pair(cpair, COLOR_RED, COLOR_GREEN);
5557         wbkgdset(win, ' ' | A_BLINK | COLOR_PAIR(cpair));
5558         break;
5559     case 3:
5560         wbkgdset(win, ' ' | A_NORMAL);
5561         break;
5562     }
5563 }
5564
5565 static int
5566 overlap_help(int state, int flavors[OVERLAP_FLAVORS])
5567 {
5568     int row;
5569     int col;
5570     int item;
5571     const char *ths, *tht;
5572     char msg[80];
5573
5574     if (state < 0)
5575         state += OVERLAP_FLAVORS;
5576     state = state % OVERLAP_FLAVORS;
5577
5578     for (item = 0; item < (2 * OVERLAP_FLAVORS); ++item) {
5579         row = item / 2;
5580         col = item % 2;
5581         ths = col ? "B" : "A";
5582         tht = col ? "A" : "B";
5583
5584         switch (row) {
5585         case 0:
5586             flavors[row] = 0;
5587             sprintf(msg, "refresh %s, then %s, then doupdate.", ths, tht);
5588             break;
5589         case 1:
5590             if (use_colors) {
5591                 flavors[row] %= 4;
5592             } else {
5593                 flavors[row] %= 2;
5594             }
5595             overlap_test_1_attr(stdscr, flavors[row], col);
5596             sprintf(msg, "fill window %s with letter %s.", ths, ths);
5597             break;
5598         case 2:
5599             if (use_colors) {
5600                 flavors[row] %= 4;
5601             } else {
5602                 flavors[row] %= 2;
5603             }
5604             switch (flavors[row]) {
5605             case 0:
5606                 sprintf(msg, "cross pattern in window %s.", ths);
5607                 break;
5608             case 1:
5609                 sprintf(msg, "draw box in window %s.", ths);
5610                 break;
5611             case 2:
5612                 sprintf(msg, "set background of window %s.", ths);
5613                 break;
5614             case 3:
5615                 sprintf(msg, "reset background of window %s.", ths);
5616                 break;
5617             }
5618             break;
5619         case 3:
5620             flavors[row] = 0;
5621             sprintf(msg, "clear window %s.", ths);
5622             break;
5623         case 4:
5624             flavors[row] %= 4;
5625             switch (flavors[row]) {
5626             case 0:
5627                 sprintf(msg, "overwrite %s onto %s.", ths, tht);
5628                 break;
5629             case 1:
5630                 sprintf(msg, "copywin(FALSE) %s onto %s.", ths, tht);
5631                 break;
5632             case 2:
5633                 sprintf(msg, "copywin(TRUE) %s onto %s.", ths, tht);
5634                 break;
5635             case 3:
5636                 sprintf(msg, "overlay %s onto %s.", ths, tht);
5637                 break;
5638             }
5639             break;
5640         }
5641         overlap_helpitem(state, item, msg);
5642         wattrset(stdscr, A_NORMAL);
5643         wbkgdset(stdscr, ' ' | A_NORMAL);
5644     }
5645     move(LINES - 1, 0);
5646     printw("^Q/ESC = terminate test.  Up/down/space select test variations (%d %d).",
5647            state, flavors[state]);
5648
5649     return state;
5650 }
5651
5652 static void
5653 overlap_test_0(WINDOW *a, WINDOW *b)
5654 {
5655     touchwin(a);
5656     touchwin(b);
5657     wnoutrefresh(a);
5658     wnoutrefresh(b);
5659     doupdate();
5660 }
5661
5662 static void
5663 overlap_test_1(int flavor, int col, WINDOW *a, char fill)
5664 {
5665     overlap_test_1_attr(a, flavor, col);
5666     fillwin(a, fill);
5667     wattrset(a, A_NORMAL);
5668 }
5669
5670 static void
5671 overlap_test_2(int flavor, int col, WINDOW *a, char fill)
5672 {
5673     overlap_test_2_attr(a, flavor, col);
5674     switch (flavor) {
5675     case 0:
5676         crosswin(a, fill);
5677         break;
5678     case 1:
5679         box(a, 0, 0);
5680         break;
5681     case 2:
5682         /* done in overlap_test_2_attr */
5683         break;
5684     case 3:
5685         /* done in overlap_test_2_attr */
5686         break;
5687     }
5688 }
5689
5690 static void
5691 overlap_test_3(WINDOW *a)
5692 {
5693     wclear(a);
5694     wmove(a, 0, 0);
5695 }
5696
5697 static void
5698 overlap_test_4(int flavor, WINDOW *a, WINDOW *b)
5699 {
5700     switch (flavor) {
5701     case 0:
5702         overwrite(a, b);
5703         break;
5704     case 1:
5705         copywin(a, b, 0, 0, 0, 0, getmaxy(b), getmaxx(b), FALSE);
5706         break;
5707     case 2:
5708         copywin(a, b, 0, 0, 0, 0, getmaxy(b), getmaxx(b), TRUE);
5709         break;
5710     case 3:
5711         overlay(a, b);
5712         break;
5713     }
5714 }
5715
5716 /* test effects of overlapping windows */
5717 static void
5718 overlap_test(void)
5719 {
5720     int ch;
5721     int state, flavor[OVERLAP_FLAVORS];
5722
5723     WINDOW *win1 = newwin(9, 20, 3, 3);
5724     WINDOW *win2 = newwin(9, 20, 9, 16);
5725
5726     curs_set(0);
5727     raw();
5728     refresh();
5729     move(0, 0);
5730     printw("This test shows the behavior of wnoutrefresh() with respect to\n");
5731     printw("the shared region of two overlapping windows A and B.  The cross\n");
5732     printw("pattern in each window does not overlap the other.\n");
5733
5734     memset(flavor, 0, sizeof(flavor));
5735     state = overlap_help(0, flavor);
5736
5737     while (!isQuit(ch = Getchar()))
5738         switch (ch) {
5739         case 'a':               /* refresh window A first, then B */
5740             overlap_test_0(win1, win2);
5741             break;
5742
5743         case 'b':               /* refresh window B first, then A */
5744             overlap_test_0(win2, win1);
5745             break;
5746
5747         case 'c':               /* fill window A so it's visible */
5748             overlap_test_1(flavor[1], 0, win1, 'A');
5749             break;
5750
5751         case 'd':               /* fill window B so it's visible */
5752             overlap_test_1(flavor[1], 1, win2, 'B');
5753             break;
5754
5755         case 'e':               /* cross test pattern in window A */
5756             overlap_test_2(flavor[2], 0, win1, 'A');
5757             break;
5758
5759         case 'f':               /* cross test pattern in window A */
5760             overlap_test_2(flavor[2], 1, win2, 'B');
5761             break;
5762
5763         case 'g':               /* clear window A */
5764             overlap_test_3(win1);
5765             break;
5766
5767         case 'h':               /* clear window B */
5768             overlap_test_3(win2);
5769             break;
5770
5771         case 'i':               /* overwrite A onto B */
5772             overlap_test_4(flavor[4], win1, win2);
5773             break;
5774
5775         case 'j':               /* overwrite B onto A */
5776             overlap_test_4(flavor[4], win2, win1);
5777             break;
5778
5779         case CTRL('n'):
5780         case KEY_DOWN:
5781             state = overlap_help(state + 1, flavor);
5782             break;
5783
5784         case CTRL('p'):
5785         case KEY_UP:
5786             state = overlap_help(state - 1, flavor);
5787             break;
5788
5789         case ' ':
5790             flavor[state] += 1;
5791             state = overlap_help(state, flavor);
5792             break;
5793
5794         case '?':
5795             state = overlap_help(state, flavor);
5796             break;
5797
5798         default:
5799             beep();
5800             break;
5801         }
5802
5803     delwin(win2);
5804     delwin(win1);
5805     erase();
5806     curs_set(1);
5807     endwin();
5808 }
5809
5810 /****************************************************************************
5811  *
5812  * Main sequence
5813  *
5814  ****************************************************************************/
5815
5816 static bool
5817 do_single_test(const char c)
5818 /* perform a single specified test */
5819 {
5820     switch (c) {
5821     case 'a':
5822         getch_test();
5823         break;
5824
5825 #if USE_WIDEC_SUPPORT
5826     case 'A':
5827         get_wch_test();
5828         break;
5829 #endif
5830
5831     case 'b':
5832         attr_test();
5833         break;
5834
5835 #if USE_WIDEC_SUPPORT
5836     case 'B':
5837         wide_attr_test();
5838         break;
5839 #endif
5840
5841     case 'c':
5842         if (!use_colors)
5843             Cannot("does not support color.");
5844         else
5845             color_test();
5846         break;
5847
5848 #if USE_WIDEC_SUPPORT
5849     case 'C':
5850         if (!use_colors)
5851             Cannot("does not support color.");
5852         else
5853             wide_color_test();
5854         break;
5855 #endif
5856
5857     case 'd':
5858         if (!use_colors)
5859             Cannot("does not support color.");
5860         else if (!can_change_color())
5861             Cannot("has hardwired color values.");
5862         else
5863             color_edit();
5864         break;
5865
5866 #if USE_SOFTKEYS
5867     case 'e':
5868         slk_test();
5869         break;
5870 #endif
5871
5872 #if USE_WIDEC_SUPPORT
5873     case 'E':
5874         wide_slk_test();
5875         break;
5876 #endif
5877     case 'f':
5878         acs_display();
5879         break;
5880
5881 #if USE_WIDEC_SUPPORT
5882     case 'F':
5883         wide_acs_display();
5884         break;
5885 #endif
5886
5887 #if USE_LIBPANEL
5888     case 'o':
5889         demo_panels();
5890         break;
5891 #endif
5892
5893     case 'g':
5894         acs_and_scroll();
5895         break;
5896
5897     case 'i':
5898         flushinp_test(stdscr);
5899         break;
5900
5901     case 'k':
5902         test_sgr_attributes();
5903         break;
5904
5905 #if USE_LIBMENU
5906     case 'm':
5907         menu_test();
5908         break;
5909 #endif
5910
5911     case 'p':
5912         demo_pad();
5913         break;
5914
5915 #if USE_LIBFORM
5916     case 'r':
5917         demo_forms();
5918         break;
5919 #endif
5920
5921     case 's':
5922         overlap_test();
5923         break;
5924
5925 #if USE_LIBMENU && defined(TRACE)
5926     case 't':
5927         trace_set();
5928         break;
5929 #endif
5930
5931     case '?':
5932         break;
5933
5934     default:
5935         return FALSE;
5936     }
5937
5938     return TRUE;
5939 }
5940
5941 static void
5942 usage(void)
5943 {
5944     static const char *const tbl[] =
5945     {
5946         "Usage: ncurses [options]"
5947         ,""
5948         ,"Options:"
5949 #ifdef NCURSES_VERSION
5950         ,"  -a f,b   set default-colors (assumed white-on-black)"
5951         ,"  -d       use default-colors if terminal supports them"
5952 #endif
5953 #if USE_SOFTKEYS
5954         ,"  -e fmt   specify format for soft-keys test (e)"
5955 #endif
5956 #if HAVE_RIPOFFLINE
5957         ,"  -f       rip-off footer line (can repeat)"
5958         ,"  -h       rip-off header line (can repeat)"
5959 #endif
5960         ,"  -m       do not use colors"
5961         ,"  -p file  rgb values to use in 'd' rather than ncurses's builtin"
5962 #if USE_LIBPANEL
5963         ,"  -s msec  specify nominal time for panel-demo (default: 1, to hold)"
5964 #endif
5965 #ifdef TRACE
5966         ,"  -t mask  specify default trace-level (may toggle with ^T)"
5967 #endif
5968     };
5969     size_t n;
5970     for (n = 0; n < SIZEOF(tbl); n++)
5971         fprintf(stderr, "%s\n", tbl[n]);
5972     ExitProgram(EXIT_FAILURE);
5973 }
5974
5975 static void
5976 set_terminal_modes(void)
5977 {
5978     noraw();
5979     cbreak();
5980     noecho();
5981     scrollok(stdscr, TRUE);
5982     idlok(stdscr, TRUE);
5983     keypad(stdscr, TRUE);
5984 }
5985
5986 #ifdef SIGUSR1
5987 static RETSIGTYPE
5988 announce_sig(int sig)
5989 {
5990     (void) fprintf(stderr, "Handled signal %d\r\n", sig);
5991 }
5992 #endif
5993
5994 #if HAVE_RIPOFFLINE
5995 static int
5996 rip_footer(WINDOW *win, int cols)
5997 {
5998     wbkgd(win, A_REVERSE);
5999     werase(win);
6000     wmove(win, 0, 0);
6001     wprintw(win, "footer: %d columns", cols);
6002     wnoutrefresh(win);
6003     return OK;
6004 }
6005
6006 static int
6007 rip_header(WINDOW *win, int cols)
6008 {
6009     wbkgd(win, A_REVERSE);
6010     werase(win);
6011     wmove(win, 0, 0);
6012     wprintw(win, "header: %d columns", cols);
6013     wnoutrefresh(win);
6014     return OK;
6015 }
6016 #endif /* HAVE_RIPOFFLINE */
6017
6018 static void
6019 main_menu(bool top)
6020 {
6021     char command;
6022
6023     do {
6024         (void) puts("This is the ncurses main menu");
6025         (void) puts("a = keyboard and mouse input test");
6026 #if USE_WIDEC_SUPPORT
6027         (void) puts("A = wide-character keyboard and mouse input test");
6028 #endif
6029         (void) puts("b = character attribute test");
6030 #if USE_WIDEC_SUPPORT
6031         (void) puts("B = wide-character attribute test");
6032 #endif
6033         (void) puts("c = color test pattern");
6034 #if USE_WIDEC_SUPPORT
6035         (void) puts("C = color test pattern using wide-character calls");
6036 #endif
6037         if (top)
6038             (void) puts("d = edit RGB color values");
6039 #if USE_SOFTKEYS
6040         (void) puts("e = exercise soft keys");
6041 #if USE_WIDEC_SUPPORT
6042         (void) puts("E = exercise soft keys using wide-characters");
6043 #endif
6044 #endif
6045         (void) puts("f = display ACS characters");
6046 #if USE_WIDEC_SUPPORT
6047         (void) puts("F = display Wide-ACS characters");
6048 #endif
6049         (void) puts("g = display windows and scrolling");
6050         (void) puts("i = test of flushinp()");
6051         (void) puts("k = display character attributes");
6052 #if USE_LIBMENU
6053         (void) puts("m = menu code test");
6054 #endif
6055 #if USE_LIBPANEL
6056         (void) puts("o = exercise panels library");
6057         (void) puts("p = exercise pad features");
6058         (void) puts("q = quit");
6059 #endif
6060 #if USE_LIBFORM
6061         (void) puts("r = exercise forms code");
6062 #endif
6063         (void) puts("s = overlapping-refresh test");
6064 #if USE_LIBMENU && defined(TRACE)
6065         (void) puts("t = set trace level");
6066 #endif
6067         (void) puts("? = repeat this command summary");
6068
6069         (void) fputs("> ", stdout);
6070         (void) fflush(stdout);  /* necessary under SVr4 curses */
6071
6072         /*
6073          * This used to be an 'fgets()' call.  However (on Linux, at least)
6074          * mixing stream I/O and 'read()' (used in the library) causes the
6075          * input stream to be flushed when switching between the two.
6076          */
6077         command = 0;
6078         for (;;) {
6079             char ch;
6080             if (read(fileno(stdin), &ch, 1) <= 0) {
6081                 if (command == 0)
6082                     command = 'q';
6083                 break;
6084             } else if (command == 0 && !isspace(UChar(ch))) {
6085                 command = ch;
6086             } else if (ch == '\n' || ch == '\r') {
6087                 if ((command == 'd') && !top) {
6088                     (void) fputs("Do not nest test-d\n", stdout);
6089                     command = 0;
6090                 }
6091                 if (command != 0)
6092                     break;
6093                 (void) fputs("> ", stdout);
6094                 (void) fflush(stdout);
6095             }
6096         }
6097
6098         if (do_single_test(command)) {
6099             /*
6100              * This may be overkill; it's intended to reset everything back
6101              * to the initial terminal modes so that tests don't get in
6102              * each other's way.
6103              */
6104             flushinp();
6105             set_terminal_modes();
6106             reset_prog_mode();
6107             clear();
6108             refresh();
6109             endwin();
6110             if (command == '?') {
6111                 (void) puts("This is the ncurses capability tester.");
6112                 (void)
6113                     puts("You may select a test from the main menu by typing the");
6114                 (void)
6115                     puts("key letter of the choice (the letter to left of the =)");
6116                 (void)
6117                     puts("at the > prompt.  Type `q' to exit.");
6118             }
6119             continue;
6120         }
6121     } while
6122         (command != 'q');
6123 }
6124
6125 /*+-------------------------------------------------------------------------
6126         main(argc,argv)
6127 --------------------------------------------------------------------------*/
6128
6129 #define okCOLOR(n) ((n) >= 0 && (n) < max_colors)
6130 #define okRGB(n)   ((n) >= 0 && (n) <= 1000)
6131
6132 int
6133 main(int argc, char *argv[])
6134 {
6135     int c;
6136     int my_e_param = 1;
6137 #ifdef NCURSES_VERSION
6138     int default_fg = COLOR_WHITE;
6139     int default_bg = COLOR_BLACK;
6140     bool assumed_colors = FALSE;
6141     bool default_colors = FALSE;
6142 #endif
6143     char *palette_file = 0;
6144     bool monochrome = FALSE;
6145
6146     setlocale(LC_ALL, "");
6147
6148     while ((c = getopt(argc, argv, "a:de:fhmp:s:t:")) != EOF) {
6149         switch (c) {
6150 #ifdef NCURSES_VERSION
6151         case 'a':
6152             assumed_colors = TRUE;
6153             sscanf(optarg, "%d,%d", &default_fg, &default_bg);
6154             break;
6155         case 'd':
6156             default_colors = TRUE;
6157             break;
6158 #endif
6159         case 'e':
6160             my_e_param = atoi(optarg);
6161 #ifdef NCURSES_VERSION
6162             if (my_e_param > 3) /* allow extended layouts */
6163                 usage();
6164 #else
6165             if (my_e_param > 1)
6166                 usage();
6167 #endif
6168             break;
6169 #if HAVE_RIPOFFLINE
6170         case 'f':
6171             ripoffline(-1, rip_footer);
6172             break;
6173         case 'h':
6174             ripoffline(1, rip_header);
6175             break;
6176 #endif /* HAVE_RIPOFFLINE */
6177         case 'm':
6178             monochrome = TRUE;
6179             break;
6180         case 'p':
6181             palette_file = optarg;
6182             break;
6183 #if USE_LIBPANEL
6184         case 's':
6185             nap_msec = atol(optarg);
6186             break;
6187 #endif
6188 #ifdef TRACE
6189         case 't':
6190             save_trace = strtol(optarg, 0, 0);
6191             break;
6192 #endif
6193         default:
6194             usage();
6195         }
6196     }
6197
6198     /*
6199      * If there's no menus (unlikely for ncurses!), then we'll have to set
6200      * tracing on initially, just in case the user wants to test something that
6201      * doesn't involve wGetchar.
6202      */
6203 #ifdef TRACE
6204     /* enable debugging */
6205 #if !USE_LIBMENU
6206     trace(save_trace);
6207 #else
6208     if (!isatty(fileno(stdin)))
6209         trace(save_trace);
6210 #endif /* USE_LIBMENU */
6211 #endif /* TRACE */
6212
6213 #if USE_SOFTKEYS
6214     /* tell it we're going to play with soft keys */
6215     slk_init(my_e_param);
6216 #endif
6217
6218 #ifdef SIGUSR1
6219     /* set up null signal catcher so we can see what interrupts to getch do */
6220     signal(SIGUSR1, announce_sig);
6221 #endif
6222
6223     /* we must initialize the curses data structure only once */
6224     initscr();
6225     bkgdset(BLANK);
6226
6227     /* tests, in general, will want these modes */
6228     use_colors = monochrome ? FALSE : has_colors();
6229
6230     if (use_colors) {
6231         start_color();
6232 #ifdef NCURSES_VERSION_PATCH
6233         max_colors = COLORS;    /* was > 16 ? 16 : COLORS */
6234 #if HAVE_USE_DEFAULT_COLORS
6235         if (default_colors) {
6236             use_default_colors();
6237             min_colors = -1;
6238         }
6239 #if NCURSES_VERSION_PATCH >= 20000708
6240         else if (assumed_colors)
6241             assume_default_colors(default_fg, default_bg);
6242 #endif
6243 #endif
6244 #else /* normal SVr4 curses */
6245         max_colors = COLORS;    /* was > 8 ? 8 : COLORS */
6246 #endif
6247         max_pairs = COLOR_PAIRS;        /* was > 256 ? 256 : COLOR_PAIRS */
6248
6249         if (can_change_color()) {
6250             short cp;
6251             all_colors = (RGB_DATA *) malloc(max_colors * sizeof(RGB_DATA));
6252             for (cp = 0; cp < max_colors; ++cp) {
6253                 color_content(cp,
6254                               &all_colors[cp].red,
6255                               &all_colors[cp].green,
6256                               &all_colors[cp].blue);
6257             }
6258             if (palette_file != 0) {
6259                 FILE *fp = fopen(palette_file, "r");
6260                 if (fp != 0) {
6261                     char buffer[BUFSIZ];
6262                     int red, green, blue;
6263                     int scale = 1000;
6264                     while (fgets(buffer, sizeof(buffer), fp) != 0) {
6265                         if (sscanf(buffer, "scale:%d", &c) == 1) {
6266                             scale = c;
6267                         } else if (sscanf(buffer, "%d:%d %d %d",
6268                                           &c,
6269                                           &red,
6270                                           &green,
6271                                           &blue) == 4
6272                                    && okCOLOR(c)
6273                                    && okRGB(red)
6274                                    && okRGB(green)
6275                                    && okRGB(blue)) {
6276                             all_colors[c].red = (red * 1000) / scale;
6277                             all_colors[c].green = (green * 1000) / scale;
6278                             all_colors[c].blue = (blue * 1000) / scale;
6279                         }
6280                     }
6281                     fclose(fp);
6282                 }
6283             }
6284         }
6285     }
6286     set_terminal_modes();
6287     def_prog_mode();
6288
6289     /*
6290      * Return to terminal mode, so we're guaranteed of being able to
6291      * select terminal commands even if the capabilities are wrong.
6292      */
6293     endwin();
6294
6295 #if HAVE_CURSES_VERSION
6296     (void) printf("Welcome to %s.  Press ? for help.\n", curses_version());
6297 #elif defined(NCURSES_VERSION_MAJOR) && defined(NCURSES_VERSION_MINOR) && defined(NCURSES_VERSION_PATCH)
6298     (void) printf("Welcome to ncurses %d.%d.%d.  Press ? for help.\n",
6299                   NCURSES_VERSION_MAJOR,
6300                   NCURSES_VERSION_MINOR,
6301                   NCURSES_VERSION_PATCH);
6302 #else
6303     (void) puts("Welcome to ncurses.  Press ? for help.");
6304 #endif
6305
6306     main_menu(TRUE);
6307
6308     ExitProgram(EXIT_SUCCESS);
6309 }
6310
6311 /* ncurses.c ends here */