1 #ifndef CONSOLE_CHARS_H
2 #define CONSOLE_CHARS_H
4 /* naming of the constants
7 cc_ulcorner (ul = upper left)
12 * double border on vertical lines, single border on horizontal lines, like ||-
13 dv = double vertical, sh = single horizontal
16 * double border on horizontal lines, single border on vertical lines, like |=
19 these constants are mostly named after their ncurses equivalent, e.g.
20 ACS_BLOCK. some other useful symbols have beend added to complete the set.
21 see the ncurses header that defines ACS_BLOCK et al for more information.
26 cc_block
= 0, /* solid block, filling entire cell */
37 cc_double_arrow_gt
, /* >> */
38 cc_double_arrow_lt
, /* << */
61 /* plus is the center crossing of lines. like + */
71 /* scan line 1, .. 9, whatever that means */
76 /* shadow - this is a solid block filling half of a cell */
82 /* t = top, b = bottom, r= right, ...:
83 * tee is the crossing of 3 lines, like T on top or -| on the right */