2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2003 Hiroyuki Yamamoto & The Sylpheed Claws Team
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
28 #include <gdk/gdkkeysyms.h>
35 #include "prefs_gtk.h"
39 #include "manage_window.h"
40 #include "mainwindow.h"
41 #include "prefs_common.h"
42 #include "alertpanel.h"
43 #include "prefs_actions.h"
45 #include "description_window.h"
48 PREFS_ACTIONS_STRING, /*!< string pointer managed by list store,
49 * and never touched or retrieved by
51 PREFS_ACTIONS_DATA, /*!< pointer to string that is not managed by
52 * the list store, and which is retrieved
53 * and touched by us */
54 PREFS_ACTIONS_VALID, /*!< contains a valid action, otherwise "(New)" */
55 N_PREFS_ACTIONS_COLUMNS
64 GtkWidget *name_entry;
67 GtkWidget *actions_list_view;
70 /* widget creating functions */
71 static void prefs_actions_create (MainWindow *mainwin);
72 static void prefs_actions_set_dialog (void);
73 static gint prefs_actions_clist_set_row (GtkTreeIter *row);
75 /* callback functions */
76 static void prefs_actions_help_cb (GtkWidget *w,
78 static void prefs_actions_register_cb (GtkWidget *w,
80 static void prefs_actions_substitute_cb (GtkWidget *w,
82 static void prefs_actions_delete_cb (GtkWidget *w,
84 static void prefs_actions_up (GtkWidget *w,
86 static void prefs_actions_down (GtkWidget *w,
88 static gint prefs_actions_deleted (GtkWidget *widget,
91 static gboolean prefs_actions_key_pressed(GtkWidget *widget,
94 static void prefs_actions_cancel (GtkWidget *w,
96 static void prefs_actions_ok (GtkWidget *w,
100 static GtkListStore* prefs_actions_create_data_store (void);
102 static void prefs_actions_list_view_insert_action (GtkWidget *list_view,
103 GtkTreeIter *row_iter,
106 static GtkWidget *prefs_actions_list_view_create (void);
107 static void prefs_actions_create_list_view_columns (GtkWidget *list_view);
108 static gboolean prefs_actions_selected (GtkTreeSelection *selector,
111 gboolean currently_selected,
114 void prefs_actions_open(MainWindow *mainwin)
119 prefs_actions_create(mainwin);
121 manage_window_set_transient(GTK_WINDOW(actions.window));
122 gtk_widget_grab_focus(actions.ok_btn);
124 prefs_actions_set_dialog();
126 gtk_widget_show(actions.window);
129 static void prefs_actions_create(MainWindow *mainwin)
134 GtkWidget *cancel_btn;
135 GtkWidget *confirm_area;
139 GtkWidget *entry_vbox;
141 GtkWidget *name_label;
142 GtkWidget *name_entry;
143 GtkWidget *cmd_label;
144 GtkWidget *cmd_entry;
150 GtkWidget *subst_btn;
153 GtkWidget *cond_hbox;
154 GtkWidget *cond_scrolledwin;
155 GtkWidget *cond_list_view;
157 GtkWidget *help_button;
163 debug_print("Creating actions configuration window...\n");
165 window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
167 gtk_container_set_border_width(GTK_CONTAINER (window), 8);
168 gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
169 gtk_window_set_modal(GTK_WINDOW(window), TRUE);
170 gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
171 gtk_window_set_default_size(GTK_WINDOW(window), 400, -1);
173 vbox = gtk_vbox_new(FALSE, 6);
174 gtk_widget_show(vbox);
175 gtk_container_add(GTK_CONTAINER(window), vbox);
177 gtkut_button_set_create_stock(&confirm_area, &ok_btn, GTK_STOCK_OK,
178 &cancel_btn, GTK_STOCK_CANCEL, NULL, NULL);
179 gtk_widget_show(confirm_area);
180 gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);
181 gtk_widget_grab_default(ok_btn);
183 gtk_window_set_title(GTK_WINDOW(window), _("Actions configuration"));
184 g_signal_connect(G_OBJECT(window), "delete_event",
185 G_CALLBACK(prefs_actions_deleted), NULL);
186 g_signal_connect(G_OBJECT(window), "key_press_event",
187 G_CALLBACK(prefs_actions_key_pressed), NULL);
188 MANAGE_WINDOW_SIGNALS_CONNECT(window);
189 g_signal_connect(G_OBJECT(ok_btn), "clicked",
190 G_CALLBACK(prefs_actions_ok), mainwin);
191 g_signal_connect(G_OBJECT(cancel_btn), "clicked",
192 G_CALLBACK(prefs_actions_cancel), NULL);
194 vbox1 = gtk_vbox_new(FALSE, 8);
195 gtk_widget_show(vbox1);
196 gtk_box_pack_start(GTK_BOX(vbox), vbox1, TRUE, TRUE, 0);
197 gtk_container_set_border_width(GTK_CONTAINER(vbox1), 2);
199 entry_vbox = gtk_vbox_new(FALSE, 4);
200 gtk_box_pack_start(GTK_BOX(vbox1), entry_vbox, FALSE, FALSE, 0);
202 hbox = gtk_hbox_new(FALSE, 8);
203 gtk_box_pack_start(GTK_BOX(entry_vbox), hbox, FALSE, FALSE, 0);
205 name_label = gtk_label_new(_("Menu name:"));
206 gtk_box_pack_start(GTK_BOX(hbox), name_label, FALSE, FALSE, 0);
208 name_entry = gtk_entry_new();
209 gtk_box_pack_start(GTK_BOX(hbox), name_entry, TRUE, TRUE, 0);
211 hbox = gtk_hbox_new(FALSE, 8);
212 gtk_box_pack_start(GTK_BOX(entry_vbox), hbox, TRUE, TRUE, 0);
214 cmd_label = gtk_label_new(_("Command line:"));
215 gtk_box_pack_start(GTK_BOX(hbox), cmd_label, FALSE, FALSE, 0);
217 cmd_entry = gtk_entry_new();
218 gtk_box_pack_start(GTK_BOX(hbox), cmd_entry, TRUE, TRUE, 0);
220 gtk_widget_show_all(entry_vbox);
222 /* register / substitute / delete */
224 reg_hbox = gtk_hbox_new(FALSE, 4);
225 gtk_widget_show(reg_hbox);
226 gtk_box_pack_start(GTK_BOX(vbox1), reg_hbox, FALSE, FALSE, 0);
228 arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
229 gtk_widget_show(arrow);
230 gtk_box_pack_start(GTK_BOX(reg_hbox), arrow, FALSE, FALSE, 0);
231 gtk_widget_set_size_request(arrow, -1, 16);
233 btn_hbox = gtk_hbox_new(TRUE, 4);
234 gtk_widget_show(btn_hbox);
235 gtk_box_pack_start(GTK_BOX(reg_hbox), btn_hbox, FALSE, FALSE, 0);
237 reg_btn = gtk_button_new_with_label(_("Add"));
238 gtk_widget_show(reg_btn);
239 gtk_box_pack_start(GTK_BOX(btn_hbox), reg_btn, FALSE, TRUE, 0);
240 g_signal_connect(G_OBJECT(reg_btn), "clicked",
241 G_CALLBACK(prefs_actions_register_cb), NULL);
243 subst_btn = gtk_button_new_with_label(_(" Replace "));
244 gtk_widget_show(subst_btn);
245 gtk_box_pack_start(GTK_BOX(btn_hbox), subst_btn, FALSE, TRUE, 0);
246 g_signal_connect(G_OBJECT(subst_btn), "clicked",
247 G_CALLBACK(prefs_actions_substitute_cb),
250 del_btn = gtk_button_new_with_label(_("Delete"));
251 gtk_widget_show(del_btn);
252 gtk_box_pack_start(GTK_BOX(btn_hbox), del_btn, FALSE, TRUE, 0);
253 g_signal_connect(G_OBJECT(del_btn), "clicked",
254 G_CALLBACK(prefs_actions_delete_cb), NULL);
256 help_button = gtk_button_new_with_label(_(" Syntax help "));
257 gtk_widget_show(help_button);
258 gtk_box_pack_end(GTK_BOX(reg_hbox), help_button, FALSE, FALSE, 0);
259 g_signal_connect(G_OBJECT(help_button), "clicked",
260 G_CALLBACK(prefs_actions_help_cb), NULL);
262 cond_hbox = gtk_hbox_new(FALSE, 8);
263 gtk_widget_show(cond_hbox);
264 gtk_box_pack_start(GTK_BOX(vbox1), cond_hbox, TRUE, TRUE, 0);
266 cond_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
267 gtk_widget_show(cond_scrolledwin);
268 gtk_widget_set_size_request(cond_scrolledwin, -1, 150);
269 gtk_box_pack_start(GTK_BOX(cond_hbox), cond_scrolledwin,
271 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (cond_scrolledwin),
272 GTK_POLICY_AUTOMATIC,
273 GTK_POLICY_AUTOMATIC);
275 cond_list_view = prefs_actions_list_view_create();
276 gtk_widget_show(cond_list_view);
277 gtk_container_add(GTK_CONTAINER (cond_scrolledwin), cond_list_view);
279 btn_vbox = gtk_vbox_new(FALSE, 8);
280 gtk_widget_show(btn_vbox);
281 gtk_box_pack_start(GTK_BOX(cond_hbox), btn_vbox, FALSE, FALSE, 0);
283 up_btn = gtk_button_new_from_stock(GTK_STOCK_GO_UP);
284 gtk_widget_show(up_btn);
285 gtk_box_pack_start(GTK_BOX(btn_vbox), up_btn, FALSE, FALSE, 0);
286 g_signal_connect(G_OBJECT(up_btn), "clicked",
287 G_CALLBACK(prefs_actions_up), NULL);
289 down_btn = gtk_button_new_from_stock(GTK_STOCK_GO_DOWN);
290 gtk_widget_show(down_btn);
291 gtk_box_pack_start(GTK_BOX(btn_vbox), down_btn, FALSE, FALSE, 0);
292 g_signal_connect(G_OBJECT(down_btn), "clicked",
293 G_CALLBACK(prefs_actions_down), NULL);
295 gtk_widget_show(window);
297 actions.window = window;
298 actions.ok_btn = ok_btn;
300 actions.name_entry = name_entry;
301 actions.cmd_entry = cmd_entry;
303 actions.actions_list_view = cond_list_view;
307 void prefs_actions_read_config(void)
311 gchar buf[PREFSBUFSIZE];
314 debug_print("Reading actions configurations...\n");
316 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
317 if ((fp = fopen(rcpath, "rb")) == NULL) {
318 if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
324 while (prefs_common.actions_list != NULL) {
325 act = (gchar *)prefs_common.actions_list->data;
326 prefs_common.actions_list =
327 g_slist_remove(prefs_common.actions_list, act);
331 while (fgets(buf, sizeof(buf), fp) != NULL) {
332 const gchar *src_codeset = conv_get_current_charset_str();
333 const gchar *dest_codeset = CS_UTF_8;
336 tmp = conv_codeset_strdup(buf, src_codeset, dest_codeset);
338 g_warning("Faild to convert character set of action configuration\n");
343 act = strstr(tmp, ": ");
345 action_get_type(&act[2]) != ACTION_ERROR)
346 prefs_common.actions_list =
347 g_slist_append(prefs_common.actions_list,
355 void prefs_actions_write_config(void)
361 debug_print("Writing actions configuration...\n");
363 rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
364 if ((pfile= prefs_write_open(rcpath)) == NULL) {
365 g_warning("failed to write configuration to file\n");
370 for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
371 gchar *tmp = (gchar *)cur->data;
372 const gchar *src_codeset = CS_UTF_8;
373 const gchar *dest_codeset = conv_get_current_charset_str();
376 act = conv_codeset_strdup(tmp, src_codeset, dest_codeset);
378 g_warning("Faild to convert character set of action configuration\n");
382 if (fputs(act, pfile->fp) == EOF ||
383 fputc('\n', pfile->fp) == EOF) {
384 FILE_OP_ERROR(rcpath, "fputs || fputc");
385 prefs_file_close_revert(pfile);
394 if (prefs_file_close(pfile) < 0) {
395 g_warning("failed to write configuration to file\n");
400 static void prefs_actions_set_dialog(void)
404 GtkTreeSelection *selection;
407 store = GTK_LIST_STORE(gtk_tree_view_get_model
408 (GTK_TREE_VIEW(actions.actions_list_view)));
409 gtk_list_store_clear(store);
411 prefs_actions_list_view_insert_action(actions.actions_list_view,
412 NULL, _("New"), FALSE);
414 for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
415 gchar *action = (gchar *) cur->data;
417 prefs_actions_list_view_insert_action(actions.actions_list_view,
421 /* select first entry */
422 selection = gtk_tree_view_get_selection
423 (GTK_TREE_VIEW(actions.actions_list_view));
424 if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store),
426 gtk_tree_selection_select_iter(selection, &iter);
429 static void prefs_actions_set_list(void)
435 g_slist_free(prefs_common.actions_list);
436 prefs_common.actions_list = NULL;
438 store = GTK_LIST_STORE(gtk_tree_view_get_model
439 (GTK_TREE_VIEW(actions.actions_list_view)));
441 if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
446 gtk_tree_model_get(GTK_TREE_MODEL(store), &iter,
447 PREFS_ACTIONS_DATA, &action,
448 PREFS_ACTIONS_VALID, &is_valid,
452 prefs_common.actions_list =
453 g_slist_append(prefs_common.actions_list,
456 } while (gtk_tree_model_iter_next(GTK_TREE_MODEL(store),
461 #define GET_ENTRY(entry) \
462 entry_text = gtk_entry_get_text(GTK_ENTRY(entry))
464 static gint prefs_actions_clist_set_row(GtkTreeIter *row)
466 const gchar *entry_text;
468 gchar action[PREFSBUFSIZE];
472 store = GTK_LIST_STORE(gtk_tree_view_get_model
473 (GTK_TREE_VIEW(actions.actions_list_view)));
476 GET_ENTRY(actions.name_entry);
477 if (entry_text[0] == '\0') {
478 alertpanel_error(_("Menu name is not set."));
482 if (strchr(entry_text, ':')) {
483 alertpanel_error(_("Colon ':' is not allowed in the menu name."));
487 strncpy(action, entry_text, PREFSBUFSIZE - 1);
490 /* Keep space for the ': ' delimiter */
491 len = strlen(action) + 2;
492 if (len >= PREFSBUFSIZE - 1) {
493 alertpanel_error(_("Menu name is too long."));
497 strcat(action, ": ");
499 GET_ENTRY(actions.cmd_entry);
501 if (entry_text[0] == '\0') {
502 alertpanel_error(_("Command line not set."));
506 if (len + strlen(entry_text) >= PREFSBUFSIZE - 1) {
507 alertpanel_error(_("Menu name and command are too long."));
511 if (action_get_type(entry_text) == ACTION_ERROR) {
512 alertpanel_error(_("The command\n%s\nhas a syntax error."),
517 strcat(action, entry_text);
519 new_action = g_strdup(action);
520 prefs_actions_list_view_insert_action(actions.actions_list_view,
521 row, new_action, TRUE);
523 prefs_actions_set_list();
528 /* callback functions */
530 static void prefs_actions_register_cb(GtkWidget *w, gpointer data)
532 prefs_actions_clist_set_row(NULL);
535 static void prefs_actions_substitute_cb(GtkWidget *w, gpointer data)
539 if (!gtk_tree_selection_get_selected(gtk_tree_view_get_selection
540 (GTK_TREE_VIEW(actions.actions_list_view)),
544 prefs_actions_clist_set_row(&sel);
547 static void prefs_actions_delete_cb(GtkWidget *w, gpointer data)
553 if (!gtk_tree_selection_get_selected(gtk_tree_view_get_selection
554 (GTK_TREE_VIEW(actions.actions_list_view)),
558 if (alertpanel(_("Delete action"),
559 _("Do you really want to delete this action?"),
560 _("Yes"), _("No"), NULL) != G_ALERTDEFAULT)
563 /* XXX: Here's the reason why we need to store the original
564 * pointer: we search the slist for it. */
565 gtk_tree_model_get(model, &sel,
566 PREFS_ACTIONS_DATA, &action,
568 gtk_list_store_remove(GTK_LIST_STORE(model), &sel);
570 prefs_common.actions_list = g_slist_remove(prefs_common.actions_list,
574 static void prefs_actions_up(GtkWidget *w, gpointer data)
576 GtkTreePath *prev, *sel, *try;
581 if (!gtk_tree_selection_get_selected
582 (gtk_tree_view_get_selection
583 (GTK_TREE_VIEW(actions.actions_list_view)),
584 (GtkTreeModel **) &store,
588 sel = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &isel);
592 /* no move if we're at row 0 or 1, looks phony, but other
593 * solutions are more convoluted... */
594 try = gtk_tree_path_copy(sel);
595 if (!gtk_tree_path_prev(try) || !gtk_tree_path_prev(try)) {
596 gtk_tree_path_free(try);
597 gtk_tree_path_free(sel);
601 prev = gtk_tree_path_copy(sel);
602 if (!gtk_tree_path_prev(prev)) {
603 gtk_tree_path_free(prev);
604 gtk_tree_path_free(sel);
608 gtk_tree_model_get_iter(GTK_TREE_MODEL(store),
610 gtk_tree_path_free(sel);
611 gtk_tree_path_free(prev);
613 gtk_list_store_swap(store, &iprev, &isel);
614 prefs_actions_set_list();
617 static void prefs_actions_down(GtkWidget *w, gpointer data)
620 GtkTreeIter next, sel;
623 if (!gtk_tree_selection_get_selected
624 (gtk_tree_view_get_selection
625 (GTK_TREE_VIEW(actions.actions_list_view)),
626 (GtkTreeModel **) &store,
630 try = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &sel);
634 /* no move when we're at row 0 */
635 if (!gtk_tree_path_prev(try)) {
636 gtk_tree_path_free(try);
639 gtk_tree_path_free(try);
642 if (!gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &next))
645 gtk_list_store_swap(store, &next, &sel);
646 prefs_actions_set_list();
649 static gint prefs_actions_deleted(GtkWidget *widget, GdkEventAny *event,
652 prefs_actions_cancel(widget, data);
656 static gboolean prefs_actions_key_pressed(GtkWidget *widget, GdkEventKey *event,
659 if (event && event->keyval == GDK_Escape)
660 prefs_actions_cancel(widget, data);
664 static void prefs_actions_cancel(GtkWidget *w, gpointer data)
666 prefs_actions_read_config();
667 gtk_widget_hide(actions.window);
671 static void prefs_actions_ok(GtkWidget *widget, gpointer data)
673 MainWindow *mainwin = (MainWindow *) data;
676 MessageView *msgview;
679 prefs_actions_write_config();
681 /* Update mainwindow actions menu */
682 main_window_update_actions_menu(mainwin);
684 /* Update separated message view actions menu */
685 list = messageview_get_msgview_list();
686 for (iter = list; iter; iter = iter->next) {
687 msgview = (MessageView *) iter->data;
688 messageview_update_actions_menu(msgview);
691 /* Update compose windows actions menu */
692 list = compose_get_compose_list();
693 for (iter = list; iter; iter = iter->next) {
694 compose = (Compose *) iter->data;
695 compose_update_actions_menu(compose);
698 gtk_widget_hide(actions.window);
703 * Strings describing action format strings
705 * When adding new lines, remember to put one string for each line
707 static gchar *actions_desc_strings[] = {
708 N_("MENU NAME:"), NULL,
709 " ", N_("Use / in menu name to make submenus."),
711 N_("COMMAND LINE:"), NULL,
712 N_("Begin with:"), NULL,
713 " |", N_("to send message body or selection to command's standard input"),
714 " >", N_("to send user provided text to command's standard input"),
715 " *", N_("to send user provided hidden text to command's standard input"),
716 N_("End with:"), NULL,
717 " |", N_("to replace message body or selection with command's standard output"),
718 " >", N_("to insert command's standard output without replacing old text"),
719 " &", N_("to run command asynchronously"),
721 " %f", N_("for the file of the selected message in RFC822/2822 format "),
722 " %F", N_("for the list of the files of the selected messages in RFC822/2822 format"),
723 " %p", N_("for the file of the selected decoded message MIME part"),
724 " %u", N_("for a user provided argument"),
725 " %h", N_("for a user provided hidden argument (e.g. password)"),
726 " %s", N_("for the text selection"),
727 " %as{}", N_("apply filtering actions between {} to selected messages"),
732 static DescriptionWindow actions_desc_win = {
735 N_("Description of symbols"),
740 static void prefs_actions_help_cb(GtkWidget *w, gpointer data)
742 description_window_create(&actions_desc_win);
745 static GtkListStore* prefs_actions_create_data_store(void)
747 return gtk_list_store_new(N_PREFS_ACTIONS_COLUMNS,
754 static void prefs_actions_list_view_insert_action(GtkWidget *list_view,
755 GtkTreeIter *row_iter,
760 GtkListStore *list_store = GTK_LIST_STORE(gtk_tree_view_get_model
761 (GTK_TREE_VIEW(list_view)));
763 if (row_iter == NULL) {
765 gtk_list_store_append(list_store, &iter);
766 gtk_list_store_set(list_store, &iter,
767 PREFS_ACTIONS_STRING, action,
768 PREFS_ACTIONS_DATA, action,
769 PREFS_ACTIONS_VALID, is_valid,
772 /* change existing */
775 gtk_tree_model_get(GTK_TREE_MODEL(list_store), row_iter,
776 PREFS_ACTIONS_DATA, &old_action,
779 /* NOTE: we assume we never change the first entry,
780 * which is "(New)" */
781 g_assert(strcmp(_("New"), old_action) != 0);
784 gtk_list_store_set(list_store, row_iter,
785 PREFS_ACTIONS_STRING, action,
786 PREFS_ACTIONS_DATA, action,
791 static GtkWidget *prefs_actions_list_view_create(void)
793 GtkTreeView *list_view;
794 GtkTreeSelection *selector;
797 model = GTK_TREE_MODEL(prefs_actions_create_data_store());
798 list_view = GTK_TREE_VIEW(gtk_tree_view_new_with_model(model));
799 g_object_unref(model);
801 gtk_tree_view_set_rules_hint(list_view, TRUE);
803 selector = gtk_tree_view_get_selection(list_view);
804 gtk_tree_selection_set_mode(selector, GTK_SELECTION_BROWSE);
805 gtk_tree_selection_set_select_function(selector, prefs_actions_selected,
808 /* create the columns */
809 prefs_actions_create_list_view_columns(GTK_WIDGET(list_view));
811 return GTK_WIDGET(list_view);
814 static void prefs_actions_create_list_view_columns(GtkWidget *list_view)
816 GtkTreeViewColumn *column;
817 GtkCellRenderer *renderer;
819 renderer = gtk_cell_renderer_text_new();
820 column = gtk_tree_view_column_new_with_attributes
821 (_("Current actions"),
823 "text", PREFS_ACTIONS_STRING,
825 gtk_tree_view_append_column(GTK_TREE_VIEW(list_view), column);
828 #define ENTRY_SET_TEXT(entry, str) \
829 gtk_entry_set_text(GTK_ENTRY(entry), str ? str : "")
831 static gboolean prefs_actions_selected(GtkTreeSelection *selector,
834 gboolean currently_selected,
839 gchar buf[PREFSBUFSIZE];
843 if (currently_selected)
846 if (!gtk_tree_model_get_iter(model, &iter, path))
849 gtk_tree_model_get(model, &iter,
850 PREFS_ACTIONS_VALID, &is_valid,
851 PREFS_ACTIONS_DATA, &action,
854 ENTRY_SET_TEXT(actions.name_entry, "");
855 ENTRY_SET_TEXT(actions.cmd_entry, "");
859 strncpy(buf, action, PREFSBUFSIZE - 1);
860 buf[PREFSBUFSIZE - 1] = 0x00;
861 cmd = strstr(buf, ": ");
864 ENTRY_SET_TEXT(actions.cmd_entry, &cmd[2]);
869 ENTRY_SET_TEXT(actions.name_entry, buf);