mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
e593572bb9
Forget the old limit of 8 background and 16 foreground colors. From now on Midnight Commander can use all the 256 colors, as your favorite terminal emulator supports them - or not, in which case it's not going to stay your favorite terminal for long. Signed-off-by: Slava Zanko <slavazanko@gmail.com>
52 lines
1.4 KiB
C
52 lines
1.4 KiB
C
|
|
/** \file color-slang.h
|
|
* \brief Header: S-Lang-specific color setup
|
|
*/
|
|
|
|
#ifndef MC__COLOR_SLANG_H
|
|
#define MC__COLOR_SLANG_H
|
|
|
|
#include "tty-slang.h" /* S-Lang headers */
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/* When using Slang with color, we have all the indexes free but
|
|
* those defined here (A_BOLD, A_UNDERLINE, A_REVERSE, A_BLINK)
|
|
*/
|
|
|
|
#ifndef A_BOLD
|
|
#define A_BOLD SLTT_BOLD_MASK
|
|
#endif /* A_BOLD */
|
|
#ifndef A_UNDERLINE
|
|
#define A_UNDERLINE SLTT_ULINE_MASK
|
|
#endif /* A_UNDERLINE */
|
|
#ifndef A_REVERSE
|
|
#define A_REVERSE SLTT_REV_MASK
|
|
#endif /* A_REVERSE */
|
|
#ifndef A_BLINK
|
|
#define A_BLINK SLTT_BLINK_MASK
|
|
#endif /* A_BLINK */
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
enum
|
|
{
|
|
COLOR_BLACK = 0,
|
|
COLOR_RED,
|
|
COLOR_GREEN,
|
|
COLOR_YELLOW,
|
|
COLOR_BLUE,
|
|
COLOR_MAGENTA,
|
|
COLOR_CYAN,
|
|
COLOR_WHITE
|
|
};
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
#endif /* MC_COLOR_SLANG_H */
|