|
#define | CONS_MAX_USER 102400 |
|
#define | CONS_BUFSZ 0x4f00 |
|
#define | STR_IS_NULL(x) (!x || !x[0]) |
|
#define | CONS_PALETTE_SIZE 22 |
|
#define | CONS_COLORS_SIZE 21 |
|
#define | RZ_CONS_GREP_WORDS 10 |
|
#define | RZ_CONS_GREP_WORD_SIZE 64 |
|
#define | RZ_CONS_GREP_TOKENS 64 |
|
#define | RZ_CONS_CMD_DEPTH 100 |
|
#define | CONS_MAX_ATTR_SZ 16 |
|
#define | RUNECODE_MIN 0xc8 |
|
#define | RUNECODE_LINE_VERT 0xc8 |
|
#define | RUNECODE_LINE_CROSS 0xc9 |
|
#define | RUNECODE_CORNER_BR 0xca |
|
#define | RUNECODE_CORNER_BL 0xcb |
|
#define | RUNECODE_ARROW_RIGHT 0xcc |
|
#define | RUNECODE_ARROW_LEFT 0xcd |
|
#define | RUNECODE_LINE_HORIZ 0xce |
|
#define | RUNECODE_CORNER_TL 0xcf |
|
#define | RUNECODE_CORNER_TR 0xd0 |
|
#define | RUNECODE_LINE_UP 0xd1 |
|
#define | RUNECODE_CURVE_CORNER_TL 0xd2 |
|
#define | RUNECODE_CURVE_CORNER_TR 0xd3 |
|
#define | RUNECODE_CURVE_CORNER_BR 0xd4 |
|
#define | RUNECODE_CURVE_CORNER_BL 0xd5 |
|
#define | RUNECODE_MAX 0xd6 |
|
#define | RUNECODESTR_MIN 0xc8 |
|
#define | RUNECODESTR_LINE_VERT "\xc8" |
|
#define | RUNECODESTR_LINE_CROSS "\xc9" |
|
#define | RUNECODESTR_CORNER_BR "\xca" |
|
#define | RUNECODESTR_CORNER_BL "\xcb" |
|
#define | RUNECODESTR_ARROW_RIGHT "\xcc" |
|
#define | RUNECODESTR_ARROW_LEFT "\xcd" |
|
#define | RUNECODESTR_LINE_HORIZ "\xce" |
|
#define | RUNECODESTR_CORNER_TL "\xcf" |
|
#define | RUNECODESTR_CORNER_TR "\xd0" |
|
#define | RUNECODESTR_LINE_UP "\xd1" |
|
#define | RUNECODESTR_CURVE_CORNER_TL "\xd2" |
|
#define | RUNECODESTR_CURVE_CORNER_TR "\xd3" |
|
#define | RUNECODESTR_CURVE_CORNER_BR "\xd4" |
|
#define | RUNECODESTR_CURVE_CORNER_BL "\xd5" |
|
#define | RUNECODESTR_MAX 0xd5 |
|
#define | RUNE_LINE_VERT "│" |
|
#define | RUNE_LINE_CROSS "┼" /* ├ */ |
|
#define | RUNE_LINE_HORIZ "─" |
|
#define | RUNE_LINE_UP "↑" |
|
#define | RUNE_CORNER_BR "┘" |
|
#define | RUNE_CORNER_BL "└" |
|
#define | RUNE_CORNER_TL "┌" |
|
#define | RUNE_CORNER_TR "┐" |
|
#define | RUNE_ARROW_RIGHT "ᐳ" |
|
#define | RUNE_ARROW_LEFT "ᐸ" |
|
#define | RUNE_ARROW_UP "ᐱ" |
|
#define | RUNE_ARROW_DOWN "ᐯ" |
|
#define | RUNE_CURVE_CORNER_TL "╭" |
|
#define | RUNE_CURVE_CORNER_TR "╮" |
|
#define | RUNE_CURVE_CORNER_BR "╯" |
|
#define | RUNE_CURVE_CORNER_BL "╰" |
|
#define | RUNE_LONG_LINE_HORIZ "―" |
|
#define | UTF_CIRCLE "\u25EF" |
|
#define | UTF_BLOCK "\u2588" |
|
#define | UTF8_POLICE_CARS_REVOLVING_LIGHT "🚨" |
|
#define | UTF8_WHITE_HEAVY_CHECK_MARK "✅" |
|
#define | UTF8_SEE_NO_EVIL_MONKEY "🙈" |
|
#define | UTF8_SKULL_AND_CROSSBONES "☠" |
|
#define | UTF8_KEYBOARD "⌨" |
|
#define | UTF8_LEFT_POINTING_MAGNIFYING_GLASS "🔍" |
|
#define | UTF8_DOOR "🚪" |
|
#define | UTF8_VS16 "\xef\xb8\x8f" |
|
#define | HUD_BUF_SIZE 512 |
|
#define | RZ_CONS_KEY_F1 0xf1 |
|
#define | RZ_CONS_KEY_F2 0xf2 |
|
#define | RZ_CONS_KEY_F3 0xf3 |
|
#define | RZ_CONS_KEY_F4 0xf4 |
|
#define | RZ_CONS_KEY_F5 0xf5 |
|
#define | RZ_CONS_KEY_F6 0xf6 |
|
#define | RZ_CONS_KEY_F7 0xf7 |
|
#define | RZ_CONS_KEY_F8 0xf8 |
|
#define | RZ_CONS_KEY_F9 0xf9 |
|
#define | RZ_CONS_KEY_F10 0xfa |
|
#define | RZ_CONS_KEY_F11 0xfb |
|
#define | RZ_CONS_KEY_F12 0xfc |
|
#define | RZ_CONS_KEY_ESC 0x1b |
|
#define | RZ_CONS_CLEAR_LINE "\x1b[2K\r" |
|
#define | RZ_CONS_CLEAR_SCREEN "\x1b[2J\r" |
|
#define | RZ_CONS_CLEAR_FROM_CURSOR_TO_END "\x1b[0J\r" |
|
#define | RZ_CONS_CURSOR_SAVE "\x1b[s" |
|
#define | RZ_CONS_CURSOR_RESTORE "\x1b[u" |
|
#define | RZ_CONS_GET_CURSOR_POSITION "\x1b[6n" |
|
#define | RZ_CONS_CURSOR_UP "\x1b[A" |
|
#define | RZ_CONS_CURSOR_DOWN "\x1b[B" |
|
#define | RZ_CONS_CURSOR_RIGHT "\x1b[C" |
|
#define | RZ_CONS_CURSOR_LEFT "\x1b[D" |
|
#define | Color_BLINK "\x1b[5m" |
|
#define | Color_INVERT "\x1b[7m" |
|
#define | Color_INVERT_RESET "\x1b[27m" |
|
#define | Color_RESET_TERMINAL |
|
#define | Color_RESET "\x1b[0m" /* reset all */ |
|
#define | Color_RESET_NOBG "\x1b[27;22;24;25;28;39m" /* Reset everything except background (order is important) */ |
|
#define | Color_RESET_BG "\x1b[49m" |
|
#define | Color_RESET_ALL "\x1b[0m\x1b[49m" |
|
#define | Color_BLACK "\x1b[30m" |
|
#define | Color_BGBLACK "\x1b[40m" |
|
#define | Color_RED "\x1b[31m" |
|
#define | Color_BGRED "\x1b[41m" |
|
#define | Color_WHITE "\x1b[37m" |
|
#define | Color_BGWHITE "\x1b[47m" |
|
#define | Color_GREEN "\x1b[32m" |
|
#define | Color_BGGREEN "\x1b[42m" |
|
#define | Color_MAGENTA "\x1b[35m" |
|
#define | Color_BGMAGENTA "\x1b[45m" |
|
#define | Color_YELLOW "\x1b[33m" |
|
#define | Color_BGYELLOW "\x1b[43m" |
|
#define | Color_CYAN "\x1b[36m" |
|
#define | Color_BGCYAN "\x1b[46m" |
|
#define | Color_BLUE "\x1b[34m" |
|
#define | Color_BGBLUE "\x1b[44m" |
|
#define | Color_GRAY "\x1b[90m" |
|
#define | Color_BGGRAY "\x1b[100m" |
|
#define | Color_BBLACK Color_GRAY |
|
#define | Color_BBGBLACK Color_BGGRAY |
|
#define | Color_BRED "\x1b[91m" |
|
#define | Color_BBGRED "\x1b[101m" |
|
#define | Color_BWHITE "\x1b[97m" |
|
#define | Color_BBGWHITE "\x1b[107m" |
|
#define | Color_BGREEN "\x1b[92m" |
|
#define | Color_BBGGREEN "\x1b[102m" |
|
#define | Color_BMAGENTA "\x1b[95m" |
|
#define | Color_BBGMAGENTA "\x1b[105m" |
|
#define | Color_BYELLOW "\x1b[93m" |
|
#define | Color_BBGYELLOW "\x1b[103m" |
|
#define | Color_BCYAN "\x1b[96m" |
|
#define | Color_BBGCYAN "\x1b[106m" |
|
#define | Color_BBLUE "\x1b[94m" |
|
#define | Color_BBGBLUE "\x1b[104m" |
|
#define | RZCOLOR(a, r, g, b, bgr, bgg, bgb, id16) (RzColor) { 0, a, r, g, b, bgr, bgg, bgb, id16 } |
|
#define | RzColor_NULL RZCOLOR(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, -1) |
|
#define | RzColor_BLACK RZCOLOR(ALPHA_FG, 12, 12, 12, 0x00, 0x00, 0x00, 0) |
|
#define | RzColor_BGBLACK RZCOLOR(ALPHA_BG, 12, 12, 12, 0x00, 0x00, 0x00, 0) |
|
#define | RzColor_RED RZCOLOR(ALPHA_FG, 197, 15, 31, 0x00, 0x00, 0x00, 1) |
|
#define | RzColor_BGRED RZCOLOR(ALPHA_BG, 197, 15, 31, 0x00, 0x00, 0x00, 1) |
|
#define | RzColor_WHITE RZCOLOR(ALPHA_FG, 204, 204, 204, 0x00, 0x00, 0x00, 7) |
|
#define | RzColor_BGWHITE RZCOLOR(ALPHA_BG, 204, 204, 204, 0x00, 0x00, 0x00, 7) |
|
#define | RzColor_GREEN RZCOLOR(ALPHA_FG, 19, 161, 14, 0x00, 0x00, 0x00, 2) |
|
#define | RzColor_BGGREEN RZCOLOR(ALPHA_BG, 19, 161, 14, 0x00, 0x00, 0x00, 2) |
|
#define | RzColor_MAGENTA RZCOLOR(ALPHA_FG, 136, 23, 152, 0x00, 0x00, 0x00, 5) |
|
#define | RzColor_BGMAGENTA RZCOLOR(ALPHA_BG, 136, 23, 152, 0x00, 0x00, 0x00, 5) |
|
#define | RzColor_YELLOW RZCOLOR(ALPHA_FG, 193, 156, 0, 0x00, 0x00, 0x00, 3) |
|
#define | RzColor_BGYELLOW RZCOLOR(ALPHA_BG, 193, 156, 0, 0x00, 0x00, 0x00, 3) |
|
#define | RzColor_CYAN RZCOLOR(ALPHA_FG, 58, 150, 221, 0x00, 0x00, 0x00, 6) |
|
#define | RzColor_BGCYAN RZCOLOR(ALPHA_BG, 58, 150, 221, 0x00, 0x00, 0x00, 6) |
|
#define | RzColor_BLUE RZCOLOR(ALPHA_FG, 0, 55, 218, 0x00, 0x00, 0x00, 4) |
|
#define | RzColor_BGBLUE RZCOLOR(ALPHA_BG, 0, 55, 218, 0x00, 0x00, 0x00, 4) |
|
#define | RzColor_BBLACK RZCOLOR(ALPHA_FG, 118, 118, 118, 0x00, 0x00, 0x00, 8) |
|
#define | RzColor_BBGBLACK RZCOLOR(ALPHA_BG, 118, 118, 118, 0x00, 0x00, 0x00, 8) |
|
#define | RzColor_BRED RZCOLOR(ALPHA_FG, 231, 72, 86, 0x00, 0x00, 0x00, 9) |
|
#define | RzColor_BBGRED RZCOLOR(ALPHA_BG, 231, 72, 86, 0x00, 0x00, 0x00, 9) |
|
#define | RzColor_BWHITE RZCOLOR(ALPHA_FG, 242, 242, 242, 0x00, 0x00, 0x00, 15) |
|
#define | RzColor_BBGWHITE RZCOLOR(ALPHA_BG, 242, 242, 242, 0x00, 0x00, 0x00, 15) |
|
#define | RzColor_BGREEN RZCOLOR(ALPHA_FG, 22, 198, 12, 0x00, 0x00, 0x00, 10) |
|
#define | RzColor_BBGGREEN RZCOLOR(ALPHA_BG, 22, 198, 12, 0x00, 0x00, 0x00, 10) |
|
#define | RzColor_BMAGENTA RZCOLOR(ALPHA_FG, 180, 0, 158, 0x00, 0x00, 0x00, 13) |
|
#define | RzColor_BBGMAGENTA RZCOLOR(ALPHA_BG, 180, 0, 158, 0x00, 0x00, 0x00, 13) |
|
#define | RzColor_BYELLOW RZCOLOR(ALPHA_FG, 249, 241, 165, 0x00, 0x00, 0x00, 11) |
|
#define | RzColor_BBGYELLOW RZCOLOR(ALPHA_BG, 249, 241, 165, 0x00, 0x00, 0x00, 11) |
|
#define | RzColor_BCYAN RZCOLOR(ALPHA_FG, 97, 214, 214, 0x00, 0x00, 0x00, 14) |
|
#define | RzColor_BBGCYAN RZCOLOR(ALPHA_BG, 97, 214, 214, 0x00, 0x00, 0x00, 14) |
|
#define | RzColor_BBLUE RZCOLOR(ALPHA_FG, 59, 120, 255, 0x00, 0x00, 0x00, 12) |
|
#define | RzColor_BBGBLUE RZCOLOR(ALPHA_BG, 59, 120, 255, 0x00, 0x00, 0x00, 12) |
|
#define | RzColor_GRAY RzColor_BBLACK |
|
#define | RzColor_BGGRAY RzColor_BBGBLACK |
|
#define | Colors_PLAIN |
|
#define | DOT_STYLE_NORMAL 0 |
|
#define | DOT_STYLE_CONDITIONAL 1 |
|
#define | DOT_STYLE_BACKEDGE 2 |
|
#define | LINE_VERT 0 |
|
#define | LINE_CROSS 1 |
|
#define | LINE_HORIZ 2 |
|
#define | LINE_UP 3 |
|
#define | CORNER_TL 6 |
|
#define | CORNER_BR 4 |
|
#define | CORNER_BL 5 |
|
#define | CORNER_TR 6 |
|
#define | ARROW_RIGHT 8 |
|
#define | ARROW_LEFT 9 |
|
#define | SELF_LOOP 10 |
|
#define | RZ_LINE_BUFSIZE 4096 |
|
#define | RZ_LINE_HISTSIZE 256 |
|
#define | RZ_EDGES_X_INC 4 |
|
#define | RZ_SELWIDGET_MAXH 15 |
|
#define | RZ_SELWIDGET_MAXW 30 |
|
#define | RZ_SELWIDGET_DIR_UP 0 |
|
#define | RZ_SELWIDGET_DIR_DOWN 1 |
|