blob: e512cc79511f0a9d7539e4f2d0e6518ee5da7265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
uses
ncurses, sysutils;
var
f, b: Smallint;
begin
initscr();
cbreak();
noecho();
if (has_colors()) then
begin
start_color();
pair_content(0, @f, @b);
printw(PChar('pair 0 contains (%d,%d)'#10), f, b);
getch();
printw('Initializing pair 1 to red/black'#10);
init_pair(1, COLOR_RED, COLOR_BLACK);
bkgdset(chtype(' ') OR COLOR_PAIR(1));
printw('RED/BLACK'#10);
getch();
printw('Initializing pair 2 to white/blue'#10);
init_pair(2, COLOR_WHITE, COLOR_BLUE);
bkgdset(chtype(' ') OR COLOR_PAIR(2));
printw('WHITE/BLUE'#10);
getch();
printw('Resetting colors to pair 0'#10);
bkgdset(chtype(' ') OR COLOR_PAIR(0));
printw('Default Colors'#10);
getch();
printw('Resetting colors to pair 1'#10);
bkgdset(chtype(' ') OR COLOR_PAIR(1));
printw('RED/BLACK'#10);
getch();
printw('Setting screen to pair 0'#10);
bkgd(chtype(' ') OR COLOR_PAIR(0));
getch();
printw('Setting screen to pair 1'#10);
bkgd(chtype(' ') OR COLOR_PAIR(1));
getch();
printw('Setting screen to pair 2'#10);
bkgd(chtype(' ') OR COLOR_PAIR(2));
getch();
printw('Setting screen to pair 0'#10);
bkgd(chtype(' ') OR COLOR_PAIR(0));
getch();
end
else
begin
printw('This demo requires a color terminal'#10);
getch();
end;
endwin();
end.
|