]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/color_set.c
ncurses 6.3 - patch 20220521
[ncurses.git] / test / color_set.c
1 /****************************************************************************
2  * Copyright 2020,2020,2022 Thomas E. Dickey                                *
3  * Copyright 2003-2012,2014 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: color_set.c,v 1.11 2022/04/16 18:26:40 tom Exp $
31  */
32
33 #include <test.priv.h>
34
35 #if HAVE_COLOR_SET
36
37 #define SHOW(n) ((n) == ERR ? "ERR" : "OK")
38
39 int
40 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
41 {
42     NCURSES_COLOR_T f, b;
43
44     setlocale(LC_ALL, "");
45     initscr();
46     cbreak();
47     noecho();
48
49     if (has_colors()) {
50         int i;
51
52         start_color();
53
54         (void) pair_content(0, &f, &b);
55         printw("pair 0 contains (%d,%d)\n", (int) f, (int) b);
56         getch();
57
58         printw("Initializing pair 1 to red/black\n");
59         init_pair(1, COLOR_RED, COLOR_BLACK);
60         i = color_set(1, NULL);
61         printw("RED/BLACK (%s)\n", SHOW(i));
62         getch();
63
64         printw("Initializing pair 2 to white/blue\n");
65         init_pair(2, COLOR_WHITE, COLOR_BLUE);
66         i = color_set(2, NULL);
67         printw("WHITE/BLUE (%s)\n", SHOW(i));
68         getch();
69
70         printw("Resetting colors to pair 0\n");
71         i = color_set(0, NULL);
72         printw("Default Colors (%s)\n", SHOW(i));
73         getch();
74
75         printw("Resetting colors to pair 1\n");
76         i = color_set(1, NULL);
77         printw("RED/BLACK (%s)\n", SHOW(i));
78         getch();
79
80     } else {
81         printw("This demo requires a color terminal");
82         getch();
83     }
84     endwin();
85
86     ExitProgram(EXIT_SUCCESS);
87 }
88 #else
89 int
90 main(void)
91 {
92     printf("This program requires the curses color_set function\n");
93     ExitProgram(EXIT_FAILURE);
94 }
95 #endif