2010-02-02 [colin] 3.7.5cvs3
[claws.git] / src / prefs_quote.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2005-2009 Colin Leroy <colin@colino.net> & 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 <stdio.h>
27 #include <stdlib.h>
28
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
32 #include <gdk/gdkkeysyms.h>
33
34 #include "prefs_common.h"
35 #include "prefs_gtk.h"
36 #include "prefs_template.h"
37 #include "alertpanel.h"
38
39 #include "gtk/gtkutils.h"
40 #include "gtk/prefswindow.h"
41
42 #include "manage_window.h"
43 #include "quote_fmt.h"
44
45 typedef struct _QuotePage
46 {
47         PrefsPage page;
48
49         GtkWidget *window;
50
51         GtkWidget *checkbtn_compose_with_format;
52         GtkWidget *entry_subject;
53         GtkWidget *text_format;
54         GtkWidget *entry_quotemark;
55         GtkWidget *text_quotefmt;
56         GtkWidget *entry_fw_quotemark;
57         GtkWidget *text_fw_quotefmt;
58         GtkWidget *btn_quotedesc;
59 } QuotePage;
60
61 QuotePage *prefs_quote;
62
63 static void prefs_quote_set_default_new_msg_fmt(void)
64 {
65         cm_return_if_fail(prefs_quote->text_format != NULL);
66
67         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_format),
68                 _("Hello,\\n"));
69 }
70
71 static void prefs_quote_set_default_reply_fmt(void)
72 {
73         cm_return_if_fail(prefs_quote->text_quotefmt != NULL);
74
75         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_quotefmt),
76                 _("On %d\\n%f wrote:\\n\\n%q"));
77 }
78
79 static void prefs_quote_set_default_forward_fmt(void)
80 {
81         cm_return_if_fail(prefs_quote->text_fw_quotefmt != NULL);
82
83         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_fw_quotefmt),
84                 _("\\n\\nBegin forwarded message:\\n\\n"
85                 "?d{Date: %d\\n}?f{From: %f\\n}?t{To: %t\\n}?c{Cc: %c\\n}"
86                 "?n{Newsgroups: %n\\n}?s{Subject: %s\\n}\\n\\n%M"));
87 }
88
89 static void prefs_quote_create_widget(PrefsPage *_page, GtkWindow *window, 
90                                   gpointer data)
91 {
92         QuotePage *prefs_quote = (QuotePage *) _page;
93         
94         GtkWidget *vbox;
95         GtkWidget *vbox2;
96         GtkWidget *notebook;
97
98         vbox = gtk_vbox_new (FALSE, 0);
99         gtk_widget_show (vbox);
100
101         notebook = gtk_notebook_new();
102         gtk_widget_show(notebook);
103         gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0);
104
105         /* new message */
106         vbox2 = gtk_vbox_new (FALSE, VSPACING);
107         gtk_widget_show (vbox2);
108         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
109         
110         quotefmt_create_new_msg_fmt_widgets(
111                                 window,
112                                 vbox2,
113                                 &prefs_quote->checkbtn_compose_with_format,
114                                 NULL,
115                                 &prefs_quote->entry_subject,
116                                 &prefs_quote->text_format,
117                                 FALSE, prefs_quote_set_default_new_msg_fmt);
118         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Compose")));
119
120         /* reply */
121         vbox2 = gtk_vbox_new (FALSE, VSPACING);
122         gtk_widget_show (vbox2);
123         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
124         
125         quotefmt_create_reply_fmt_widgets(
126                                 window,
127                                 vbox2,
128                                 NULL,
129                                 NULL,
130                                 &prefs_quote->entry_quotemark,
131                                 &prefs_quote->text_quotefmt,
132                                 FALSE, prefs_quote_set_default_reply_fmt);
133         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Reply")));
134
135         /* forward */
136         vbox2 = gtk_vbox_new (FALSE, VSPACING);
137         gtk_widget_show (vbox2);
138         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
139         
140         quotefmt_create_forward_fmt_widgets(
141                                 window,
142                                 vbox2,
143                                 NULL,
144                                 NULL,
145                                 &prefs_quote->entry_fw_quotemark,
146                                 &prefs_quote->text_fw_quotefmt,
147                                 FALSE, prefs_quote_set_default_forward_fmt);
148         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Forward")));
149
150         /* info button */
151         quotefmt_add_info_button(window, vbox);
152
153         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_quote->checkbtn_compose_with_format),
154                         prefs_common.compose_with_format);
155         pref_set_entry_from_pref(GTK_ENTRY(prefs_quote->entry_subject),
156                         prefs_common.compose_subject_format);
157         if (prefs_common.compose_body_format)
158                 pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_format),
159                                 prefs_common.compose_body_format);
160         else
161                 prefs_quote_set_default_new_msg_fmt();
162
163         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_quotemark), 
164                         prefs_common.quotemark?prefs_common.quotemark:"");
165         if (prefs_common.quotefmt)
166                 pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_quotefmt),
167                                 prefs_common.quotefmt);
168         else
169                 prefs_quote_set_default_reply_fmt();
170
171         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_fw_quotemark), 
172                         prefs_common.fw_quotemark?prefs_common.fw_quotemark:"");
173         if (prefs_common.fw_quotefmt)
174                 pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_fw_quotefmt),
175                                 prefs_common.fw_quotefmt);
176         else
177                 prefs_quote_set_default_forward_fmt();
178
179         prefs_quote->window             = GTK_WIDGET(window);
180         prefs_quote->page.widget = vbox;
181 }
182
183 static void prefs_quote_save(PrefsPage *_page)
184 {
185         QuotePage *page = (QuotePage *) _page;
186         
187         g_free(prefs_common.compose_subject_format); 
188         prefs_common.compose_subject_format = NULL;
189         g_free(prefs_common.compose_body_format); 
190         prefs_common.compose_body_format = NULL;
191         g_free(prefs_common.quotefmt); 
192         prefs_common.quotefmt = NULL;
193         g_free(prefs_common.fw_quotefmt); 
194         prefs_common.fw_quotefmt = NULL;
195         g_free(prefs_common.quotemark); 
196         prefs_common.quotemark = NULL;
197         g_free(prefs_common.fw_quotemark); 
198         prefs_common.fw_quotemark = NULL;
199         
200         prefs_common.compose_with_format =
201                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->checkbtn_compose_with_format));
202         prefs_common.compose_subject_format = pref_get_pref_from_entry(
203                         GTK_ENTRY(page->entry_subject));
204         prefs_common.compose_body_format = pref_get_pref_from_textview(
205                         GTK_TEXT_VIEW(page->text_format));
206         quotefmt_check_new_msg_formats(prefs_common.compose_with_format,
207                                                                    NULL,
208                                                                    prefs_common.compose_subject_format,
209                                                                    prefs_common.compose_body_format);
210
211         prefs_common.quotemark = gtk_editable_get_chars(
212                         GTK_EDITABLE(page->entry_quotemark), 0, -1);
213         prefs_common.quotefmt = pref_get_pref_from_textview(
214                         GTK_TEXT_VIEW(page->text_quotefmt));
215         quotefmt_check_reply_formats(TRUE,
216                                                                  NULL,
217                                                                  prefs_common.quotemark,
218                                                                  prefs_common.quotefmt);
219
220         prefs_common.fw_quotemark = gtk_editable_get_chars(
221                         GTK_EDITABLE(page->entry_fw_quotemark), 0, -1);
222         prefs_common.fw_quotefmt = pref_get_pref_from_textview(
223                         GTK_TEXT_VIEW(page->text_fw_quotefmt));
224         quotefmt_check_forward_formats(TRUE,
225                                                                    NULL,
226                                                                    prefs_common.fw_quotemark,
227                                                                    prefs_common.fw_quotefmt);
228 }
229
230 static void prefs_quote_destroy_widget(PrefsPage *_page)
231 {
232 }
233
234 void prefs_quote_init(void)
235 {
236         QuotePage *page;
237         static gchar *path[3];
238
239         path[0] = _("Compose");
240         path[1] = _("Templates");
241         path[2] = NULL;
242
243         page = g_new0(QuotePage, 1);
244         page->page.path = path;
245         page->page.create_widget = prefs_quote_create_widget;
246         page->page.destroy_widget = prefs_quote_destroy_widget;
247         page->page.save_page = prefs_quote_save;
248         page->page.weight = 185.0;
249         prefs_gtk_register_page((PrefsPage *) page);
250         prefs_quote = page;
251 }
252
253 void prefs_quote_done(void)
254 {
255         prefs_gtk_unregister_page((PrefsPage *) prefs_quote);
256         g_free(prefs_quote);
257 }