2001-04-19 14:21:46 +02:00
|
|
|
/*
|
2015-05-18 21:22:37 +02:00
|
|
|
* Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
|
|
|
|
* Copyright (C) 1999-2015 Hiroyuki Yamamoto and the Claws Mail team
|
2001-04-19 14:21:46 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-11 18:38:12 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2001-04-19 14:21:46 +02:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
2007-07-11 18:38:12 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2015-05-18 21:22:37 +02:00
|
|
|
*
|
2001-04-19 14:21:46 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
2012-07-07 09:09:39 +02:00
|
|
|
#include "claws-features.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#endif
|
|
|
|
|
2006-10-06 19:51:53 +02:00
|
|
|
#define _GNU_SOURCE
|
2006-10-09 08:22:58 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-02-10 13:06:07 +01:00
|
|
|
#include <glib.h>
|
|
|
|
#include <glib/gi18n.h>
|
2001-04-19 14:21:46 +02:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2006-10-06 19:51:53 +02:00
|
|
|
#include "defs.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#include "main.h"
|
|
|
|
#include "prefs.h"
|
2002-12-25 14:46:41 +01:00
|
|
|
#include "prefs_gtk.h"
|
2005-10-17 17:00:48 +02:00
|
|
|
#include "prefs_common.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
#include "utils.h"
|
|
|
|
#include "gtkutils.h"
|
2016-01-16 22:13:53 +01:00
|
|
|
#include "password.h"
|
2003-10-05 12:10:30 +02:00
|
|
|
#include "codeconv.h"
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2003-02-19 22:46:30 +01:00
|
|
|
#define CL(x) (((gulong) (x) >> (gulong) 8) & 0xFFUL)
|
|
|
|
#define RGB_FROM_GDK_COLOR(c) \
|
|
|
|
((CL(c.red) << (gulong) 16) | \
|
|
|
|
(CL(c.green) << (gulong) 8) | \
|
|
|
|
(CL(c.blue)))
|
|
|
|
|
2006-10-09 08:22:58 +02:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
|
|
|
#define SC_FGETS fgets_unlocked
|
|
|
|
#else
|
|
|
|
#define SC_FGETS fgets
|
|
|
|
#endif
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
DUMMY_PARAM
|
|
|
|
} DummyEnum;
|
|
|
|
|
2006-10-06 19:51:53 +02:00
|
|
|
static GHashTable *whole_cache = NULL;
|
|
|
|
|
|
|
|
static gboolean prefs_read_config_from_cache(PrefParam *param, const gchar *label,
|
|
|
|
const gchar *rcfile);
|
|
|
|
|
2007-10-15 19:20:02 +02:00
|
|
|
static void prefs_config_parse_one_line(PrefParam *param,
|
|
|
|
const gchar *buf);
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_read_config(PrefParam *param, const gchar *label,
|
2005-02-01 09:58:33 +01:00
|
|
|
const gchar *rcfile, const gchar *encoding)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
gchar *block_label;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(param != NULL);
|
|
|
|
cm_return_if_fail(label != NULL);
|
|
|
|
cm_return_if_fail(rcfile != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2006-04-12 09:17:36 +02:00
|
|
|
if (encoding != NULL)
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Encoding is ignored");
|
2006-04-12 09:17:36 +02:00
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Reading configuration...\n");
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
prefs_set_default(param);
|
|
|
|
|
2006-10-06 19:51:53 +02:00
|
|
|
if (whole_cache != NULL) {
|
|
|
|
if (prefs_read_config_from_cache(param, label, rcfile) == TRUE)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((fp = g_fopen(rcfile, "rb")) == NULL) {
|
2005-02-01 09:58:33 +01:00
|
|
|
if (ENOENT != errno) FILE_OP_ERROR(rcfile, "fopen");
|
2001-04-19 14:21:46 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
block_label = g_strdup_printf("[%s]", label);
|
|
|
|
|
2006-10-09 08:22:58 +02:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
2006-10-05 20:09:33 +02:00
|
|
|
flockfile(fp);
|
2006-10-09 08:22:58 +02:00
|
|
|
#endif
|
2006-10-05 20:09:33 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
/* search aiming block */
|
2006-10-09 08:22:58 +02:00
|
|
|
while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
gint val;
|
|
|
|
|
2005-02-01 09:58:33 +01:00
|
|
|
if (encoding) {
|
|
|
|
gchar *conv_str;
|
|
|
|
|
|
|
|
conv_str = conv_codeset_strdup
|
|
|
|
(buf, encoding, CS_INTERNAL);
|
|
|
|
if (!conv_str)
|
|
|
|
conv_str = g_strdup(buf);
|
|
|
|
val = strncmp
|
|
|
|
(conv_str, block_label, strlen(block_label));
|
|
|
|
g_free(conv_str);
|
|
|
|
} else
|
|
|
|
val = strncmp(buf, block_label, strlen(block_label));
|
2001-04-19 14:21:46 +02:00
|
|
|
if (val == 0) {
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Found %s\n", block_label);
|
2001-04-19 14:21:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
g_free(block_label);
|
|
|
|
|
2006-10-09 08:22:58 +02:00
|
|
|
while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
strretchomp(buf);
|
|
|
|
/* reached next block */
|
|
|
|
if (buf[0] == '[') break;
|
2006-04-05 18:49:00 +02:00
|
|
|
if (buf[0] == '#') continue;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2005-02-01 09:58:33 +01:00
|
|
|
if (encoding) {
|
|
|
|
gchar *conv_str;
|
|
|
|
|
|
|
|
conv_str = conv_codeset_strdup
|
|
|
|
(buf, encoding, CS_INTERNAL);
|
|
|
|
if (!conv_str)
|
|
|
|
conv_str = g_strdup(buf);
|
|
|
|
prefs_config_parse_one_line(param, conv_str);
|
|
|
|
g_free(conv_str);
|
|
|
|
} else
|
|
|
|
prefs_config_parse_one_line(param, buf);
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Finished reading configuration.\n");
|
2006-10-09 08:22:58 +02:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
2006-10-05 20:09:33 +02:00
|
|
|
funlockfile(fp);
|
2006-10-09 08:22:58 +02:00
|
|
|
#endif
|
2001-04-19 14:21:46 +02:00
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2007-10-15 19:20:02 +02:00
|
|
|
static void prefs_config_parse_one_line(PrefParam *param, const gchar *buf)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gint name_len;
|
|
|
|
const gchar *value;
|
2003-02-19 22:46:30 +01:00
|
|
|
GdkColor color;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
name_len = strlen(param[i].name);
|
2004-10-26 12:43:50 +02:00
|
|
|
if (g_ascii_strncasecmp(buf, param[i].name, name_len))
|
2001-04-19 14:21:46 +02:00
|
|
|
continue;
|
|
|
|
if (buf[name_len] != '=')
|
|
|
|
continue;
|
|
|
|
value = buf + name_len + 1;
|
2002-02-21 15:56:09 +01:00
|
|
|
/* debug_print("%s = %s\n", param[i].name, value); */
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (param[i].type) {
|
|
|
|
case P_STRING:
|
2016-01-16 22:13:53 +01:00
|
|
|
case P_PASSWORD:
|
2003-10-05 12:10:30 +02:00
|
|
|
{
|
2006-04-12 09:17:36 +02:00
|
|
|
gchar *tmp = NULL;
|
2003-10-05 12:10:30 +02:00
|
|
|
|
2006-04-12 09:17:36 +02:00
|
|
|
if (*value) {
|
|
|
|
if (g_utf8_validate(value, -1, NULL))
|
|
|
|
tmp = g_strdup(value);
|
|
|
|
else {
|
|
|
|
tmp = conv_codeset_strdup(value,
|
|
|
|
conv_get_locale_charset_str_no_utf8(),
|
|
|
|
CS_INTERNAL);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
tmp = g_strdup("");
|
|
|
|
}
|
2003-10-05 12:10:30 +02:00
|
|
|
if (!tmp) {
|
2007-05-05 10:53:18 +02:00
|
|
|
g_warning("Failed to convert character set.");
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp = g_strdup(value);
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(*((gchar **)param[i].data));
|
2003-10-05 12:10:30 +02:00
|
|
|
*((gchar **)param[i].data) = tmp;
|
2001-04-19 14:21:46 +02:00
|
|
|
break;
|
2003-10-05 12:10:30 +02:00
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
case P_INT:
|
|
|
|
*((gint *)param[i].data) =
|
|
|
|
(gint)atoi(value);
|
|
|
|
break;
|
|
|
|
case P_BOOL:
|
|
|
|
*((gboolean *)param[i].data) =
|
|
|
|
(*value == '0' || *value == '\0')
|
|
|
|
? FALSE : TRUE;
|
|
|
|
break;
|
|
|
|
case P_ENUM:
|
|
|
|
*((DummyEnum *)param[i].data) =
|
|
|
|
(DummyEnum)atoi(value);
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
*((gushort *)param[i].data) =
|
|
|
|
(gushort)atoi(value);
|
|
|
|
break;
|
2003-02-19 22:46:30 +01:00
|
|
|
case P_COLOR:
|
2008-08-07 18:39:17 +02:00
|
|
|
if (gdk_color_parse(value, &color)) {
|
2003-02-19 22:46:30 +01:00
|
|
|
*((gulong *)param[i].data) = RGB_FROM_GDK_COLOR(color);
|
2008-08-07 18:39:17 +02:00
|
|
|
}
|
2003-02-19 22:46:30 +01:00
|
|
|
else
|
|
|
|
/* be compatible and accept ints */
|
|
|
|
*((gulong *)param[i].data) = strtoul(value, 0, 10);
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
default:
|
2001-06-30 13:40:01 +02:00
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TRY(func) \
|
|
|
|
if (!(func)) \
|
|
|
|
{ \
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Failed to write configuration to file"); \
|
2001-04-19 14:21:46 +02:00
|
|
|
if (orig_fp) fclose(orig_fp); \
|
2002-12-31 01:11:12 +01:00
|
|
|
prefs_file_close_revert(pfile); \
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(rcpath); \
|
|
|
|
g_free(block_label); \
|
|
|
|
return; \
|
|
|
|
} \
|
|
|
|
|
2004-07-16 13:12:46 +02:00
|
|
|
void prefs_write_config(PrefParam *param, const gchar *label,
|
|
|
|
const gchar *rcfile)
|
2001-04-19 14:21:46 +02:00
|
|
|
{
|
|
|
|
FILE *orig_fp;
|
|
|
|
PrefFile *pfile;
|
|
|
|
gchar *rcpath;
|
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
gchar *block_label = NULL;
|
|
|
|
gboolean block_matched = FALSE;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(param != NULL);
|
|
|
|
cm_return_if_fail(label != NULL);
|
|
|
|
cm_return_if_fail(rcfile != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, rcfile, NULL);
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((orig_fp = g_fopen(rcpath, "rb")) == NULL) {
|
2001-04-19 14:21:46 +02:00
|
|
|
if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((pfile = prefs_write_open(rcpath)) == NULL) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Failed to write configuration to file");
|
2001-04-19 14:21:46 +02:00
|
|
|
if (orig_fp) fclose(orig_fp);
|
|
|
|
g_free(rcpath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
block_label = g_strdup_printf("[%s]", label);
|
|
|
|
|
|
|
|
/* search aiming block */
|
|
|
|
if (orig_fp) {
|
|
|
|
while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
|
|
|
|
gint val;
|
|
|
|
|
|
|
|
val = strncmp(buf, block_label, strlen(block_label));
|
|
|
|
if (val == 0) {
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Found %s\n", block_label);
|
2001-04-19 14:21:46 +02:00
|
|
|
block_matched = TRUE;
|
|
|
|
break;
|
|
|
|
} else
|
|
|
|
TRY(fputs(buf, pfile->fp) != EOF);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TRY(fprintf(pfile->fp, "%s\n", block_label) > 0);
|
|
|
|
|
|
|
|
/* write all param data to file */
|
|
|
|
TRY(prefs_write_param(param, pfile->fp) == 0);
|
|
|
|
|
|
|
|
if (block_matched) {
|
2006-10-09 19:32:48 +02:00
|
|
|
gboolean in_dup_block = FALSE;
|
2001-04-19 14:21:46 +02:00
|
|
|
while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
|
|
|
|
/* next block */
|
|
|
|
if (buf[0] == '[') {
|
|
|
|
TRY(fputc('\n', pfile->fp) != EOF &&
|
|
|
|
fputs(buf, pfile->fp) != EOF);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2006-10-09 19:32:48 +02:00
|
|
|
while (fgets(buf, sizeof(buf), orig_fp) != NULL) {
|
|
|
|
if (buf[0] == '[') {
|
|
|
|
if (!strncmp(buf, block_label,
|
|
|
|
strlen(block_label)))
|
|
|
|
in_dup_block = TRUE;
|
|
|
|
else
|
|
|
|
in_dup_block = FALSE;
|
|
|
|
}
|
|
|
|
if (!in_dup_block)
|
|
|
|
TRY(fputs(buf, pfile->fp) != EOF);
|
|
|
|
}
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
2006-10-09 19:32:48 +02:00
|
|
|
g_free(block_label);
|
|
|
|
block_label = NULL;
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
if (orig_fp) fclose(orig_fp);
|
2002-12-31 01:11:12 +01:00
|
|
|
if (prefs_file_close(pfile) < 0)
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Failed to write configuration to file");
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(rcpath);
|
|
|
|
|
2002-08-15 09:38:17 +02:00
|
|
|
debug_print("Configuration is saved.\n");
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
gint prefs_write_param(PrefParam *param, FILE *fp)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
switch (param[i].type) {
|
|
|
|
case P_STRING:
|
2003-10-05 12:10:30 +02:00
|
|
|
{
|
|
|
|
gchar *tmp = NULL;
|
|
|
|
|
|
|
|
if (*((gchar **)param[i].data)) {
|
2006-04-12 09:17:36 +02:00
|
|
|
if (g_utf8_validate(*((gchar **)param[i].data), -1, NULL))
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp = g_strdup(*((gchar **)param[i].data));
|
2006-04-12 09:17:36 +02:00
|
|
|
else {
|
|
|
|
tmp = conv_codeset_strdup(*((gchar **)param[i].data),
|
|
|
|
conv_get_locale_charset_str_no_utf8(),
|
|
|
|
CS_INTERNAL);
|
|
|
|
if (!tmp)
|
|
|
|
tmp = g_strdup(*((gchar **)param[i].data));
|
|
|
|
}
|
2003-10-05 12:10:30 +02:00
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%s\n", param[i].name,
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp ? tmp : "");
|
|
|
|
|
|
|
|
g_free(tmp);
|
2001-04-19 14:21:46 +02:00
|
|
|
break;
|
2003-10-05 12:10:30 +02:00
|
|
|
}
|
2016-02-28 23:42:56 +01:00
|
|
|
case P_PASSWORD:
|
2016-03-02 07:35:25 +01:00
|
|
|
return 0; /* Passwords are written to password store. */
|
2001-04-19 14:21:46 +02:00
|
|
|
case P_INT:
|
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
|
|
|
|
*((gint *)param[i].data));
|
|
|
|
break;
|
|
|
|
case P_BOOL:
|
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
|
|
|
|
*((gboolean *)param[i].data));
|
|
|
|
break;
|
|
|
|
case P_ENUM:
|
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
|
|
|
|
*((DummyEnum *)param[i].data));
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%d\n", param[i].name,
|
|
|
|
*((gushort *)param[i].data));
|
|
|
|
break;
|
2003-02-19 22:46:30 +01:00
|
|
|
case P_COLOR:
|
|
|
|
g_snprintf(buf, sizeof buf, "%s=#%6.6lx\n", param[i].name,
|
|
|
|
*((gulong *) param[i].data));
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
default:
|
2004-01-12 22:28:31 +01:00
|
|
|
/* unrecognized, fail */
|
|
|
|
debug_print("Unrecognized parameter type\n");
|
|
|
|
return -1;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (buf[0] != '\0') {
|
|
|
|
if (fputs(buf, fp) == EOF) {
|
|
|
|
perror("fputs");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_default(PrefParam *param)
|
|
|
|
{
|
|
|
|
gint i;
|
2003-02-19 22:46:30 +01:00
|
|
|
GdkColor color;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(param != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
if (!param[i].data) continue;
|
|
|
|
|
|
|
|
switch (param[i].type) {
|
|
|
|
case P_STRING:
|
2003-06-18 21:21:06 +02:00
|
|
|
g_free(*((gchar **)param[i].data));
|
2001-04-19 14:21:46 +02:00
|
|
|
if (param[i].defval != NULL) {
|
2003-10-05 12:10:30 +02:00
|
|
|
if (!strncasecmp(param[i].defval, "ENV_", 4)) {
|
|
|
|
const gchar *envstr;
|
|
|
|
gchar *tmp;
|
|
|
|
|
|
|
|
envstr = g_getenv(param[i].defval + 4);
|
|
|
|
tmp = envstr && *envstr ?
|
|
|
|
conv_codeset_strdup(envstr,
|
2005-02-01 09:58:33 +01:00
|
|
|
conv_get_locale_charset_str(),
|
2006-04-12 09:17:36 +02:00
|
|
|
CS_INTERNAL)
|
2003-10-05 12:10:30 +02:00
|
|
|
: g_strdup("");
|
|
|
|
if (!tmp) {
|
2007-05-05 10:53:18 +02:00
|
|
|
g_warning("Failed to convert character set.");
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp = g_strdup(envstr);
|
|
|
|
}
|
|
|
|
*((gchar **)param[i].data) = tmp;
|
|
|
|
} else if (param[i].defval[0] == '~')
|
2001-04-19 14:21:46 +02:00
|
|
|
*((gchar **)param[i].data) =
|
2001-04-27 22:27:24 +02:00
|
|
|
g_strconcat(get_home_dir(),
|
2001-04-19 14:21:46 +02:00
|
|
|
param[i].defval + 1,
|
|
|
|
NULL);
|
2012-12-06 01:00:29 +01:00
|
|
|
else
|
2001-04-19 14:21:46 +02:00
|
|
|
*((gchar **)param[i].data) =
|
|
|
|
g_strdup(param[i].defval);
|
|
|
|
} else
|
|
|
|
*((gchar **)param[i].data) = NULL;
|
|
|
|
break;
|
2007-06-03 21:52:31 +02:00
|
|
|
case P_PASSWORD:
|
|
|
|
g_free(*((gchar **)param[i].data));
|
|
|
|
if (param[i].defval != NULL) {
|
|
|
|
if (param[i].defval[0] != '\0')
|
|
|
|
*((gchar **)param[i].data) =
|
|
|
|
g_strdup(param[i].defval);
|
|
|
|
else
|
|
|
|
*((gchar **)param[i].data) = NULL;
|
|
|
|
} else
|
|
|
|
*((gchar **)param[i].data) = NULL;
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
case P_INT:
|
|
|
|
if (param[i].defval != NULL)
|
|
|
|
*((gint *)param[i].data) =
|
|
|
|
(gint)atoi(param[i].defval);
|
|
|
|
else
|
|
|
|
*((gint *)param[i].data) = 0;
|
|
|
|
break;
|
|
|
|
case P_BOOL:
|
|
|
|
if (param[i].defval != NULL) {
|
2004-10-26 12:43:50 +02:00
|
|
|
if (!g_ascii_strcasecmp(param[i].defval, "TRUE"))
|
2001-04-19 14:21:46 +02:00
|
|
|
*((gboolean *)param[i].data) = TRUE;
|
|
|
|
else
|
|
|
|
*((gboolean *)param[i].data) =
|
|
|
|
atoi(param[i].defval) ? TRUE : FALSE;
|
|
|
|
} else
|
|
|
|
*((gboolean *)param[i].data) = FALSE;
|
|
|
|
break;
|
|
|
|
case P_ENUM:
|
|
|
|
if (param[i].defval != NULL)
|
|
|
|
*((DummyEnum*)param[i].data) =
|
|
|
|
(DummyEnum)atoi(param[i].defval);
|
|
|
|
else
|
|
|
|
*((DummyEnum *)param[i].data) = 0;
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
if (param[i].defval != NULL)
|
|
|
|
*((gushort *)param[i].data) =
|
|
|
|
(gushort)atoi(param[i].defval);
|
|
|
|
else
|
|
|
|
*((gushort *)param[i].data) = 0;
|
|
|
|
break;
|
2003-02-19 22:46:30 +01:00
|
|
|
case P_COLOR:
|
|
|
|
if (param[i].defval != NULL && gdk_color_parse(param[i].defval, &color))
|
|
|
|
*((gulong *)param[i].data) =
|
|
|
|
RGB_FROM_GDK_COLOR(color);
|
|
|
|
else if (param[i].defval)
|
|
|
|
/* be compatible and accept ints */
|
|
|
|
*((gulong *)param[i].data) = strtoul(param[i].defval, 0, 10);
|
|
|
|
else
|
|
|
|
*((gulong *)param[i].data) = 0;
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
default:
|
2001-06-30 13:40:01 +02:00
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_free(PrefParam *param)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(param != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
if (!param[i].data) continue;
|
|
|
|
|
|
|
|
switch (param[i].type) {
|
|
|
|
case P_STRING:
|
2003-03-02 17:29:07 +01:00
|
|
|
case P_PASSWORD:
|
2001-04-19 14:21:46 +02:00
|
|
|
g_free(*((gchar **)param[i].data));
|
|
|
|
break;
|
|
|
|
default:
|
2001-06-30 13:40:01 +02:00
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_button_toggled(GtkToggleButton *toggle_btn, GtkWidget *widget)
|
|
|
|
{
|
|
|
|
gboolean is_active;
|
|
|
|
|
|
|
|
is_active = gtk_toggle_button_get_active(toggle_btn);
|
|
|
|
gtk_widget_set_sensitive(widget, is_active);
|
|
|
|
}
|
|
|
|
|
2006-02-15 15:28:47 +01:00
|
|
|
void prefs_button_toggled_reverse(GtkToggleButton *toggle_btn, GtkWidget *widget)
|
|
|
|
{
|
|
|
|
gboolean is_active;
|
|
|
|
|
|
|
|
is_active = gtk_toggle_button_get_active(toggle_btn);
|
|
|
|
gtk_widget_set_sensitive(widget, !is_active);
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_set_dialog(PrefParam *param)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
if (param[i].widget_set_func)
|
|
|
|
param[i].widget_set_func(¶m[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_data_from_dialog(PrefParam *param)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
if (param[i].data_set_func)
|
|
|
|
param[i].data_set_func(¶m[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_dialog_to_default(PrefParam *param)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
PrefParam tmpparam;
|
|
|
|
gchar *str_data = NULL;
|
|
|
|
gint int_data;
|
|
|
|
gushort ushort_data;
|
|
|
|
gboolean bool_data;
|
|
|
|
DummyEnum enum_data;
|
|
|
|
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
|
|
if (!param[i].widget_set_func) continue;
|
|
|
|
|
|
|
|
tmpparam = param[i];
|
|
|
|
|
|
|
|
switch (tmpparam.type) {
|
|
|
|
case P_STRING:
|
|
|
|
if (tmpparam.defval) {
|
2004-10-26 12:43:50 +02:00
|
|
|
if (!g_ascii_strncasecmp(tmpparam.defval, "ENV_", 4)) {
|
2001-04-19 14:21:46 +02:00
|
|
|
str_data = g_strdup(g_getenv(param[i].defval + 4));
|
|
|
|
tmpparam.data = &str_data;
|
|
|
|
break;
|
|
|
|
} else if (tmpparam.defval[0] == '~') {
|
|
|
|
str_data =
|
2001-04-27 22:27:24 +02:00
|
|
|
g_strconcat(get_home_dir(),
|
2001-04-19 14:21:46 +02:00
|
|
|
param[i].defval + 1,
|
|
|
|
NULL);
|
|
|
|
tmpparam.data = &str_data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tmpparam.data = &tmpparam.defval;
|
|
|
|
break;
|
2007-06-03 21:52:31 +02:00
|
|
|
case P_PASSWORD:
|
|
|
|
tmpparam.data = &tmpparam.defval;
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
case P_INT:
|
|
|
|
if (tmpparam.defval)
|
|
|
|
int_data = atoi(tmpparam.defval);
|
|
|
|
else
|
|
|
|
int_data = 0;
|
|
|
|
tmpparam.data = &int_data;
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
if (tmpparam.defval)
|
|
|
|
ushort_data = atoi(tmpparam.defval);
|
|
|
|
else
|
|
|
|
ushort_data = 0;
|
|
|
|
tmpparam.data = &ushort_data;
|
|
|
|
break;
|
|
|
|
case P_BOOL:
|
|
|
|
if (tmpparam.defval) {
|
2004-10-26 12:43:50 +02:00
|
|
|
if (!g_ascii_strcasecmp(tmpparam.defval, "TRUE"))
|
2001-04-19 14:21:46 +02:00
|
|
|
bool_data = TRUE;
|
|
|
|
else
|
|
|
|
bool_data = atoi(tmpparam.defval)
|
|
|
|
? TRUE : FALSE;
|
|
|
|
} else
|
|
|
|
bool_data = FALSE;
|
|
|
|
tmpparam.data = &bool_data;
|
|
|
|
break;
|
|
|
|
case P_ENUM:
|
|
|
|
if (tmpparam.defval)
|
|
|
|
enum_data = (DummyEnum)atoi(tmpparam.defval);
|
|
|
|
else
|
|
|
|
enum_data = 0;
|
|
|
|
tmpparam.data = &enum_data;
|
|
|
|
break;
|
|
|
|
case P_OTHER:
|
2003-02-19 22:46:30 +01:00
|
|
|
default:
|
2001-06-30 13:40:01 +02:00
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
}
|
|
|
|
tmpparam.widget_set_func(&tmpparam);
|
|
|
|
g_free(str_data);
|
|
|
|
str_data = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_data_from_entry(PrefParam *pparam)
|
|
|
|
{
|
2003-10-05 12:10:30 +02:00
|
|
|
gchar **str;
|
|
|
|
const gchar *entry_str;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
entry_str = gtk_entry_get_text(GTK_ENTRY(*pparam->widget));
|
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
g_free(*str);
|
|
|
|
*str = entry_str[0] ? g_strdup(entry_str) : NULL;
|
|
|
|
break;
|
2016-02-28 23:42:56 +01:00
|
|
|
case P_PASSWORD:
|
|
|
|
break;
|
2001-04-19 14:21:46 +02:00
|
|
|
case P_USHORT:
|
|
|
|
*((gushort *)pparam->data) = atoi(entry_str);
|
|
|
|
break;
|
|
|
|
case P_INT:
|
|
|
|
*((gint *)pparam->data) = atoi(entry_str);
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkEntry widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 00:35:52 +02:00
|
|
|
void prefs_set_escaped_data_from_entry(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2007-05-31 00:35:52 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
g_free(*str);
|
|
|
|
*str = pref_get_pref_from_entry(GTK_ENTRY(*pparam->widget));
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid escaped PrefType for GtkEntry widget: %d",
|
2007-05-31 00:35:52 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_set_entry(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
|
|
|
|
*str ? *str : "");
|
|
|
|
break;
|
|
|
|
case P_INT:
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
|
|
|
|
itos(*((gint *)pparam->data)));
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(*pparam->widget),
|
|
|
|
itos(*((gushort *)pparam->data)));
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkEntry widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 00:35:52 +02:00
|
|
|
void prefs_set_entry_from_escaped(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2007-05-31 00:35:52 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
pref_set_entry_from_pref(GTK_ENTRY(*pparam->widget),
|
|
|
|
*str ? *str : "");
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid escaped PrefType for GtkEntry widget: %d",
|
2007-05-31 00:35:52 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_set_data_from_text(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
2003-10-05 12:10:30 +02:00
|
|
|
gchar *text = NULL, *tp = NULL;
|
2001-04-19 14:21:46 +02:00
|
|
|
gchar *tmp, *tmpp;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
g_free(*str);
|
2003-10-05 12:10:30 +02:00
|
|
|
if (GTK_IS_EDITABLE(*pparam->widget)) { /* need? */
|
|
|
|
tp = text = gtk_editable_get_chars
|
|
|
|
(GTK_EDITABLE(*pparam->widget), 0, -1);
|
|
|
|
} else if (GTK_IS_TEXT_VIEW(*pparam->widget)) {
|
|
|
|
GtkTextView *textview = GTK_TEXT_VIEW(*pparam->widget);
|
|
|
|
GtkTextBuffer *buffer = gtk_text_view_get_buffer(textview);
|
|
|
|
GtkTextIter start, end;
|
|
|
|
gtk_text_buffer_get_start_iter(buffer, &start);
|
|
|
|
gtk_text_buffer_get_iter_at_offset(buffer, &end, -1);
|
|
|
|
tp = text = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
|
|
|
|
}
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail (tp && text);
|
2003-10-05 12:10:30 +02:00
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
if (text[0] == '\0') {
|
|
|
|
*str = NULL;
|
|
|
|
g_free(text);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Xalloca(tmpp = tmp, strlen(text) * 2 + 1,
|
|
|
|
{ *str = NULL; break; });
|
|
|
|
while (*tp) {
|
|
|
|
if (*tp == '\n') {
|
|
|
|
*tmpp++ = '\\';
|
|
|
|
*tmpp++ = 'n';
|
|
|
|
tp++;
|
|
|
|
} else
|
|
|
|
*tmpp++ = *tp++;
|
|
|
|
}
|
|
|
|
*tmpp = '\0';
|
|
|
|
*str = g_strdup(tmp);
|
|
|
|
g_free(text);
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkText widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 00:35:52 +02:00
|
|
|
void prefs_set_escaped_data_from_text(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2007-05-31 00:35:52 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
g_free(*str);
|
|
|
|
*str = pref_get_pref_from_textview(GTK_TEXT_VIEW(*pparam->widget));
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid escaped PrefType for GtkText widget: %d",
|
2007-05-31 00:35:52 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_set_text(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar *buf, *sp, *bufp;
|
|
|
|
gchar **str;
|
2003-10-05 12:10:30 +02:00
|
|
|
GtkTextView *text;
|
|
|
|
GtkTextBuffer *buffer;
|
|
|
|
GtkTextIter iter;
|
2001-04-19 14:21:46 +02:00
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
if (*str) {
|
|
|
|
bufp = buf = alloca(strlen(*str) + 1);
|
|
|
|
if (!buf) buf = "";
|
|
|
|
else {
|
|
|
|
sp = *str;
|
|
|
|
while (*sp) {
|
|
|
|
if (*sp == '\\' && *(sp + 1) == 'n') {
|
|
|
|
*bufp++ = '\n';
|
|
|
|
sp += 2;
|
|
|
|
} else
|
|
|
|
*bufp++ = *sp++;
|
|
|
|
}
|
|
|
|
*bufp = '\0';
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
buf = "";
|
|
|
|
|
2003-10-05 12:10:30 +02:00
|
|
|
text = GTK_TEXT_VIEW(*pparam->widget);
|
|
|
|
buffer = gtk_text_view_get_buffer(text);
|
2005-01-03 13:54:14 +01:00
|
|
|
gtk_text_buffer_set_text(buffer, "", -1);
|
2003-10-05 12:10:30 +02:00
|
|
|
gtk_text_buffer_get_start_iter(buffer, &iter);
|
|
|
|
gtk_text_buffer_insert(buffer, &iter, buf, -1);
|
2001-04-19 14:21:46 +02:00
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkTextView widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-31 00:35:52 +02:00
|
|
|
void prefs_set_text_from_escaped(PrefParam *pparam)
|
|
|
|
{
|
|
|
|
gchar **str;
|
|
|
|
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2007-05-31 00:35:52 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_STRING:
|
|
|
|
str = (gchar **)pparam->data;
|
|
|
|
pref_set_textview_from_pref(GTK_TEXT_VIEW(*pparam->widget),
|
|
|
|
*str ? *str : "");
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid escaped PrefType for GtkTextView widget: %d",
|
2007-05-31 00:35:52 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-19 14:21:46 +02:00
|
|
|
void prefs_set_data_from_toggle(PrefParam *pparam)
|
|
|
|
{
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(pparam->type == P_BOOL);
|
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
*((gboolean *)pparam->data) =
|
|
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(*pparam->widget));
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_toggle(PrefParam *pparam)
|
|
|
|
{
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(pparam->type == P_BOOL);
|
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(*pparam->widget),
|
|
|
|
*((gboolean *)pparam->data));
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_data_from_spinbtn(PrefParam *pparam)
|
|
|
|
{
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_INT:
|
|
|
|
*((gint *)pparam->data) =
|
|
|
|
gtk_spin_button_get_value_as_int
|
|
|
|
(GTK_SPIN_BUTTON(*pparam->widget));
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
*((gushort *)pparam->data) =
|
|
|
|
(gushort)gtk_spin_button_get_value_as_int
|
|
|
|
(GTK_SPIN_BUTTON(*pparam->widget));
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkSpinButton widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_set_spinbtn(PrefParam *pparam)
|
|
|
|
{
|
2009-02-23 17:55:51 +01:00
|
|
|
cm_return_if_fail(*pparam->widget != NULL);
|
2001-04-19 14:21:46 +02:00
|
|
|
|
|
|
|
switch (pparam->type) {
|
|
|
|
case P_INT:
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam->widget),
|
|
|
|
(gfloat)*((gint *)pparam->data));
|
|
|
|
break;
|
|
|
|
case P_USHORT:
|
|
|
|
gtk_spin_button_set_value(GTK_SPIN_BUTTON(*pparam->widget),
|
|
|
|
(gfloat)*((gushort *)pparam->data));
|
|
|
|
break;
|
|
|
|
default:
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Invalid PrefType for GtkSpinButton widget: %d",
|
2001-04-19 14:21:46 +02:00
|
|
|
pparam->type);
|
|
|
|
}
|
|
|
|
}
|
2003-01-06 19:54:30 +01:00
|
|
|
|
|
|
|
static GSList *prefs_pages = NULL;
|
|
|
|
|
2015-08-27 12:08:08 +02:00
|
|
|
static void prefs_gtk_window_closed_cb(PrefsWindow *prefswindow)
|
|
|
|
{
|
|
|
|
if (prefswindow == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (prefswindow->dialog_response > PREFSWINDOW_RESPONSE_CANCEL)
|
|
|
|
prefs_common_write_config();
|
|
|
|
}
|
|
|
|
|
2003-05-13 13:54:19 +02:00
|
|
|
void prefs_gtk_open(void)
|
2003-01-06 19:54:30 +01:00
|
|
|
{
|
2005-10-17 17:00:48 +02:00
|
|
|
prefswindow_open(_("Preferences"), prefs_pages, NULL,
|
2008-03-06 17:06:46 +01:00
|
|
|
&prefs_common.prefswin_width, &prefs_common.prefswin_height,
|
2015-08-27 13:09:46 +02:00
|
|
|
NULL, prefs_gtk_window_closed_cb, prefs_gtk_window_closed_cb);
|
2003-01-06 19:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_gtk_register_page(PrefsPage *page)
|
|
|
|
{
|
|
|
|
prefs_pages = g_slist_append(prefs_pages, page);
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_gtk_unregister_page(PrefsPage *page)
|
|
|
|
{
|
|
|
|
prefs_pages = g_slist_remove(prefs_pages, page);
|
|
|
|
}
|
2006-10-06 19:51:53 +02:00
|
|
|
|
|
|
|
static void prefs_destroy_whole_cache(gpointer to_free)
|
|
|
|
{
|
|
|
|
GHashTable *table = (GHashTable *)to_free;
|
|
|
|
g_hash_table_destroy(table);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_destroy_file_cache(gpointer to_free)
|
|
|
|
{
|
|
|
|
GHashTable *table = (GHashTable *)to_free;
|
|
|
|
g_hash_table_destroy(table);
|
|
|
|
}
|
|
|
|
|
2006-10-08 10:34:21 +02:00
|
|
|
static int prefs_cache_sections(GHashTable *file_cache, const gchar *rcfile)
|
2006-10-06 19:51:53 +02:00
|
|
|
{
|
2009-02-22 19:47:11 +01:00
|
|
|
FILE *fp = NULL;
|
2006-10-06 19:51:53 +02:00
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
GHashTable *section_cache = NULL;
|
|
|
|
|
2009-02-22 19:47:11 +01:00
|
|
|
if (rcfile)
|
|
|
|
fp = g_fopen(rcfile, "rb");
|
2006-10-06 19:51:53 +02:00
|
|
|
if (!fp) {
|
2015-05-18 21:22:37 +02:00
|
|
|
debug_print("cache: %s: %s\n", rcfile?rcfile:"(null)", g_strerror(errno));
|
2006-10-08 10:34:21 +02:00
|
|
|
return -1;
|
2006-10-06 19:51:53 +02:00
|
|
|
}
|
|
|
|
|
2006-10-09 08:22:58 +02:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
2006-10-06 19:51:53 +02:00
|
|
|
flockfile(fp);
|
2006-10-09 08:22:58 +02:00
|
|
|
#endif
|
2006-10-06 19:51:53 +02:00
|
|
|
|
2006-10-09 08:22:58 +02:00
|
|
|
while (SC_FGETS(buf, sizeof(buf), fp) != NULL) {
|
2006-10-06 19:51:53 +02:00
|
|
|
strretchomp(buf);
|
|
|
|
if (buf[0] == '\0')
|
|
|
|
continue;
|
|
|
|
if (buf[0] == '#')
|
|
|
|
continue; /* comment */
|
|
|
|
if (buf[0] == '[') { /* new section */
|
|
|
|
gchar *blockname = g_strdup(buf+1);
|
|
|
|
|
|
|
|
if (strrchr(blockname, ']'))
|
|
|
|
*strrchr(blockname, ']') = '\0';
|
2006-10-09 19:32:48 +02:00
|
|
|
|
|
|
|
if ((section_cache = g_hash_table_lookup(file_cache, blockname)) == NULL) {
|
|
|
|
debug_print("new section '%s'\n", blockname);
|
|
|
|
section_cache = g_hash_table_new_full(g_str_hash, g_str_equal,
|
2006-10-06 19:51:53 +02:00
|
|
|
g_free, NULL);
|
2006-10-09 19:32:48 +02:00
|
|
|
g_hash_table_insert(file_cache,
|
|
|
|
blockname, section_cache);
|
|
|
|
} else {
|
|
|
|
debug_print("section '%s' already done\n", blockname);
|
|
|
|
g_free(blockname);
|
|
|
|
section_cache = NULL;
|
|
|
|
continue;
|
|
|
|
}
|
2006-10-06 19:51:53 +02:00
|
|
|
} else {
|
|
|
|
if (!section_cache) {
|
2006-10-09 19:32:48 +02:00
|
|
|
debug_print("skipping stuff %s with no section\n", buf);
|
|
|
|
continue;
|
2006-10-06 19:51:53 +02:00
|
|
|
} else {
|
|
|
|
gchar *pref;
|
|
|
|
|
|
|
|
if (!strchr(buf, '=')) {
|
|
|
|
/* plugins do differently */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pref = g_strdup(buf);
|
|
|
|
|
2006-10-09 19:32:48 +02:00
|
|
|
//debug_print("new pref '%s'\n", pref);
|
2006-10-06 19:51:53 +02:00
|
|
|
g_hash_table_insert(section_cache, pref, GINT_TO_POINTER(1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-10-09 08:22:58 +02:00
|
|
|
#ifdef HAVE_FGETS_UNLOCKED
|
2006-10-06 19:51:53 +02:00
|
|
|
funlockfile(fp);
|
2006-10-09 08:22:58 +02:00
|
|
|
#endif
|
2006-10-06 19:51:53 +02:00
|
|
|
fclose(fp);
|
2006-10-08 10:34:21 +02:00
|
|
|
return 0;
|
2006-10-06 19:51:53 +02:00
|
|
|
}
|
|
|
|
|
2006-10-08 10:34:21 +02:00
|
|
|
static int prefs_cache(const gchar *rcfile)
|
2006-10-06 19:51:53 +02:00
|
|
|
{
|
|
|
|
GHashTable *file_cache = g_hash_table_new_full(g_str_hash, g_str_equal,
|
|
|
|
g_free, prefs_destroy_file_cache);
|
|
|
|
|
2007-08-13 23:36:57 +02:00
|
|
|
debug_print("new file '%s'\n", rcfile?rcfile:"(null)");
|
2006-10-06 19:51:53 +02:00
|
|
|
g_hash_table_insert(whole_cache, g_strdup(rcfile), file_cache);
|
|
|
|
|
2006-10-08 10:34:21 +02:00
|
|
|
return prefs_cache_sections(file_cache, rcfile);
|
2006-10-06 19:51:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_prepare_cache(void)
|
|
|
|
{
|
2006-11-12 09:19:11 +01:00
|
|
|
gchar *clawsrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, COMMON_RC, NULL);
|
2006-10-06 19:51:53 +02:00
|
|
|
gchar *folderitemrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, FOLDERITEM_RC, NULL);
|
|
|
|
gchar *accountrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACCOUNT_RC, NULL);
|
|
|
|
|
|
|
|
if (whole_cache == NULL) {
|
|
|
|
whole_cache = g_hash_table_new_full(g_str_hash, g_str_equal,
|
|
|
|
g_free, prefs_destroy_whole_cache);
|
|
|
|
} else {
|
|
|
|
debug_print("already cached\n");
|
2006-11-12 09:19:11 +01:00
|
|
|
g_free(clawsrc);
|
2006-10-06 19:51:53 +02:00
|
|
|
g_free(folderitemrc);
|
|
|
|
g_free(accountrc);
|
|
|
|
return;
|
|
|
|
}
|
2006-11-12 09:19:11 +01:00
|
|
|
if (prefs_cache(clawsrc) < 0 ||
|
2006-10-08 10:34:21 +02:00
|
|
|
prefs_cache(folderitemrc) < 0 ||
|
|
|
|
prefs_cache(accountrc) < 0)
|
|
|
|
prefs_destroy_cache();
|
|
|
|
|
2006-11-12 09:19:11 +01:00
|
|
|
g_free(clawsrc);
|
2006-10-06 19:51:53 +02:00
|
|
|
g_free(folderitemrc);
|
|
|
|
g_free(accountrc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void prefs_destroy_cache(void)
|
|
|
|
{
|
|
|
|
if (!whole_cache) {
|
|
|
|
debug_print("no cache\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
debug_print("destroying cache\n");
|
|
|
|
g_hash_table_destroy(whole_cache);
|
|
|
|
whole_cache = NULL;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_parse_cache(gpointer key, gpointer value, gpointer user_data)
|
|
|
|
{
|
|
|
|
gchar *pref = (gchar *)key;
|
|
|
|
|
|
|
|
PrefParam *param = (PrefParam *)user_data;
|
|
|
|
|
|
|
|
prefs_config_parse_one_line(param, pref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean prefs_read_config_from_cache(PrefParam *param, const gchar *label,
|
|
|
|
const gchar *rcfile)
|
|
|
|
{
|
|
|
|
GHashTable *sections_table = NULL;
|
|
|
|
GHashTable *values_table = NULL;
|
|
|
|
sections_table = g_hash_table_lookup(whole_cache, rcfile);
|
|
|
|
|
|
|
|
if (sections_table == NULL) {
|
2015-09-23 23:24:14 +02:00
|
|
|
g_warning("Can't find %s in the whole cache", rcfile?rcfile:"(null)");
|
2006-10-06 19:51:53 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
values_table = g_hash_table_lookup(sections_table, label);
|
|
|
|
|
|
|
|
if (values_table == NULL) {
|
2007-08-13 23:36:57 +02:00
|
|
|
debug_print("no '%s' section in '%s' cache\n", label?label:"(null)", rcfile?rcfile:"(null)");
|
2006-10-06 19:51:53 +02:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
g_hash_table_foreach(values_table, prefs_parse_cache, param);
|
|
|
|
return TRUE;
|
|
|
|
}
|