2002-02-06 12:15:31 +01:00
|
|
|
/*
|
|
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
2007-01-03 06:42:43 +01:00
|
|
|
* Copyright (C) 1999-2007 Hiroyuki Yamamoto & The Claws Mail Team
|
2002-02-06 12:15:31 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2007-07-11 18:38:12 +02:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2002-02-06 12:15:31 +01:00
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-11 18:38:12 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
2002-02-06 12:15:31 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
|
|
|
#include <glib.h>
|
2005-02-10 13:06:07 +01:00
|
|
|
#include <glib/gi18n.h>
|
2002-02-06 12:15:31 +01:00
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2002-12-25 14:46:41 +01:00
|
|
|
#include "prefs_gtk.h"
|
2002-02-06 12:15:31 +01:00
|
|
|
#include "inc.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "gtkutils.h"
|
|
|
|
#include "manage_window.h"
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include "prefs_common.h"
|
|
|
|
#include "alertpanel.h"
|
|
|
|
#include "prefs_actions.h"
|
2003-04-17 10:18:15 +02:00
|
|
|
#include "action.h"
|
2003-01-06 23:01:43 +01:00
|
|
|
#include "description_window.h"
|
2005-05-26 21:46:08 +02:00
|
|
|
#include "gtkutils.h"
|
2006-07-06 16:20:03 +02:00
|
|
|
#include "manual.h"
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
enum {
|
|
|
|
PREFS_ACTIONS_STRING, /*!< string pointer managed by list store,
|
|
|
|
* and never touched or retrieved by
|
|
|
|
* us */
|
|
|
|
PREFS_ACTIONS_DATA, /*!< pointer to string that is not managed by
|
|
|
|
* the list store, and which is retrieved
|
|
|
|
* and touched by us */
|
|
|
|
PREFS_ACTIONS_VALID, /*!< contains a valid action, otherwise "(New)" */
|
|
|
|
N_PREFS_ACTIONS_COLUMNS
|
|
|
|
};
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static struct Actions
|
|
|
|
{
|
2002-02-06 12:15:31 +01:00
|
|
|
GtkWidget *window;
|
|
|
|
|
|
|
|
GtkWidget *ok_btn;
|
|
|
|
|
|
|
|
GtkWidget *name_entry;
|
|
|
|
GtkWidget *cmd_entry;
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkWidget *actions_list_view;
|
2002-02-06 12:15:31 +01:00
|
|
|
} actions;
|
|
|
|
|
2005-05-26 21:46:08 +02:00
|
|
|
static int modified = FALSE;
|
2007-10-05 11:29:34 +02:00
|
|
|
static int modified_list = FALSE;
|
2005-05-26 21:46:08 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
/* widget creating functions */
|
|
|
|
static void prefs_actions_create (MainWindow *mainwin);
|
|
|
|
static void prefs_actions_set_dialog (void);
|
2004-12-30 15:24:30 +01:00
|
|
|
static gint prefs_actions_clist_set_row (GtkTreeIter *row);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
/* callback functions */
|
2006-07-06 16:20:03 +02:00
|
|
|
static void prefs_actions_info_cb (GtkWidget *w,
|
2005-09-15 09:50:55 +02:00
|
|
|
GtkWidget *window);
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_register_cb (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void prefs_actions_substitute_cb (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void prefs_actions_delete_cb (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void prefs_actions_up (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void prefs_actions_down (GtkWidget *w,
|
|
|
|
gpointer data);
|
2002-02-06 12:15:31 +01:00
|
|
|
static gint prefs_actions_deleted (GtkWidget *widget,
|
|
|
|
GdkEventAny *event,
|
|
|
|
gpointer *data);
|
2003-10-05 12:10:30 +02:00
|
|
|
static gboolean prefs_actions_key_pressed(GtkWidget *widget,
|
|
|
|
GdkEventKey *event,
|
|
|
|
gpointer data);
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_cancel (GtkWidget *w,
|
|
|
|
gpointer data);
|
|
|
|
static void prefs_actions_ok (GtkWidget *w,
|
|
|
|
gpointer data);
|
2003-03-13 18:06:27 +01:00
|
|
|
|
2003-01-06 23:01:43 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
static GtkListStore* prefs_actions_create_data_store (void);
|
|
|
|
|
|
|
|
static void prefs_actions_list_view_insert_action (GtkWidget *list_view,
|
|
|
|
GtkTreeIter *row_iter,
|
|
|
|
gchar *action,
|
|
|
|
gboolean is_valid);
|
|
|
|
static GtkWidget *prefs_actions_list_view_create (void);
|
|
|
|
static void prefs_actions_create_list_view_columns (GtkWidget *list_view);
|
|
|
|
static gboolean prefs_actions_selected (GtkTreeSelection *selector,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreePath *path,
|
|
|
|
gboolean currently_selected,
|
|
|
|
gpointer data);
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
void prefs_actions_open(MainWindow *mainwin)
|
|
|
|
{
|
|
|
|
inc_lock();
|
|
|
|
|
|
|
|
if (!actions.window)
|
|
|
|
prefs_actions_create(mainwin);
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
manage_window_set_transient(GTK_WINDOW(actions.window));
|
|
|
|
gtk_widget_grab_focus(actions.ok_btn);
|
|
|
|
|
|
|
|
prefs_actions_set_dialog();
|
|
|
|
|
|
|
|
gtk_widget_show(actions.window);
|
|
|
|
}
|
|
|
|
|
2005-10-14 15:43:17 +02:00
|
|
|
/*!
|
|
|
|
*\brief Save Gtk object size to prefs dataset
|
|
|
|
*/
|
|
|
|
static void prefs_actions_size_allocate_cb(GtkWidget *widget,
|
|
|
|
GtkAllocation *allocation)
|
|
|
|
{
|
|
|
|
g_return_if_fail(allocation != NULL);
|
|
|
|
|
|
|
|
prefs_common.actionswin_width = allocation->width;
|
|
|
|
prefs_common.actionswin_height = allocation->height;
|
|
|
|
}
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
static void prefs_actions_create(MainWindow *mainwin)
|
|
|
|
{
|
|
|
|
GtkWidget *window;
|
|
|
|
GtkWidget *vbox;
|
2006-07-06 16:20:03 +02:00
|
|
|
GtkWidget *help_btn;
|
2002-02-06 12:15:31 +01:00
|
|
|
GtkWidget *ok_btn;
|
|
|
|
GtkWidget *cancel_btn;
|
|
|
|
GtkWidget *confirm_area;
|
|
|
|
|
|
|
|
GtkWidget *vbox1;
|
2006-09-10 15:29:42 +02:00
|
|
|
GtkWidget *table;
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
GtkWidget *name_label;
|
|
|
|
GtkWidget *name_entry;
|
|
|
|
GtkWidget *cmd_label;
|
|
|
|
GtkWidget *cmd_entry;
|
|
|
|
|
|
|
|
GtkWidget *reg_hbox;
|
|
|
|
GtkWidget *btn_hbox;
|
|
|
|
GtkWidget *arrow;
|
|
|
|
GtkWidget *reg_btn;
|
|
|
|
GtkWidget *subst_btn;
|
|
|
|
GtkWidget *del_btn;
|
|
|
|
|
|
|
|
GtkWidget *cond_hbox;
|
|
|
|
GtkWidget *cond_scrolledwin;
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkWidget *cond_list_view;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2006-07-06 16:20:03 +02:00
|
|
|
GtkWidget *info_btn;
|
2002-02-12 00:31:18 +01:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
GtkWidget *btn_vbox;
|
|
|
|
GtkWidget *up_btn;
|
|
|
|
GtkWidget *down_btn;
|
2005-10-14 15:43:17 +02:00
|
|
|
static GdkGeometry geometry;
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-11-27 18:41:38 +01:00
|
|
|
debug_print("Creating actions configuration window...\n");
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2007-02-04 12:51:29 +01:00
|
|
|
window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "prefs_actions");
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER (window), 8);
|
2003-10-05 12:10:30 +02:00
|
|
|
gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_window_set_modal(GTK_WINDOW(window), TRUE);
|
2004-07-28 09:51:10 +02:00
|
|
|
gtk_window_set_resizable(GTK_WINDOW(window), TRUE);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
vbox = gtk_vbox_new(FALSE, 6);
|
|
|
|
gtk_widget_show(vbox);
|
|
|
|
gtk_container_add(GTK_CONTAINER(window), vbox);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2006-07-06 16:20:03 +02:00
|
|
|
gtkut_stock_button_set_create_with_help(&confirm_area, &help_btn,
|
|
|
|
&cancel_btn, GTK_STOCK_CANCEL,
|
|
|
|
&ok_btn, GTK_STOCK_OK,
|
|
|
|
NULL, NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(confirm_area);
|
|
|
|
gtk_box_pack_end(GTK_BOX(vbox), confirm_area, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_grab_default(ok_btn);
|
|
|
|
|
2002-11-27 18:41:38 +01:00
|
|
|
gtk_window_set_title(GTK_WINDOW(window), _("Actions configuration"));
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(window), "delete_event",
|
|
|
|
G_CALLBACK(prefs_actions_deleted), NULL);
|
2005-10-14 15:43:17 +02:00
|
|
|
g_signal_connect(G_OBJECT(window), "size_allocate",
|
|
|
|
G_CALLBACK(prefs_actions_size_allocate_cb), NULL);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(window), "key_press_event",
|
|
|
|
G_CALLBACK(prefs_actions_key_pressed), NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
MANAGE_WINDOW_SIGNALS_CONNECT(window);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(ok_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_ok), mainwin);
|
|
|
|
g_signal_connect(G_OBJECT(cancel_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_cancel), NULL);
|
2006-07-06 16:20:03 +02:00
|
|
|
g_signal_connect(G_OBJECT(help_btn), "clicked",
|
|
|
|
G_CALLBACK(manual_open_with_anchor_cb),
|
|
|
|
MANUAL_ANCHOR_ACTIONS);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2006-09-10 15:29:42 +02:00
|
|
|
vbox1 = gtk_vbox_new(FALSE, VSPACING);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(vbox1);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox), vbox1, TRUE, TRUE, 0);
|
|
|
|
gtk_container_set_border_width(GTK_CONTAINER(vbox1), 2);
|
|
|
|
|
2006-09-10 15:29:42 +02:00
|
|
|
table = gtk_table_new(2, 2, FALSE);
|
|
|
|
gtk_table_set_row_spacings (GTK_TABLE (table), VSPACING_NARROW_2);
|
|
|
|
gtk_table_set_col_spacings (GTK_TABLE (table), 4);
|
|
|
|
gtk_widget_show(table);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox1), table, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
name_label = gtk_label_new (_("Menu name"));
|
|
|
|
gtk_widget_show (name_label);
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (name_label), 1, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), name_label, 0, 1, 0, 1,
|
|
|
|
(GtkAttachOptions) (GTK_FILL),
|
|
|
|
(GtkAttachOptions) (0), 0, 0);
|
|
|
|
|
|
|
|
name_entry = gtk_entry_new ();
|
|
|
|
gtk_widget_show (name_entry);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), name_entry, 1, 2, 0, 1,
|
|
|
|
(GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
|
|
|
|
(GtkAttachOptions) (0), 0, 0);
|
|
|
|
|
|
|
|
cmd_label = gtk_label_new (_("Command line"));
|
|
|
|
gtk_widget_show (cmd_label);
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (cmd_label), 1, 0.5);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), cmd_label, 0, 1, 1, 2,
|
|
|
|
(GtkAttachOptions) (GTK_FILL),
|
|
|
|
(GtkAttachOptions) (0), 0, 0);
|
|
|
|
|
|
|
|
cmd_entry = gtk_entry_new ();
|
|
|
|
gtk_widget_show (cmd_entry);
|
|
|
|
gtk_table_attach (GTK_TABLE (table), cmd_entry, 1, 2, 1, 2,
|
|
|
|
(GtkAttachOptions) (GTK_FILL|GTK_EXPAND),
|
|
|
|
(GtkAttachOptions) (0), 0, 0);
|
2002-02-12 00:31:18 +01:00
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
/* register / substitute / delete */
|
|
|
|
|
|
|
|
reg_hbox = gtk_hbox_new(FALSE, 4);
|
|
|
|
gtk_widget_show(reg_hbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox1), reg_hbox, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
arrow = gtk_arrow_new(GTK_ARROW_DOWN, GTK_SHADOW_OUT);
|
|
|
|
gtk_widget_show(arrow);
|
|
|
|
gtk_box_pack_start(GTK_BOX(reg_hbox), arrow, FALSE, FALSE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
gtk_widget_set_size_request(arrow, -1, 16);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
btn_hbox = gtk_hbox_new(TRUE, 4);
|
|
|
|
gtk_widget_show(btn_hbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(reg_hbox), btn_hbox, FALSE, FALSE, 0);
|
|
|
|
|
2005-01-18 13:57:19 +01:00
|
|
|
reg_btn = gtk_button_new_from_stock(GTK_STOCK_ADD);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(reg_btn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(btn_hbox), reg_btn, FALSE, TRUE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(reg_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_register_cb), NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2006-04-06 12:50:29 +02:00
|
|
|
subst_btn = gtkut_get_replace_btn(_("Replace"));
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(subst_btn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(btn_hbox), subst_btn, FALSE, TRUE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(subst_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_substitute_cb),
|
|
|
|
NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2005-06-24 05:58:42 +02:00
|
|
|
del_btn = gtk_button_new_from_stock(GTK_STOCK_DELETE);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(del_btn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(btn_hbox), del_btn, FALSE, TRUE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(del_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_delete_cb), NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2006-07-07 20:49:28 +02:00
|
|
|
#if GTK_CHECK_VERSION(2, 8, 0)
|
2006-07-06 16:20:03 +02:00
|
|
|
info_btn = gtk_button_new_from_stock(GTK_STOCK_INFO);
|
2006-07-07 20:49:28 +02:00
|
|
|
#else
|
2006-08-09 21:05:06 +02:00
|
|
|
info_btn = gtk_button_new_with_label(_("Info..."));
|
2006-07-07 20:49:28 +02:00
|
|
|
#endif
|
2006-07-06 16:20:03 +02:00
|
|
|
gtk_widget_show(info_btn);
|
|
|
|
gtk_box_pack_end(GTK_BOX(reg_hbox), info_btn, FALSE, FALSE, 0);
|
|
|
|
g_signal_connect(G_OBJECT(info_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_info_cb), GTK_WINDOW(window));
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
cond_hbox = gtk_hbox_new(FALSE, 8);
|
|
|
|
gtk_widget_show(cond_hbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(vbox1), cond_hbox, TRUE, TRUE, 0);
|
|
|
|
|
|
|
|
cond_scrolledwin = gtk_scrolled_window_new(NULL, NULL);
|
|
|
|
gtk_widget_show(cond_scrolledwin);
|
2003-10-05 12:10:30 +02:00
|
|
|
gtk_widget_set_size_request(cond_scrolledwin, -1, 150);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_box_pack_start(GTK_BOX(cond_hbox), cond_scrolledwin,
|
|
|
|
TRUE, TRUE, 0);
|
|
|
|
gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW (cond_scrolledwin),
|
|
|
|
GTK_POLICY_AUTOMATIC,
|
|
|
|
GTK_POLICY_AUTOMATIC);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
cond_list_view = prefs_actions_list_view_create();
|
|
|
|
gtk_widget_show(cond_list_view);
|
|
|
|
gtk_container_add(GTK_CONTAINER (cond_scrolledwin), cond_list_view);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
btn_vbox = gtk_vbox_new(FALSE, 8);
|
|
|
|
gtk_widget_show(btn_vbox);
|
|
|
|
gtk_box_pack_start(GTK_BOX(cond_hbox), btn_vbox, FALSE, FALSE, 0);
|
|
|
|
|
2004-12-30 16:28:43 +01:00
|
|
|
up_btn = gtk_button_new_from_stock(GTK_STOCK_GO_UP);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(up_btn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(btn_vbox), up_btn, FALSE, FALSE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(up_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_up), NULL);
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2004-12-30 16:28:43 +01:00
|
|
|
down_btn = gtk_button_new_from_stock(GTK_STOCK_GO_DOWN);
|
2002-07-06 08:48:23 +02:00
|
|
|
gtk_widget_show(down_btn);
|
|
|
|
gtk_box_pack_start(GTK_BOX(btn_vbox), down_btn, FALSE, FALSE, 0);
|
2003-10-05 12:10:30 +02:00
|
|
|
g_signal_connect(G_OBJECT(down_btn), "clicked",
|
|
|
|
G_CALLBACK(prefs_actions_down), NULL);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2005-10-14 15:43:17 +02:00
|
|
|
if (!geometry.min_height) {
|
|
|
|
geometry.min_width = 486;
|
|
|
|
geometry.min_height = 322;
|
|
|
|
}
|
|
|
|
|
|
|
|
gtk_window_set_geometry_hints(GTK_WINDOW(window), NULL, &geometry,
|
|
|
|
GDK_HINT_MIN_SIZE);
|
|
|
|
gtk_widget_set_size_request(window, prefs_common.actionswin_width,
|
|
|
|
prefs_common.actionswin_height);
|
|
|
|
|
2002-02-12 00:31:18 +01:00
|
|
|
gtk_widget_show(window);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
actions.window = window;
|
|
|
|
actions.ok_btn = ok_btn;
|
|
|
|
|
|
|
|
actions.name_entry = name_entry;
|
|
|
|
actions.cmd_entry = cmd_entry;
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
actions.actions_list_view = cond_list_view;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-02-12 00:31:18 +01:00
|
|
|
|
2002-07-08 10:39:00 +02:00
|
|
|
void prefs_actions_read_config(void)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
|
|
|
gchar *rcpath;
|
|
|
|
FILE *fp;
|
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
gchar *act;
|
|
|
|
|
2002-08-14 15:15:46 +02:00
|
|
|
debug_print("Reading actions configurations...\n");
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
|
2005-08-19 11:30:30 +02:00
|
|
|
if ((fp = g_fopen(rcpath, "rb")) == NULL) {
|
2002-02-06 12:15:31 +01:00
|
|
|
if (ENOENT != errno) FILE_OP_ERROR(rcpath, "fopen");
|
|
|
|
g_free(rcpath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g_free(rcpath);
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
while (prefs_common.actions_list != NULL) {
|
|
|
|
act = (gchar *)prefs_common.actions_list->data;
|
|
|
|
prefs_common.actions_list =
|
|
|
|
g_slist_remove(prefs_common.actions_list, act);
|
2002-02-06 12:15:31 +01:00
|
|
|
g_free(act);
|
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
while (fgets(buf, sizeof(buf), fp) != NULL) {
|
2005-02-01 09:58:33 +01:00
|
|
|
const gchar *src_codeset = conv_get_locale_charset_str();
|
2003-10-05 12:10:30 +02:00
|
|
|
const gchar *dest_codeset = CS_UTF_8;
|
|
|
|
gchar *tmp;
|
|
|
|
|
|
|
|
tmp = conv_codeset_strdup(buf, src_codeset, dest_codeset);
|
|
|
|
if (!tmp) {
|
2007-05-05 10:53:18 +02:00
|
|
|
g_warning("Failed to convert character set of action configuration\n");
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp = g_strdup(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_strchomp(tmp);
|
|
|
|
act = strstr(tmp, ": ");
|
2002-02-12 00:31:18 +01:00
|
|
|
if (act && act[2] &&
|
2003-04-18 11:10:32 +02:00
|
|
|
action_get_type(&act[2]) != ACTION_ERROR)
|
2002-07-06 08:48:23 +02:00
|
|
|
prefs_common.actions_list =
|
|
|
|
g_slist_append(prefs_common.actions_list,
|
2003-10-05 12:10:30 +02:00
|
|
|
tmp);
|
|
|
|
else
|
|
|
|
g_free(tmp);
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
}
|
|
|
|
|
2002-07-08 10:39:00 +02:00
|
|
|
void prefs_actions_write_config(void)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
|
|
|
gchar *rcpath;
|
|
|
|
PrefFile *pfile;
|
|
|
|
GSList *cur;
|
|
|
|
|
2002-08-14 15:15:46 +02:00
|
|
|
debug_print("Writing actions configuration...\n");
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
rcpath = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, ACTIONS_RC, NULL);
|
|
|
|
if ((pfile= prefs_write_open(rcpath)) == NULL) {
|
2007-05-05 10:53:18 +02:00
|
|
|
g_warning("Failed to write configuration to file\n");
|
2002-02-06 12:15:31 +01:00
|
|
|
g_free(rcpath);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
|
2003-10-05 12:10:30 +02:00
|
|
|
gchar *tmp = (gchar *)cur->data;
|
|
|
|
const gchar *src_codeset = CS_UTF_8;
|
2005-02-01 09:58:33 +01:00
|
|
|
const gchar *dest_codeset = conv_get_locale_charset_str();
|
2003-10-05 12:10:30 +02:00
|
|
|
gchar *act;
|
|
|
|
|
|
|
|
act = conv_codeset_strdup(tmp, src_codeset, dest_codeset);
|
|
|
|
if (!act) {
|
2007-05-05 10:53:18 +02:00
|
|
|
g_warning("Failed to convert character set of action configuration\n");
|
2003-10-05 12:10:30 +02:00
|
|
|
act = g_strdup(act);
|
|
|
|
}
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
if (fputs(act, pfile->fp) == EOF ||
|
|
|
|
fputc('\n', pfile->fp) == EOF) {
|
|
|
|
FILE_OP_ERROR(rcpath, "fputs || fputc");
|
2002-12-31 01:11:12 +01:00
|
|
|
prefs_file_close_revert(pfile);
|
2002-02-06 12:15:31 +01:00
|
|
|
g_free(rcpath);
|
|
|
|
return;
|
|
|
|
}
|
2003-10-05 12:10:30 +02:00
|
|
|
g_free(act);
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
g_free(rcpath);
|
|
|
|
|
2002-12-31 01:11:12 +01:00
|
|
|
if (prefs_file_close(pfile) < 0) {
|
2002-12-10 19:42:29 +01:00
|
|
|
g_warning("failed to write configuration to file\n");
|
2002-02-06 12:15:31 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_set_dialog(void)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkListStore *store;
|
2002-02-06 12:15:31 +01:00
|
|
|
GSList *cur;
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreeSelection *selection;
|
|
|
|
GtkTreeIter iter;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
store = GTK_LIST_STORE(gtk_tree_view_get_model
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)));
|
|
|
|
gtk_list_store_clear(store);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
prefs_actions_list_view_insert_action(actions.actions_list_view,
|
2006-09-12 17:53:33 +02:00
|
|
|
NULL, _("(New)"), FALSE);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
for (cur = prefs_common.actions_list; cur != NULL; cur = cur->next) {
|
2004-12-30 15:24:30 +01:00
|
|
|
gchar *action = (gchar *) cur->data;
|
|
|
|
|
|
|
|
prefs_actions_list_view_insert_action(actions.actions_list_view,
|
|
|
|
NULL, action, TRUE);
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
/* select first entry */
|
|
|
|
selection = gtk_tree_view_get_selection
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view));
|
|
|
|
if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store),
|
|
|
|
&iter))
|
|
|
|
gtk_tree_selection_select_iter(selection, &iter);
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
static void prefs_actions_set_list(void)
|
|
|
|
{
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkListStore *store;
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
g_slist_free(prefs_common.actions_list);
|
|
|
|
prefs_common.actions_list = NULL;
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
store = GTK_LIST_STORE(gtk_tree_view_get_model
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)));
|
|
|
|
|
|
|
|
if (gtk_tree_model_get_iter_first(GTK_TREE_MODEL(store), &iter)) {
|
|
|
|
do {
|
|
|
|
gchar *action;
|
|
|
|
gboolean is_valid;
|
|
|
|
|
|
|
|
gtk_tree_model_get(GTK_TREE_MODEL(store), &iter,
|
|
|
|
PREFS_ACTIONS_DATA, &action,
|
|
|
|
PREFS_ACTIONS_VALID, &is_valid,
|
|
|
|
-1);
|
|
|
|
|
|
|
|
if (is_valid)
|
|
|
|
prefs_common.actions_list =
|
|
|
|
g_slist_append(prefs_common.actions_list,
|
|
|
|
action);
|
|
|
|
|
|
|
|
} while (gtk_tree_model_iter_next(GTK_TREE_MODEL(store),
|
|
|
|
&iter));
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#define GET_ENTRY(entry) \
|
|
|
|
entry_text = gtk_entry_get_text(GTK_ENTRY(entry))
|
2002-07-06 08:48:23 +02:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
static gint prefs_actions_clist_set_row(GtkTreeIter *row)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2003-10-05 12:10:30 +02:00
|
|
|
const gchar *entry_text;
|
2002-02-06 12:15:31 +01:00
|
|
|
gint len;
|
|
|
|
gchar action[PREFSBUFSIZE];
|
2004-12-30 15:24:30 +01:00
|
|
|
gchar *new_action;
|
|
|
|
GtkListStore *store;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
store = GTK_LIST_STORE(gtk_tree_view_get_model
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)));
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
GET_ENTRY(actions.name_entry);
|
|
|
|
if (entry_text[0] == '\0') {
|
|
|
|
alertpanel_error(_("Menu name is not set."));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2005-10-27 12:00:51 +02:00
|
|
|
if (entry_text[0] == '/') {
|
|
|
|
alertpanel_error(_("A leading '/' is not allowed in the menu name."));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
if (strchr(entry_text, ':')) {
|
|
|
|
alertpanel_error(_("Colon ':' is not allowed in the menu name."));
|
|
|
|
return -1;
|
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
strncpy(action, entry_text, PREFSBUFSIZE - 1);
|
2005-10-27 12:00:51 +02:00
|
|
|
|
2005-07-19 11:26:16 +02:00
|
|
|
while (strstr(action, "//")) {
|
|
|
|
char *to_move = strstr(action, "//")+1;
|
|
|
|
char *where = strstr(action, "//");
|
|
|
|
int old_len = strlen(action);
|
|
|
|
memmove(where, to_move, strlen(to_move));
|
|
|
|
action[old_len-1] = '\0';
|
|
|
|
}
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
g_strstrip(action);
|
|
|
|
|
|
|
|
/* Keep space for the ': ' delimiter */
|
|
|
|
len = strlen(action) + 2;
|
|
|
|
if (len >= PREFSBUFSIZE - 1) {
|
|
|
|
alertpanel_error(_("Menu name is too long."));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
strcat(action, ": ");
|
|
|
|
|
|
|
|
GET_ENTRY(actions.cmd_entry);
|
|
|
|
|
|
|
|
if (entry_text[0] == '\0') {
|
|
|
|
alertpanel_error(_("Command line not set."));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (len + strlen(entry_text) >= PREFSBUFSIZE - 1) {
|
|
|
|
alertpanel_error(_("Menu name and command are too long."));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2003-04-18 11:10:32 +02:00
|
|
|
if (action_get_type(entry_text) == ACTION_ERROR) {
|
2007-08-26 23:29:47 +02:00
|
|
|
gchar *message;
|
|
|
|
message = g_markup_printf_escaped(_("The command\n%s\nhas a syntax error."),
|
|
|
|
entry_text);
|
|
|
|
alertpanel_error(message);
|
|
|
|
g_free(message);
|
2002-02-06 12:15:31 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
strcat(action, entry_text);
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
new_action = g_strdup(action);
|
|
|
|
prefs_actions_list_view_insert_action(actions.actions_list_view,
|
|
|
|
row, new_action, TRUE);
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
prefs_actions_set_list();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
/* callback functions */
|
2002-07-06 08:48:23 +02:00
|
|
|
|
|
|
|
static void prefs_actions_register_cb(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2004-12-30 15:24:30 +01:00
|
|
|
prefs_actions_clist_set_row(NULL);
|
2005-05-26 21:46:08 +02:00
|
|
|
modified = FALSE;
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = TRUE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_substitute_cb(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2005-01-01 15:14:08 +01:00
|
|
|
GtkTreeIter isel, inew;
|
|
|
|
GtkTreePath *path_sel, *path_new;
|
|
|
|
GtkTreeSelection *selection = gtk_tree_view_get_selection
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view));
|
|
|
|
GtkTreeModel *model;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2005-01-01 15:14:08 +01:00
|
|
|
if (!gtk_tree_selection_get_selected(selection, &model, &isel))
|
|
|
|
return;
|
|
|
|
if (!gtk_tree_model_get_iter_first(model, &inew))
|
2004-12-30 15:24:30 +01:00
|
|
|
return;
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2005-01-01 15:14:08 +01:00
|
|
|
path_sel = gtk_tree_model_get_path(model, &isel);
|
|
|
|
path_new = gtk_tree_model_get_path(model, &inew);
|
|
|
|
|
|
|
|
if (path_sel && path_new
|
|
|
|
&& gtk_tree_path_compare(path_sel, path_new) != 0)
|
|
|
|
prefs_actions_clist_set_row(&isel);
|
|
|
|
|
|
|
|
gtk_tree_path_free(path_sel);
|
|
|
|
gtk_tree_path_free(path_new);
|
2005-05-26 21:46:08 +02:00
|
|
|
modified = FALSE;
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = TRUE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_delete_cb(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreeIter sel;
|
|
|
|
GtkTreeModel *model;
|
2002-02-06 12:15:31 +01:00
|
|
|
gchar *action;
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
if (!gtk_tree_selection_get_selected(gtk_tree_view_get_selection
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)),
|
|
|
|
&model, &sel))
|
|
|
|
return;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
|
|
|
if (alertpanel(_("Delete action"),
|
|
|
|
_("Do you really want to delete this action?"),
|
2006-01-14 12:04:52 +01:00
|
|
|
GTK_STOCK_CANCEL, GTK_STOCK_DELETE, NULL) != G_ALERTALTERNATE)
|
2002-02-06 12:15:31 +01:00
|
|
|
return;
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
/* XXX: Here's the reason why we need to store the original
|
|
|
|
* pointer: we search the slist for it. */
|
|
|
|
gtk_tree_model_get(model, &sel,
|
|
|
|
PREFS_ACTIONS_DATA, &action,
|
|
|
|
-1);
|
|
|
|
gtk_list_store_remove(GTK_LIST_STORE(model), &sel);
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
prefs_common.actions_list = g_slist_remove(prefs_common.actions_list,
|
|
|
|
action);
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = TRUE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_up(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreePath *prev, *sel, *try;
|
|
|
|
GtkTreeIter isel;
|
2005-09-14 10:11:20 +02:00
|
|
|
GtkListStore *store = NULL;
|
2005-09-17 09:59:36 +02:00
|
|
|
GtkTreeModel *model = NULL;
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreeIter iprev;
|
|
|
|
|
|
|
|
if (!gtk_tree_selection_get_selected
|
|
|
|
(gtk_tree_view_get_selection
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)),
|
2005-09-17 09:59:36 +02:00
|
|
|
&model,
|
2004-12-30 15:24:30 +01:00
|
|
|
&isel))
|
|
|
|
return;
|
2005-09-17 09:59:36 +02:00
|
|
|
store = (GtkListStore *)model;
|
2004-12-30 15:24:30 +01:00
|
|
|
sel = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &isel);
|
|
|
|
if (!sel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* no move if we're at row 0 or 1, looks phony, but other
|
|
|
|
* solutions are more convoluted... */
|
|
|
|
try = gtk_tree_path_copy(sel);
|
|
|
|
if (!gtk_tree_path_prev(try) || !gtk_tree_path_prev(try)) {
|
|
|
|
gtk_tree_path_free(try);
|
|
|
|
gtk_tree_path_free(sel);
|
|
|
|
return;
|
|
|
|
}
|
2005-01-06 22:28:04 +01:00
|
|
|
gtk_tree_path_free(try);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
prev = gtk_tree_path_copy(sel);
|
|
|
|
if (!gtk_tree_path_prev(prev)) {
|
|
|
|
gtk_tree_path_free(prev);
|
|
|
|
gtk_tree_path_free(sel);
|
|
|
|
return;
|
|
|
|
}
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
gtk_tree_model_get_iter(GTK_TREE_MODEL(store),
|
|
|
|
&iprev, prev);
|
|
|
|
gtk_tree_path_free(sel);
|
|
|
|
gtk_tree_path_free(prev);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
gtk_list_store_swap(store, &iprev, &isel);
|
|
|
|
prefs_actions_set_list();
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = TRUE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
static void prefs_actions_down(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2005-09-14 10:11:20 +02:00
|
|
|
GtkListStore *store = NULL;
|
2005-09-17 09:59:36 +02:00
|
|
|
GtkTreeModel *model = NULL;
|
2004-12-30 15:24:30 +01:00
|
|
|
GtkTreeIter next, sel;
|
|
|
|
GtkTreePath *try;
|
|
|
|
|
|
|
|
if (!gtk_tree_selection_get_selected
|
|
|
|
(gtk_tree_view_get_selection
|
|
|
|
(GTK_TREE_VIEW(actions.actions_list_view)),
|
2005-09-17 09:59:36 +02:00
|
|
|
&model,
|
2004-12-30 15:24:30 +01:00
|
|
|
&sel))
|
2002-02-06 12:15:31 +01:00
|
|
|
return;
|
2005-09-17 09:59:36 +02:00
|
|
|
store = (GtkListStore *)model;
|
2004-12-30 15:24:30 +01:00
|
|
|
try = gtk_tree_model_get_path(GTK_TREE_MODEL(store), &sel);
|
|
|
|
if (!try)
|
|
|
|
return;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
/* no move when we're at row 0 */
|
|
|
|
if (!gtk_tree_path_prev(try)) {
|
|
|
|
gtk_tree_path_free(try);
|
2002-02-06 12:15:31 +01:00
|
|
|
return;
|
2004-12-30 15:24:30 +01:00
|
|
|
}
|
|
|
|
gtk_tree_path_free(try);
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
next = sel;
|
|
|
|
if (!gtk_tree_model_iter_next(GTK_TREE_MODEL(store), &next))
|
|
|
|
return;
|
2002-07-08 10:39:00 +02:00
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
gtk_list_store_swap(store, &next, &sel);
|
2002-02-06 12:15:31 +01:00
|
|
|
prefs_actions_set_list();
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = TRUE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static gint prefs_actions_deleted(GtkWidget *widget, GdkEventAny *event,
|
|
|
|
gpointer *data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
|
|
|
prefs_actions_cancel(widget, data);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-10-05 12:10:30 +02:00
|
|
|
static gboolean prefs_actions_key_pressed(GtkWidget *widget, GdkEventKey *event,
|
|
|
|
gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
|
|
|
if (event && event->keyval == GDK_Escape)
|
|
|
|
prefs_actions_cancel(widget, data);
|
2005-05-26 21:46:08 +02:00
|
|
|
else {
|
|
|
|
GtkWidget *focused = gtkut_get_focused_child(
|
|
|
|
GTK_CONTAINER(widget));
|
|
|
|
if (focused && GTK_IS_EDITABLE(focused)) {
|
|
|
|
modified = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2003-10-05 12:10:30 +02:00
|
|
|
return FALSE;
|
2002-02-06 12:15:31 +01:00
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_cancel(GtkWidget *w, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2005-05-26 21:46:08 +02:00
|
|
|
if (modified && alertpanel(_("Entry not saved"),
|
|
|
|
_("The entry was not saved. Close anyway?"),
|
2006-07-04 18:17:41 +02:00
|
|
|
GTK_STOCK_CLOSE, _("+_Continue editing"),
|
2006-01-14 12:04:52 +01:00
|
|
|
NULL) != G_ALERTDEFAULT) {
|
2005-05-26 21:46:08 +02:00
|
|
|
return;
|
2007-10-05 11:29:34 +02:00
|
|
|
} else if (modified_list && alertpanel(_("Actions list not saved"),
|
|
|
|
_("The actions list has been modified. Close anyway?"),
|
|
|
|
GTK_STOCK_CLOSE, _("+_Continue editing"),
|
|
|
|
NULL) != G_ALERTDEFAULT) {
|
|
|
|
return;
|
2005-05-26 21:46:08 +02:00
|
|
|
}
|
|
|
|
modified = FALSE;
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = FALSE;
|
2002-02-06 12:15:31 +01:00
|
|
|
prefs_actions_read_config();
|
|
|
|
gtk_widget_hide(actions.window);
|
|
|
|
inc_unlock();
|
|
|
|
}
|
|
|
|
|
2002-07-06 08:48:23 +02:00
|
|
|
static void prefs_actions_ok(GtkWidget *widget, gpointer data)
|
2002-02-06 12:15:31 +01:00
|
|
|
{
|
2004-02-21 12:01:01 +01:00
|
|
|
MainWindow *mainwin = (MainWindow *) data;
|
|
|
|
GList *list;
|
|
|
|
GList *iter;
|
|
|
|
MessageView *msgview;
|
|
|
|
Compose *compose;
|
2002-02-06 12:15:31 +01:00
|
|
|
|
2005-05-26 21:46:08 +02:00
|
|
|
if (modified && alertpanel(_("Entry not saved"),
|
|
|
|
_("The entry was not saved. Close anyway?"),
|
2006-07-04 18:17:41 +02:00
|
|
|
GTK_STOCK_CLOSE, _("+_Continue editing"),
|
2006-01-14 12:04:52 +01:00
|
|
|
NULL) != G_ALERTDEFAULT) {
|
2005-05-26 21:46:08 +02:00
|
|
|
return;
|
2007-10-11 09:03:10 +02:00
|
|
|
}
|
2005-05-26 21:46:08 +02:00
|
|
|
modified = FALSE;
|
2007-10-05 11:29:34 +02:00
|
|
|
modified_list = FALSE;
|
2006-01-12 10:51:49 +01:00
|
|
|
prefs_actions_set_list();
|
2002-02-06 12:15:31 +01:00
|
|
|
prefs_actions_write_config();
|
2004-02-21 12:01:01 +01:00
|
|
|
|
|
|
|
/* Update mainwindow actions menu */
|
|
|
|
main_window_update_actions_menu(mainwin);
|
|
|
|
|
|
|
|
/* Update separated message view actions menu */
|
|
|
|
list = messageview_get_msgview_list();
|
|
|
|
for (iter = list; iter; iter = iter->next) {
|
|
|
|
msgview = (MessageView *) iter->data;
|
|
|
|
messageview_update_actions_menu(msgview);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update compose windows actions menu */
|
|
|
|
list = compose_get_compose_list();
|
|
|
|
for (iter = list; iter; iter = iter->next) {
|
|
|
|
compose = (Compose *) iter->data;
|
|
|
|
compose_update_actions_menu(compose);
|
|
|
|
}
|
|
|
|
|
2002-02-06 12:15:31 +01:00
|
|
|
gtk_widget_hide(actions.window);
|
|
|
|
inc_unlock();
|
|
|
|
}
|
|
|
|
|
2003-01-06 23:01:43 +01:00
|
|
|
/*
|
|
|
|
* Strings describing action format strings
|
|
|
|
*
|
2003-01-07 00:16:58 +01:00
|
|
|
* When adding new lines, remember to put one string for each line
|
2003-01-06 23:01:43 +01:00
|
|
|
*/
|
|
|
|
static gchar *actions_desc_strings[] = {
|
2006-01-16 09:27:21 +01:00
|
|
|
N_("<span weight=\"bold\" underline=\"single\">Menu name:</span>"), NULL,
|
|
|
|
N_("Use / in menu name to make submenus."), NULL,
|
2003-01-25 16:23:38 +01:00
|
|
|
"", NULL,
|
2006-01-16 09:27:21 +01:00
|
|
|
N_("<span weight=\"bold\" underline=\"single\">Command line:</span>"), NULL,
|
|
|
|
N_("<span weight=\"bold\">Begin with:</span>"), NULL,
|
2003-04-29 11:37:39 +02:00
|
|
|
" |", N_("to send message body or selection to command's standard input"),
|
2006-01-16 09:27:21 +01:00
|
|
|
" >", N_("to send user provided text to command's standard input"),
|
2003-04-29 11:37:39 +02:00
|
|
|
" *", N_("to send user provided hidden text to command's standard input"),
|
2006-01-16 09:27:21 +01:00
|
|
|
N_("<span weight=\"bold\">End with:</span>"), NULL,
|
2003-04-29 11:37:39 +02:00
|
|
|
" |", N_("to replace message body or selection with command's standard output"),
|
2006-01-16 09:27:21 +01:00
|
|
|
" >", N_("to insert command's standard output without replacing old text"),
|
|
|
|
" &", N_("to run command asynchronously"),
|
|
|
|
N_("<span weight=\"bold\">Use:</span>"), NULL,
|
2003-04-29 11:37:39 +02:00
|
|
|
" %f", N_("for the file of the selected message in RFC822/2822 format "),
|
|
|
|
" %F", N_("for the list of the files of the selected messages in RFC822/2822 format"),
|
|
|
|
" %p", N_("for the file of the selected decoded message MIME part"),
|
2003-03-13 18:06:27 +01:00
|
|
|
" %u", N_("for a user provided argument"),
|
2003-04-29 11:37:39 +02:00
|
|
|
" %h", N_("for a user provided hidden argument (e.g. password)"),
|
2003-03-13 18:06:27 +01:00
|
|
|
" %s", N_("for the text selection"),
|
2004-01-12 22:28:31 +01:00
|
|
|
" %as{}", N_("apply filtering actions between {} to selected messages"),
|
2007-08-25 22:25:12 +02:00
|
|
|
" %%", N_("for a literal %"),
|
2006-01-16 09:27:21 +01:00
|
|
|
NULL, NULL
|
2003-01-06 23:01:43 +01:00
|
|
|
};
|
|
|
|
|
2003-01-07 00:16:58 +01:00
|
|
|
|
2003-01-06 23:01:43 +01:00
|
|
|
static DescriptionWindow actions_desc_win = {
|
2005-09-15 09:50:55 +02:00
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
2,
|
2006-01-16 09:27:21 +01:00
|
|
|
N_("Actions"),
|
|
|
|
N_("The Actions feature is a way for the user to launch "
|
|
|
|
"external commands to process a complete message file or just "
|
|
|
|
"one of its parts."),
|
2003-01-06 23:01:43 +01:00
|
|
|
actions_desc_strings
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-07-06 16:20:03 +02:00
|
|
|
static void prefs_actions_info_cb(GtkWidget *w, GtkWidget *window)
|
2003-01-06 23:01:43 +01:00
|
|
|
{
|
2005-09-15 09:50:55 +02:00
|
|
|
actions_desc_win.parent = window;
|
2003-01-06 23:01:43 +01:00
|
|
|
description_window_create(&actions_desc_win);
|
|
|
|
}
|
2004-12-30 15:24:30 +01:00
|
|
|
|
|
|
|
static GtkListStore* prefs_actions_create_data_store(void)
|
|
|
|
{
|
|
|
|
return gtk_list_store_new(N_PREFS_ACTIONS_COLUMNS,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
G_TYPE_POINTER,
|
|
|
|
G_TYPE_BOOLEAN,
|
|
|
|
-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_actions_list_view_insert_action(GtkWidget *list_view,
|
|
|
|
GtkTreeIter *row_iter,
|
|
|
|
gchar *action,
|
|
|
|
gboolean is_valid)
|
|
|
|
{
|
|
|
|
GtkTreeIter iter;
|
|
|
|
GtkListStore *list_store = GTK_LIST_STORE(gtk_tree_view_get_model
|
|
|
|
(GTK_TREE_VIEW(list_view)));
|
|
|
|
|
|
|
|
if (row_iter == NULL) {
|
|
|
|
/* append new */
|
|
|
|
gtk_list_store_append(list_store, &iter);
|
|
|
|
gtk_list_store_set(list_store, &iter,
|
|
|
|
PREFS_ACTIONS_STRING, action,
|
|
|
|
PREFS_ACTIONS_DATA, action,
|
|
|
|
PREFS_ACTIONS_VALID, is_valid,
|
|
|
|
-1);
|
|
|
|
} else {
|
|
|
|
/* change existing */
|
|
|
|
gchar *old_action;
|
|
|
|
|
|
|
|
gtk_tree_model_get(GTK_TREE_MODEL(list_store), row_iter,
|
|
|
|
PREFS_ACTIONS_DATA, &old_action,
|
|
|
|
-1);
|
|
|
|
|
|
|
|
g_free(old_action);
|
|
|
|
gtk_list_store_set(list_store, row_iter,
|
|
|
|
PREFS_ACTIONS_STRING, action,
|
|
|
|
PREFS_ACTIONS_DATA, action,
|
|
|
|
-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GtkWidget *prefs_actions_list_view_create(void)
|
|
|
|
{
|
|
|
|
GtkTreeView *list_view;
|
|
|
|
GtkTreeSelection *selector;
|
|
|
|
GtkTreeModel *model;
|
|
|
|
|
|
|
|
model = GTK_TREE_MODEL(prefs_actions_create_data_store());
|
|
|
|
list_view = GTK_TREE_VIEW(gtk_tree_view_new_with_model(model));
|
|
|
|
g_object_unref(model);
|
|
|
|
|
2006-09-06 11:14:40 +02:00
|
|
|
gtk_tree_view_set_rules_hint(list_view, prefs_common.use_stripes_everywhere);
|
2006-01-12 10:51:49 +01:00
|
|
|
gtk_tree_view_set_reorderable(list_view, TRUE);
|
|
|
|
|
2004-12-30 15:24:30 +01:00
|
|
|
selector = gtk_tree_view_get_selection(list_view);
|
|
|
|
gtk_tree_selection_set_mode(selector, GTK_SELECTION_BROWSE);
|
|
|
|
gtk_tree_selection_set_select_function(selector, prefs_actions_selected,
|
|
|
|
NULL, NULL);
|
|
|
|
|
|
|
|
/* create the columns */
|
|
|
|
prefs_actions_create_list_view_columns(GTK_WIDGET(list_view));
|
|
|
|
|
|
|
|
return GTK_WIDGET(list_view);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void prefs_actions_create_list_view_columns(GtkWidget *list_view)
|
|
|
|
{
|
|
|
|
GtkTreeViewColumn *column;
|
|
|
|
GtkCellRenderer *renderer;
|
|
|
|
|
|
|
|
renderer = gtk_cell_renderer_text_new();
|
|
|
|
column = gtk_tree_view_column_new_with_attributes
|
|
|
|
(_("Current actions"),
|
|
|
|
renderer,
|
|
|
|
"text", PREFS_ACTIONS_STRING,
|
|
|
|
NULL);
|
|
|
|
gtk_tree_view_append_column(GTK_TREE_VIEW(list_view), column);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ENTRY_SET_TEXT(entry, str) \
|
|
|
|
gtk_entry_set_text(GTK_ENTRY(entry), str ? str : "")
|
|
|
|
|
|
|
|
static gboolean prefs_actions_selected(GtkTreeSelection *selector,
|
|
|
|
GtkTreeModel *model,
|
|
|
|
GtkTreePath *path,
|
|
|
|
gboolean currently_selected,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
gchar *action;
|
|
|
|
gchar *cmd;
|
|
|
|
gchar buf[PREFSBUFSIZE];
|
|
|
|
GtkTreeIter iter;
|
|
|
|
gboolean is_valid;
|
|
|
|
|
|
|
|
if (currently_selected)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if (!gtk_tree_model_get_iter(model, &iter, path))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
gtk_tree_model_get(model, &iter,
|
|
|
|
PREFS_ACTIONS_VALID, &is_valid,
|
|
|
|
PREFS_ACTIONS_DATA, &action,
|
|
|
|
-1);
|
|
|
|
if (!is_valid) {
|
|
|
|
ENTRY_SET_TEXT(actions.name_entry, "");
|
|
|
|
ENTRY_SET_TEXT(actions.cmd_entry, "");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(buf, action, PREFSBUFSIZE - 1);
|
|
|
|
buf[PREFSBUFSIZE - 1] = 0x00;
|
|
|
|
cmd = strstr(buf, ": ");
|
|
|
|
|
|
|
|
if (cmd && cmd[2])
|
|
|
|
ENTRY_SET_TEXT(actions.cmd_entry, &cmd[2]);
|
|
|
|
else
|
2005-05-31 21:00:21 +02:00
|
|
|
return TRUE;
|
2004-12-30 15:24:30 +01:00
|
|
|
|
|
|
|
*cmd = 0x00;
|
|
|
|
ENTRY_SET_TEXT(actions.name_entry, buf);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|