2009-05-10 19:01:15 +04:00
|
|
|
|
|
|
|
/** \file color-slang.h
|
|
|
|
* \brief Header: S-Lang-specific color setup
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MC_COLOR_SLANG_H
|
|
|
|
#define MC_COLOR_SLANG_H
|
|
|
|
|
2010-01-07 02:57:27 +03:00
|
|
|
#include "tty-slang.h" /* S-Lang headers */
|
2009-05-13 17:05:55 +04:00
|
|
|
|
|
|
|
enum {
|
|
|
|
COLOR_BLACK = 0,
|
|
|
|
COLOR_RED,
|
|
|
|
COLOR_GREEN,
|
|
|
|
COLOR_YELLOW,
|
|
|
|
COLOR_BLUE,
|
|
|
|
COLOR_MAGENTA,
|
|
|
|
COLOR_CYAN,
|
|
|
|
COLOR_WHITE
|
|
|
|
};
|
|
|
|
|
|
|
|
/* When using Slang with color, we have all the indexes free but
|
|
|
|
* those defined here (A_BOLD, A_UNDERLINE, A_REVERSE, A_BOLD_REVERSE)
|
|
|
|
*/
|
|
|
|
|
2009-10-22 15:03:01 +04:00
|
|
|
#ifndef A_BOLD
|
|
|
|
#define A_BOLD SLTT_BOLD_MASK
|
|
|
|
#endif /* A_BOLD */
|
2009-05-13 17:05:55 +04:00
|
|
|
|
2009-09-17 02:07:04 +04:00
|
|
|
#endif /* MC_COLOR_SLANG_H */
|