1998-02-27 07:54:42 +03:00
|
|
|
/* Color setup
|
|
|
|
Copyright (C) 1994 Miguel de Icaza.
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "tty.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
#include "global.h"
|
1998-02-27 07:54:42 +03:00
|
|
|
#include "setup.h" /* For the externs */
|
|
|
|
#include "color.h"
|
|
|
|
#include "x.h"
|
|
|
|
|
|
|
|
/* "$Id$" */
|
|
|
|
|
|
|
|
/* To avoid excessive calls to ncurses' has_colors () */
|
|
|
|
int hascolors = 0;
|
|
|
|
|
|
|
|
/* Set to force black and white display at program startup */
|
|
|
|
int disable_colors = 0;
|
|
|
|
|
|
|
|
/* Set if we are actually using colors */
|
|
|
|
int use_colors = 0;
|
|
|
|
|
|
|
|
int dialog_colors [4];
|
|
|
|
|
|
|
|
#define ELEMENTS(arr) ( sizeof(arr) / sizeof((arr)[0]) )
|
|
|
|
|
1998-04-24 22:52:40 +04:00
|
|
|
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#ifdef HAVE_GNOME
|
1998-04-24 22:52:40 +04:00
|
|
|
# define CTYPE GdkColor *
|
1998-02-27 07:54:42 +03:00
|
|
|
void init_pair (int, CTYPE, CTYPE);
|
|
|
|
#else
|
1998-04-24 22:52:40 +04:00
|
|
|
# ifdef HAVE_SLANG
|
|
|
|
# define CTYPE char *
|
|
|
|
# else
|
|
|
|
# define CTYPE int
|
|
|
|
# define color_map_fg(n) (color_map[n].fg % COLORS)
|
|
|
|
# define color_map_bg(n) (color_map[n].bg % COLORS)
|
|
|
|
# endif
|
1998-02-27 07:54:42 +03:00
|
|
|
#endif
|
|
|
|
|
1998-05-17 07:27:53 +04:00
|
|
|
struct colorpair {
|
1998-04-24 22:52:40 +04:00
|
|
|
char *name; /* Name of the entry */
|
|
|
|
CTYPE fg; /* foreground color */
|
|
|
|
CTYPE bg; /* background color */
|
|
|
|
};
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
#ifndef color_map_fg
|
|
|
|
# define color_map_fg(n) color_map[n].fg
|
|
|
|
# define color_map_bg(n) color_map[n].bg
|
|
|
|
#endif
|
|
|
|
|
1998-04-24 19:18:08 +04:00
|
|
|
struct colorpair color_map [] = {
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "normal=", 0, 0 }, /* normal */ /* 1 */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "selected=", 0, 0 }, /* selected */
|
|
|
|
{ "marked=", 0, 0 }, /* marked */
|
|
|
|
{ "markselect=", 0, 0 }, /* marked/selected */
|
|
|
|
{ "errors=", 0, 0 }, /* errors */
|
|
|
|
{ "menu=", 0, 0 }, /* menu entry */
|
|
|
|
{ "reverse=", 0, 0 }, /* reverse */
|
|
|
|
|
|
|
|
/* Dialog colors */
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "dnormal=", 0, 0 }, /* Dialog normal */ /* 8 */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "dfocus=", 0, 0 }, /* Dialog focused */
|
|
|
|
{ "dhotnormal=", 0, 0 }, /* Dialog normal/hot */
|
|
|
|
{ "dhotfocus=", 0, 0 }, /* Dialog focused/hot */
|
|
|
|
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "viewunderline=", 0, 0 }, /* _\b? sequence in view, underline in editor */
|
|
|
|
{ "menusel=", 0, 0 }, /* Menu selected color */ /* 13 */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "menuhot=", 0, 0 }, /* Color for menu hotkeys */
|
|
|
|
{ "menuhotsel=", 0, 0 }, /* Menu hotkeys/selected entry */
|
|
|
|
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "helpnormal=", 0, 0 }, /* Help normal */ /* 16 */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "helpitalic=", 0, 0 }, /* Italic in help */
|
|
|
|
{ "helpbold=", 0, 0 }, /* Bold in help */
|
|
|
|
{ "helplink=", 0, 0 }, /* Not selected hyperlink */
|
|
|
|
{ "helpslink=", 0, 0 }, /* Selected hyperlink */
|
|
|
|
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "gauge=", 0, 0 }, /* Color of the progress bar (percentage) *//* 21 */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "input=", 0, 0 },
|
|
|
|
|
|
|
|
/* Per file types colors */
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "directory=", 0, 0 }, /* 23 */
|
|
|
|
{ "executable=", 0, 0 },
|
|
|
|
{ "link=", 0, 0 }, /* symbolic link (neither stalled nor link to directory) */
|
|
|
|
{ "stalledlink=",0, 0 }, /* stalled symbolic link */
|
1998-02-27 07:54:42 +03:00
|
|
|
{ "device=", 0, 0 },
|
1998-12-29 19:52:49 +03:00
|
|
|
{ "special=", 0, 0 }, /* sockets, fifo */
|
|
|
|
{ "core=", 0, 0 }, /* core files */ /* 29 */
|
1998-12-11 01:04:54 +03:00
|
|
|
|
1998-12-29 19:52:49 +03:00
|
|
|
{ 0, 0, 0 }, /* not usable (DEFAULT_COLOR_INDEX) *//* 30 */
|
|
|
|
{ 0, 0, 0 }, /* unused */
|
|
|
|
{ 0, 0, 0 }, /* not usable (A_REVERSE) */
|
|
|
|
{ 0, 0, 0 }, /* not usable (A_REVERSE_BOLD) */
|
|
|
|
|
|
|
|
/* editor colors start at 34 */
|
|
|
|
{ "editnormal=", 0, 0 }, /* normal */ /* 34 */
|
1998-12-11 01:04:54 +03:00
|
|
|
{ "editbold=", 0, 0 }, /* search->found */
|
|
|
|
{ "editmarked=", 0, 0 }, /* marked/selected */
|
1998-02-27 07:54:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct color_table_s {
|
|
|
|
char *name;
|
|
|
|
int value;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct color_table_s color_table [] = {
|
|
|
|
{ "black", COLOR_BLACK },
|
|
|
|
{ "gray", COLOR_BLACK | A_BOLD },
|
|
|
|
{ "red", COLOR_RED },
|
|
|
|
{ "brightred", COLOR_RED | A_BOLD },
|
|
|
|
{ "green", COLOR_GREEN },
|
|
|
|
{ "brightgreen", COLOR_GREEN | A_BOLD },
|
|
|
|
{ "brown", COLOR_YELLOW },
|
|
|
|
{ "yellow", COLOR_YELLOW | A_BOLD },
|
|
|
|
{ "blue", COLOR_BLUE },
|
|
|
|
{ "brightblue", COLOR_BLUE | A_BOLD },
|
|
|
|
{ "magenta", COLOR_MAGENTA },
|
|
|
|
{ "brightmagenta", COLOR_MAGENTA | A_BOLD },
|
|
|
|
{ "cyan", COLOR_CYAN },
|
|
|
|
{ "brightcyan", COLOR_CYAN | A_BOLD },
|
|
|
|
{ "lightgray", COLOR_WHITE },
|
1998-10-30 04:28:09 +03:00
|
|
|
{ "white", COLOR_WHITE | A_BOLD },
|
|
|
|
{ "default", 0 } /* hack for transparent background */
|
1998-02-27 07:54:42 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef HAVE_GNOME
|
|
|
|
void get_color (char *cpp, CTYPE *colp);
|
|
|
|
#else
|
|
|
|
# ifdef HAVE_SLANG
|
|
|
|
# define color_value(i) color_table [i].name
|
|
|
|
# define color_name(i) color_table [i].name
|
|
|
|
# else
|
|
|
|
# define color_value(i) color_table [i].value
|
|
|
|
# define color_name(i) color_table [i].name
|
|
|
|
# endif
|
|
|
|
|
|
|
|
static void get_color (char *cpp, CTYPE *colp)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < ELEMENTS(color_table); i++){
|
|
|
|
if (strcmp (cpp, color_name (i)) == 0){
|
|
|
|
*colp = color_value (i);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* HAVE_GNOME */
|
|
|
|
|
|
|
|
static void get_two_colors (char **cpp, struct colorpair *colorpairp)
|
|
|
|
{
|
|
|
|
char *p = *cpp;
|
|
|
|
int state;
|
|
|
|
|
|
|
|
state = 0;
|
|
|
|
|
|
|
|
for (; *p; p++){
|
|
|
|
if (*p == ':'){
|
|
|
|
*p = 0;
|
|
|
|
get_color (*cpp, state ? &colorpairp->bg : &colorpairp->fg);
|
|
|
|
*p = ':';
|
|
|
|
*cpp = p + 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*p == ','){
|
|
|
|
state = 1;
|
|
|
|
*p = 0;
|
|
|
|
get_color (*cpp, &colorpairp->fg);
|
|
|
|
*p = ',';
|
|
|
|
*cpp = p + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
get_color (*cpp, state ? &colorpairp->bg : &colorpairp->fg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void configure_colors_string (char *the_color_string)
|
|
|
|
{
|
1998-04-15 10:05:34 +04:00
|
|
|
char *color_string, *p;
|
1998-02-27 07:54:42 +03:00
|
|
|
int i, found;
|
|
|
|
|
|
|
|
if (!the_color_string)
|
|
|
|
return;
|
|
|
|
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
p = color_string = g_strdup (the_color_string);
|
1998-02-27 07:54:42 +03:00
|
|
|
while (color_string && *color_string){
|
|
|
|
while (*color_string == ' ' || *color_string == '\t')
|
|
|
|
color_string++;
|
|
|
|
|
|
|
|
found = 0;
|
|
|
|
for (i = 0; i < ELEMENTS(color_map); i++){
|
1998-12-29 19:52:49 +03:00
|
|
|
int klen;
|
|
|
|
|
|
|
|
if (!color_map [i].name)
|
|
|
|
continue;
|
|
|
|
klen = strlen (color_map [i].name);
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
if (strncmp (color_string, color_map [i].name, klen) == 0){
|
|
|
|
color_string += klen;
|
|
|
|
get_two_colors (&color_string, &color_map [i]);
|
|
|
|
found = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found){
|
|
|
|
while (*color_string && *color_string != ':')
|
|
|
|
color_string++;
|
|
|
|
if (*color_string)
|
|
|
|
color_string++;
|
|
|
|
}
|
|
|
|
}
|
Glibing..... (2)
Wed Jan 27 03:17:44 1999 Timur Bakeyev <mc@bat.ru>
* Converted memory managment to Glib. Now we use g_new()/g_malloc()/
g_strdup()/g_free() routings. Also, copy_strings() replaced by
g_strconcat(), strcasecmp() -> g_strcasecmp(),and sprintf() by
g_snprintf().
* Some sequences of malloc()/sprintf() changed to g_strdup_printf().
* mad.[ch]: Modified, to work with new GLib's memory managment. Fixed
a missing #undef for tempnam, which caused dead loop. Add several new
functions to emulate GLib memory managment.
*main.c, mad.[ch]: Add a new switch "-M", which allows to redirect MAD
messages to the file.
* util.[ch], utilunix.c: Modified, deleted our variants of strcasecmp()
and strdup() - we have g_ equivalences. Remove get_full_name() - it is
similar to concat_dir_and_file(). Some other tricks with g_* functions.
* global.h: Modified, extended. Now it is main memory mangment include -
i.e. all inclusions of <stdlib.h>, <malloc.h>, <glib.h>, "fs.h", "mem.h",
"util.h" and "mad.h" done there. This elimanates problem with proper or-
der of #include's.
* All around the source - changed order of #include's, most of them gone
to global.h (see above), minor changes, like "0" -> NULL in string func-
tions.
1999-01-27 04:08:30 +03:00
|
|
|
g_free (p);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void configure_colors (void)
|
|
|
|
{
|
|
|
|
extern char *command_line_colors;
|
|
|
|
extern char *default_edition_colors;
|
|
|
|
|
|
|
|
configure_colors_string (default_edition_colors);
|
|
|
|
configure_colors_string (setup_color_string);
|
|
|
|
configure_colors_string (term_color_string);
|
|
|
|
configure_colors_string (getenv ("MC_COLOR_TABLE"));
|
|
|
|
configure_colors_string (command_line_colors);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef HAVE_SLANG
|
1998-12-29 19:52:49 +03:00
|
|
|
#define MAX_PAIRS 34
|
1998-02-27 07:54:42 +03:00
|
|
|
int attr_pairs [MAX_PAIRS];
|
|
|
|
#endif
|
|
|
|
|
1998-05-16 02:54:54 +04:00
|
|
|
static void
|
|
|
|
load_dialog_colors (void)
|
|
|
|
{
|
|
|
|
dialog_colors [0] = COLOR_NORMAL;
|
|
|
|
dialog_colors [1] = COLOR_FOCUS;
|
|
|
|
dialog_colors [2] = COLOR_HOT_NORMAL;
|
|
|
|
dialog_colors [3] = COLOR_HOT_FOCUS;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef HAVE_X
|
|
|
|
void
|
|
|
|
init_colors (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
use_colors = 1;
|
|
|
|
configure_colors ();
|
1998-12-29 19:52:49 +03:00
|
|
|
for (i = 0; i < ELEMENTS (color_map); i++)
|
|
|
|
if (color_map [i].name)
|
|
|
|
init_pair (i+1, color_map_fg(i), color_map_bg(i));
|
1998-05-16 02:54:54 +04:00
|
|
|
load_dialog_colors ();
|
|
|
|
}
|
|
|
|
#else
|
1998-02-27 07:54:42 +03:00
|
|
|
void init_colors (void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
hascolors = has_colors ();
|
|
|
|
|
|
|
|
if (!disable_colors && hascolors){
|
|
|
|
use_colors = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (use_colors){
|
1998-12-02 08:18:20 +03:00
|
|
|
#ifndef HAVE_X
|
1998-02-27 07:54:42 +03:00
|
|
|
start_color ();
|
1998-12-02 08:18:20 +03:00
|
|
|
#endif
|
1998-02-27 07:54:42 +03:00
|
|
|
configure_colors ();
|
|
|
|
|
|
|
|
#ifndef HAVE_SLANG
|
|
|
|
if (ELEMENTS (color_map) > MAX_PAIRS){
|
|
|
|
/* This message should only be seen by the developers */
|
|
|
|
fprintf (stderr,
|
|
|
|
"Too many defined colors, resize MAX_PAIRS on color.c");
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
1999-01-10 11:55:35 +03:00
|
|
|
#if defined HAVE_SLANG && !defined(HAS_DIRECT_COLOR_ACCESS)
|
1998-12-29 19:52:49 +03:00
|
|
|
if (use_colors) { /* Hack to make COLOR_PAIR(DEFAULT_COLOR_INDEX)
|
|
|
|
be the default fg/bg of the terminal */
|
1998-02-27 07:54:42 +03:00
|
|
|
char *Norm_Vid = SLtt_tgetstr ("me");
|
|
|
|
|
|
|
|
if (Norm_Vid == NULL)
|
|
|
|
Norm_Vid = SLtt_tgetstr ("se");
|
|
|
|
if (Norm_Vid == NULL)
|
|
|
|
Norm_Vid = "\033[0m";
|
1998-12-29 19:52:49 +03:00
|
|
|
SLtt_set_color_esc (DEFAULT_COLOR_INDEX, Norm_Vid);
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
for (i = 0; i < ELEMENTS (color_map); i++){
|
1998-12-29 19:52:49 +03:00
|
|
|
if (!color_map [i].name)
|
|
|
|
continue;
|
|
|
|
|
1998-02-27 07:54:42 +03:00
|
|
|
init_pair (i+1, color_map_fg(i), color_map_bg(i));
|
|
|
|
|
|
|
|
#ifndef HAVE_SLANG
|
|
|
|
/*
|
|
|
|
* As a convenience, for the SVr4 curses configuration, we have
|
|
|
|
* OR'd the A_BOLD attribute to the color number. We'll need that
|
|
|
|
* later, to set the attribute with the colors.
|
|
|
|
*/
|
|
|
|
attr_pairs [i+1] = color_map [i].fg & A_BOLD;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
1998-05-16 02:54:54 +04:00
|
|
|
load_dialog_colors ();
|
1998-02-27 07:54:42 +03:00
|
|
|
}
|
1998-05-16 02:54:54 +04:00
|
|
|
#endif
|
1998-02-27 07:54:42 +03:00
|
|
|
|
|
|
|
void toggle_color_mode (void)
|
|
|
|
{
|
|
|
|
if (hascolors)
|
|
|
|
use_colors = !use_colors;
|
|
|
|
}
|
|
|
|
|