claws-mail/src/prefs_image_viewer.c
Colin Leroy 96c9a3e76e 2005-05-31 [colin] 1.9.11cvs28
* src/Makefile.am
	* src/account.c
	* src/action.c
	* src/addr_compl.c
	* src/addressbook.c
	* src/codeconv.c
	* src/compose.c
	* src/export.c
	* src/folder.c
	* src/folderview.c
	* src/image_viewer.c
	* src/main.c
	* src/mainwindow.c
	* src/messageview.c
	* src/mimeview.c
	* src/msgcache.c
	* src/prefs_account.c
	* src/prefs_actions.c
	* src/prefs_common.c
	* src/prefs_compose_writing.c
	* src/prefs_customheader.c
	* src/prefs_ext_prog.c
	* src/prefs_filtering.c
	* src/prefs_filtering_action.c
	* src/prefs_fonts.c
	* src/prefs_image_viewer.c
	* src/prefs_message.c
	* src/prefs_message.h
	* src/prefs_msg_colors.c
	* src/prefs_other.c
	* src/prefs_other.h
	* src/prefs_quote.c
	* src/prefs_receive.c
	* src/prefs_receive.h
	* src/prefs_send.c
	* src/prefs_send.h
	* src/prefs_spelling.c
	* src/prefs_summaries.c
	* src/prefs_summary_column.c
	* src/prefs_template.c
	* src/prefs_themes.c
	* src/prefs_toolbar.c
	* src/prefs_wrapping.c
	* src/procmime.c
	* src/procmsg.c
	* src/send_message.h
	* src/ssl_manager.c
	* src/summary_search.c
	* src/summaryview.c
	* src/textview.c
	* src/wizard.c
	* src/common/smtp.c
	* src/common/smtp.h
	* src/gtk/gtkutils.h
		o Move the rest of Common prefs to new style
		o Lots of -Wall warning fixes
		o fix FIXME in cache memusage calculation
		o Let return receipts be sent from any account
		o Little cache optimisation (read)
		o Fix bug #746 (don't treat commas as separators
		  when inside a quoted string)
2005-05-31 19:00:21 +00:00

163 lines
4.9 KiB
C

/*
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
* Copyright (C) 1999-2003 Hiroyuki Yamamoto and the Sylpheed-Claws Team
*
* 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 "defs.h"
#include <glib.h>
#include <glib/gi18n.h>
#include <gtk/gtk.h>
#include "common/utils.h"
#include "prefs.h"
#include "prefs_gtk.h"
#include "prefswindow.h"
#include "prefs_common.h"
#include "prefs_gtk.h"
typedef struct _ImageViewerPage
{
PrefsPage page;
GtkWidget *window; /* do not modify */
GtkWidget *autoload_img;
GtkWidget *resize_img;
GtkWidget *inline_img;
}ImageViewerPage;
static void imageviewer_create_widget_func(PrefsPage * _page,
GtkWindow * window,
gpointer data)
{
ImageViewerPage *prefs_imageviewer = (ImageViewerPage *) _page;
GtkWidget *table;
GtkWidget *label;
GtkWidget *autoload_img;
GtkWidget *resize_img;
GtkWidget *inline_img;
table = gtk_table_new(2, 2, FALSE);
gtk_widget_show(table);
gtk_container_set_border_width(GTK_CONTAINER(table), 8);
gtk_table_set_row_spacings(GTK_TABLE(table), 4);
gtk_table_set_col_spacings(GTK_TABLE(table), 8);
label =
gtk_label_new(_("Automatically display attached images"));
gtk_widget_show(label);
gtk_table_attach(GTK_TABLE(table), label, 0, 1, 0, 1,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
label = gtk_label_new(_("Resize attached images by default\n(Clicking image toggles scaling)"));
gtk_widget_show(label);
gtk_table_attach(GTK_TABLE(table), label, 0, 1, 1, 2,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
label = gtk_label_new(_("Display images inline"));
gtk_widget_show(label);
gtk_table_attach(GTK_TABLE(table), label, 0, 1, 2, 3,
(GtkAttachOptions) (GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
autoload_img = gtk_check_button_new_with_label("");
gtk_widget_show(autoload_img);
gtk_table_attach(GTK_TABLE(table), autoload_img, 1, 2, 0, 1,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
resize_img = gtk_check_button_new_with_label("");
gtk_widget_show(resize_img);
gtk_table_attach(GTK_TABLE(table), resize_img, 1, 2, 1, 2,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
inline_img = gtk_check_button_new_with_label("");
gtk_widget_show(inline_img);
gtk_table_attach(GTK_TABLE(table), inline_img, 1, 2, 2, 3,
(GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
(GtkAttachOptions) (0), 0, 0);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resize_img), prefs_common.resize_img);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(autoload_img), prefs_common.display_img);
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(inline_img), prefs_common.inline_img);
prefs_imageviewer->window = GTK_WIDGET(window);
prefs_imageviewer->autoload_img = autoload_img;
prefs_imageviewer->resize_img = resize_img;
prefs_imageviewer->inline_img = inline_img;
prefs_imageviewer->page.widget = table;
}
static void imageviewer_destroy_widget_func(PrefsPage *_page)
{
}
static void imageviewer_save_func(PrefsPage * _page)
{
ImageViewerPage *imageviewer = (ImageViewerPage *) _page;
prefs_common.display_img =
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
(imageviewer->autoload_img));
prefs_common.resize_img =
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
(imageviewer->resize_img));
prefs_common.inline_img =
gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
(imageviewer->inline_img));
}
ImageViewerPage *prefs_imageviewer;
void prefs_image_viewer_init(void)
{
ImageViewerPage *page;
static gchar *path[3];
path[0] = _("Message View");
path[1] = _("Image Viewer");
path[2] = NULL;
page = g_new0(ImageViewerPage, 1);
page->page.path = path;
page->page.create_widget = imageviewer_create_widget_func;
page->page.destroy_widget = imageviewer_destroy_widget_func;
page->page.save_page = imageviewer_save_func;
page->page.weight = 160.0;
prefs_gtk_register_page((PrefsPage *) page);
prefs_imageviewer = page;
}
void prefs_image_viewer_done(void)
{
prefs_gtk_unregister_page((PrefsPage *) prefs_imageviewer);
g_free(prefs_imageviewer);
}