841 lines
19 KiB
C
841 lines
19 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 1999-2002 Hiroyuki Yamamoto
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (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
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <gtk/gtk.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include "intl.h"
|
|
#include "main.h"
|
|
#include "prefs.h"
|
|
#include "prefs_gtk.h"
|
|
#include "utils.h"
|
|
#include "gtkutils.h"
|
|
#include "passcrypt.h"
|
|
#include "base64.h"
|
|
#include "codeconv.h"
|
|
|
|
#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)))
|
|
|
|
typedef enum
|
|
{
|
|
DUMMY_PARAM
|
|
} DummyEnum;
|
|
|
|
void prefs_read_config(PrefParam *param, const gchar *label,
|
|
const gchar *rcfile)
|
|
{
|
|
FILE *fp;
|
|
gchar buf[PREFSBUFSIZE];
|
|
gchar *rcpath;
|
|
gchar *block_label;
|
|
|
|
g_return_if_fail(param != NULL);
|
|
g_return_if_fail(label != NULL);
|
|
g_return_if_fail(rcfile != NULL);
|
|
|
|
debug_print("Reading configuration...\n");
|
|
|
|
prefs_set_default(param);
|
|
|
|
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, rcfile, NULL);
|
|
if ((fp = fopen(rcpath, "rb")) == NULL) {
|
|
if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
|
|
g_free(rcpath);
|
|
return;
|
|
}
|
|
g_free(rcpath);
|
|
|
|
block_label = g_strdup_printf("[%s]", label);
|
|
|
|
/* search aiming block */
|
|
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
|
gint val;
|
|
|
|
val = strncmp(buf, block_label, strlen(block_label));
|
|
if (val == 0) {
|
|
debug_print("Found %s\n", block_label);
|
|
break;
|
|
}
|
|
}
|
|
g_free(block_label);
|
|
|
|
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
|
strretchomp(buf);
|
|
/* reached next block */
|
|
if (buf[0] == '[') break;
|
|
|
|
prefs_config_parse_one_line(param, buf);
|
|
}
|
|
|
|
debug_print("Finished reading configuration.\n");
|
|
fclose(fp);
|
|
}
|
|
|
|
void prefs_config_parse_one_line(PrefParam *param, const gchar *buf)
|
|
{
|
|
gint i;
|
|
gint name_len;
|
|
const gchar *value;
|
|
GdkColor color;
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
name_len = strlen(param[i].name);
|
|
if (strncasecmp(buf, param[i].name, name_len))
|
|
continue;
|
|
if (buf[name_len] != '=')
|
|
continue;
|
|
value = buf + name_len + 1;
|
|
/* debug_print("%s = %s\n", param[i].name, value); */
|
|
|
|
switch (param[i].type) {
|
|
case P_STRING:
|
|
{
|
|
gchar *tmp;
|
|
|
|
tmp = *value ?
|
|
conv_codeset_strdup(value,
|
|
conv_get_current_charset_str(),
|
|
CS_UTF_8)
|
|
: g_strdup("");
|
|
if (!tmp) {
|
|
g_warning("failed to convert character set.");
|
|
tmp = g_strdup(value);
|
|
}
|
|
g_free(*((gchar **)param[i].data));
|
|
*((gchar **)param[i].data) = tmp;
|
|
break;
|
|
}
|
|
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;
|
|
case P_COLOR:
|
|
if (gdk_color_parse(value, &color))
|
|
*((gulong *)param[i].data) = RGB_FROM_GDK_COLOR(color);
|
|
else
|
|
/* be compatible and accept ints */
|
|
*((gulong *)param[i].data) = strtoul(value, 0, 10);
|
|
break;
|
|
case P_PASSWORD:
|
|
g_free(*((gchar **)param[i].data));
|
|
if (value[0] == '!') {
|
|
gchar tmp[1024];
|
|
gint len;
|
|
|
|
len = base64_decode(tmp, &value[1], strlen(value) - 1);
|
|
passcrypt_decrypt(tmp, len);
|
|
tmp[len] = '\0';
|
|
*((gchar **)param[i].data) =
|
|
*tmp ? g_strdup(tmp) : NULL;
|
|
} else {
|
|
*((gchar **)param[i].data) =
|
|
*value ? g_strdup(value) : NULL;
|
|
}
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
#define TRY(func) \
|
|
if (!(func)) \
|
|
{ \
|
|
g_warning("failed to write configuration to file\n"); \
|
|
if (orig_fp) fclose(orig_fp); \
|
|
prefs_file_close_revert(pfile); \
|
|
g_free(rcpath); \
|
|
g_free(block_label); \
|
|
return; \
|
|
} \
|
|
|
|
void prefs_write_config(PrefParam *param, const gchar *label,
|
|
const gchar *rcfile)
|
|
{
|
|
FILE *orig_fp;
|
|
PrefFile *pfile;
|
|
gchar *rcpath;
|
|
gchar buf[PREFSBUFSIZE];
|
|
gchar *block_label = NULL;
|
|
gboolean block_matched = FALSE;
|
|
|
|
g_return_if_fail(param != NULL);
|
|
g_return_if_fail(label != NULL);
|
|
g_return_if_fail(rcfile != NULL);
|
|
|
|
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, rcfile, NULL);
|
|
if ((orig_fp = fopen(rcpath, "rb")) == NULL) {
|
|
if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
|
|
}
|
|
|
|
if ((pfile = prefs_write_open(rcpath)) == NULL) {
|
|
g_warning("failed to write configuration to file\n");
|
|
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) {
|
|
debug_print("Found %s\n", block_label);
|
|
block_matched = TRUE;
|
|
break;
|
|
} else
|
|
TRY(fputs(buf, pfile->fp) != EOF);
|
|
}
|
|
}
|
|
|
|
TRY(fprintf(pfile->fp, "%s\n", block_label) > 0);
|
|
g_free(block_label);
|
|
block_label = NULL;
|
|
|
|
/* write all param data to file */
|
|
TRY(prefs_write_param(param, pfile->fp) == 0);
|
|
|
|
if (block_matched) {
|
|
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;
|
|
}
|
|
}
|
|
while (fgets(buf, sizeof(buf), orig_fp) != NULL)
|
|
TRY(fputs(buf, pfile->fp) != EOF);
|
|
}
|
|
|
|
if (orig_fp) fclose(orig_fp);
|
|
if (prefs_file_close(pfile) < 0)
|
|
g_warning("failed to write configuration to file\n");
|
|
g_free(rcpath);
|
|
|
|
debug_print("Configuration is saved.\n");
|
|
}
|
|
|
|
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:
|
|
{
|
|
gchar *tmp = NULL;
|
|
|
|
if (*((gchar **)param[i].data)) {
|
|
tmp = conv_codeset_strdup(*((gchar **)param[i].data),
|
|
CS_UTF_8,
|
|
conv_get_current_charset_str());
|
|
if (!tmp)
|
|
tmp = g_strdup(*((gchar **)param[i].data));
|
|
}
|
|
|
|
g_snprintf(buf, sizeof(buf), "%s=%s\n", param[i].name,
|
|
tmp ? tmp : "");
|
|
|
|
g_free(tmp);
|
|
break;
|
|
}
|
|
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;
|
|
case P_COLOR:
|
|
g_snprintf(buf, sizeof buf, "%s=#%6.6lx\n", param[i].name,
|
|
*((gulong *) param[i].data));
|
|
break;
|
|
case P_PASSWORD:
|
|
{
|
|
gchar *tmp = NULL, tmp2[1024] = {0};
|
|
|
|
tmp = *((gchar **)param[i].data);
|
|
if (tmp) {
|
|
gint len;
|
|
|
|
tmp = g_strdup(tmp);
|
|
len = strlen(tmp);
|
|
passcrypt_encrypt(tmp, len);
|
|
base64_encode(tmp2, tmp, len);
|
|
g_free(tmp);
|
|
tmp = tmp2;
|
|
}
|
|
g_snprintf(buf, sizeof(buf), "%s=!%s\n", param[i].name,
|
|
tmp ?
|
|
tmp : "");
|
|
}
|
|
break;
|
|
default:
|
|
/* unrecognized, fail */
|
|
debug_print("Unrecognized parameter type\n");
|
|
return -1;
|
|
}
|
|
|
|
if (buf[0] != '\0') {
|
|
if (fputs(buf, fp) == EOF) {
|
|
perror("fputs");
|
|
return -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void prefs_set_default(PrefParam *param)
|
|
{
|
|
gint i;
|
|
GdkColor color;
|
|
|
|
g_return_if_fail(param != NULL);
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
if (!param[i].data) continue;
|
|
|
|
switch (param[i].type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
g_free(*((gchar **)param[i].data));
|
|
if (param[i].defval != NULL) {
|
|
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,
|
|
conv_get_current_charset_str(),
|
|
CS_UTF_8)
|
|
: g_strdup("");
|
|
if (!tmp) {
|
|
g_warning("faild to convert character set.");
|
|
tmp = g_strdup(envstr);
|
|
}
|
|
*((gchar **)param[i].data) = tmp;
|
|
} else if (param[i].defval[0] == '~')
|
|
*((gchar **)param[i].data) =
|
|
g_strconcat(get_home_dir(),
|
|
param[i].defval + 1,
|
|
NULL);
|
|
else 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;
|
|
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) {
|
|
if (!strcasecmp(param[i].defval, "TRUE"))
|
|
*((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;
|
|
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;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void prefs_free(PrefParam *param)
|
|
{
|
|
gint i;
|
|
|
|
g_return_if_fail(param != NULL);
|
|
|
|
for (i = 0; param[i].name != NULL; i++) {
|
|
if (!param[i].data) continue;
|
|
|
|
switch (param[i].type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
g_free(*((gchar **)param[i].data));
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
void prefs_dialog_create(PrefsDialog *dialog)
|
|
{
|
|
GtkWidget *window;
|
|
GtkWidget *vbox;
|
|
GtkWidget *notebook;
|
|
|
|
GtkWidget *confirm_area;
|
|
GtkWidget *ok_btn;
|
|
GtkWidget *cancel_btn;
|
|
GtkWidget *apply_btn;
|
|
|
|
g_return_if_fail(dialog != NULL);
|
|
|
|
window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
|
|
gtk_container_set_border_width (GTK_CONTAINER (window), 8);
|
|
gtk_window_position (GTK_WINDOW(window), GTK_WIN_POS_CENTER);
|
|
gtk_window_set_modal (GTK_WINDOW (window), TRUE);
|
|
gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
|
|
|
|
vbox = gtk_vbox_new (FALSE, 6);
|
|
gtk_widget_show(vbox);
|
|
gtk_container_add (GTK_CONTAINER (window), vbox);
|
|
|
|
notebook = gtk_notebook_new ();
|
|
gtk_widget_show(notebook);
|
|
gtk_box_pack_start (GTK_BOX (vbox), notebook, TRUE, TRUE, 0);
|
|
gtk_container_set_border_width (GTK_CONTAINER (notebook), 2);
|
|
/* GTK_WIDGET_UNSET_FLAGS (notebook, GTK_CAN_FOCUS); */
|
|
gtk_notebook_set_scrollable (GTK_NOTEBOOK (notebook), TRUE);
|
|
|
|
gtk_notebook_popup_enable (GTK_NOTEBOOK (notebook));
|
|
|
|
gtkut_button_set_create(&confirm_area,
|
|
&ok_btn, _("OK"),
|
|
&cancel_btn, _("Cancel"),
|
|
&apply_btn, _("Apply"));
|
|
gtk_widget_show(confirm_area);
|
|
gtk_box_pack_end (GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);
|
|
gtk_widget_grab_default(ok_btn);
|
|
|
|
dialog->window = window;
|
|
dialog->notebook = notebook;
|
|
dialog->ok_btn = ok_btn;
|
|
dialog->cancel_btn = cancel_btn;
|
|
dialog->apply_btn = apply_btn;
|
|
}
|
|
|
|
void prefs_dialog_destroy(PrefsDialog *dialog)
|
|
{
|
|
gtk_widget_destroy(dialog->window);
|
|
dialog->window = NULL;
|
|
dialog->notebook = NULL;
|
|
dialog->ok_btn = NULL;
|
|
dialog->cancel_btn = NULL;
|
|
dialog->apply_btn = NULL;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
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:
|
|
case P_PASSWORD:
|
|
if (tmpparam.defval) {
|
|
if (!strncasecmp(tmpparam.defval, "ENV_", 4)) {
|
|
str_data = g_strdup(g_getenv(param[i].defval + 4));
|
|
tmpparam.data = &str_data;
|
|
break;
|
|
} else if (tmpparam.defval[0] == '~') {
|
|
str_data =
|
|
g_strconcat(get_home_dir(),
|
|
param[i].defval + 1,
|
|
NULL);
|
|
tmpparam.data = &str_data;
|
|
break;
|
|
}
|
|
}
|
|
tmpparam.data = &tmpparam.defval;
|
|
break;
|
|
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) {
|
|
if (!strcasecmp(tmpparam.defval, "TRUE"))
|
|
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:
|
|
default:
|
|
break;
|
|
}
|
|
tmpparam.widget_set_func(&tmpparam);
|
|
g_free(str_data);
|
|
str_data = NULL;
|
|
}
|
|
}
|
|
|
|
void prefs_set_data_from_entry(PrefParam *pparam)
|
|
{
|
|
gchar **str;
|
|
const gchar *entry_str;
|
|
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
entry_str = gtk_entry_get_text(GTK_ENTRY(*pparam->widget));
|
|
|
|
switch (pparam->type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
str = (gchar **)pparam->data;
|
|
g_free(*str);
|
|
*str = entry_str[0] ? g_strdup(entry_str) : NULL;
|
|
break;
|
|
case P_USHORT:
|
|
*((gushort *)pparam->data) = atoi(entry_str);
|
|
break;
|
|
case P_INT:
|
|
*((gint *)pparam->data) = atoi(entry_str);
|
|
break;
|
|
default:
|
|
g_warning("Invalid PrefType for GtkEntry widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
void prefs_set_entry(PrefParam *pparam)
|
|
{
|
|
gchar **str;
|
|
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
switch (pparam->type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
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:
|
|
g_warning("Invalid PrefType for GtkEntry widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
void prefs_set_data_from_text(PrefParam *pparam)
|
|
{
|
|
gchar **str;
|
|
gchar *text = NULL, *tp = NULL;
|
|
gchar *tmp, *tmpp;
|
|
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
switch (pparam->type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
str = (gchar **)pparam->data;
|
|
g_free(*str);
|
|
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);
|
|
}
|
|
|
|
g_return_if_fail (tp && text);
|
|
|
|
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:
|
|
g_warning("Invalid PrefType for GtkText widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
void prefs_set_text(PrefParam *pparam)
|
|
{
|
|
gchar *buf, *sp, *bufp;
|
|
gchar **str;
|
|
GtkTextView *text;
|
|
GtkTextBuffer *buffer;
|
|
GtkTextIter iter;
|
|
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
switch (pparam->type) {
|
|
case P_STRING:
|
|
case P_PASSWORD:
|
|
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 = "";
|
|
|
|
text = GTK_TEXT_VIEW(*pparam->widget);
|
|
buffer = gtk_text_view_get_buffer(text);
|
|
gtk_text_buffer_set_text(buffer, "\0", -1);
|
|
gtk_text_buffer_get_start_iter(buffer, &iter);
|
|
gtk_text_buffer_insert(buffer, &iter, buf, -1);
|
|
break;
|
|
default:
|
|
g_warning("Invalid PrefType for GtkTextView widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
void prefs_set_data_from_toggle(PrefParam *pparam)
|
|
{
|
|
g_return_if_fail(pparam->type == P_BOOL);
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
*((gboolean *)pparam->data) =
|
|
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(*pparam->widget));
|
|
}
|
|
|
|
void prefs_set_toggle(PrefParam *pparam)
|
|
{
|
|
g_return_if_fail(pparam->type == P_BOOL);
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(*pparam->widget),
|
|
*((gboolean *)pparam->data));
|
|
}
|
|
|
|
void prefs_set_data_from_spinbtn(PrefParam *pparam)
|
|
{
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
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:
|
|
g_warning("Invalid PrefType for GtkSpinButton widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
void prefs_set_spinbtn(PrefParam *pparam)
|
|
{
|
|
g_return_if_fail(*pparam->widget != NULL);
|
|
|
|
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:
|
|
g_warning("Invalid PrefType for GtkSpinButton widget: %d\n",
|
|
pparam->type);
|
|
}
|
|
}
|
|
|
|
static GSList *prefs_pages = NULL;
|
|
|
|
void prefs_gtk_open(void)
|
|
{
|
|
prefswindow_open(_("Preferences"), prefs_pages, NULL);
|
|
}
|
|
|
|
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);
|
|
}
|