123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /*
- Skins engine.
- Work with colors - backward compability
- Copyright (C) 2009 The Free Software Foundation, Inc.
- Written by:
- Slava Zanko <slavazanko@gmail.com>, 2009.
- This file is part of the Midnight Commander.
- The Midnight Commander 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.
- The Midnight Commander 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., 51 Franklin Street, Fifth Floor, Boston,
- MA 02110-1301, USA.
- */
- #include <config.h>
- #include <stdlib.h>
- #include <sys/types.h> /* size_t */
- #include "lib/tty/color.h"
- #include "internal.h"
- #include "src/setup.h"
- /*** global variables ****************************************************************************/
- /*** file scope macro definitions ****************************************************************/
- /*** file scope type declarations ****************************************************************/
- typedef struct mc_skin_colors_old_struct
- {
- const char *old_color;
- const char *group;
- const char *key;
- } mc_skin_colors_old_t;
- /*** file scope variables ************************************************************************/
- static const mc_skin_colors_old_t old_colors[] = {
- {"normal", "core", "_default_"},
- {"marked", "core", "marked"},
- {"selected", "core", "selected"},
- {"markselect", "core", "markselect"},
- {"reverse", "core", "reverse"},
- {"dnormal", "dialog", "_default_"},
- {"dfocus", "dialog", "dfocus"},
- {"dhotnormal", "dialog", "dhotnormal"},
- {"dhotfocus", "dialog", "dhotfocus"},
- {"errors", "error", "_default_"},
- {"errdhotnormal", "error", "errdhotnormal"},
- {"errdhotfocus", "error", "errdhotfocus"},
- {"menunormal", "menu", "_default_"},
- {"menuhot", "menu", "menuhot"},
- {"menusel", "menu", "menusel"},
- {"menuhotsel", "menu", "menuhotsel"},
- {"menuinactive", "menu", "menuinactive"},
- {"gauge", "core", "gauge"},
- {"input", "core", "input"},
- {"inputmark", "core", "inputmark"},
- {"inputunchanged", "core", "inputunchanged"},
- {"commandlinemark", "core", "commandlinemark"},
- {"helpnormal", "help", "_default_"},
- {"helpitalic", "help", "helpitalic"},
- {"helpbold", "help", "helpbold"},
- {"helplink", "help", "helplink"},
- {"helpslink", "help", "helpslink"},
- {"viewunderline", "viewer", "viewunderline"},
- {"editnormal", "editor", "_default_"},
- {"editbold", "editor", "editbold"},
- {"editmarked", "editor", "editmarked"},
- {"editwhitespace", "editor", "editwhitespace"},
- {"editlinestate", "editor", "editlinestate"},
- {NULL, NULL, NULL}
- };
- /*** file scope functions ************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- static gboolean
- mc_skin_colors_old_transform (const char *old_color, const char **group, const char **key)
- {
- int lc_index;
- if (old_color != NULL)
- for (lc_index = 0; old_colors[lc_index].old_color; lc_index++)
- if (strcasecmp (old_color, old_colors[lc_index].old_color) == 0)
- {
- if (group != NULL)
- *group = old_colors[lc_index].group;
- if (key != NULL)
- *key = old_colors[lc_index].key;
- return TRUE;
- }
- return FALSE;
- }
- /* --------------------------------------------------------------------------------------------- */
- static void
- mc_skin_colors_old_configure_one (mc_skin_t * mc_skin, const char *the_color_string)
- {
- gchar **colors, **orig_colors;
- gchar **key_val;
- const gchar *skin_group, *skin_key;
- gchar *skin_val;
- if (the_color_string == NULL)
- return;
- orig_colors = colors = g_strsplit (the_color_string, ":", -1);
- if (colors == NULL)
- return;
- for (; *colors; colors++)
- {
- key_val = g_strsplit_set (*colors, "=,", 3);
- if (!key_val)
- continue;
- if (key_val[1] == NULL
- || !mc_skin_colors_old_transform (key_val[0], &skin_group, &skin_key))
- {
- g_strfreev (key_val);
- continue;
- }
- if (key_val[2] != NULL)
- skin_val = g_strdup_printf ("%s;%s", key_val[1], key_val[2]);
- else
- skin_val = g_strdup_printf ("%s;", key_val[1]);
- mc_config_set_string (mc_skin->config, skin_group, skin_key, skin_val);
- g_free (skin_val);
- g_strfreev (key_val);
- }
- g_strfreev (orig_colors);
- }
- /* --------------------------------------------------------------------------------------------- */
- /*** public functions ****************************************************************************/
- /* --------------------------------------------------------------------------------------------- */
- void
- mc_skin_colors_old_configure (mc_skin_t * mc_skin)
- {
- mc_skin_colors_old_configure_one (mc_skin, setup_color_string);
- mc_skin_colors_old_configure_one (mc_skin, term_color_string);
- mc_skin_colors_old_configure_one (mc_skin, getenv ("MC_COLOR_TABLE"));
- mc_skin_colors_old_configure_one (mc_skin, command_line_colors);
- }
- /* --------------------------------------------------------------------------------------------- */
|