2007-08-22 [colin] 2.10.0cvs150
[claws.git] / src / prefs_quote.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2005-2007 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 static void prefs_quote_create_widget(PrefsPage *_page, GtkWindow *window, 
62                                   gpointer data)
63 {
64         QuotePage *prefs_quote = (QuotePage *) _page;
65         
66         GtkWidget *vbox;
67
68         vbox = gtk_vbox_new (FALSE, VSPACING);
69         gtk_widget_show (vbox);
70         gtk_container_set_border_width (GTK_CONTAINER (vbox), VBOX_BORDER);
71
72         /* new message */
73
74         quotefmt_create_new_msg_fmt_widgets(
75                                 window,
76                                 vbox,
77                                 &prefs_quote->checkbtn_compose_with_format,
78                                 _("New message format"),
79                                 &prefs_quote->entry_subject,
80                                 &prefs_quote->text_format,
81                                 FALSE);
82
83         /* reply */
84
85         quotefmt_create_reply_fmt_widgets(
86                                 window,
87                                 vbox,
88                                 NULL,
89                                 NULL,
90                                 &prefs_quote->entry_quotemark,
91                                 &prefs_quote->text_quotefmt,
92                                 FALSE);
93
94         /* forward */
95
96         quotefmt_create_forward_fmt_widgets(
97                                 window,
98                                 vbox,
99                                 NULL,
100                                 NULL,
101                                 &prefs_quote->entry_fw_quotemark,
102                                 &prefs_quote->text_fw_quotefmt,
103                                 FALSE);
104
105         /* info button */
106
107         quotefmt_add_info_button(window, vbox);
108
109         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_quotemark), 
110                         prefs_common.quotemark?prefs_common.quotemark:"");
111         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_quotefmt),
112                         prefs_common.quotefmt);
113
114         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_fw_quotefmt),
115                         prefs_common.fw_quotefmt);
116         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_fw_quotemark), 
117                         prefs_common.fw_quotemark?prefs_common.fw_quotemark:"");
118
119         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_quote->checkbtn_compose_with_format),
120                         prefs_common.compose_with_format);
121         pref_set_entry_from_pref(GTK_ENTRY(prefs_quote->entry_subject), prefs_common.compose_subject_format);
122         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_format), prefs_common.compose_body_format);
123
124         prefs_quote->window             = GTK_WIDGET(window);
125         prefs_quote->page.widget = vbox;
126 }
127
128 static void prefs_quote_save(PrefsPage *_page)
129 {
130         QuotePage *page = (QuotePage *) _page;
131         
132         g_free(prefs_common.compose_subject_format); 
133         prefs_common.compose_subject_format = NULL;
134         g_free(prefs_common.compose_body_format); 
135         prefs_common.compose_body_format = NULL;
136         g_free(prefs_common.quotefmt); 
137         prefs_common.quotefmt = NULL;
138         g_free(prefs_common.fw_quotefmt); 
139         prefs_common.fw_quotefmt = NULL;
140         g_free(prefs_common.quotemark); 
141         prefs_common.quotemark = NULL;
142         g_free(prefs_common.fw_quotemark); 
143         prefs_common.fw_quotemark = NULL;
144         
145         prefs_common.compose_with_format =
146                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->checkbtn_compose_with_format));
147         prefs_common.compose_subject_format = pref_get_pref_from_entry(
148                         GTK_ENTRY(page->entry_subject));
149         prefs_common.compose_body_format = pref_get_pref_from_textview(
150                         GTK_TEXT_VIEW(page->text_format));
151         quotefmt_check_new_msg_formats(prefs_common.compose_with_format,
152                                                                         prefs_common.compose_subject_format,
153                                                                         prefs_common.compose_body_format);
154
155         prefs_common.quotemark = gtk_editable_get_chars(
156                         GTK_EDITABLE(page->entry_quotemark), 0, -1);
157         prefs_common.quotefmt = pref_get_pref_from_textview(
158                         GTK_TEXT_VIEW(page->text_quotefmt));
159         quotefmt_check_reply_formats(TRUE, prefs_common.quotemark, prefs_common.quotefmt);
160
161         prefs_common.fw_quotemark = gtk_editable_get_chars(
162                         GTK_EDITABLE(page->entry_fw_quotemark), 0, -1);
163         prefs_common.fw_quotefmt = pref_get_pref_from_textview(
164                         GTK_TEXT_VIEW(page->text_fw_quotefmt));
165         quotefmt_check_forward_formats(TRUE, prefs_common.fw_quotemark, prefs_common.fw_quotefmt);
166 }
167
168 static void prefs_quote_destroy_widget(PrefsPage *_page)
169 {
170 }
171
172 QuotePage *prefs_quote;
173
174 void prefs_quote_init(void)
175 {
176         QuotePage *page;
177         static gchar *path[3];
178
179         path[0] = _("Compose");
180         path[1] = _("Templates");
181         path[2] = NULL;
182
183         page = g_new0(QuotePage, 1);
184         page->page.path = path;
185         page->page.create_widget = prefs_quote_create_widget;
186         page->page.destroy_widget = prefs_quote_destroy_widget;
187         page->page.save_page = prefs_quote_save;
188         page->page.weight = 185.0;
189         prefs_gtk_register_page((PrefsPage *) page);
190         prefs_quote = page;
191 }
192
193 void prefs_quote_done(void)
194 {
195         prefs_gtk_unregister_page((PrefsPage *) prefs_quote);
196         g_free(prefs_quote);
197 }