]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/demo_tabs.c
ncurses 6.4 - patch 20240420
[ncurses.git] / test / demo_tabs.c
1 /****************************************************************************
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.6 2022/05/15 13:04:57 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
40 static void
41 usage(void)
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         "Options:",
50         " -l COUNT total number of lines to show",
51         " -t NUM   set TABSIZE variable to the given value",
52     };
53     unsigned n;
54     for (n = 0; n < SIZEOF(msg); ++n) {
55         fprintf(stderr, "%s\n", msg[n]);
56     }
57     ExitProgram(EXIT_FAILURE);
58 }
59
60 int
61 main(int argc, char *argv[])
62 {
63     int tabstop;
64     int n, col, row, step;
65     int line_limit = -1;
66     int curses_stops = -1;
67
68     while ((n = getopt(argc, argv, "l:t:")) != -1) {
69         switch (n) {
70         case 'l':
71             line_limit = atoi(optarg);
72             break;
73         case 't':
74             curses_stops = atoi(optarg);
75             break;
76         default:
77             usage();
78             break;
79         }
80     }
81
82     initscr();
83     noecho();
84     cbreak();
85     if (curses_stops > 0)
86         set_tabsize(curses_stops);
87 #if HAVE_TIGETNUM
88     tabstop = tigetnum("it");
89     if (tabstop <= 0)
90 #endif
91         tabstop = 8;
92     for (row = 0; row < LINES; ++row) {
93         move(row, 0);
94         for (col = step = 0; col < COLS - 1; ++col) {
95             if (row == 0) {
96                 chtype ch = '-';
97                 if ((col % tabstop) == 0)
98                     ch = '+';
99                 addch(ch);
100             } else if (col + 1 < row) {
101                 addch('*');
102             } else {
103                 printw("%x", step);
104                 col = (row + (tabstop * ++step));
105                 col /= tabstop;
106                 col *= tabstop;
107                 col -= 1;
108                 if ((col + tabstop) < COLS)
109                     addch('\t');
110                 refresh();
111             }
112         }
113         addch('\n');
114         if (line_limit > 0 && row >= line_limit)
115             break;
116     }
117     getch();
118     endwin();
119     ExitProgram(EXIT_SUCCESS);
120 }