2006-02-21 [wwp] 2.0.0cvs69
[claws.git] / src / prefs_template.c
1 /*
2  * Sylpheed templates subsystem 
3  * Copyright (C) 2001 Alexander Barinov
4  * Copyright (C) 2001-2006 Hiroyuki Yamamoto and the Sylpheed-Claws team
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19  */
20
21 #include "defs.h"
22
23 #include <glib.h>
24 #include <glib/gi18n.h>
25 #include <gtk/gtk.h>
26 #include <gdk/gdkkeysyms.h>
27 #include <string.h>
28 #include <dirent.h>
29 #include <sys/stat.h>
30
31 #include "template.h"
32 #include "main.h"
33 #include "inc.h"
34 #include "utils.h"
35 #include "gtkutils.h"
36 #include "alertpanel.h"
37 #include "manage_window.h"
38 #include "compose.h"
39 #include "addr_compl.h"
40 #include "quote_fmt.h"
41 #include "prefs_common.h"
42
43 enum {
44         TEMPL_TEXT,
45         TEMPL_DATA,
46         TEMPL_AUTO_DATA,        /*!< auto pointer */
47         N_TEMPL_COLUMNS
48 };
49
50 static struct Templates {
51         GtkWidget *window;
52         GtkWidget *ok_btn;
53         GtkWidget *list_view;
54         GtkWidget *entry_name;
55         GtkWidget *entry_subject;
56         GtkWidget *entry_to;
57         GtkWidget *entry_cc;    
58         GtkWidget *entry_bcc;
59         GtkWidget *text_value;
60 } templates;
61
62 static int modified = FALSE;
63
64 /* widget creating functions */
65 static void prefs_template_window_create        (void);
66 static void prefs_template_window_setup         (void);
67 static void prefs_template_clear                (void);
68
69 static GSList *prefs_template_get_list          (void);
70
71 /* callbacks */
72 static gint prefs_template_deleted_cb           (GtkWidget      *widget,
73                                                  GdkEventAny    *event,
74                                                  gpointer        data);
75 static gboolean prefs_template_key_pressed_cb   (GtkWidget      *widget,
76                                                  GdkEventKey    *event,
77                                                  gpointer        data);
78 static void prefs_template_cancel_cb            (void);
79 static void prefs_template_ok_cb                (void);
80 static void prefs_template_register_cb          (void);
81 static void prefs_template_substitute_cb        (void);
82 static void prefs_template_delete_cb            (void);
83
84 static GtkListStore* prefs_template_create_data_store   (void);
85 static void prefs_template_list_view_insert_template    (GtkWidget *list_view,
86                                                          GtkTreeIter *row_iter,
87                                                          const gchar *template,
88                                                          Template *data,
89                                                          gboolean sorted);
90 static GtkWidget *prefs_template_list_view_create       (void);
91 static void prefs_template_create_list_view_columns     (GtkWidget *list_view);
92 static gboolean prefs_template_selected                 (GtkTreeSelection *selector,
93                                                          GtkTreeModel *model, 
94                                                          GtkTreePath *path,
95                                                          gboolean currently_selected,
96                                                          gpointer data);
97
98 /* Called from mainwindow.c */
99 void prefs_template_open(void)
100 {
101         inc_lock();
102
103         if (!templates.window)
104                 prefs_template_window_create();
105
106         prefs_template_window_setup();
107         gtk_widget_show(templates.window);
108 }
109
110 /*!
111  *\brief        Save Gtk object size to prefs dataset
112  */
113 static void prefs_template_size_allocate_cb(GtkWidget *widget,
114                                          GtkAllocation *allocation)
115 {
116         g_return_if_fail(allocation != NULL);
117
118         prefs_common.templateswin_width = allocation->width;
119         prefs_common.templateswin_height = allocation->height;
120 }
121
122 #define ADD_ENTRY(entry, str, row) \
123 { \
124         label1 = gtk_label_new(str); \
125         gtk_widget_show(label1); \
126         gtk_table_attach(GTK_TABLE(table), label1, 0, 1, row, (row + 1), \
127                          GTK_FILL, 0, 0, 0); \
128         gtk_misc_set_alignment(GTK_MISC(label1), 1, 0.5); \
129  \
130         entry = gtk_entry_new(); \
131         gtk_widget_show(entry); \
132         gtk_table_attach(GTK_TABLE(table), entry, 1, 2, row, (row + 1), \
133                          GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0); \
134 }
135
136 static void prefs_template_window_create(void)
137 {
138         /* window structure ;) */
139         GtkWidget *window;
140         GtkWidget   *vpaned;
141         GtkWidget     *vbox1;
142         GtkWidget       *hbox1;
143         GtkWidget         *label1;
144         GtkWidget         *entry_name;
145         GtkWidget       *table;
146         GtkWidget         *entry_to;
147         GtkWidget         *entry_cc;
148         GtkWidget         *entry_bcc;           
149         GtkWidget         *entry_subject;
150         GtkWidget       *scroll2;
151         GtkWidget         *text_value;
152         GtkWidget     *vbox2;
153         GtkWidget       *hbox2;
154         GtkWidget         *arrow1;
155         GtkWidget         *hbox3;
156         GtkWidget           *reg_btn;
157         GtkWidget           *subst_btn;
158         GtkWidget           *del_btn;
159         GtkWidget         *desc_btn;
160         GtkWidget       *scroll1;
161         GtkWidget         *list_view;
162         GtkWidget       *confirm_area;
163         GtkWidget         *ok_btn;
164         GtkWidget         *cancel_btn;
165         static GdkGeometry geometry;
166
167         debug_print("Creating templates configuration window...\n");
168
169         /* main window */
170         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
171         gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
172         gtk_window_set_modal(GTK_WINDOW(window), TRUE);
173         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
174
175         /* vpaned to separate template settings from templates list */
176         vpaned = gtk_vpaned_new();
177         gtk_widget_show(vpaned);
178         gtk_container_add(GTK_CONTAINER(window), vpaned);
179
180         /* vbox to handle template name and content */
181         vbox1 = gtk_vbox_new(FALSE, 6);
182         gtk_widget_show(vbox1);
183         gtk_container_set_border_width(GTK_CONTAINER(vbox1), 8);
184         gtk_paned_pack1(GTK_PANED(vpaned), vbox1, FALSE, FALSE);
185
186         hbox1 = gtk_hbox_new(FALSE, 8);
187         gtk_widget_show(hbox1);
188         gtk_box_pack_start(GTK_BOX(vbox1), hbox1, FALSE, FALSE, 0);
189
190         label1 = gtk_label_new(_("Template name"));
191         gtk_widget_show(label1);
192         gtk_box_pack_start(GTK_BOX(hbox1), label1, FALSE, FALSE, 0);
193
194         entry_name = gtk_entry_new();
195         gtk_widget_show(entry_name);
196         gtk_box_pack_start(GTK_BOX(hbox1), entry_name, TRUE, TRUE, 0);
197
198         /* table for headers */
199         table = gtk_table_new(2, 2, FALSE);
200         gtk_widget_show(table);
201         gtk_box_pack_start(GTK_BOX(vbox1), table, FALSE, FALSE, 0);
202         gtk_table_set_row_spacings(GTK_TABLE(table), 4);
203         gtk_table_set_col_spacings(GTK_TABLE(table), 4);
204
205         ADD_ENTRY(entry_to, _("To:"), 0);
206         address_completion_register_entry(GTK_ENTRY(entry_to));
207         ADD_ENTRY(entry_cc, _("Cc:"), 1)
208         address_completion_register_entry(GTK_ENTRY(entry_cc));
209         ADD_ENTRY(entry_bcc, _("Bcc:"), 2)      
210         address_completion_register_entry(GTK_ENTRY(entry_bcc));
211         ADD_ENTRY(entry_subject, _("Subject:"), 3);
212
213 #undef ADD_ENTRY
214
215         /* template content */
216         scroll2 = gtk_scrolled_window_new(NULL, NULL);
217         gtk_widget_show(scroll2);
218         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll2),
219                                        GTK_POLICY_AUTOMATIC,
220                                        GTK_POLICY_AUTOMATIC);
221         gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(scroll2),
222                                             GTK_SHADOW_IN);
223         gtk_box_pack_start(GTK_BOX(vbox1), scroll2, TRUE, TRUE, 0);
224
225         text_value = gtk_text_view_new();
226         gtk_widget_show(text_value);
227         gtk_widget_set_size_request(text_value, -1, 120);
228         gtk_container_add(GTK_CONTAINER(scroll2), text_value);
229         gtk_text_view_set_editable(GTK_TEXT_VIEW(text_value), TRUE);
230         gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(text_value), GTK_WRAP_WORD);
231
232         /* vbox for buttons and templates list */
233         vbox2 = gtk_vbox_new(FALSE, 6);
234         gtk_widget_show(vbox2);
235         gtk_container_set_border_width(GTK_CONTAINER(vbox2), 8);
236         gtk_paned_pack2(GTK_PANED(vpaned), vbox2, TRUE, FALSE);
237
238         /* register | substitute | delete */
239         hbox2 = gtk_hbox_new(FALSE, 4);
240         gtk_widget_show(hbox2);
241         gtk_box_pack_start(GTK_BOX(vbox2), hbox2, FALSE, FALSE, 0);
242
243         arrow1 = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
244         gtk_widget_show(arrow1);
245         gtk_box_pack_start(GTK_BOX(hbox2), arrow1, FALSE, FALSE, 0);
246         gtk_widget_set_size_request(arrow1, -1, 16);
247
248         hbox3 = gtk_hbox_new(TRUE, 4);
249         gtk_widget_show(hbox3);
250         gtk_box_pack_start(GTK_BOX(hbox2), hbox3, FALSE, FALSE, 0);
251
252         reg_btn = gtk_button_new_from_stock(GTK_STOCK_ADD);
253         gtk_widget_show(reg_btn);
254         gtk_box_pack_start(GTK_BOX(hbox3), reg_btn, FALSE, TRUE, 0);
255         g_signal_connect(G_OBJECT (reg_btn), "clicked",
256                          G_CALLBACK (prefs_template_register_cb), NULL);
257
258         subst_btn = gtk_button_new_with_label(_("  Replace  "));
259         gtk_widget_show(subst_btn);
260         gtk_box_pack_start(GTK_BOX(hbox3), subst_btn, FALSE, TRUE, 0);
261         g_signal_connect(G_OBJECT(subst_btn), "clicked",
262                          G_CALLBACK(prefs_template_substitute_cb),
263                          NULL);
264
265         del_btn = gtk_button_new_from_stock(GTK_STOCK_DELETE);
266         gtk_widget_show(del_btn);
267         gtk_box_pack_start(GTK_BOX(hbox3), del_btn, FALSE, TRUE, 0);
268         g_signal_connect(G_OBJECT(del_btn), "clicked",
269                          G_CALLBACK(prefs_template_delete_cb), NULL);
270
271         desc_btn = gtk_button_new_with_label(_(" Symbols... "));
272         gtk_widget_show(desc_btn);
273         gtk_box_pack_end(GTK_BOX(hbox2), desc_btn, FALSE, FALSE, 0);
274         g_signal_connect(G_OBJECT(desc_btn), "clicked",
275                          G_CALLBACK(quote_fmt_quote_description), NULL);
276
277         /* templates list */
278         scroll1 = gtk_scrolled_window_new(NULL, NULL);
279         gtk_widget_show(scroll1);
280         gtk_box_pack_start(GTK_BOX(vbox2), scroll1, TRUE, TRUE, 0);
281         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scroll1),
282                                        GTK_POLICY_AUTOMATIC,
283                                        GTK_POLICY_AUTOMATIC);
284                                        
285         list_view = prefs_template_list_view_create();
286         gtk_widget_show(list_view);
287         gtk_widget_set_size_request(scroll1, -1, 140);
288         gtk_container_add(GTK_CONTAINER(scroll1), list_view);
289
290         /* ok | cancel */
291         gtkut_stock_button_set_create(&confirm_area, &cancel_btn, GTK_STOCK_CANCEL,
292                                       &ok_btn, GTK_STOCK_OK, NULL, NULL);
293         gtk_widget_show(confirm_area);
294         gtk_box_pack_end(GTK_BOX(vbox2), confirm_area, FALSE, FALSE, 0);
295         gtk_widget_grab_default(ok_btn);
296
297         gtk_window_set_title(GTK_WINDOW(window), _("Template configuration"));
298
299         g_signal_connect(G_OBJECT(window), "delete_event",
300                          G_CALLBACK(prefs_template_deleted_cb), NULL);
301         g_signal_connect(G_OBJECT(window), "size_allocate",
302                          G_CALLBACK(prefs_template_size_allocate_cb), NULL);
303         g_signal_connect(G_OBJECT(window), "key_press_event",
304                          G_CALLBACK(prefs_template_key_pressed_cb), NULL);
305         MANAGE_WINDOW_SIGNALS_CONNECT(window);
306         g_signal_connect(G_OBJECT(ok_btn), "clicked",
307                          G_CALLBACK(prefs_template_ok_cb), NULL);
308         g_signal_connect(G_OBJECT(cancel_btn), "clicked",
309                          G_CALLBACK(prefs_template_cancel_cb), NULL);
310
311         address_completion_start(window);
312
313         if (!geometry.min_height) {
314                 geometry.min_width = 440;
315                 geometry.min_height = 500;
316         }
317
318         gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
319                                       GDK_HINT_MIN_SIZE);
320         gtk_widget_set_size_request(window, prefs_common.templateswin_width,
321                                     prefs_common.templateswin_height);
322
323         templates.window = window;
324         templates.ok_btn = ok_btn;
325         templates.list_view = list_view;
326         templates.entry_name = entry_name;
327         templates.entry_subject = entry_subject;
328         templates.entry_to = entry_to;
329         templates.entry_cc = entry_cc;
330         templates.entry_bcc = entry_bcc;        
331         templates.text_value = text_value;
332 }
333
334 static void prefs_template_window_setup(void)
335 {
336         GSList *tmpl_list;
337         GSList *cur;
338         Template *tmpl;
339         GtkListStore *store;
340
341         store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW
342                                 (templates.list_view)));
343
344         manage_window_set_transient(GTK_WINDOW(templates.window));
345         gtk_widget_grab_focus(templates.ok_btn);
346
347         gtk_list_store_clear(store);
348
349         prefs_template_list_view_insert_template(templates.list_view,
350                                                  NULL, _("(New)"),
351                                                  NULL, FALSE);
352         
353         tmpl_list = template_read_config();
354
355         for (cur = tmpl_list; cur != NULL; cur = cur->next) {
356                 tmpl = (Template *)cur->data;
357                 prefs_template_list_view_insert_template(templates.list_view,
358                                                          NULL, tmpl->name, 
359                                                          tmpl, FALSE);
360         }
361
362         g_slist_free(tmpl_list);
363 }
364
365 static void prefs_template_clear(void)
366 {
367         GtkListStore *store;
368
369         store = GTK_LIST_STORE(gtk_tree_view_get_model(GTK_TREE_VIEW
370                                 (templates.list_view)));
371         gtk_list_store_clear(store);
372 }
373
374 static gint prefs_template_deleted_cb(GtkWidget *widget, GdkEventAny *event,
375                                       gpointer data)
376 {
377         prefs_template_cancel_cb();
378         return TRUE;
379 }
380
381 static gboolean prefs_template_key_pressed_cb(GtkWidget *widget,
382                                               GdkEventKey *event, gpointer data)
383 {
384         if (event && event->keyval == GDK_Escape)
385                 prefs_template_cancel_cb();
386         else {
387                 GtkWidget *focused = gtkut_get_focused_child(
388                                         GTK_CONTAINER(widget));
389                 if (focused && GTK_IS_EDITABLE(focused)) {
390                         modified = TRUE;
391                 }
392         }
393         return FALSE;
394 }
395
396 static void prefs_template_ok_cb(void)
397 {
398         GSList *tmpl_list;
399
400         if (modified && alertpanel(_("Entry not saved"),
401                                  _("The entry was not saved. Close anyway?"),
402                                  GTK_STOCK_CLOSE, _("_Continue editing"), 
403                                  NULL) != G_ALERTDEFAULT) {
404                 return;
405         }
406         modified = FALSE;
407         tmpl_list = prefs_template_get_list();
408         template_set_config(tmpl_list);
409         compose_reflect_prefs_all();
410         prefs_template_clear();
411         gtk_widget_hide(templates.window);
412         inc_unlock();
413 }
414
415 static void prefs_template_cancel_cb(void)
416 {
417         if (modified && alertpanel(_("Entry not saved"),
418                                  _("The entry was not saved. Close anyway?"),
419                                  GTK_STOCK_CLOSE, _("_Continue editing"),
420                                  NULL) != G_ALERTDEFAULT) {
421                 return;
422         }
423         modified = FALSE;
424         prefs_template_clear();
425         gtk_widget_hide(templates.window);
426         inc_unlock();
427 }
428
429 /*!
430  *\brief        Request list for storage. New list is owned
431  *              by template.c...
432  */
433 static GSList *prefs_template_get_list(void)
434 {
435         GSList *tmpl_list = NULL;
436         Template *tmpl;
437         GtkTreeModel *model;
438         GtkTreeIter iter;
439
440         model = gtk_tree_view_get_model(GTK_TREE_VIEW(templates.list_view));
441         if (!gtk_tree_model_get_iter_first(model, &iter))
442                 return NULL;
443
444         do {
445                 gtk_tree_model_get(model, &iter,
446                                    TEMPL_DATA, &tmpl,
447                                    -1);
448                 
449                 if (tmpl) {
450                         Template *ntmpl;
451                         
452                         ntmpl = g_new(Template, 1);
453                         ntmpl->name    = tmpl->name && *(tmpl->name) 
454                                          ? g_strdup(tmpl->name) 
455                                          : NULL;
456                         ntmpl->subject = tmpl->subject && *(tmpl->subject) 
457                                          ? g_strdup(tmpl->subject) 
458                                          : NULL;
459                         ntmpl->to      = tmpl->to && *(tmpl->to)
460                                          ? g_strdup(tmpl->to)
461                                          : NULL;
462                         ntmpl->cc      = tmpl->cc && *(tmpl->cc)
463                                          ? g_strdup(tmpl->cc)
464                                          : NULL;
465                         ntmpl->bcc     = tmpl->bcc && *(tmpl->bcc)
466                                          ? g_strdup(tmpl->bcc)
467                                          : NULL;        
468                         ntmpl->value   = tmpl->value && *(tmpl->value)
469                                          ? g_strdup(tmpl->value)
470                                          : NULL;
471                         tmpl_list = g_slist_append(tmpl_list, ntmpl);
472                 }                       
473         
474         } while (gtk_tree_model_iter_next(model, &iter)); 
475
476         return tmpl_list;
477 }
478
479 static gboolean prefs_template_list_view_set_row(GtkTreeIter *row)
480 /* return TRUE if the row could be modified */
481 {
482         Template *tmpl;
483         gchar *name;
484         gchar *subject;
485         gchar *to;
486         gchar *cc;
487         gchar *bcc;     
488         gchar *value;
489         GtkTextBuffer *buffer;
490         GtkTextIter start, end;
491         GtkTreeModel *model;
492
493         model = gtk_tree_view_get_model(GTK_TREE_VIEW(templates.list_view));
494
495         buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(templates.text_value));
496         gtk_text_buffer_get_start_iter(buffer, &start);
497         gtk_text_buffer_get_iter_at_offset(buffer, &end, -1);
498         value = gtk_text_buffer_get_text(buffer, &start, &end, FALSE);
499
500         if (value && *value != '\0') {
501                 gchar *parsed_buf;
502                 MsgInfo dummyinfo;
503
504                 memset(&dummyinfo, 0, sizeof(MsgInfo));
505                 quote_fmt_init(&dummyinfo, NULL, NULL, TRUE);
506                 quote_fmt_scan_string(value);
507                 quote_fmt_parse();
508                 parsed_buf = quote_fmt_get_buffer();
509                 if (!parsed_buf) {
510                         alertpanel_error(_("Template format error."));
511                         g_free(value);
512                         return FALSE;
513                 }
514         }
515
516         name = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_name),
517                                       0, -1);
518         if (name[0] == '\0') {
519                 alertpanel_error(_("Template name is not set."));
520                 return FALSE;
521         }
522         subject = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_subject),
523                                          0, -1);
524         to = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_to),
525                                     0, -1);
526         cc = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_cc),
527                                     0, -1);
528         bcc = gtk_editable_get_chars(GTK_EDITABLE(templates.entry_bcc),
529                                     0, -1);
530
531         if (subject && *subject == '\0') {
532                 g_free(subject);
533                 subject = NULL;
534         }
535         if (to && *to == '\0') {
536                 g_free(to);
537                 to = NULL;
538         }
539         if (cc && *cc == '\0') {
540                 g_free(cc);
541                 cc = NULL;
542         }
543         if (bcc && *bcc == '\0') {
544                 g_free(bcc);
545                 bcc = NULL;
546         }
547         
548         tmpl = g_new(Template, 1);
549         tmpl->name = name;
550         tmpl->subject = subject;
551         tmpl->to = to;
552         tmpl->cc = cc;
553         tmpl->bcc = bcc;        
554         tmpl->value = value;
555
556         prefs_template_list_view_insert_template(templates.list_view,
557                                                  row, tmpl->name, tmpl, TRUE);
558         return TRUE;
559 }
560
561 static void prefs_template_register_cb(void)
562 {
563         modified = !prefs_template_list_view_set_row(NULL);
564 }
565
566 static void prefs_template_substitute_cb(void)
567 {
568         Template *tmpl;
569         GtkTreeIter row;
570         GtkTreeSelection *selection;
571         GtkTreeModel *model;
572
573         selection = gtk_tree_view_get_selection
574                         (GTK_TREE_VIEW(templates.list_view));
575         
576         if (!gtk_tree_selection_get_selected(selection, &model, &row))
577                 return;
578
579         gtk_tree_model_get(model, &row, 
580                            TEMPL_DATA, &tmpl,
581                            -1);
582
583         if (!tmpl) return;
584
585         modified = !prefs_template_list_view_set_row(&row);
586 }
587
588 static void prefs_template_delete_cb(void)
589 {
590         Template *tmpl;
591         GtkTreeIter row;
592         GtkTreeSelection *selection;
593         GtkTreeModel *model;
594
595         selection = gtk_tree_view_get_selection
596                         (GTK_TREE_VIEW(templates.list_view));
597         
598         if (!gtk_tree_selection_get_selected(selection, &model, &row))
599                 return;
600
601         gtk_tree_model_get(model, &row, 
602                            TEMPL_DATA, &tmpl,
603                            -1);
604
605         if (!tmpl) 
606                 return;
607
608         if (alertpanel(_("Delete template"),
609                        _("Do you really want to delete this template?"),
610                        GTK_STOCK_CANCEL, GTK_STOCK_DELETE,
611                        NULL) != G_ALERTALTERNATE)
612                 return;
613
614         gtk_list_store_remove(GTK_LIST_STORE(model), &row);             
615 }
616
617 static GtkListStore* prefs_template_create_data_store(void)
618 {
619         return gtk_list_store_new(N_TEMPL_COLUMNS,
620                                   G_TYPE_STRING,        
621                                   G_TYPE_POINTER,
622                                   G_TYPE_AUTO_POINTER,
623                                   -1);
624 }
625
626 static gboolean prefs_template_list_view_find_insertion_point(GtkTreeModel* model,
627                                                         const gchar* template,
628                                                         GtkTreeIter* iter)
629 {
630         GtkTreeIter i;
631         gchar *text = NULL;
632
633         if ((gtk_tree_model_get_iter_first(model, &i))) {
634                 for ( ; gtk_tree_model_iter_next(model, &i); ) {
635                         gtk_tree_model_get(model, &i, TEMPL_TEXT, &text, -1);
636                         if (strcmp(text, template) >= 0) {
637                                 g_free(text);
638                                 *iter = i;
639                                 return TRUE;
640                         }
641                         g_free(text);
642                 }
643         }
644         /* cannot add before (need to append) */
645         return FALSE;
646 }
647
648 static void prefs_template_list_view_insert_template(GtkWidget *list_view,
649                                                      GtkTreeIter *row_iter,
650                                                      const gchar *template,
651                                                      Template *data,
652                                                          gboolean sorted)
653 {
654         GtkTreeIter iter;
655         GtkTreeModel *model = gtk_tree_view_get_model
656                                         (GTK_TREE_VIEW(list_view));
657         GtkListStore *list_store = GTK_LIST_STORE(model);
658         GAuto *auto_data;                                       
659
660         if (row_iter == NULL) {
661                 if (sorted) {
662                         GtkTreeIter insertion_point;
663
664                         /* insert sorted */
665                         if (prefs_template_list_view_find_insertion_point(model,
666                                         template, &insertion_point)) {
667                                 gtk_list_store_insert_before(list_store, &iter,
668                                                 &insertion_point);
669                         } else {
670                                 gtk_list_store_append(list_store, &iter);
671                         }
672                 } else {
673                         /* append new */
674                         gtk_list_store_append(list_store, &iter);
675                 }
676         } else {
677                 /* modify the existing */
678                 iter = *row_iter;
679
680                 if (sorted) {
681                         GtkTreeIter insertion_point;
682                         gchar *text = NULL;
683
684                         /* force re-sorting if template's name changed */
685                         gtk_tree_model_get(model, row_iter, TEMPL_TEXT, &text, -1);
686                         if (strcmp(text, template) != 0) {
687
688                                 /* move the modified template */
689                                 if (prefs_template_list_view_find_insertion_point(model,
690                                                 template, &insertion_point)) {
691                                         gtk_list_store_move_before(list_store, row_iter,
692                                                         &insertion_point);
693                                 } else {
694                                         /* move to the end */
695                                         gtk_list_store_move_before(list_store, row_iter,
696                                                         NULL);
697                                 }
698                         }
699                         g_free(text);
700                 }
701         }
702                 
703         auto_data = g_auto_pointer_new_with_free(data, (GFreeFunc) template_free);  
704
705         /* if replacing data in an existing row, the auto pointer takes care
706          * of destroying the Template data */
707         gtk_list_store_set(list_store, &iter,
708                            TEMPL_TEXT, template,
709                            TEMPL_DATA, data,
710                            TEMPL_AUTO_DATA, auto_data,
711                            -1);
712
713         g_auto_pointer_free(auto_data);                    
714 }
715
716 static GtkWidget *prefs_template_list_view_create(void)
717 {
718         GtkTreeView *list_view;
719         GtkTreeSelection *selector;
720         GtkTreeModel *model;
721
722         model = GTK_TREE_MODEL(prefs_template_create_data_store());
723         list_view = GTK_TREE_VIEW(gtk_tree_view_new_with_model(model));
724         g_object_unref(model);  
725         
726         gtk_tree_view_set_rules_hint(list_view, prefs_common.enable_rules_hint);
727         
728         selector = gtk_tree_view_get_selection(list_view);
729         gtk_tree_selection_set_mode(selector, GTK_SELECTION_BROWSE);
730         gtk_tree_selection_set_select_function(selector, prefs_template_selected,
731                                                NULL, NULL);
732
733         /* create the columns */
734         prefs_template_create_list_view_columns(GTK_WIDGET(list_view));
735
736         return GTK_WIDGET(list_view);
737 }
738
739 static void prefs_template_create_list_view_columns(GtkWidget *list_view)
740 {
741         GtkTreeViewColumn *column;
742         GtkCellRenderer *renderer;
743
744         renderer = gtk_cell_renderer_text_new();
745         column = gtk_tree_view_column_new_with_attributes
746                         (_("Current templates"),
747                          renderer,
748                          "text", TEMPL_TEXT,
749                          NULL);
750         gtk_tree_view_append_column(GTK_TREE_VIEW(list_view), column);          
751 }
752
753 static gboolean prefs_template_selected(GtkTreeSelection *selector,
754                                         GtkTreeModel *model, 
755                                         GtkTreePath *path,
756                                         gboolean currently_selected,
757                                         gpointer data)
758 {
759         Template *tmpl;
760         Template tmpl_def;
761         GtkTextBuffer *buffer;
762         GtkTextIter iter;
763         GtkTreeIter titer;
764
765         if (currently_selected)
766                 return TRUE;
767
768         if (!gtk_tree_model_get_iter(model, &titer, path))
769                 return TRUE;
770
771         tmpl_def.name = _("Template");
772         tmpl_def.subject = "";
773         tmpl_def.to = "";
774         tmpl_def.cc = "";
775         tmpl_def.bcc = "";      
776         tmpl_def.value = "";
777
778         gtk_tree_model_get(model, &titer,
779                            TEMPL_DATA, &tmpl,
780                            -1);
781
782         if (!tmpl) 
783                 tmpl = &tmpl_def;
784
785         gtk_entry_set_text(GTK_ENTRY(templates.entry_name), tmpl->name);
786         gtk_entry_set_text(GTK_ENTRY(templates.entry_to),
787                            tmpl->to ? tmpl->to : "");
788         gtk_entry_set_text(GTK_ENTRY(templates.entry_cc),
789                            tmpl->cc ? tmpl->cc : "");
790         gtk_entry_set_text(GTK_ENTRY(templates.entry_bcc),
791                            tmpl->bcc ? tmpl->bcc : "");                 
792         gtk_entry_set_text(GTK_ENTRY(templates.entry_subject),
793                            tmpl->subject ? tmpl->subject : "");
794         
795         buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(templates.text_value));
796         gtk_text_buffer_set_text(buffer, "", -1);
797         gtk_text_buffer_get_start_iter(buffer, &iter);
798         gtk_text_buffer_insert(buffer, &iter, tmpl->value, -1);
799
800         return TRUE;
801 }