]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/color_set.c
ncurses 6.3 - patch 20211120
[ncurses.git] / test / color_set.c
1 /****************************************************************************
2  * Copyright 2019,2020 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.10 2020/02/02 23:34:34 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     initscr();
45     cbreak();
46     noecho();
47
48     if (has_colors()) {
49         int i;
50
51         start_color();
52
53         (void) pair_content(0, &f, &b);
54         printw("pair 0 contains (%d,%d)\n", (int) f, (int) b);
55         getch();
56
57         printw("Initializing pair 1 to red/black\n");
58         init_pair(1, COLOR_RED, COLOR_BLACK);
59         i = color_set(1, NULL);
60         printw("RED/BLACK (%s)\n", SHOW(i));
61         getch();
62
63         printw("Initializing pair 2 to white/blue\n");
64         init_pair(2, COLOR_WHITE, COLOR_BLUE);
65         i = color_set(2, NULL);
66         printw("WHITE/BLUE (%s)\n", SHOW(i));
67         getch();
68
69         printw("Resetting colors to pair 0\n");
70         i = color_set(0, NULL);
71         printw("Default Colors (%s)\n", SHOW(i));
72         getch();
73
74         printw("Resetting colors to pair 1\n");
75         i = color_set(1, NULL);
76         printw("RED/BLACK (%s)\n", SHOW(i));
77         getch();
78
79     } else {
80         printw("This demo requires a color terminal");
81         getch();
82     }
83     endwin();
84
85     ExitProgram(EXIT_SUCCESS);
86 }
87 #else
88 int
89 main(void)
90 {
91     printf("This program requires the curses color_set function\n");
92     ExitProgram(EXIT_FAILURE);
93 }
94 #endif