2007-12-29 [mones] 3.2.0cvs22
[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         GtkWidget *vbox2;
68         GtkWidget *notebook;
69
70         vbox = gtk_vbox_new (FALSE, 0);
71         gtk_widget_show (vbox);
72
73         notebook = gtk_notebook_new();
74         gtk_widget_show(notebook);
75         gtk_notebook_set_homogeneous_tabs(GTK_NOTEBOOK(notebook), TRUE);
76         gtk_box_pack_start(GTK_BOX(vbox), notebook, TRUE, TRUE, 0);
77
78         /* new message */
79         vbox2 = gtk_vbox_new (FALSE, VSPACING);
80         gtk_widget_show (vbox2);
81         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
82         
83         quotefmt_create_new_msg_fmt_widgets(
84                                 window,
85                                 vbox2,
86                                 &prefs_quote->checkbtn_compose_with_format,
87                                 &prefs_quote->entry_subject,
88                                 &prefs_quote->text_format,
89                                 FALSE);
90         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Compose")));
91
92         /* reply */
93         vbox2 = gtk_vbox_new (FALSE, VSPACING);
94         gtk_widget_show (vbox2);
95         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
96         
97         quotefmt_create_reply_fmt_widgets(
98                                 window,
99                                 vbox2,
100                                 NULL,
101                                 &prefs_quote->entry_quotemark,
102                                 &prefs_quote->text_quotefmt,
103                                 FALSE);
104         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Reply")));
105
106         /* forward */
107         vbox2 = gtk_vbox_new (FALSE, VSPACING);
108         gtk_widget_show (vbox2);
109         gtk_container_set_border_width (GTK_CONTAINER (vbox2), VBOX_BORDER);
110         
111         quotefmt_create_forward_fmt_widgets(
112                                 window,
113                                 vbox2,
114                                 NULL,
115                                 &prefs_quote->entry_fw_quotemark,
116                                 &prefs_quote->text_fw_quotefmt,
117                                 FALSE);
118         gtk_notebook_append_page(GTK_NOTEBOOK(notebook), vbox2, gtk_label_new(_("Forward")));
119
120         /* info button */
121
122         quotefmt_add_info_button(window, vbox);
123
124         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_quotemark), 
125                         prefs_common.quotemark?prefs_common.quotemark:"");
126         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_quotefmt),
127                         prefs_common.quotefmt);
128
129         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_fw_quotefmt),
130                         prefs_common.fw_quotefmt);
131         gtk_entry_set_text(GTK_ENTRY(prefs_quote->entry_fw_quotemark), 
132                         prefs_common.fw_quotemark?prefs_common.fw_quotemark:"");
133
134         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(prefs_quote->checkbtn_compose_with_format),
135                         prefs_common.compose_with_format);
136         pref_set_entry_from_pref(GTK_ENTRY(prefs_quote->entry_subject), prefs_common.compose_subject_format);
137         pref_set_textview_from_pref(GTK_TEXT_VIEW(prefs_quote->text_format), prefs_common.compose_body_format);
138
139         prefs_quote->window             = GTK_WIDGET(window);
140         prefs_quote->page.widget = vbox;
141 }
142
143 static void prefs_quote_save(PrefsPage *_page)
144 {
145         QuotePage *page = (QuotePage *) _page;
146         
147         g_free(prefs_common.compose_subject_format); 
148         prefs_common.compose_subject_format = NULL;
149         g_free(prefs_common.compose_body_format); 
150         prefs_common.compose_body_format = NULL;
151         g_free(prefs_common.quotefmt); 
152         prefs_common.quotefmt = NULL;
153         g_free(prefs_common.fw_quotefmt); 
154         prefs_common.fw_quotefmt = NULL;
155         g_free(prefs_common.quotemark); 
156         prefs_common.quotemark = NULL;
157         g_free(prefs_common.fw_quotemark); 
158         prefs_common.fw_quotemark = NULL;
159         
160         prefs_common.compose_with_format =
161                 gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(page->checkbtn_compose_with_format));
162         prefs_common.compose_subject_format = pref_get_pref_from_entry(
163                         GTK_ENTRY(page->entry_subject));
164         prefs_common.compose_body_format = pref_get_pref_from_textview(
165                         GTK_TEXT_VIEW(page->text_format));
166         quotefmt_check_new_msg_formats(prefs_common.compose_with_format,
167                                                                         prefs_common.compose_subject_format,
168                                                                         prefs_common.compose_body_format);
169
170         prefs_common.quotemark = gtk_editable_get_chars(
171                         GTK_EDITABLE(page->entry_quotemark), 0, -1);
172         prefs_common.quotefmt = pref_get_pref_from_textview(
173                         GTK_TEXT_VIEW(page->text_quotefmt));
174         quotefmt_check_reply_formats(TRUE, prefs_common.quotemark, prefs_common.quotefmt);
175
176         prefs_common.fw_quotemark = gtk_editable_get_chars(
177                         GTK_EDITABLE(page->entry_fw_quotemark), 0, -1);
178         prefs_common.fw_quotefmt = pref_get_pref_from_textview(
179                         GTK_TEXT_VIEW(page->text_fw_quotefmt));
180         quotefmt_check_forward_formats(TRUE, prefs_common.fw_quotemark, prefs_common.fw_quotefmt);
181 }
182
183 static void prefs_quote_destroy_widget(PrefsPage *_page)
184 {
185 }
186
187 QuotePage *prefs_quote;
188
189 void prefs_quote_init(void)
190 {
191         QuotePage *page;
192         static gchar *path[3];
193
194         path[0] = _("Compose");
195         path[1] = _("Templates");
196         path[2] = NULL;
197
198         page = g_new0(QuotePage, 1);
199         page->page.path = path;
200         page->page.create_widget = prefs_quote_create_widget;
201         page->page.destroy_widget = prefs_quote_destroy_widget;
202         page->page.save_page = prefs_quote_save;
203         page->page.weight = 185.0;
204         prefs_gtk_register_page((PrefsPage *) page);
205         prefs_quote = page;
206 }
207
208 void prefs_quote_done(void)
209 {
210         prefs_gtk_unregister_page((PrefsPage *) prefs_quote);
211         g_free(prefs_quote);
212 }