X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fconfig.c;h=7c3517b43b71dda53ce4f96ccf1b8b12d09c0787;hb=18daca5ab3402c2c3f8ae44df5cec89928d35afe;hp=2ff77f548a6122fa2ed3fcf944cb085dd03c704a;hpb=54c21917514f31f3c69ef747e609e93dc4b38dbe;p=chaz%2Ftint2 diff --git a/src/config.c b/src/config.c index 2ff77f5..7c3517b 100644 --- a/src/config.c +++ b/src/config.c @@ -3,7 +3,7 @@ * Tint2 : read/write config file * * Copyright (C) 2007 PÃ¥l Staurland (staura@gmail.com) -* Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr) +* Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr) from Omega distribution * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version 2 @@ -77,45 +77,6 @@ void cleanup_config() } -void extract_values (const char *value, char **value1, char **value2, char **value3) -{ - char *b=0, *c=0; - - if (*value1) free (*value1); - if (*value2) free (*value2); - if (*value3) free (*value3); - - if ((b = strchr (value, ' '))) { - b[0] = '\0'; - b++; - } - else { - *value2 = 0; - *value3 = 0; - } - *value1 = strdup (value); - g_strstrip(*value1); - - if (b) { - if ((c = strchr (b, ' '))) { - c[0] = '\0'; - c++; - } - else { - c = 0; - *value3 = 0; - } - *value2 = strdup (b); - g_strstrip(*value2); - } - - if (c) { - *value3 = strdup (c); - g_strstrip(*value3); - } -} - - void get_action (char *event, int *action) { if (strcmp (event, "none") == 0) @@ -257,7 +218,7 @@ void add_entry (char *key, char *value) if (snapshot_path == 0) systray_enabled = 1; } - if (panel_items_order[j] == 'C') + if (panel_items_order[j] == 'C') clock_enabled = 1; } } @@ -466,15 +427,36 @@ void add_entry (char *key, char *value) else if (strcmp (key, "taskbar_name") == 0) { taskbarname_enabled = atoi (value); } + else if (strcmp (key, "taskbar_name_padding") == 0) { + extract_values(value, &value1, &value2, &value3); + panel_config.g_taskbar.area_name.paddingxlr = panel_config.g_taskbar.area_name.paddingx = atoi (value1); + } else if (strcmp (key, "taskbar_name_background_id") == 0) { + int id = atoi (value); + id = (id < backgrounds->len && id >= 0) ? id : 0; + panel_config.g_taskbar.background_name[TASKBAR_NORMAL] = &g_array_index(backgrounds, Background, id); + if (panel_config.g_taskbar.background_name[TASKBAR_ACTIVE] == 0) + panel_config.g_taskbar.background_name[TASKBAR_ACTIVE] = panel_config.g_taskbar.background_name[TASKBAR_NORMAL]; } else if (strcmp (key, "taskbar_name_active_background_id") == 0) { + int id = atoi (value); + id = (id < backgrounds->len && id >= 0) ? id : 0; + panel_config.g_taskbar.background_name[TASKBAR_ACTIVE] = &g_array_index(backgrounds, Background, id); } else if (strcmp (key, "taskbar_name_font") == 0) { + taskbarname_font_desc = pango_font_description_from_string (value); } else if (strcmp (key, "taskbar_name_font_color") == 0) { + extract_values(value, &value1, &value2, &value3); + get_color (value1, taskbarname_font.color); + if (value2) taskbarname_font.alpha = (atoi (value2) / 100.0); + else taskbarname_font.alpha = 0.5; } else if (strcmp (key, "taskbar_name_active_font_color") == 0) { + extract_values(value, &value1, &value2, &value3); + get_color (value1, taskbarname_active_font.color); + if (value2) taskbarname_active_font.alpha = (atoi (value2) / 100.0); + else taskbarname_active_font.alpha = 0.5; } /* Task */ @@ -536,9 +518,22 @@ void add_entry (char *key, char *value) panel_config.g_task.config_background_mask |= (1<