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