blob: afbe5f536032c088333bc08c7c75f7cc137989c8 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
2 * Copyright (c) 2003,2006 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: background.c,v 1.3 2006/06/03 16:43:08 tom Exp $
30 */
31
32#include <test.priv.h>
33
34int
35main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
36{
37 short f, b;
38
39 initscr();
40 cbreak();
41 noecho();
42
43 if (has_colors()) {
44 start_color();
45
46 pair_content(0, &f, &b);
47 printw("pair 0 contains (%d,%d)\n", f, b);
48 getch();
49
50 printw("Initializing pair 1 to red/black\n");
51 init_pair(1, COLOR_RED, COLOR_BLACK);
52 bkgdset(' ' | COLOR_PAIR(1));
53 printw("RED/BLACK\n");
54 getch();
55
56 printw("Initializing pair 2 to white/blue\n");
57 init_pair(2, COLOR_WHITE, COLOR_BLUE);
58 bkgdset(' ' | COLOR_PAIR(2));
59 printw("WHITE/BLUE\n");
60 getch();
61
62 printw("Resetting colors to pair 0\n");
63 bkgdset(' ' | COLOR_PAIR(0));
64 printw("Default Colors\n");
65 getch();
66
67 printw("Resetting colors to pair 1\n");
68 bkgdset(' ' | COLOR_PAIR(1));
69 printw("RED/BLACK\n");
70 getch();
71
72 printw("Setting screen to pair 0\n");
73 bkgd(' ' | COLOR_PAIR(0));
74 getch();
75
76 printw("Setting screen to pair 1\n");
77 bkgd(' ' | COLOR_PAIR(1));
78 getch();
79
80 printw("Setting screen to pair 2\n");
81 bkgd(' ' | COLOR_PAIR(2));
82 getch();
83
84 printw("Setting screen to pair 0\n");
85 bkgd(' ' | COLOR_PAIR(0));
86 getch();
87
88 } else {
89 printw("This demo requires a color terminal");
90 getch();
91 }
92 endwin();
93
94 ExitProgram(EXIT_SUCCESS);
95}