]> Dogcows Code - chaz/tint2/blobdiff - src/config.c
fixed segfault when remove desktop with task
[chaz/tint2] / src / config.c
index 7ccb08396467e6a7f35576f4d7b96d59f093c61e..61178d11918237301720c7f0843579103923f80f 100644 (file)
 #endif
 
 // global path
-char *config_path = 0;
-char *snapshot_path = 0;
+char *config_path;
+char *snapshot_path;
 
 // --------------------------------------------------
 // backward compatibility
-static int old_task_icon_size;
-static int bg_task;
-static int bg_task_active;
-// detect if it's an old config file
-// ==1
+// detect if it's an old config file (==1)
 static int old_config_file;
 
 
-void init_config()
+void default_config()
 {
-       if (backgrounds)
-               g_array_free(backgrounds, 1);
-       backgrounds = g_array_new(0, 0, sizeof(Background));
-
-       // append full transparency background
-       Background transparent_bg;
-       memset(&transparent_bg, 0, sizeof(Background));
-       g_array_append_val(backgrounds, transparent_bg);
-
-       // tint2 could reload config, so we cleanup objects
-       cleanup_systray();
-#ifdef ENABLE_BATTERY
-       cleanup_battery();
-#endif
-       cleanup_clock();
-       cleanup_tooltip();
-
-       // panel's default value
-       if (panel_config.g_task.font_desc) {
-               pango_font_description_free(panel_config.g_task.font_desc);
-       }
-       memset(&panel_config, 0, sizeof(Panel));
-       int i;
-       for (i=0; i<TASK_STATE_COUNT; ++i)
-               panel_config.g_task.alpha[i] = 100;
-       systray.alpha = 100;
-       systray.sort = 3;
+       config_path = 0;
+       snapshot_path = 0;
        old_config_file = 1;
-
-       // window manager's menu default value == false
-       wm_menu = 0;
-       max_tick_urgent = 7;
-
-       // flush pango cache if possible
-       //pango_xft_shutdown_display(server.dsp, server.screen);
-       //PangoFontMap *font_map = pango_xft_get_font_map(server.dsp, server.screen);
-       //pango_fc_font_map_shutdown(font_map);
 }
 
-
 void cleanup_config()
 {
+       if (config_path) g_free(config_path);
+       if (snapshot_path) g_free(snapshot_path);
 }
 
 
@@ -190,6 +153,30 @@ int get_task_status(char* status)
 }
 
 
+int config_get_monitor(char* monitor)
+{
+       if (strcmp(monitor, "all") == 0)
+               return -1;
+       else {
+               char* endptr;
+               int ret_int = strtol(monitor, &endptr, 10);
+               if (*endptr == 0)
+                       return ret_int-1;
+               else {
+                       // monitor specified by name, not by index
+                       int i, j;
+                       for (i=0; i<server.nb_monitor; ++i) {
+                               j = 0;
+                               while (server.monitor[i].names[j] != 0) {
+                                       if (strcmp(monitor, server.monitor[i].names[j++]) == 0)
+                                               return i;
+                               }
+                       }
+               }
+       }
+       return -1;
+}
+
 void add_entry (char *key, char *value)
 {
        char *value1=0, *value2=0, *value3=0;
@@ -221,16 +208,7 @@ void add_entry (char *key, char *value)
 
        /* Panel */
        else if (strcmp (key, "panel_monitor") == 0) {
-               if (strcmp (value, "all") == 0) panel_config.monitor = -1;
-               else {
-                       panel_config.monitor = atoi (value);
-                       if (panel_config.monitor > 0) panel_config.monitor -= 1;
-               }
-               if (panel_config.monitor > (server.nb_monitor-1)) {
-                       // server.nb_monitor minimum value is 1 (see get_monitors())
-                       fprintf(stderr, "warning : monitor not found. tint2 default to all monitors.\n");
-                       panel_config.monitor = 0;
-               }
+               panel_config.monitor = config_get_monitor(value);
        }
        else if (strcmp (key, "panel_size") == 0) {
                extract_values(value, &value1, &value2, &value3);
@@ -300,8 +278,6 @@ void add_entry (char *key, char *value)
                panel_dock = atoi (value);
        else if (strcmp (key, "urgent_nb_of_blink") == 0)
                max_tick_urgent = (atoi (value) * 2) + 1;
-       else if (strcmp (key, "real_transparency") == 0)
-               real_transparency = atoi(value);
        else if (strcmp (key, "panel_layer") == 0) {
                if (strcmp(value, "bottom") == 0)
                        panel_layer = BOTTOM_LAYER;
@@ -367,6 +343,13 @@ void add_entry (char *key, char *value)
                panel_config.battery.area.bg = &g_array_index(backgrounds, Background, id);
 #endif
        }
+       else if (strcmp (key, "battery_hide") == 0) {
+#ifdef ENABLE_BATTERY
+               percentage_hide = atoi (value);
+               if (percentage_hide == 0)
+                       percentage_hide = 101;
+#endif
+       }
 
        /* Clock */
        else if (strcmp (key, "time1_format") == 0) {
@@ -512,12 +495,13 @@ void add_entry (char *key, char *value)
        }
 
        /* Systray */
-       else if (strcmp (key, "systray") == 0) {
+       // systray disabled in snapshot mode
+       else if (strcmp (key, "systray") == 0 && snapshot_path == 0) {
                systray_enabled = atoi(value);
                // systray is latest option added. files without 'systray' are old.
                old_config_file = 0;
        }
-       else if (strcmp (key, "systray_padding") == 0) {
+       else if (strcmp (key, "systray_padding") == 0 && snapshot_path == 0) {
                if (old_config_file)
                        systray_enabled = 1;
                extract_values(value, &value1, &value2, &value3);
@@ -601,94 +585,21 @@ void add_entry (char *key, char *value)
        else if (strcmp(key, "strut_policy") == 0) {
                if (strcmp(value, "follow_size") == 0)
                        panel_strut_policy = STRUT_FOLLOW_SIZE;
+               else if (strcmp(value, "none") == 0)
+                       panel_strut_policy = STRUT_NONE;
                else
                        panel_strut_policy = STRUT_MINIMUM;
        }
-       else if (strcmp(key, "autohide_height") == 0)
+       else if (strcmp(key, "autohide_height") == 0) {
                panel_autohide_height = atoi(value);
-
-
-       // QUESTION: Do we still need backwards compatibility???
-       /* Read tint-0.6 config for backward compatibility */
-       else if (strcmp (key, "panel_mode") == 0) {
-               if (strcmp (value, "single_desktop") == 0) panel_mode = SINGLE_DESKTOP;
-               else panel_mode = MULTI_DESKTOP;
-       }
-       else if (strcmp (key, "panel_rounded") == 0) {
-               Background bg;
-               bg.border.rounded = atoi(value);
-               g_array_append_val(backgrounds, bg);
-       }
-       else if (strcmp (key, "panel_border_width") == 0) {
-               g_array_index(backgrounds, Background, backgrounds->len-1).border.width = atoi(value);
-       }
-       else if (strcmp (key, "panel_background_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->back.color);
-               if (value2) bg->back.alpha = (atoi (value2) / 100.0);
-               else bg->back.alpha = 0.5;
-       }
-       else if (strcmp (key, "panel_border_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->border.color);
-               if (value2) bg->border.alpha = (atoi (value2) / 100.0);
-               else bg->border.alpha = 0.5;
-       }
-       else if (strcmp (key, "task_text_centered") == 0)
-               panel_config.g_task.centered = atoi (value);
-       else if (strcmp (key, "task_margin") == 0) {
-               panel_config.g_taskbar.area.paddingxlr = 0;
-               panel_config.g_taskbar.area.paddingx = atoi (value);
-       }
-       else if (strcmp (key, "task_icon_size") == 0)
-               old_task_icon_size = atoi (value);
-       else if (strcmp (key, "task_rounded") == 0) {
-               Background bg;
-               bg.border.rounded = atoi(value);
-               g_array_append_val(backgrounds, bg);
-               g_array_append_val(backgrounds, bg);
-               bg_task = backgrounds->len-2;
-               bg_task_active = backgrounds->len-1;
-       }
-       else if (strcmp (key, "task_background_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, bg_task);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->back.color);
-               if (value2) bg->back.alpha = (atoi (value2) / 100.0);
-               else bg->back.alpha = 0.5;
-       }
-       else if (strcmp (key, "task_active_background_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, bg_task_active);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->back.color);
-               if (value2) bg->back.alpha = (atoi (value2) / 100.0);
-               else bg->back.alpha = 0.5;
-       }
-       else if (strcmp (key, "task_border_width") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, bg_task);
-               bg->border.width = atoi (value);
-               bg = &g_array_index(backgrounds, Background, bg_task_active);
-               bg->border.width = atoi (value);
-       }
-       else if (strcmp (key, "task_border_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, bg_task);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->border.color);
-               if (value2) bg->border.alpha = (atoi (value2) / 100.0);
-               else bg->border.alpha = 0.5;
-       }
-       else if (strcmp (key, "task_active_border_color") == 0) {
-               Background* bg = &g_array_index(backgrounds, Background, bg_task_active);
-               extract_values(value, &value1, &value2, &value3);
-               get_color (value1, bg->border.color);
-               if (value2) bg->border.alpha = (atoi (value2) / 100.0);
-               else bg->border.alpha = 0.5;
+               if (panel_autohide_height == 0) {
+                       // autohide need height > 0
+                       panel_autohide_height = 1;
+               }
        }
 
        else
-               fprintf(stderr, "tint2 : invalid option \"%s\", correct your config file\n", key);
+               fprintf(stderr, "tint2 : invalid option \"%s\",\n  upgrade tint2 or correct your config file\n", key);
 
        if (value1) free (value1);
        if (value2) free (value2);
@@ -760,9 +671,6 @@ int config_read_file (const char *path)
        }
        fclose (fp);
 
-       if (old_task_icon_size) {
-               panel_config.g_task.area.paddingy = ((int)panel_config.area.height - (2 * panel_config.area.paddingy) - old_task_icon_size) / 2;
-       }
        return 1;
 }
 
This page took 0.027262 seconds and 4 git commands to generate.