2008-10-09 [colin] 3.6.0cvs19
[claws.git] / src / prefs_image_viewer.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail Team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  * 
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <gtk/gtk.h>
29
30 #include "common/utils.h"
31 #include "prefs.h"
32 #include "prefs_gtk.h"
33 #include "prefswindow.h"
34
35 #include "prefs_common.h"
36 #include "prefs_gtk.h"
37
38 typedef struct _ImageViewerPage
39 {
40         PrefsPage page;
41         
42         GtkWidget *window;              /* do not modify */
43
44         GtkWidget *autoload_img;
45         GtkWidget *resize_img;
46         GtkWidget *inline_img;
47         GtkWidget *print_imgs;
48 }ImageViewerPage;
49
50 static void imageviewer_create_widget_func(PrefsPage * _page,
51                                            GtkWindow * window,
52                                            gpointer data)
53 {
54         ImageViewerPage *prefs_imageviewer = (ImageViewerPage *) _page;
55
56         GtkWidget *table;
57         GtkWidget *autoload_img;
58         GtkWidget *resize_img;
59         GtkWidget *inline_img;
60         GtkWidget *print_imgs;
61         CLAWS_TIP_DECL();
62
63         table = gtk_table_new(4, 1, FALSE);
64         gtk_widget_show(table);
65         gtk_container_set_border_width(GTK_CONTAINER(table), VBOX_BORDER);
66         gtk_table_set_row_spacings(GTK_TABLE(table), 4);
67         gtk_table_set_col_spacings(GTK_TABLE(table), 8);
68
69         autoload_img = gtk_check_button_new_with_label(_("Automatically display attached images"));
70         gtk_widget_show(autoload_img);
71         gtk_table_attach(GTK_TABLE(table), autoload_img, 0, 1, 0, 1,
72                          (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
73                          (GtkAttachOptions) (0), 0, 0);
74
75         resize_img = gtk_check_button_new_with_label(_("Resize attached images by default"));
76         gtk_widget_show(resize_img);
77         CLAWS_SET_TIP(resize_img,
78                              _("Clicking image toggles scaling"));
79         gtk_table_attach(GTK_TABLE(table), resize_img, 0, 1, 1, 2,
80                          (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
81                          (GtkAttachOptions) (0), 0, 0);
82
83         inline_img = gtk_check_button_new_with_label(_("Display images inline"));
84         gtk_widget_show(inline_img);
85         gtk_table_attach(GTK_TABLE(table), inline_img, 0, 1, 2, 3,
86                          (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
87                          (GtkAttachOptions) (0), 0, 0);
88         
89         print_imgs = gtk_check_button_new_with_label(_("Print images"));
90 #if GTK_CHECK_VERSION(2,10,0)
91         gtk_widget_show(print_imgs);
92 #endif
93         gtk_table_attach(GTK_TABLE(table), print_imgs, 0, 1, 3, 4,
94                          (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
95                          (GtkAttachOptions) (0), 0, 0);
96         
97         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(resize_img), prefs_common.resize_img);
98         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(autoload_img), prefs_common.display_img);
99         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(inline_img), prefs_common.inline_img);
100         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(print_imgs), prefs_common.print_imgs);
101
102         prefs_imageviewer->window       = GTK_WIDGET(window);
103         prefs_imageviewer->autoload_img = autoload_img;
104         prefs_imageviewer->resize_img   = resize_img;
105         prefs_imageviewer->inline_img   = inline_img;
106         prefs_imageviewer->print_imgs   = print_imgs;
107
108         prefs_imageviewer->page.widget = table;
109 }
110
111 static void imageviewer_destroy_widget_func(PrefsPage *_page)
112 {
113 }
114
115 static void imageviewer_save_func(PrefsPage * _page)
116 {
117         ImageViewerPage *imageviewer = (ImageViewerPage *) _page;
118         
119         prefs_common.display_img =
120             gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
121                                          (imageviewer->autoload_img));
122         prefs_common.resize_img =
123             gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
124                                          (imageviewer->resize_img));
125         prefs_common.inline_img =
126             gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
127                                          (imageviewer->inline_img));
128         prefs_common.print_imgs =
129             gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON
130                                          (imageviewer->print_imgs));
131 }
132
133 ImageViewerPage *prefs_imageviewer;
134
135 void prefs_image_viewer_init(void)
136 {
137         ImageViewerPage *page;
138         static gchar *path[3];
139
140         path[0] = _("Message View");
141         path[1] = _("Image Viewer");
142         path[2] = NULL;
143
144         page = g_new0(ImageViewerPage, 1);
145         page->page.path = path;
146         page->page.create_widget = imageviewer_create_widget_func;
147         page->page.destroy_widget = imageviewer_destroy_widget_func;
148         page->page.save_page = imageviewer_save_func;
149         page->page.weight = 160.0;
150         prefs_gtk_register_page((PrefsPage *) page);
151         prefs_imageviewer = page;
152 }
153
154 void prefs_image_viewer_done(void)
155 {
156         prefs_gtk_unregister_page((PrefsPage *) prefs_imageviewer);
157         g_free(prefs_imageviewer);
158 }