1 /****************************************************************************
2 * Copyright 2020-2021,2022 Thomas E. Dickey *
3 * Copyright 2013-2014,2017 Free Software Foundation, Inc. *
4 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29 /*
30 * $Id: test_vid_puts.c,v 1.17 2022/12/10 22:28:50 tom Exp $
31 *
32 * Demonstrate the vid_puts and vid_attr functions.
33 * Thomas Dickey - 2013/01/12
34 */
35
36 #define USE_TINFO
37 #include <test.priv.h>
38
39 #if USE_WIDEC_SUPPORT && HAVE_SETUPTERM && HAVE_VID_PUTS
40
41 static FILE *my_fp;
42 static bool p_opt = FALSE;
43
44 static
TPUTS_PROTO(outc,c)45 TPUTS_PROTO(outc, c)
46 {
47 int rc;
48
49 rc = putc(c, my_fp);
50 TPUTS_RETURN(rc);
51 }
52
53 static bool
outs(const char * s)54 outs(const char *s)
55 {
56 if (VALID_STRING(s)) {
57 tputs(s, 1, outc);
58 return TRUE;
59 }
60 return FALSE;
61 }
62
63 static void
cleanup(void)64 cleanup(void)
65 {
66 if (cur_term != 0) {
67 outs(exit_attribute_mode);
68 if (!outs(orig_colors))
69 outs(orig_pair);
70 outs(cursor_normal);
71 }
72 }
73
74 static void
change_attr(chtype attr)75 change_attr(chtype attr)
76 {
77 if (p_opt) {
78 vid_puts(attr, (short) 0, (void *) 0, outc);
79 } else {
80 vid_attr(attr, (short) 0, (void *) 0);
81 }
82 }
83
84 static void
test_vid_puts(void)85 test_vid_puts(void)
86 {
87 fprintf(my_fp, "Name: ");
88 change_attr(A_BOLD);
89 fputs("Bold", my_fp);
90 change_attr(A_REVERSE);
91 fputs(" Reverse", my_fp);
92 change_attr(A_NORMAL);
93 fputs("\n", my_fp);
94 }
95
96 static void
usage(int ok)97 usage(int ok)
98 {
99 static const char *tbl[] =
100 {
101 "Usage: test_vid_puts [options]"
102 ,""
103 ,USAGE_COMMON
104 ,"Options:"
105 ," -e use stderr (default stdout)"
106 ," -n do not initialize terminal"
107 ," -p use vid_puts (default vid_attr)"
108 };
109 unsigned n;
110 for (n = 0; n < SIZEOF(tbl); ++n)
111 fprintf(stderr, "%s\n", tbl[n]);
112 ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
113 }
114 /* *INDENT-OFF* */
VERSION_COMMON()115 VERSION_COMMON()
116 /* *INDENT-ON* */
117
118 int
119 main(int argc, char *argv[])
120 {
121 int ch;
122 bool no_init = FALSE;
123
124 my_fp = stdout;
125
126 while ((ch = getopt(argc, argv, OPTS_COMMON "enp")) != -1) {
127 switch (ch) {
128 case 'e':
129 my_fp = stderr;
130 break;
131 case 'n':
132 no_init = TRUE;
133 break;
134 case 'p':
135 p_opt = TRUE;
136 break;
137 case OPTS_VERSION:
138 show_version(argv);
139 ExitProgram(EXIT_SUCCESS);
140 default:
141 usage(ch == OPTS_USAGE);
142 /* NOTREACHED */
143 }
144 }
145 if (optind < argc)
146 usage(FALSE);
147
148 setlocale(LC_ALL, "");
149 if (no_init) {
150 START_TRACE();
151 } else {
152 setupterm((char *) 0, fileno(my_fp), (int *) 0);
153 }
154 test_vid_puts();
155 cleanup();
156 ExitProgram(EXIT_SUCCESS);
157 }
158
159 #else
160 int
main(void)161 main(void)
162 {
163 printf("This program requires the wide-ncurses terminfo library\n");
164 ExitProgram(EXIT_FAILURE);
165 }
166 #endif
167