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