]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/demo_tabs.c
ncurses 6.1 - patch 20190216
[ncurses.git] / test / demo_tabs.c
1 /****************************************************************************
2  * Copyright (c) 2019 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  * Author: Thomas E. Dickey
31  *
32  * $Id: demo_tabs.c,v 1.2 2019/02/17 01:01:11 tom Exp $
33  *
34  * A simple demo of tabs in curses.
35  */
36 #include "test.priv.h"
37
38 static void
39 usage(void)
40 {
41     static const char *msg[] =
42     {
43         "Usage: demo_tabs [options]",
44         "",
45         "Print a grid to test tab-stops with the curses interface",
46         "",
47         "Options:",
48         " -l COUNT total number of lines to show",
49         " -t NUM   set TABSIZE variable to the given value",
50     };
51     unsigned n;
52     for (n = 0; n < SIZEOF(msg); ++n) {
53         fprintf(stderr, "%s\n", msg[n]);
54     }
55     ExitProgram(EXIT_FAILURE);
56 }
57
58 int
59 main(int argc, char *argv[])
60 {
61     int tabstop;
62     int n, col, row, step;
63     int line_limit = -1;
64     int curses_stops = -1;
65
66     while ((n = getopt(argc, argv, "l:t:")) != -1) {
67         switch (n) {
68         case 'l':
69             line_limit = atoi(optarg);
70             break;
71         case 't':
72             curses_stops = atoi(optarg);
73             break;
74         default:
75             usage();
76             break;
77         }
78     }
79
80     initscr();
81     noecho();
82     cbreak();
83     if (curses_stops > 0)
84         set_tabsize(curses_stops);
85     tabstop = tigetnum("it");
86     if (tabstop <= 0)
87         tabstop = 8;
88     for (row = 0; row < LINES; ++row) {
89         move(row, 0);
90         for (col = step = 0; col < COLS - 1; ++col) {
91             if (row == 0) {
92                 chtype ch = '-';
93                 if ((col % tabstop) == 0)
94                     ch = '+';
95                 addch(ch);
96             } else if (col + 1 < row) {
97                 addch('*');
98             } else {
99                 printw("%x", step);
100                 col = (row + (tabstop * ++step));
101                 col /= tabstop;
102                 col *= tabstop;
103                 col -= 1;
104                 if ((col + tabstop) < COLS)
105                     addch('\t');
106                 refresh();
107             }
108         }
109         addch('\n');
110         if (line_limit > 0 && row >= line_limit)
111             break;
112     }
113     getch();
114     endwin();
115     ExitProgram(EXIT_SUCCESS);
116 }