2005-10-16 [colin] 1.9.15cvs56
[claws.git] / src / prefs_actions.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2005 Hiroyuki Yamamoto & The Sylpheed Claws 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 2 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, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
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 #include <gdk/gdkkeysyms.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #include <errno.h>
34
35 #include "prefs_gtk.h"
36 #include "inc.h"
37 #include "utils.h"
38 #include "gtkutils.h"
39 #include "manage_window.h"
40 #include "mainwindow.h"
41 #include "prefs_common.h"
42 #include "alertpanel.h"
43 #include "prefs_actions.h"
44 #include "action.h"
45 #include "description_window.h"
46 #include "gtkutils.h"
47
48 enum {
49         PREFS_ACTIONS_STRING,   /*!< string pointer managed by list store, 
50                                  *   and never touched or retrieved by 
51                                  *   us */ 
52         PREFS_ACTIONS_DATA,     /*!< pointer to string that is not managed by 
53                                  *   the list store, and which is retrieved
54                                  *   and touched by us */
55         PREFS_ACTIONS_VALID,    /*!< contains a valid action, otherwise "(New)" */
56         N_PREFS_ACTIONS_COLUMNS
57 };
58
59 static struct Actions
60 {
61         GtkWidget *window;
62
63         GtkWidget *ok_btn;
64
65         GtkWidget *name_entry;
66         GtkWidget *cmd_entry;
67
68         GtkWidget *actions_list_view;
69 } actions;
70
71 static int modified = FALSE;
72
73 /* widget creating functions */
74 static void prefs_actions_create        (MainWindow *mainwin);
75 static void prefs_actions_set_dialog    (void);
76 static gint prefs_actions_clist_set_row (GtkTreeIter *row);
77
78 /* callback functions */
79 static void prefs_actions_help_cb       (GtkWidget      *w,
80                                          GtkWidget      *window);
81 static void prefs_actions_register_cb   (GtkWidget      *w,
82                                          gpointer        data);
83 static void prefs_actions_substitute_cb (GtkWidget      *w,
84                                          gpointer        data);
85 static void prefs_actions_delete_cb     (GtkWidget      *w,
86                                          gpointer        data);
87 static void prefs_actions_up            (GtkWidget      *w,
88                                          gpointer        data);
89 static void prefs_actions_down          (GtkWidget      *w,
90                                          gpointer        data);
91 static gint prefs_actions_deleted       (GtkWidget      *widget,
92                                          GdkEventAny    *event,
93                                          gpointer       *data);
94 static gboolean prefs_actions_key_pressed(GtkWidget     *widget,
95                                           GdkEventKey   *event,
96                                           gpointer       data);
97 static void prefs_actions_cancel        (GtkWidget      *w,
98                                          gpointer        data);
99 static void prefs_actions_ok            (GtkWidget      *w,
100                                          gpointer        data);
101
102
103 static GtkListStore* prefs_actions_create_data_store    (void);
104
105 static void prefs_actions_list_view_insert_action       (GtkWidget *list_view,
106                                                          GtkTreeIter *row_iter,
107                                                          gchar *action,
108                                                          gboolean is_valid);
109 static GtkWidget *prefs_actions_list_view_create        (void);
110 static void prefs_actions_create_list_view_columns      (GtkWidget *list_view);
111 static gboolean prefs_actions_selected                  (GtkTreeSelection *selector,
112                                                          GtkTreeModel *model, 
113                                                          GtkTreePath *path,
114                                                          gboolean currently_selected,
115                                                          gpointer data);
116
117 void prefs_actions_open(MainWindow *mainwin)
118 {
119         inc_lock();
120
121         if (!actions.window)
122                 prefs_actions_create(mainwin);
123
124         manage_window_set_transient(GTK_WINDOW(actions.window));
125         gtk_widget_grab_focus(actions.ok_btn);
126
127         prefs_actions_set_dialog();
128
129         gtk_widget_show(actions.window);
130 }
131
132 /*!
133  *\brief        Save Gtk object size to prefs dataset
134  */
135 static void prefs_actions_size_allocate_cb(GtkWidget *widget,
136                                          GtkAllocation *allocation)
137 {
138         g_return_if_fail(allocation != NULL);
139
140         prefs_common.actionswin_width = allocation->width;
141         prefs_common.actionswin_height = allocation->height;
142 }
143
144 static void prefs_actions_create(MainWindow *mainwin)
145 {
146         GtkWidget *window;
147         GtkWidget *vbox;
148         GtkWidget *ok_btn;
149         GtkWidget *cancel_btn;
150         GtkWidget *confirm_area;
151
152         GtkWidget *vbox1;
153
154         GtkWidget *entry_vbox;
155         GtkWidget *hbox;
156         GtkWidget *name_label;
157         GtkWidget *name_entry;
158         GtkWidget *cmd_label;
159         GtkWidget *cmd_entry;
160
161         GtkWidget *reg_hbox;
162         GtkWidget *btn_hbox;
163         GtkWidget *arrow;
164         GtkWidget *reg_btn;
165         GtkWidget *subst_btn;
166         GtkWidget *del_btn;
167
168         GtkWidget *cond_hbox;
169         GtkWidget *cond_scrolledwin;
170         GtkWidget *cond_list_view;
171
172         GtkWidget *help_button;
173
174         GtkWidget *btn_vbox;
175         GtkWidget *up_btn;
176         GtkWidget *down_btn;
177         static GdkGeometry geometry;
178
179         debug_print("Creating actions configuration window...\n");
180
181         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
182
183         gtk_container_set_border_width(GTK_CONTAINER (window), 8);
184         gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
185         gtk_window_set_modal(GTK_WINDOW(window), TRUE);
186         gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
187
188         vbox = gtk_vbox_new(FALSE, 6);
189         gtk_widget_show(vbox);
190         gtk_container_add(GTK_CONTAINER(window), vbox);
191
192         gtkut_stock_button_set_create(&confirm_area, &ok_btn, GTK_STOCK_OK,
193                                       &cancel_btn, GTK_STOCK_CANCEL,
194                                       NULL, NULL);
195         gtk_widget_show(confirm_area);
196         gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);
197         gtk_widget_grab_default(ok_btn);
198
199         gtk_window_set_title(GTK_WINDOW(window), _("Actions configuration"));
200         g_signal_connect(G_OBJECT(window), "delete_event",
201                          G_CALLBACK(prefs_actions_deleted), NULL);
202         g_signal_connect(G_OBJECT(window), "size_allocate",
203                          G_CALLBACK(prefs_actions_size_allocate_cb), NULL);
204         g_signal_connect(G_OBJECT(window), "key_press_event",
205                          G_CALLBACK(prefs_actions_key_pressed), NULL);
206         MANAGE_WINDOW_SIGNALS_CONNECT(window);
207         g_signal_connect(G_OBJECT(ok_btn), "clicked",
208                          G_CALLBACK(prefs_actions_ok), mainwin);
209         g_signal_connect(G_OBJECT(cancel_btn), "clicked",
210                          G_CALLBACK(prefs_actions_cancel), NULL);
211
212         vbox1 = gtk_vbox_new(FALSE, 8);
213         gtk_widget_show(vbox1);
214         gtk_box_pack_start(GTK_BOX(vbox), vbox1, TRUE, TRUE, 0);
215         gtk_container_set_border_width(GTK_CONTAINER(vbox1), 2);
216
217         entry_vbox = gtk_vbox_new(FALSE, 4);
218         gtk_box_pack_start(GTK_BOX(vbox1), entry_vbox, FALSE, FALSE, 0);
219
220         hbox = gtk_hbox_new(FALSE, 8);
221         gtk_box_pack_start(GTK_BOX(entry_vbox), hbox, FALSE, FALSE, 0);
222
223         name_label = gtk_label_new(_("Menu name:"));
224         gtk_box_pack_start(GTK_BOX(hbox), name_label, FALSE, FALSE, 0);
225
226         name_entry = gtk_entry_new();
227         gtk_box_pack_start(GTK_BOX(hbox), name_entry, TRUE, TRUE, 0);
228
229         hbox = gtk_hbox_new(FALSE, 8);
230         gtk_box_pack_start(GTK_BOX(entry_vbox), hbox, TRUE, TRUE, 0);
231
232         cmd_label = gtk_label_new(_("Command line:"));
233         gtk_box_pack_start(GTK_BOX(hbox), cmd_label, FALSE, FALSE, 0);
234
235         cmd_entry = gtk_entry_new();
236         gtk_box_pack_start(GTK_BOX(hbox), cmd_entry, TRUE, TRUE, 0);
237
238         gtk_widget_show_all(entry_vbox);
239
240         /* register / substitute / delete */
241
242         reg_hbox = gtk_hbox_new(FALSE, 4);
243         gtk_widget_show(reg_hbox);
244         gtk_box_pack_start(GTK_BOX(vbox1), reg_hbox, FALSE, FALSE, 0);
245
246         arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
247         gtk_widget_show(arrow);
248         gtk_box_pack_start(GTK_BOX(reg_hbox), arrow, FALSE, FALSE, 0);
249         gtk_widget_set_size_request(arrow, -1, 16);
250
251         btn_hbox = gtk_hbox_new(TRUE, 4);
252         gtk_widget_show(btn_hbox);
253         gtk_box_pack_start(GTK_BOX(reg_hbox), btn_hbox, FALSE, FALSE, 0);
254
255         reg_btn = gtk_button_new_from_stock(GTK_STOCK_ADD);
256         gtk_widget_show(reg_btn);
257         gtk_box_pack_start(GTK_BOX(btn_hbox), reg_btn, FALSE, TRUE, 0);
258         g_signal_connect(G_OBJECT(reg_btn), "clicked",
259                          G_CALLBACK(prefs_actions_register_cb), NULL);
260
261         subst_btn = gtk_button_new_with_label(_(" Replace "));
262         gtk_widget_show(subst_btn);
263         gtk_box_pack_start(GTK_BOX(btn_hbox), subst_btn, FALSE, TRUE, 0);
264         g_signal_connect(G_OBJECT(subst_btn), "clicked",
265                          G_CALLBACK(prefs_actions_substitute_cb),
266                          NULL);
267
268         del_btn = gtk_button_new_from_stock(GTK_STOCK_DELETE);
269         gtk_widget_show(del_btn);
270         gtk_box_pack_start(GTK_BOX(btn_hbox), del_btn, FALSE, TRUE, 0);
271         g_signal_connect(G_OBJECT(del_btn), "clicked",
272                          G_CALLBACK(prefs_actions_delete_cb), NULL);
273
274         help_button = gtk_button_new_with_label(_(" Syntax help "));
275         gtk_widget_show(help_button);
276         gtk_box_pack_end(GTK_BOX(reg_hbox), help_button, FALSE, FALSE, 0);
277         g_signal_connect(G_OBJECT(help_button), "clicked",
278                          G_CALLBACK(prefs_actions_help_cb), GTK_WINDOW(window));
279
280         cond_hbox = gtk_hbox_new(FALSE, 8);
281         gtk_widget_show(cond_hbox);
282         gtk_box_pack_start(GTK_BOX(vbox1), cond_hbox, TRUE, TRUE, 0);
283
284         cond_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
285         gtk_widget_show(cond_scrolledwin);
286         gtk_widget_set_size_request(cond_scrolledwin, -1, 150);
287         gtk_box_pack_start(GTK_BOX(cond_hbox), cond_scrolledwin,
288                            TRUE, TRUE, 0);
289         gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (cond_scrolledwin),
290                                        GTK_POLICY_AUTOMATIC,
291                                        GTK_POLICY_AUTOMATIC);
292
293         cond_list_view = prefs_actions_list_view_create();                                     
294         gtk_widget_show(cond_list_view);
295         gtk_container_add(GTK_CONTAINER (cond_scrolledwin), cond_list_view);
296
297         btn_vbox = gtk_vbox_new(FALSE, 8);
298         gtk_widget_show(btn_vbox);
299         gtk_box_pack_start(GTK_BOX(cond_hbox), btn_vbox, FALSE, FALSE, 0);
300
301         up_btn = gtk_button_new_from_stock(GTK_STOCK_GO_UP);
302         gtk_widget_show(up_btn);
303         gtk_box_pack_start(GTK_BOX(btn_vbox), up_btn, FALSE, FALSE, 0);
304         g_signal_connect(G_OBJECT(up_btn), "clicked",
305                          G_CALLBACK(prefs_actions_up), NULL);
306
307         down_btn = gtk_button_new_from_stock(GTK_STOCK_GO_DOWN);
308         gtk_widget_show(down_btn);
309         gtk_box_pack_start(GTK_BOX(btn_vbox), down_btn, FALSE, FALSE, 0);
310         g_signal_connect(G_OBJECT(down_btn), "clicked",
311                          G_CALLBACK(prefs_actions_down), NULL);
312
313         if (!geometry.min_height) {
314                 geometry.min_width = 486;
315                 geometry.min_height = 322;
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.actionswin_width,
321                                     prefs_common.actionswin_height);
322
323         gtk_widget_show(window);
324
325         actions.window = window;
326         actions.ok_btn = ok_btn;
327
328         actions.name_entry = name_entry;
329         actions.cmd_entry  = cmd_entry;
330
331         actions.actions_list_view = cond_list_view;
332 }
333
334
335 void prefs_actions_read_config(void)
336 {
337         gchar *rcpath;
338         FILE *fp;
339         gchar buf[PREFSBUFSIZE];
340         gchar *act;
341
342         debug_print("Reading actions configurations...\n");
343
344         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
345         if ((fp = g_fopen(rcpath, "rb")) == NULL) {
346                 if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
347                 g_free(rcpath);
348                 return;
349         }
350         g_free(rcpath);
351
352         while (prefs_common.actions_list != NULL) {
353                 act = (gchar *)prefs_common.actions_list->data;
354                 prefs_common.actions_list =
355                         g_slist_remove(prefs_common.actions_list, act);
356                 g_free(act);
357         }
358
359         while (fgets(buf, sizeof(buf), fp) != NULL) {
360                 const gchar *src_codeset = conv_get_locale_charset_str();
361                 const gchar *dest_codeset = CS_UTF_8;
362                 gchar *tmp;
363
364                 tmp = conv_codeset_strdup(buf, src_codeset, dest_codeset);
365                 if (!tmp) {
366                         g_warning("Faild to convert character set of action configuration\n");
367                         tmp = g_strdup(buf);
368                 }
369
370                 g_strchomp(tmp);
371                 act = strstr(tmp, ": ");
372                 if (act && act[2] && 
373                     action_get_type(&act[2]) != ACTION_ERROR)
374                         prefs_common.actions_list =
375                                 g_slist_append(prefs_common.actions_list,
376                                                tmp);
377                 else
378                         g_free(tmp);
379         }
380         fclose(fp);
381 }
382
383 void prefs_actions_write_config(void)
384 {
385         gchar *rcpath;
386         PrefFile *pfile;
387         GSList *cur;
388
389         debug_print("Writing actions configuration...\n");
390
391         rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
392         if ((pfile= prefs_write_open(rcpath)) == NULL) {
393                 g_warning("failed to write configuration to file\n");
394                 g_free(rcpath);
395                 return;
396         }
397
398         for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
399                 gchar *tmp = (gchar *)cur->data;
400                 const gchar *src_codeset = CS_UTF_8;
401                 const gchar *dest_codeset = conv_get_locale_charset_str();
402                 gchar *act;
403
404                 act = conv_codeset_strdup(tmp, src_codeset, dest_codeset);
405                 if (!act) {
406                         g_warning("Faild to convert character set of action configuration\n");
407                         act = g_strdup(act);
408                 }
409
410                 if (fputs(act, pfile->fp) == EOF ||
411                     fputc('\n', pfile->fp) == EOF) {
412                         FILE_OP_ERROR(rcpath, "fputs || fputc");
413                         prefs_file_close_revert(pfile);
414                         g_free(rcpath);
415                         return;
416                 }
417                 g_free(act);
418         }
419         
420         g_free(rcpath);
421
422         if (prefs_file_close(pfile) < 0) {
423                 g_warning("failed to write configuration to file\n");
424                 return;
425         }
426 }
427
428 static void prefs_actions_set_dialog(void)
429 {
430         GtkListStore *store;
431         GSList *cur;
432         GtkTreeSelection *selection;
433         GtkTreeIter iter;
434
435         store = GTK_LIST_STORE(gtk_tree_view_get_model
436                                 (GTK_TREE_VIEW(actions.actions_list_view)));
437         gtk_list_store_clear(store);
438
439         prefs_actions_list_view_insert_action(actions.actions_list_view,
440                                               NULL, _("New"), FALSE);
441
442         for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
443                 gchar *action = (gchar *) cur->data;
444                 
445                 prefs_actions_list_view_insert_action(actions.actions_list_view,
446                                                       NULL, action, TRUE);
447         }
448
449         /* select first entry */
450         selection = gtk_tree_view_get_selection
451                 (GTK_TREE_VIEW(actions.actions_list_view));
452         if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store),
453                                           &iter))
454                 gtk_tree_selection_select_iter(selection, &iter);
455 }
456
457 static void prefs_actions_set_list(void)
458 {
459         GtkTreeIter iter;
460         GtkListStore *store;
461         
462         g_slist_free(prefs_common.actions_list);
463         prefs_common.actions_list = NULL;
464
465         store = GTK_LIST_STORE(gtk_tree_view_get_model
466                                 (GTK_TREE_VIEW(actions.actions_list_view)));
467
468         if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
469                 do {
470                         gchar *action;
471                         gboolean is_valid;
472
473                         gtk_tree_model_get(GTK_TREE_MODEL(store), &iter,
474                                            PREFS_ACTIONS_DATA, &action,
475                                            PREFS_ACTIONS_VALID, &is_valid,
476                                            -1);
477                         
478                         if (is_valid) 
479                                 prefs_common.actions_list = 
480                                         g_slist_append(prefs_common.actions_list,
481                                                        action);
482
483                 } while (gtk_tree_model_iter_next(GTK_TREE_MODEL(store),
484                                                   &iter));
485         }
486 }
487
488 #define GET_ENTRY(entry) \
489         entry_text = gtk_entry_get_text(GTK_ENTRY(entry))
490
491 static gint prefs_actions_clist_set_row(GtkTreeIter *row)
492 {
493         const gchar *entry_text;
494         gint len;
495         gchar action[PREFSBUFSIZE];
496         gchar *new_action;
497         GtkListStore *store;
498
499         store = GTK_LIST_STORE(gtk_tree_view_get_model
500                                 (GTK_TREE_VIEW(actions.actions_list_view)));
501         
502
503         GET_ENTRY(actions.name_entry);
504         if (entry_text[0] == '\0') {
505                 alertpanel_error(_("Menu name is not set."));
506                 return -1;
507         }
508
509         if (strchr(entry_text, ':')) {
510                 alertpanel_error(_("Colon ':' is not allowed in the menu name."));
511                 return -1;
512         }
513
514         strncpy(action, entry_text, PREFSBUFSIZE - 1);
515         
516         while (strstr(action, "//")) {
517                 char *to_move = strstr(action, "//")+1;
518                 char *where = strstr(action, "//");
519                 int old_len = strlen(action);
520                 memmove(where, to_move, strlen(to_move));
521                 action[old_len-1] = '\0';
522         }
523         
524         g_strstrip(action);
525
526         /* Keep space for the ': ' delimiter */
527         len = strlen(action) + 2;
528         if (len >= PREFSBUFSIZE - 1) {
529                 alertpanel_error(_("Menu name is too long."));
530                 return -1;
531         }
532
533         strcat(action, ": ");
534
535         GET_ENTRY(actions.cmd_entry);
536
537         if (entry_text[0] == '\0') {
538                 alertpanel_error(_("Command line not set."));
539                 return -1;
540         }
541
542         if (len + strlen(entry_text) >= PREFSBUFSIZE - 1) {
543                 alertpanel_error(_("Menu name and command are too long."));
544                 return -1;
545         }
546
547         if (action_get_type(entry_text) == ACTION_ERROR) {
548                 alertpanel_error(_("The command\n%s\nhas a syntax error."), 
549                                  entry_text);
550                 return -1;
551         }
552
553         strcat(action, entry_text);
554
555         new_action = g_strdup(action);  
556         prefs_actions_list_view_insert_action(actions.actions_list_view,
557                                               row, new_action, TRUE);
558                                                 
559         prefs_actions_set_list();
560
561         return 0;
562 }
563
564 /* callback functions */
565
566 static void prefs_actions_register_cb(GtkWidget *w, gpointer data)
567 {
568         prefs_actions_clist_set_row(NULL);
569         modified = FALSE;
570 }
571
572 static void prefs_actions_substitute_cb(GtkWidget *w, gpointer data)
573 {
574         GtkTreeIter isel, inew;
575         GtkTreePath *path_sel, *path_new;
576         GtkTreeSelection *selection = gtk_tree_view_get_selection
577                                         (GTK_TREE_VIEW(actions.actions_list_view));
578         GtkTreeModel *model;                                    
579
580         if (!gtk_tree_selection_get_selected(selection, &model, &isel))
581                 return;
582         if (!gtk_tree_model_get_iter_first(model, &inew))
583                 return;
584
585         path_sel = gtk_tree_model_get_path(model, &isel);
586         path_new = gtk_tree_model_get_path(model, &inew);
587
588         if (path_sel && path_new 
589         &&  gtk_tree_path_compare(path_sel, path_new) != 0)
590                 prefs_actions_clist_set_row(&isel);
591
592         gtk_tree_path_free(path_sel);
593         gtk_tree_path_free(path_new);
594         modified = FALSE;
595 }
596
597 static void prefs_actions_delete_cb(GtkWidget *w, gpointer data)
598 {
599         GtkTreeIter sel;
600         GtkTreeModel *model;
601         gchar *action;
602
603         if (!gtk_tree_selection_get_selected(gtk_tree_view_get_selection
604                                 (GTK_TREE_VIEW(actions.actions_list_view)),
605                                 &model, &sel))
606                 return;                         
607
608         if (alertpanel(_("Delete action"),
609                        _("Do you really want to delete this action?"),
610                        GTK_STOCK_YES, GTK_STOCK_NO, NULL) != G_ALERTDEFAULT)
611                 return;
612
613         /* XXX: Here's the reason why we need to store the original 
614          * pointer: we search the slist for it. */
615         gtk_tree_model_get(model, &sel,
616                            PREFS_ACTIONS_DATA, &action,
617                            -1);
618         gtk_list_store_remove(GTK_LIST_STORE(model), &sel);
619
620         prefs_common.actions_list = g_slist_remove(prefs_common.actions_list,
621                                                    action);
622 }
623
624 static void prefs_actions_up(GtkWidget *w, gpointer data)
625 {
626         GtkTreePath *prev, *sel, *try;
627         GtkTreeIter isel;
628         GtkListStore *store = NULL;
629         GtkTreeModel *model = NULL;
630         GtkTreeIter iprev;
631         
632         if (!gtk_tree_selection_get_selected
633                 (gtk_tree_view_get_selection
634                         (GTK_TREE_VIEW(actions.actions_list_view)),
635                  &model,        
636                  &isel))
637                 return;
638         store = (GtkListStore *)model;
639         sel = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &isel);
640         if (!sel)
641                 return;
642         
643         /* no move if we're at row 0 or 1, looks phony, but other
644          * solutions are more convoluted... */
645         try = gtk_tree_path_copy(sel);
646         if (!gtk_tree_path_prev(try) || !gtk_tree_path_prev(try)) {
647                 gtk_tree_path_free(try);
648                 gtk_tree_path_free(sel);
649                 return;
650         }
651         gtk_tree_path_free(try);
652
653         prev = gtk_tree_path_copy(sel);         
654         if (!gtk_tree_path_prev(prev)) {
655                 gtk_tree_path_free(prev);
656                 gtk_tree_path_free(sel);
657                 return;
658         }
659
660         gtk_tree_model_get_iter(GTK_TREE_MODEL(store),
661                                 &iprev, prev);
662         gtk_tree_path_free(sel);
663         gtk_tree_path_free(prev);
664
665         gtk_list_store_swap(store, &iprev, &isel);
666         prefs_actions_set_list();
667 }
668
669 static void prefs_actions_down(GtkWidget *w, gpointer data)
670 {
671         GtkListStore *store = NULL;
672         GtkTreeModel *model = NULL;
673         GtkTreeIter next, sel;
674         GtkTreePath *try;
675         
676         if (!gtk_tree_selection_get_selected
677                 (gtk_tree_view_get_selection
678                         (GTK_TREE_VIEW(actions.actions_list_view)),
679                  &model,
680                  &sel))
681                 return;
682         store = (GtkListStore *)model;
683         try = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &sel);
684         if (!try) 
685                 return;
686
687         /* no move when we're at row 0 */
688         if (!gtk_tree_path_prev(try)) {
689                 gtk_tree_path_free(try);
690                 return;
691         }
692         gtk_tree_path_free(try);
693
694         next = sel;
695         if (!gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &next)) 
696                 return;
697
698         gtk_list_store_swap(store, &next, &sel);
699         prefs_actions_set_list();
700 }
701
702 static gint prefs_actions_deleted(GtkWidget *widget, GdkEventAny *event,
703                                   gpointer *data)
704 {
705         prefs_actions_cancel(widget, data);
706         return TRUE;
707 }
708
709 static gboolean prefs_actions_key_pressed(GtkWidget *widget, GdkEventKey *event,
710                                           gpointer data)
711 {
712         if (event && event->keyval == GDK_Escape)
713                 prefs_actions_cancel(widget, data);
714         else {
715                 GtkWidget *focused = gtkut_get_focused_child(
716                                         GTK_CONTAINER(widget));
717                 if (focused && GTK_IS_EDITABLE(focused)) {
718                         modified = TRUE;
719                 }
720         }
721         return FALSE;
722 }
723
724 static void prefs_actions_cancel(GtkWidget *w, gpointer data)
725 {
726         if (modified && alertpanel(_("Entry not saved"),
727                                  _("The entry was not saved. Close anyway?"),
728                                  GTK_STOCK_YES, GTK_STOCK_NO, NULL) != G_ALERTDEFAULT) {
729                 return;
730         }
731         modified = FALSE;
732         prefs_actions_read_config();
733         gtk_widget_hide(actions.window);
734         inc_unlock();
735 }
736
737 static void prefs_actions_ok(GtkWidget *widget, gpointer data)
738 {
739         MainWindow *mainwin = (MainWindow *) data;
740         GList *list;
741         GList *iter;
742         MessageView *msgview;
743         Compose *compose;
744
745         if (modified && alertpanel(_("Entry not saved"),
746                                  _("The entry was not saved. Close anyway?"),
747                                  GTK_STOCK_YES, GTK_STOCK_NO, NULL) != G_ALERTDEFAULT) {
748                 return;
749         }
750         modified = FALSE;
751         prefs_actions_write_config();
752
753         /* Update mainwindow actions menu */
754         main_window_update_actions_menu(mainwin);
755
756         /* Update separated message view actions menu */
757         list = messageview_get_msgview_list();
758         for (iter = list; iter; iter = iter->next) {
759                 msgview = (MessageView *) iter->data;
760                 messageview_update_actions_menu(msgview);
761         }
762
763         /* Update compose windows actions menu */
764         list = compose_get_compose_list();
765         for (iter = list; iter; iter = iter->next) {
766                 compose = (Compose *) iter->data;
767                 compose_update_actions_menu(compose);
768         }
769
770         gtk_widget_hide(actions.window);
771         inc_unlock();
772 }
773
774 /*
775  * Strings describing action format strings
776  * 
777  * When adding new lines, remember to put one string for each line
778  */
779 static gchar *actions_desc_strings[] = {
780         N_("MENU NAME:"), NULL,
781         "      ",   N_("Use / in menu name to make submenus."),
782         "", NULL,
783         N_("COMMAND LINE:"), NULL,
784         N_("Begin with:"), NULL,
785         "     |",   N_("to send message body or selection to command's standard input"),
786         "     >",   N_("to send user provided text to command's standard input"),
787         "     *",   N_("to send user provided hidden text to command's standard input"),
788         N_("End with:"), NULL, 
789         "     |",   N_("to replace message body or selection with command's standard output"),
790         "     >",   N_("to insert command's standard output without replacing old text"),
791         "     &",   N_("to run command asynchronously"),
792         N_("Use:"), NULL, 
793         "     %f",  N_("for the file of the selected message in RFC822/2822 format "),
794         "     %F",  N_("for the list of the files of the selected messages in RFC822/2822 format"),
795         "     %p",  N_("for the file of the selected decoded message MIME part"),
796         "     %u",  N_("for a user provided argument"),
797         "     %h",  N_("for a user provided hidden argument (e.g. password)"),
798         "     %s",  N_("for the text selection"),
799         "  %as{}",  N_("apply filtering actions between {} to selected messages"),
800         NULL
801 };
802
803
804 static DescriptionWindow actions_desc_win = { 
805         NULL,
806         NULL,
807         2,
808         N_("Description of symbols"),
809         actions_desc_strings
810 };
811
812
813 static void prefs_actions_help_cb(GtkWidget *w, GtkWidget *window)
814 {
815         actions_desc_win.parent = window;
816         description_window_create(&actions_desc_win);
817 }
818
819 static GtkListStore* prefs_actions_create_data_store(void)
820 {
821         return gtk_list_store_new(N_PREFS_ACTIONS_COLUMNS,
822                                   G_TYPE_STRING,        
823                                   G_TYPE_POINTER,
824                                   G_TYPE_BOOLEAN,
825                                   -1);
826 }
827
828 static void prefs_actions_list_view_insert_action(GtkWidget *list_view,
829                                                   GtkTreeIter *row_iter,
830                                                   gchar *action,
831                                                   gboolean is_valid) 
832 {
833         GtkTreeIter iter;
834         GtkListStore *list_store = GTK_LIST_STORE(gtk_tree_view_get_model
835                                         (GTK_TREE_VIEW(list_view)));
836
837         if (row_iter == NULL) {
838                 /* append new */
839                 gtk_list_store_append(list_store, &iter);
840                 gtk_list_store_set(list_store, &iter,
841                                    PREFS_ACTIONS_STRING, action,
842                                    PREFS_ACTIONS_DATA, action,
843                                    PREFS_ACTIONS_VALID,  is_valid,
844                                    -1);
845         } else {
846                 /* change existing */
847                 gchar *old_action;
848
849                 gtk_tree_model_get(GTK_TREE_MODEL(list_store), row_iter,
850                                    PREFS_ACTIONS_DATA, &old_action,
851                                    -1);
852                 
853                 g_free(old_action);                             
854                 gtk_list_store_set(list_store, row_iter,
855                                    PREFS_ACTIONS_STRING, action,
856                                    PREFS_ACTIONS_DATA, action,
857                                    -1);
858         }
859 }
860
861 static GtkWidget *prefs_actions_list_view_create(void)
862 {
863         GtkTreeView *list_view;
864         GtkTreeSelection *selector;
865         GtkTreeModel *model;
866
867         model = GTK_TREE_MODEL(prefs_actions_create_data_store());
868         list_view = GTK_TREE_VIEW(gtk_tree_view_new_with_model(model));
869         g_object_unref(model);  
870         
871         gtk_tree_view_set_rules_hint(list_view, prefs_common.enable_rules_hint);
872         
873         selector = gtk_tree_view_get_selection(list_view);
874         gtk_tree_selection_set_mode(selector, GTK_SELECTION_BROWSE);
875         gtk_tree_selection_set_select_function(selector, prefs_actions_selected,
876                                                NULL, NULL);
877
878         /* create the columns */
879         prefs_actions_create_list_view_columns(GTK_WIDGET(list_view));
880
881         return GTK_WIDGET(list_view);
882 }
883
884 static void prefs_actions_create_list_view_columns(GtkWidget *list_view)
885 {
886         GtkTreeViewColumn *column;
887         GtkCellRenderer *renderer;
888
889         renderer = gtk_cell_renderer_text_new();
890         column = gtk_tree_view_column_new_with_attributes
891                 (_("Current actions"),
892                  renderer,
893                  "text", PREFS_ACTIONS_STRING,
894                  NULL);
895         gtk_tree_view_append_column(GTK_TREE_VIEW(list_view), column);          
896 }
897
898 #define ENTRY_SET_TEXT(entry, str) \
899         gtk_entry_set_text(GTK_ENTRY(entry), str ? str : "")
900
901 static gboolean prefs_actions_selected(GtkTreeSelection *selector,
902                                        GtkTreeModel *model, 
903                                        GtkTreePath *path,
904                                        gboolean currently_selected,
905                                        gpointer data)
906 {
907         gchar *action;
908         gchar *cmd;
909         gchar buf[PREFSBUFSIZE];
910         GtkTreeIter iter;
911         gboolean is_valid;
912
913         if (currently_selected)
914                 return TRUE;
915
916         if (!gtk_tree_model_get_iter(model, &iter, path))
917                 return TRUE;
918
919         gtk_tree_model_get(model, &iter, 
920                            PREFS_ACTIONS_VALID,  &is_valid,
921                            PREFS_ACTIONS_DATA, &action,
922                            -1);
923         if (!is_valid) {
924                 ENTRY_SET_TEXT(actions.name_entry, "");
925                 ENTRY_SET_TEXT(actions.cmd_entry, "");
926                 return TRUE;
927         }
928         
929         strncpy(buf, action, PREFSBUFSIZE - 1);
930         buf[PREFSBUFSIZE - 1] = 0x00;
931         cmd = strstr(buf, ": ");
932
933         if (cmd && cmd[2])
934                 ENTRY_SET_TEXT(actions.cmd_entry, &cmd[2]);
935         else
936                 return TRUE;
937
938         *cmd = 0x00;
939         ENTRY_SET_TEXT(actions.name_entry, buf);
940
941         return TRUE;
942 }
943