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