2008-10-02 18:47:02 +00:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Tint2 : read/write config file
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Pål Staurland (staura@gmail.com)
|
|
|
|
* Modified (C) 2008 thierry lorthiois (lorthiois@bbsoft.fr)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License version 2
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <cairo.h>
|
|
|
|
#include <cairo-xlib.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <glib/gstdio.h>
|
|
|
|
#include <pango/pangocairo.h>
|
2009-10-31 11:58:45 +00:00
|
|
|
#include <pango/pangoxft.h>
|
2008-10-02 18:47:02 +00:00
|
|
|
#include <Imlib2.h>
|
|
|
|
|
|
|
|
#include "common.h"
|
|
|
|
#include "server.h"
|
2009-10-18 17:54:09 +00:00
|
|
|
#include "panel.h"
|
2008-10-02 18:47:02 +00:00
|
|
|
#include "task.h"
|
|
|
|
#include "taskbar.h"
|
2009-02-10 23:16:10 +00:00
|
|
|
#include "systraybar.h"
|
2008-10-02 18:47:02 +00:00
|
|
|
#include "clock.h"
|
|
|
|
#include "config.h"
|
|
|
|
#include "window.h"
|
2009-09-14 21:28:17 +00:00
|
|
|
#include "tooltip.h"
|
2009-12-22 13:37:13 +00:00
|
|
|
#include "timer.h"
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-06-18 20:26:40 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
|
|
|
#include "battery.h"
|
|
|
|
#endif
|
|
|
|
|
2009-08-29 16:19:01 +00:00
|
|
|
// global path
|
|
|
|
char *config_path = 0;
|
2009-11-10 21:11:31 +00:00
|
|
|
char *snapshot_path = 0;
|
2009-06-18 20:26:40 +00:00
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
// --------------------------------------------------
|
|
|
|
// backward compatibility
|
2009-02-08 23:17:36 +00:00
|
|
|
static int old_task_icon_size;
|
2009-11-03 21:13:21 +00:00
|
|
|
// detect if it's an old config file
|
|
|
|
// ==1
|
|
|
|
static int old_config_file;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-10-17 16:53:16 +00:00
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
void init_config()
|
2009-01-17 14:07:56 +00:00
|
|
|
{
|
2010-01-09 00:11:01 +00:00
|
|
|
if (backgrounds)
|
|
|
|
g_array_free(backgrounds, 1);
|
|
|
|
backgrounds = g_array_new(0, 0, sizeof(Background));
|
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
// append full transparency background
|
2010-01-09 00:11:01 +00:00
|
|
|
Background transparent_bg;
|
|
|
|
memset(&transparent_bg, 0, sizeof(Background));
|
|
|
|
g_array_append_val(backgrounds, transparent_bg);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-10-30 17:18:44 +00:00
|
|
|
// tint2 could reload config, so we cleanup objects
|
|
|
|
cleanup_systray();
|
2009-11-02 22:16:09 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-10-30 17:18:44 +00:00
|
|
|
cleanup_battery();
|
2009-11-02 22:16:09 +00:00
|
|
|
#endif
|
2009-10-30 17:18:44 +00:00
|
|
|
cleanup_clock();
|
|
|
|
cleanup_tooltip();
|
|
|
|
|
|
|
|
// panel's default value
|
2009-10-30 20:54:29 +00:00
|
|
|
if (panel_config.g_task.font_desc) {
|
|
|
|
pango_font_description_free(panel_config.g_task.font_desc);
|
|
|
|
}
|
2009-10-17 16:53:16 +00:00
|
|
|
memset(&panel_config, 0, sizeof(Panel));
|
2010-01-03 20:17:46 +00:00
|
|
|
systray.alpha = 100;
|
2009-09-27 20:00:34 +00:00
|
|
|
systray.sort = 3;
|
2009-11-03 21:13:21 +00:00
|
|
|
old_config_file = 1;
|
2009-08-30 15:40:02 +00:00
|
|
|
|
2009-06-18 20:26:40 +00:00
|
|
|
// window manager's menu default value == false
|
2009-10-16 18:46:09 +00:00
|
|
|
wm_menu = 0;
|
2009-06-20 14:41:06 +00:00
|
|
|
max_tick_urgent = 7;
|
2009-10-31 11:58:45 +00:00
|
|
|
|
|
|
|
// 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);
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-02-07 23:28:13 +00:00
|
|
|
void cleanup_config()
|
2008-10-02 18:47:02 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 21:16:54 +00:00
|
|
|
void extract_values (const char *value, char **value1, char **value2, char **value3)
|
2008-10-02 18:47:02 +00:00
|
|
|
{
|
2009-09-07 21:41:21 +00:00
|
|
|
char *b=0, *c=0;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
if (*value1) free (*value1);
|
|
|
|
if (*value2) free (*value2);
|
|
|
|
if (*value3) free (*value3);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
if ((b = strchr (value, ' '))) {
|
|
|
|
b[0] = '\0';
|
|
|
|
b++;
|
2009-01-20 21:16:54 +00:00
|
|
|
}
|
|
|
|
else {
|
2009-09-07 21:41:21 +00:00
|
|
|
*value2 = 0;
|
|
|
|
*value3 = 0;
|
2009-01-20 21:16:54 +00:00
|
|
|
}
|
|
|
|
*value1 = strdup (value);
|
|
|
|
g_strstrip(*value1);
|
|
|
|
|
|
|
|
if (b) {
|
2009-01-29 22:43:31 +00:00
|
|
|
if ((c = strchr (b, ' '))) {
|
2009-01-20 21:16:54 +00:00
|
|
|
c[0] = '\0';
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
c = 0;
|
|
|
|
*value3 = 0;
|
|
|
|
}
|
|
|
|
*value2 = strdup (b);
|
|
|
|
g_strstrip(*value2);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c) {
|
|
|
|
*value3 = strdup (c);
|
|
|
|
g_strstrip(*value3);
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void get_action (char *event, int *action)
|
|
|
|
{
|
2009-09-07 21:41:21 +00:00
|
|
|
if (strcmp (event, "none") == 0)
|
|
|
|
*action = NONE;
|
|
|
|
else if (strcmp (event, "close") == 0)
|
|
|
|
*action = CLOSE;
|
|
|
|
else if (strcmp (event, "toggle") == 0)
|
|
|
|
*action = TOGGLE;
|
|
|
|
else if (strcmp (event, "iconify") == 0)
|
|
|
|
*action = ICONIFY;
|
|
|
|
else if (strcmp (event, "shade") == 0)
|
|
|
|
*action = SHADE;
|
|
|
|
else if (strcmp (event, "toggle_iconify") == 0)
|
|
|
|
*action = TOGGLE_ICONIFY;
|
|
|
|
else if (strcmp (event, "maximize_restore") == 0)
|
|
|
|
*action = MAXIMIZE_RESTORE;
|
|
|
|
else if (strcmp (event, "desktop_left") == 0)
|
|
|
|
*action = DESKTOP_LEFT;
|
|
|
|
else if (strcmp (event, "desktop_right") == 0)
|
|
|
|
*action = DESKTOP_RIGHT;
|
2009-11-18 05:13:38 +00:00
|
|
|
else if (strcmp (event, "next_task") == 0)
|
|
|
|
*action = NEXT_TASK;
|
|
|
|
else if (strcmp (event, "prev_task") == 0)
|
|
|
|
*action = PREV_TASK;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-01-09 00:11:01 +00:00
|
|
|
int get_task_status(char* status)
|
|
|
|
{
|
|
|
|
if (strcmp(status, "active") == 0)
|
|
|
|
return TASK_ACTIVE;
|
|
|
|
if (strcmp(status, "iconified") == 0)
|
|
|
|
return TASK_ICONIFIED;
|
|
|
|
if (strcmp(status, "urgent") == 0)
|
|
|
|
return TASK_URGENT;
|
|
|
|
return TASK_NORMAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-03-20 08:30:41 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2008-10-02 18:47:02 +00:00
|
|
|
void add_entry (char *key, char *value)
|
|
|
|
{
|
2009-09-07 21:41:21 +00:00
|
|
|
char *value1=0, *value2=0, *value3=0;
|
|
|
|
|
|
|
|
/* Background and border */
|
|
|
|
if (strcmp (key, "rounded") == 0) {
|
|
|
|
// 'rounded' is the first parameter => alloc a new background
|
2010-01-09 00:11:01 +00:00
|
|
|
Background bg;
|
|
|
|
bg.border.rounded = atoi(value);
|
|
|
|
g_array_append_val(backgrounds, bg);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "border_width") == 0) {
|
2010-01-09 00:11:01 +00:00
|
|
|
g_array_index(backgrounds, Background, backgrounds->len-1).border.width = atoi(value);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "background_color") == 0) {
|
2010-01-09 00:11:01 +00:00
|
|
|
Background* bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2010-01-09 00:11:01 +00:00
|
|
|
get_color (value1, bg->back.color);
|
|
|
|
if (value2) bg->back.alpha = (atoi (value2) / 100.0);
|
|
|
|
else bg->back.alpha = 0.5;
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "border_color") == 0) {
|
2010-01-09 00:11:01 +00:00
|
|
|
Background* bg = &g_array_index(backgrounds, Background, backgrounds->len-1);
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2010-01-09 00:11:01 +00:00
|
|
|
get_color (value1, bg->border.color);
|
|
|
|
if (value2) bg->border.alpha = (atoi (value2) / 100.0);
|
|
|
|
else bg->border.alpha = 0.5;
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Panel */
|
|
|
|
else if (strcmp (key, "panel_monitor") == 0) {
|
2010-03-20 08:30:41 +00:00
|
|
|
panel_config.monitor = config_get_monitor(value);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "panel_size") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-02-07 23:28:13 +00:00
|
|
|
|
|
|
|
char *b;
|
|
|
|
if ((b = strchr (value1, '%'))) {
|
|
|
|
b[0] = '\0';
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.pourcentx = 1;
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
2009-10-23 20:23:11 +00:00
|
|
|
panel_config.area.width = atoi(value1);
|
|
|
|
if (panel_config.area.width == 0) {
|
|
|
|
// full width mode
|
|
|
|
panel_config.area.width = 100;
|
|
|
|
panel_config.pourcentx = 1;
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
if (value2) {
|
2009-02-07 23:28:13 +00:00
|
|
|
if ((b = strchr (value2, '%'))) {
|
|
|
|
b[0] = '\0';
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.pourcenty = 1;
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
2009-10-23 20:23:11 +00:00
|
|
|
panel_config.area.height = atoi(value2);
|
2009-02-07 23:28:13 +00:00
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "panel_margin") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.marginx = atoi (value1);
|
|
|
|
if (value2) panel_config.marginy = atoi (value2);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "panel_padding") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.area.paddingxlr = panel_config.area.paddingx = atoi (value1);
|
|
|
|
if (value2) panel_config.area.paddingy = atoi (value2);
|
|
|
|
if (value3) panel_config.area.paddingx = atoi (value3);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "panel_position") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
|
|
|
if (strcmp (value1, "top") == 0) panel_position = TOP;
|
|
|
|
else {
|
2009-06-21 22:01:31 +00:00
|
|
|
if (strcmp (value1, "bottom") == 0) panel_position = BOTTOM;
|
|
|
|
else panel_position = CENTER;
|
|
|
|
}
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
if (!value2) panel_position |= CENTER;
|
|
|
|
else {
|
|
|
|
if (strcmp (value2, "left") == 0) panel_position |= LEFT;
|
|
|
|
else {
|
|
|
|
if (strcmp (value2, "right") == 0) panel_position |= RIGHT;
|
|
|
|
else panel_position |= CENTER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!value3) panel_horizontal = 1;
|
|
|
|
else {
|
|
|
|
if (strcmp (value3, "vertical") == 0) panel_horizontal = 0;
|
|
|
|
else panel_horizontal = 1;
|
2009-06-21 22:01:31 +00:00
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "font_shadow") == 0)
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.font_shadow = atoi (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "panel_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.area.bg = &g_array_index(backgrounds, Background, id);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "wm_menu") == 0)
|
|
|
|
wm_menu = atoi (value);
|
2009-09-10 17:19:08 +00:00
|
|
|
else if (strcmp (key, "panel_dock") == 0)
|
|
|
|
panel_dock = atoi (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "urgent_nb_of_blink") == 0)
|
|
|
|
max_tick_urgent = (atoi (value) * 2) + 1;
|
2009-12-30 23:27:31 +00:00
|
|
|
else if (strcmp (key, "panel_layer") == 0) {
|
|
|
|
if (strcmp(value, "bottom") == 0)
|
|
|
|
panel_layer = BOTTOM_LAYER;
|
|
|
|
else if (strcmp(value, "normal") == 0)
|
|
|
|
panel_layer = NORMAL_LAYER;
|
|
|
|
else if (strcmp(value, "top") == 0)
|
|
|
|
panel_layer = TOP_LAYER;
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
|
|
|
|
/* Battery */
|
|
|
|
else if (strcmp (key, "battery") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-05-15 20:44:42 +00:00
|
|
|
if(atoi(value) == 1)
|
2009-10-28 23:01:32 +00:00
|
|
|
battery_enabled = 1;
|
2009-06-25 21:47:38 +00:00
|
|
|
#else
|
|
|
|
if(atoi(value) == 1)
|
2009-09-01 15:56:52 +00:00
|
|
|
fprintf(stderr, "tint2 is build without battery support\n");
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "battery_low_status") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-05-15 20:44:42 +00:00
|
|
|
battery_low_status = atoi(value);
|
|
|
|
if(battery_low_status < 0 || battery_low_status > 100)
|
|
|
|
battery_low_status = 0;
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "battery_low_cmd") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-10-30 17:18:44 +00:00
|
|
|
if (strlen(value) > 0)
|
|
|
|
battery_low_cmd = strdup (value);
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "bat1_font") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-09-07 21:41:21 +00:00
|
|
|
bat1_font_desc = pango_font_description_from_string (value);
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "bat2_font") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-09-07 21:41:21 +00:00
|
|
|
bat2_font_desc = pango_font_description_from_string (value);
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "battery_font_color") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
get_color (value1, panel_config.battery.font.color);
|
|
|
|
if (value2) panel_config.battery.font.alpha = (atoi (value2) / 100.0);
|
|
|
|
else panel_config.battery.font.alpha = 0.5;
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "battery_padding") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.battery.area.paddingxlr = panel_config.battery.area.paddingx = atoi (value1);
|
|
|
|
if (value2) panel_config.battery.area.paddingy = atoi (value2);
|
|
|
|
if (value3) panel_config.battery.area.paddingx = atoi (value3);
|
2009-06-25 21:47:38 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "battery_background_id") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
#ifdef ENABLE_BATTERY
|
2009-09-07 21:41:21 +00:00
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.battery.area.bg = &g_array_index(backgrounds, Background, id);
|
2009-06-18 20:26:40 +00:00
|
|
|
#endif
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
2010-01-19 19:29:28 +00:00
|
|
|
else if (strcmp (key, "battery_hide") == 0) {
|
|
|
|
#ifdef ENABLE_BATTERY
|
|
|
|
percentage_hide = atoi (value);
|
|
|
|
if (percentage_hide == 0)
|
|
|
|
percentage_hide = 101;
|
|
|
|
#endif
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
|
|
|
|
/* Clock */
|
|
|
|
else if (strcmp (key, "time1_format") == 0) {
|
|
|
|
if (strlen(value) > 0) {
|
|
|
|
time1_format = strdup (value);
|
2009-10-30 17:18:44 +00:00
|
|
|
clock_enabled = 1;
|
2009-03-07 10:05:15 +00:00
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "time2_format") == 0) {
|
2009-10-30 17:18:44 +00:00
|
|
|
if (strlen(value) > 0)
|
|
|
|
time2_format = strdup (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "time1_font") == 0) {
|
|
|
|
time1_font_desc = pango_font_description_from_string (value);
|
|
|
|
}
|
2009-12-30 11:27:29 +00:00
|
|
|
else if (strcmp(key, "time1_timezone") == 0) {
|
|
|
|
if (strlen(value) > 0)
|
|
|
|
time1_timezone = strdup(value);
|
|
|
|
}
|
|
|
|
else if (strcmp(key, "time2_timezone") == 0) {
|
|
|
|
if (strlen(value) > 0)
|
|
|
|
time2_timezone = strdup(value);
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "time2_font") == 0) {
|
|
|
|
time2_font_desc = pango_font_description_from_string (value);
|
|
|
|
}
|
|
|
|
else if (strcmp (key, "clock_font_color") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
get_color (value1, panel_config.clock.font.color);
|
|
|
|
if (value2) panel_config.clock.font.alpha = (atoi (value2) / 100.0);
|
|
|
|
else panel_config.clock.font.alpha = 0.5;
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "clock_padding") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.clock.area.paddingxlr = panel_config.clock.area.paddingx = atoi (value1);
|
|
|
|
if (value2) panel_config.clock.area.paddingy = atoi (value2);
|
|
|
|
if (value3) panel_config.clock.area.paddingx = atoi (value3);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "clock_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.clock.area.bg = &g_array_index(backgrounds, Background, id);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
2009-11-16 17:54:46 +00:00
|
|
|
else if (strcmp(key, "clock_tooltip") == 0) {
|
|
|
|
if (strlen(value) > 0)
|
|
|
|
time_tooltip_format = strdup (value);
|
|
|
|
}
|
2009-12-30 11:27:29 +00:00
|
|
|
else if (strcmp(key, "clock_tooltip_timezone") == 0) {
|
|
|
|
if (strlen(value) > 0)
|
|
|
|
time_tooltip_timezone = strdup(value);
|
|
|
|
}
|
2009-06-04 18:41:14 +00:00
|
|
|
else if (strcmp(key, "clock_lclick_command") == 0) {
|
2009-10-30 17:18:44 +00:00
|
|
|
if (strlen(value) > 0)
|
|
|
|
clock_lclick_command = strdup(value);
|
2009-06-04 18:41:14 +00:00
|
|
|
}
|
|
|
|
else if (strcmp(key, "clock_rclick_command") == 0) {
|
2009-10-30 17:18:44 +00:00
|
|
|
if (strlen(value) > 0)
|
|
|
|
clock_rclick_command = strdup(value);
|
2009-06-04 18:41:14 +00:00
|
|
|
}
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
/* Taskbar */
|
|
|
|
else if (strcmp (key, "taskbar_mode") == 0) {
|
|
|
|
if (strcmp (value, "multi_desktop") == 0) panel_mode = MULTI_DESKTOP;
|
|
|
|
else panel_mode = SINGLE_DESKTOP;
|
|
|
|
}
|
|
|
|
else if (strcmp (key, "taskbar_padding") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2010-01-09 00:11:01 +00:00
|
|
|
panel_config.g_taskbar.area.paddingxlr = panel_config.g_taskbar.area.paddingx = atoi (value1);
|
|
|
|
if (value2) panel_config.g_taskbar.area.paddingy = atoi (value2);
|
|
|
|
if (value3) panel_config.g_taskbar.area.paddingx = atoi (value3);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "taskbar_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.g_taskbar.bg = &g_array_index(backgrounds, Background, id);
|
|
|
|
panel_config.g_taskbar.area.bg = panel_config.g_taskbar.bg;
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "taskbar_active_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.g_taskbar.bg_active = &g_array_index(backgrounds, Background, id);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_taskbar.use_active = 1;
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Task */
|
|
|
|
else if (strcmp (key, "task_text") == 0)
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.text = atoi (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "task_icon") == 0)
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.icon = atoi (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "task_centered") == 0)
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.centered = atoi (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "task_width") == 0) {
|
2009-06-25 21:47:38 +00:00
|
|
|
// old parameter : just for backward compatibility
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.maximum_width = atoi (value);
|
|
|
|
panel_config.g_task.maximum_height = 30;
|
2009-06-25 21:47:38 +00:00
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
else if (strcmp (key, "task_maximum_size") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.maximum_width = atoi (value1);
|
|
|
|
panel_config.g_task.maximum_height = 30;
|
2009-06-25 21:47:38 +00:00
|
|
|
if (value2)
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.maximum_height = atoi (value2);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "task_padding") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.area.paddingxlr = panel_config.g_task.area.paddingx = atoi (value1);
|
|
|
|
if (value2) panel_config.g_task.area.paddingy = atoi (value2);
|
|
|
|
if (value3) panel_config.g_task.area.paddingx = atoi (value3);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "task_font") == 0) {
|
2009-10-17 16:53:16 +00:00
|
|
|
panel_config.g_task.font_desc = pango_font_description_from_string (value);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
2010-01-09 00:11:01 +00:00
|
|
|
else if (g_regex_match_simple("task.*_font_color", key, 0, 0)) {
|
|
|
|
gchar** split = g_regex_split_simple("_", key, 0, 0);
|
|
|
|
int status = get_task_status(split[1]);
|
|
|
|
g_strfreev(split);
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2010-01-09 00:11:01 +00:00
|
|
|
float alpha = 1;
|
|
|
|
if (value2) alpha = (atoi (value2) / 100.0);
|
|
|
|
get_color (value1, panel_config.g_task.font[status].color);
|
|
|
|
panel_config.g_task.font[status].alpha = alpha;
|
|
|
|
panel_config.g_task.config_font_mask |= (1<<status);
|
|
|
|
}
|
|
|
|
else if (g_regex_match_simple("task.*_icon_asb", key, 0, 0)) {
|
|
|
|
gchar** split = g_regex_split_simple("_", key, 0, 0);
|
|
|
|
int status = get_task_status(split[1]);
|
|
|
|
g_strfreev(split);
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
2010-01-09 00:11:01 +00:00
|
|
|
panel_config.g_task.alpha[status] = atoi(value1);
|
|
|
|
panel_config.g_task.saturation[status] = atoi(value2);
|
|
|
|
panel_config.g_task.brightness[status] = atoi(value3);
|
|
|
|
panel_config.g_task.config_asb_mask |= (1<<status);
|
|
|
|
}
|
|
|
|
else if (g_regex_match_simple("task.*_background_id", key, 0, 0)) {
|
|
|
|
gchar** split = g_regex_split_simple("_", key, 0, 0);
|
|
|
|
int status = get_task_status(split[1]);
|
|
|
|
g_strfreev(split);
|
2009-09-07 21:41:21 +00:00
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
panel_config.g_task.background[status] = &g_array_index(backgrounds, Background, id);
|
|
|
|
panel_config.g_task.config_background_mask |= (1<<status);
|
|
|
|
if (status == TASK_NORMAL) panel_config.g_task.area.bg = panel_config.g_task.background[TASK_NORMAL];
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Systray */
|
2010-03-27 16:51:12 +00:00
|
|
|
// systray disabled in snapshot mode
|
|
|
|
else if (strcmp (key, "systray") == 0 && snapshot_path == 0) {
|
2009-11-03 21:13:21 +00:00
|
|
|
systray_enabled = atoi(value);
|
|
|
|
// systray is latest option added. files without 'systray' are old.
|
|
|
|
old_config_file = 0;
|
2009-10-30 17:18:44 +00:00
|
|
|
}
|
2010-03-27 16:51:12 +00:00
|
|
|
else if (strcmp (key, "systray_padding") == 0 && snapshot_path == 0) {
|
2009-11-03 21:13:21 +00:00
|
|
|
if (old_config_file)
|
|
|
|
systray_enabled = 1;
|
2009-09-07 21:41:21 +00:00
|
|
|
extract_values(value, &value1, &value2, &value3);
|
|
|
|
systray.area.paddingxlr = systray.area.paddingx = atoi (value1);
|
|
|
|
if (value2) systray.area.paddingy = atoi (value2);
|
|
|
|
if (value3) systray.area.paddingx = atoi (value3);
|
|
|
|
}
|
|
|
|
else if (strcmp (key, "systray_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
systray.area.bg = &g_array_index(backgrounds, Background, id);
|
2009-09-07 21:41:21 +00:00
|
|
|
}
|
2009-08-29 22:09:29 +00:00
|
|
|
else if (strcmp(key, "systray_sort") == 0) {
|
2009-09-27 20:07:30 +00:00
|
|
|
if (strcmp(value, "descending") == 0)
|
2009-08-29 22:09:29 +00:00
|
|
|
systray.sort = -1;
|
2009-09-27 20:07:30 +00:00
|
|
|
else if (strcmp(value, "ascending") == 0)
|
2009-08-29 22:09:29 +00:00
|
|
|
systray.sort = 1;
|
2009-09-27 20:00:34 +00:00
|
|
|
else if (strcmp(value, "left2right") == 0)
|
|
|
|
systray.sort = 2;
|
|
|
|
else if (strcmp(value, "right2left") == 0)
|
|
|
|
systray.sort = 3;
|
2009-08-29 22:09:29 +00:00
|
|
|
}
|
2010-01-03 13:14:25 +00:00
|
|
|
else if (strcmp(key, "systray_icon_size") == 0) {
|
|
|
|
systray_max_icon_size = atoi(value);
|
|
|
|
}
|
2010-01-03 20:17:46 +00:00
|
|
|
else if (strcmp(key, "systray_icon_asb") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
|
|
|
systray.alpha = atoi(value1);
|
|
|
|
systray.saturation = atoi(value2);
|
|
|
|
systray.brightness = atoi(value3);
|
|
|
|
}
|
2009-02-10 23:16:10 +00:00
|
|
|
|
2009-09-14 21:28:17 +00:00
|
|
|
/* Tooltip */
|
|
|
|
else if (strcmp (key, "tooltip") == 0)
|
|
|
|
g_tooltip.enabled = atoi(value);
|
|
|
|
else if (strcmp (key, "tooltip_show_timeout") == 0) {
|
2009-12-27 20:33:02 +00:00
|
|
|
int timeout_msec = 1000*atof(value);
|
|
|
|
g_tooltip.show_timeout_msec = timeout_msec;
|
2009-09-14 21:28:17 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "tooltip_hide_timeout") == 0) {
|
2009-12-27 20:33:02 +00:00
|
|
|
int timeout_msec = 1000*atof(value);
|
|
|
|
g_tooltip.hide_timeout_msec = timeout_msec;
|
2009-09-14 21:28:17 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "tooltip_padding") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
|
|
|
if (value1) g_tooltip.paddingx = atoi(value1);
|
|
|
|
if (value2) g_tooltip.paddingy = atoi(value2);
|
|
|
|
}
|
|
|
|
else if (strcmp (key, "tooltip_background_id") == 0) {
|
|
|
|
int id = atoi (value);
|
2010-01-09 00:11:01 +00:00
|
|
|
id = (id < backgrounds->len && id >= 0) ? id : 0;
|
|
|
|
g_tooltip.bg = &g_array_index(backgrounds, Background, id);
|
2009-09-14 21:28:17 +00:00
|
|
|
}
|
|
|
|
else if (strcmp (key, "tooltip_font_color") == 0) {
|
|
|
|
extract_values(value, &value1, &value2, &value3);
|
|
|
|
get_color(value1, g_tooltip.font_color.color);
|
|
|
|
if (value2) g_tooltip.font_color.alpha = (atoi (value2) / 100.0);
|
|
|
|
else g_tooltip.font_color.alpha = 0.1;
|
|
|
|
}
|
|
|
|
else if (strcmp (key, "tooltip_font") == 0) {
|
|
|
|
g_tooltip.font_desc = pango_font_description_from_string(value);
|
|
|
|
}
|
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
/* Mouse actions */
|
|
|
|
else if (strcmp (key, "mouse_middle") == 0)
|
|
|
|
get_action (value, &mouse_middle);
|
|
|
|
else if (strcmp (key, "mouse_right") == 0)
|
|
|
|
get_action (value, &mouse_right);
|
|
|
|
else if (strcmp (key, "mouse_scroll_up") == 0)
|
|
|
|
get_action (value, &mouse_scroll_up);
|
|
|
|
else if (strcmp (key, "mouse_scroll_down") == 0)
|
|
|
|
get_action (value, &mouse_scroll_down);
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2010-01-05 20:38:49 +00:00
|
|
|
/* autohide options */
|
|
|
|
else if (strcmp(key, "autohide") == 0)
|
|
|
|
panel_autohide = atoi(value);
|
|
|
|
else if (strcmp(key, "autohide_show_timeout") == 0)
|
|
|
|
panel_autohide_show_timeout = 1000*atof(value);
|
|
|
|
else if (strcmp(key, "autohide_hide_timeout") == 0)
|
|
|
|
panel_autohide_hide_timeout = 1000*atof(value);
|
|
|
|
else if (strcmp(key, "strut_policy") == 0) {
|
|
|
|
if (strcmp(value, "follow_size") == 0)
|
|
|
|
panel_strut_policy = STRUT_FOLLOW_SIZE;
|
2010-02-20 10:08:56 +00:00
|
|
|
else if (strcmp(value, "none") == 0)
|
|
|
|
panel_strut_policy = STRUT_NONE;
|
2010-01-05 20:38:49 +00:00
|
|
|
else
|
|
|
|
panel_strut_policy = STRUT_MINIMUM;
|
|
|
|
}
|
|
|
|
else if (strcmp(key, "autohide_height") == 0)
|
|
|
|
panel_autohide_height = atoi(value);
|
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
else
|
|
|
|
fprintf(stderr, "tint2 : invalid option \"%s\", correct your config file\n", key);
|
|
|
|
|
|
|
|
if (value1) free (value1);
|
|
|
|
if (value2) free (value2);
|
|
|
|
if (value3) free (value3);
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int config_read ()
|
|
|
|
{
|
2009-09-07 21:41:21 +00:00
|
|
|
const gchar * const * system_dirs;
|
|
|
|
char *path1;
|
|
|
|
gint i;
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
// follow XDG specification
|
|
|
|
// check tint2rc in user directory
|
|
|
|
path1 = g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL);
|
|
|
|
if (g_file_test (path1, G_FILE_TEST_EXISTS)) {
|
2009-02-25 20:04:43 +00:00
|
|
|
i = config_read_file (path1);
|
2009-08-29 16:19:01 +00:00
|
|
|
config_path = strdup(path1);
|
2009-02-25 20:04:43 +00:00
|
|
|
g_free(path1);
|
2009-09-07 21:41:21 +00:00
|
|
|
return i;
|
2009-02-25 20:04:43 +00:00
|
|
|
}
|
|
|
|
g_free(path1);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
// copy tint2rc from system directory to user directory
|
|
|
|
char *path2 = 0;
|
|
|
|
system_dirs = g_get_system_config_dirs();
|
|
|
|
for (i = 0; system_dirs[i]; i++) {
|
|
|
|
path2 = g_build_filename(system_dirs[i], "tint2", "tint2rc", NULL);
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
if (g_file_test(path2, G_FILE_TEST_EXISTS)) break;
|
|
|
|
g_free (path2);
|
|
|
|
path2 = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (path2) {
|
|
|
|
// copy file in user directory (path1)
|
|
|
|
char *dir = g_build_filename (g_get_user_config_dir(), "tint2", NULL);
|
|
|
|
if (!g_file_test (dir, G_FILE_TEST_IS_DIR)) g_mkdir(dir, 0777);
|
|
|
|
g_free(dir);
|
2008-10-02 18:47:02 +00:00
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
path1 = g_build_filename (g_get_user_config_dir(), "tint2", "tint2rc", NULL);
|
|
|
|
copy_file(path2, path1);
|
|
|
|
g_free(path2);
|
2009-02-08 23:17:36 +00:00
|
|
|
|
2009-02-25 20:04:43 +00:00
|
|
|
i = config_read_file (path1);
|
2009-08-29 16:19:01 +00:00
|
|
|
config_path = strdup(path1);
|
2009-02-25 20:04:43 +00:00
|
|
|
g_free(path1);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return 0;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int config_read_file (const char *path)
|
|
|
|
{
|
2009-09-07 21:41:21 +00:00
|
|
|
FILE *fp;
|
2009-12-28 18:30:47 +00:00
|
|
|
char line[512];
|
2009-10-25 16:36:40 +00:00
|
|
|
char *key, *value;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-09-07 21:41:21 +00:00
|
|
|
if ((fp = fopen(path, "r")) == NULL) return 0;
|
2009-01-17 14:07:56 +00:00
|
|
|
|
2009-10-25 16:36:40 +00:00
|
|
|
while (fgets(line, sizeof(line), fp) != NULL) {
|
|
|
|
if (parse_line(line, &key, &value)) {
|
|
|
|
add_entry (key, value);
|
|
|
|
free (key);
|
|
|
|
free (value);
|
|
|
|
}
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
fclose (fp);
|
2009-06-10 21:33:12 +00:00
|
|
|
|
2009-10-30 17:36:32 +00:00
|
|
|
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;
|
|
|
|
}
|
2009-09-07 21:41:21 +00:00
|
|
|
return 1;
|
2008-10-02 18:47:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|