blob: 16c1ad57cfd8d5ee624c95bf9b25f30008d7ea7e [file] [log] [blame]
micky3879b9f5e72025-07-08 18:04:53 -04001/****************************************************************************
2 * Copyright 2019-2020,2022 Thomas E. Dickey *
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 * Author: Thomas E. Dickey
31 *
32 * $Id: demo_tabs.c,v 1.10 2022/12/04 00:40:11 tom Exp $
33 *
34 * A simple demo of tabs in curses.
35 */
36#define USE_CURSES
37#define USE_TINFO
38#include <test.priv.h>
39
40static void
41usage(int ok)
42{
43 static const char *msg[] =
44 {
45 "Usage: demo_tabs [options]"
46 ,""
47 ,"Print a grid to test tab-stops with the curses interface"
48 ,""
49 ,USAGE_COMMON
50 ,"Options:"
51 ," -l COUNT total number of lines to show"
52 ," -t NUM set TABSIZE variable to the given value"
53 };
54 unsigned n;
55 for (n = 0; n < SIZEOF(msg); ++n) {
56 fprintf(stderr, "%s\n", msg[n]);
57 }
58 ExitProgram(ok ? EXIT_SUCCESS : EXIT_FAILURE);
59}
60/* *INDENT-OFF* */
61VERSION_COMMON()
62/* *INDENT-ON* */
63
64int
65main(int argc, char *argv[])
66{
67 int tabstop;
68 int ch, col, row, step;
69 int line_limit = -1;
70 int curses_stops = -1;
71
72 while ((ch = getopt(argc, argv, OPTS_COMMON "l:t:")) != -1) {
73 switch (ch) {
74 case 'l':
75 line_limit = atoi(optarg);
76 break;
77 case 't':
78 curses_stops = atoi(optarg);
79 break;
80 case OPTS_VERSION:
81 show_version(argv);
82 ExitProgram(EXIT_SUCCESS);
83 default:
84 usage(ch == OPTS_USAGE);
85 /* NOTREACHED */
86 }
87 }
88
89 initscr();
90 noecho();
91 cbreak();
92 if (curses_stops > 0)
93 set_tabsize(curses_stops);
94#if HAVE_TIGETNUM
95 tabstop = tigetnum("it");
96 if (tabstop <= 0)
97#endif
98 tabstop = 8;
99 for (row = 0; row < LINES; ++row) {
100 move(row, 0);
101 for (col = step = 0; col < COLS - 1; ++col) {
102 if (row == 0) {
103 chtype ct = '-';
104 if ((col % tabstop) == 0)
105 ct = '+';
106 addch(ct);
107 } else if (col + 1 < row) {
108 addch('*');
109 } else {
110 printw("%x", step);
111 col = (row + (tabstop * ++step));
112 col /= tabstop;
113 col *= tabstop;
114 col -= 1;
115 if ((col + tabstop) < COLS)
116 addch('\t');
117 refresh();
118 }
119 }
120 addch('\n');
121 if (line_limit > 0 && row >= line_limit)
122 break;
123 }
124 getch();
125 endwin();
126 ExitProgram(EXIT_SUCCESS);
127}