Updated Italian translation
[midnight-commander.git] / lib / tty / color.c
blob881e708c676d58bf96614141171d0c75921da578
1 /*
2 Color setup.
3 Interface functions.
5 Copyright (C) 1994-2024
6 Free Software Foundation, Inc.
8 Written by:
9 Andrew Borodin <aborodin@vmail.ru>, 2009
10 Slava Zanko <slavazanko@gmail.com>, 2009
11 Egmont Koblinger <egmont@gmail.com>, 2010
13 This file is part of the Midnight Commander.
15 The Midnight Commander is free software: you can redistribute it
16 and/or modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation, either version 3 of the License,
18 or (at your option) any later version.
20 The Midnight Commander is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>.
29 /** \file color.c
30 * \brief Source: color setup
33 #include <config.h>
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <sys/types.h> /* size_t */
40 #include "lib/global.h"
42 #include "tty.h"
43 #include "color.h"
45 #include "color-internal.h"
47 /*** global variables ****************************************************************************/
49 /* *INDENT-OFF* */
50 static tty_color_pair_t tty_color_defaults =
52 .fg = NULL,
53 .bg = NULL,
54 .attrs = NULL,
55 .pair_index = 0
57 /* *INDENT-ON* */
59 /* Set if we are actually using colors */
60 gboolean use_colors = FALSE;
62 /*** file scope macro definitions ****************************************************************/
64 /*** file scope type declarations ****************************************************************/
66 /*** forward declarations (file scope functions) *************************************************/
68 /*** file scope variables ************************************************************************/
70 static GHashTable *mc_tty_color__hashtable = NULL;
72 /* --------------------------------------------------------------------------------------------- */
73 /*** file scope functions ************************************************************************/
74 /* --------------------------------------------------------------------------------------------- */
76 static void
77 mc_color__deinit (tty_color_pair_t *color)
79 g_free (color->fg);
80 g_free (color->bg);
81 g_free (color->attrs);
84 /* --------------------------------------------------------------------------------------------- */
86 static gboolean
87 tty_color_free_temp_cb (gpointer key, gpointer value, gpointer user_data)
89 (void) key;
90 (void) user_data;
92 return ((tty_color_lib_pair_t *) value)->is_temp;
95 /* --------------------------------------------------------------------------------------------- */
97 static gboolean
98 tty_color_get_next_cpn_cb (gpointer key, gpointer value, gpointer user_data)
100 tty_color_lib_pair_t *mc_color_pair = (tty_color_lib_pair_t *) value;
101 size_t cp = GPOINTER_TO_SIZE (user_data);
103 (void) key;
105 return (cp == mc_color_pair->pair_index);
108 /* --------------------------------------------------------------------------------------------- */
110 static size_t
111 tty_color_get_next__color_pair_number (void)
113 size_t cp_count, cp;
115 cp_count = g_hash_table_size (mc_tty_color__hashtable);
116 for (cp = 0; cp < cp_count; cp++)
117 if (g_hash_table_find (mc_tty_color__hashtable, tty_color_get_next_cpn_cb,
118 GSIZE_TO_POINTER (cp)) == NULL)
119 break;
121 return cp;
124 /* --------------------------------------------------------------------------------------------- */
125 /*** public functions ****************************************************************************/
126 /* --------------------------------------------------------------------------------------------- */
128 void
129 tty_init_colors (gboolean disable, gboolean force)
131 tty_color_init_lib (disable, force);
132 mc_tty_color__hashtable = g_hash_table_new_full (g_str_hash, g_str_equal, g_free, g_free);
135 /* --------------------------------------------------------------------------------------------- */
137 void
138 tty_colors_done (void)
140 tty_color_deinit_lib ();
141 mc_color__deinit (&tty_color_defaults);
142 g_hash_table_destroy (mc_tty_color__hashtable);
145 /* --------------------------------------------------------------------------------------------- */
147 gboolean
148 tty_use_colors (void)
150 return use_colors;
153 /* --------------------------------------------------------------------------------------------- */
156 tty_try_alloc_color_pair (const tty_color_pair_t *color, gboolean is_temp)
158 gboolean is_base;
159 gchar *color_pair;
160 tty_color_lib_pair_t *mc_color_pair;
161 int ifg, ibg, attr;
163 is_base = (color->fg == NULL || strcmp (color->fg, "base") == 0);
164 ifg = tty_color_get_index_by_name (is_base ? tty_color_defaults.fg : color->fg);
165 is_base = (color->bg == NULL || strcmp (color->bg, "base") == 0);
166 ibg = tty_color_get_index_by_name (is_base ? tty_color_defaults.bg : color->bg);
167 is_base = (color->attrs == NULL || strcmp (color->attrs, "base") == 0);
168 attr = tty_attr_get_bits (is_base ? tty_color_defaults.attrs : color->attrs);
170 color_pair = g_strdup_printf ("%d.%d.%d", ifg, ibg, attr);
171 if (color_pair == NULL)
172 return 0;
174 mc_color_pair =
175 (tty_color_lib_pair_t *) g_hash_table_lookup (mc_tty_color__hashtable,
176 (gpointer) color_pair);
178 if (mc_color_pair != NULL)
180 g_free (color_pair);
181 return mc_color_pair->pair_index;
184 mc_color_pair = g_try_new0 (tty_color_lib_pair_t, 1);
185 if (mc_color_pair == NULL)
187 g_free (color_pair);
188 return 0;
191 mc_color_pair->is_temp = is_temp;
192 mc_color_pair->fg = ifg;
193 mc_color_pair->bg = ibg;
194 mc_color_pair->attr = attr;
195 mc_color_pair->pair_index = tty_color_get_next__color_pair_number ();
197 tty_color_try_alloc_lib_pair (mc_color_pair);
199 g_hash_table_insert (mc_tty_color__hashtable, (gpointer) color_pair, (gpointer) mc_color_pair);
201 return mc_color_pair->pair_index;
204 /* --------------------------------------------------------------------------------------------- */
206 void
207 tty_color_free_temp (void)
209 g_hash_table_foreach_remove (mc_tty_color__hashtable, tty_color_free_temp_cb, NULL);
212 /* --------------------------------------------------------------------------------------------- */
214 void
215 tty_color_free_all (void)
217 g_hash_table_remove_all (mc_tty_color__hashtable);
220 /* --------------------------------------------------------------------------------------------- */
222 void
223 tty_color_set_defaults (const tty_color_pair_t *color)
225 mc_color__deinit (&tty_color_defaults);
227 tty_color_defaults.fg = g_strdup (color->fg);
228 tty_color_defaults.bg = g_strdup (color->bg);
229 tty_color_defaults.attrs = g_strdup (color->attrs);
230 tty_color_defaults.pair_index = 0;
233 /* --------------------------------------------------------------------------------------------- */