2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2020 the Claws Mail team and Hiroyuki Yamamoto
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
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, see <http://www.gnu.org/licenses/>.
22 #include "claws-features.h"
28 #include <glib/gi18n.h>
29 #include <gdk/gdkkeysyms.h>
36 #include "folderview.h"
38 #include "foldersel.h"
40 #include "manage_window.h"
43 #include "alertpanel.h"
45 static GtkWidget
*window
;
46 static GtkWidget
*file_entry
;
47 static GtkWidget
*dest_entry
;
48 static GtkWidget
*file_button
;
49 static GtkWidget
*dest_button
;
50 static GtkWidget
*ok_button
;
51 static GtkWidget
*cancel_button
;
52 static gboolean import_ok
; /* see import_mbox() return values */
54 static void import_create(void);
55 static void import_ok_cb(GtkWidget
*widget
, gpointer data
);
56 static void import_cancel_cb(GtkWidget
*widget
, gpointer data
);
57 static void import_filesel_cb(GtkWidget
*widget
, gpointer data
);
58 static void import_destsel_cb(GtkWidget
*widget
, gpointer data
);
59 static gint
delete_event(GtkWidget
*widget
, GdkEventAny
*event
, gpointer data
);
60 static gboolean
key_pressed(GtkWidget
*widget
, GdkEventKey
*event
, gpointer data
);
62 gint
import_mbox(FolderItem
*default_dest
)
63 /* return values: -2 skipped/cancelled, -1 error, 0 OK */
65 gchar
*dest_id
= NULL
;
67 import_ok
= -2; // skipped or cancelled
73 gtk_widget_show(window
);
76 gtk_window_set_modal(GTK_WINDOW(window
), TRUE
);
77 change_dir(claws_get_startup_dir());
79 if (default_dest
&& default_dest
->path
) {
80 dest_id
= folder_item_get_identifier(default_dest
);
84 gtk_entry_set_text(GTK_ENTRY(dest_entry
), dest_id
);
87 gtk_entry_set_text(GTK_ENTRY(dest_entry
), "");
89 gtk_entry_set_text(GTK_ENTRY(file_entry
), "");
90 gtk_widget_grab_focus(file_entry
);
92 manage_window_set_transient(GTK_WINDOW(window
));
96 gtk_widget_hide(window
);
97 gtk_window_set_modal(GTK_WINDOW(window
), FALSE
);
102 static void import_create(void)
106 GtkWidget
*desc_label
;
108 GtkWidget
*file_label
;
109 GtkWidget
*dest_label
;
110 GtkWidget
*confirm_area
;
112 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "import");
113 gtk_window_set_title(GTK_WINDOW(window
), _("Import mbox file"));
114 gtk_container_set_border_width(GTK_CONTAINER(window
), 5);
115 gtk_window_set_position(GTK_WINDOW(window
), GTK_WIN_POS_CENTER
);
116 gtk_window_set_resizable(GTK_WINDOW(window
), TRUE
);
117 gtk_window_set_type_hint(GTK_WINDOW(window
), GDK_WINDOW_TYPE_HINT_DIALOG
);
118 g_signal_connect(G_OBJECT(window
), "delete_event",
119 G_CALLBACK(delete_event
), NULL
);
120 g_signal_connect(G_OBJECT(window
), "key_press_event",
121 G_CALLBACK(key_pressed
), NULL
);
122 MANAGE_WINDOW_SIGNALS_CONNECT(window
);
124 vbox
= gtk_vbox_new(FALSE
, 4);
125 gtk_container_add(GTK_CONTAINER(window
), vbox
);
127 hbox
= gtk_hbox_new(FALSE
, 0);
128 gtk_box_pack_start(GTK_BOX(vbox
), hbox
, FALSE
, FALSE
, 0);
129 gtk_container_set_border_width(GTK_CONTAINER(hbox
), 4);
131 desc_label
= gtk_label_new
132 (_("Locate the mbox file and specify the destination folder."));
133 gtk_label_set_line_wrap(GTK_LABEL(desc_label
), TRUE
);
134 gtk_box_pack_start(GTK_BOX(hbox
), desc_label
, FALSE
, FALSE
, 0);
136 table
= gtk_table_new(2, 3, FALSE
);
137 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
138 gtk_container_set_border_width(GTK_CONTAINER(table
), 8);
139 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
140 gtk_table_set_col_spacings(GTK_TABLE(table
), 8);
141 gtk_widget_set_size_request(table
, 420, -1);
143 file_label
= gtk_label_new(_("Mbox file:"));
144 gtk_table_attach(GTK_TABLE(table
), file_label
, 0, 1, 0, 1,
145 (GtkAttachOptions
) (GTK_FILL
),
146 (GtkAttachOptions
) (GTK_EXPAND
|GTK_FILL
), 0, 0);
147 gtk_misc_set_alignment(GTK_MISC(file_label
), 1, 0.5);
149 dest_label
= gtk_label_new(_("Destination folder:"));
150 gtk_table_attach(GTK_TABLE(table
), dest_label
, 0, 1, 1, 2,
151 (GtkAttachOptions
) (GTK_FILL
),
152 (GtkAttachOptions
) (GTK_EXPAND
|GTK_FILL
), 0, 0);
153 gtk_misc_set_alignment(GTK_MISC(dest_label
), 1, 0.5);
155 file_entry
= gtk_entry_new();
156 gtk_table_attach(GTK_TABLE(table
), file_entry
, 1, 2, 0, 1,
157 (GtkAttachOptions
) (GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
),
158 (GtkAttachOptions
) (0), 0, 0);
160 dest_entry
= gtk_entry_new();
161 gtk_table_attach(GTK_TABLE(table
), dest_entry
, 1, 2, 1, 2,
162 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
164 file_button
= gtkut_get_browse_file_btn(_("_Browse"));
165 gtk_table_attach(GTK_TABLE(table
), file_button
, 2, 3, 0, 1,
166 (GtkAttachOptions
) (GTK_FILL
),
167 (GtkAttachOptions
) (0), 0, 0);
168 g_signal_connect(G_OBJECT(file_button
), "clicked",
169 G_CALLBACK(import_filesel_cb
), NULL
);
171 dest_button
= gtkut_get_browse_directory_btn(_("B_rowse"));
172 gtk_table_attach(GTK_TABLE(table
), dest_button
, 2, 3, 1, 2,
173 (GtkAttachOptions
) (GTK_FILL
),
174 (GtkAttachOptions
) (0), 0, 0);
175 g_signal_connect(G_OBJECT(dest_button
), "clicked",
176 G_CALLBACK(import_destsel_cb
), NULL
);
178 gtkut_stock_button_set_create(&confirm_area
,
179 &cancel_button
, GTK_STOCK_CANCEL
,
180 &ok_button
, GTK_STOCK_OK
,
182 gtk_box_pack_end(GTK_BOX(vbox
), confirm_area
, FALSE
, FALSE
, 0);
183 gtk_widget_grab_default(ok_button
);
185 g_signal_connect(G_OBJECT(ok_button
), "clicked",
186 G_CALLBACK(import_ok_cb
), NULL
);
187 g_signal_connect(G_OBJECT(cancel_button
), "clicked",
188 G_CALLBACK(import_cancel_cb
), NULL
);
190 gtk_widget_show_all(window
);
193 static void import_ok_cb(GtkWidget
*widget
, gpointer data
)
196 const gchar
*utf8mbox
, *destdir
;
200 utf8mbox
= gtk_entry_get_text(GTK_ENTRY(file_entry
));
201 destdir
= gtk_entry_get_text(GTK_ENTRY(dest_entry
));
203 if (utf8mbox
&& !*utf8mbox
) {
204 alertpanel_error(_("Source mbox filename can't be left empty."));
205 gtk_widget_grab_focus(file_entry
);
208 if (destdir
&& !*destdir
) {
209 if (alertpanel(_("Import mbox file"), _("Destination folder is not set.\nImport mbox file to the Inbox folder?"),
210 GTK_STOCK_OK
, GTK_STOCK_CANCEL
, NULL
, ALERTFOCUS_FIRST
)
211 == G_ALERTALTERNATE
) {
212 gtk_widget_grab_focus(dest_entry
);
217 mbox
= g_filename_from_utf8(utf8mbox
, -1, NULL
, NULL
, NULL
);
219 g_warning("import_ok_cb(): failed to convert character set.");
220 mbox
= g_strdup(utf8mbox
);
223 if (!destdir
|| !*destdir
) {
224 dest
= folder_find_item_from_path(INBOX_DIR
);
226 dest
= folder_find_item_from_identifier
231 alertpanel_error(_("Can't find the destination folder."));
232 gtk_widget_grab_focus(dest_entry
);
236 window
= label_window_create(_("Importing mbox file..."));
237 import_ok
= proc_mbox(dest
, mbox
, FALSE
, NULL
);
238 label_window_destroy(window
);
243 if (gtk_main_level() > 1)
247 static void import_cancel_cb(GtkWidget
*widget
, gpointer data
)
249 if (gtk_main_level() > 1)
253 static void import_filesel_cb(GtkWidget
*widget
, gpointer data
)
256 gchar
*utf8_filename
;
258 filename
= filesel_select_file_open(_("Select importing file"), NULL
);
259 if (!filename
) return;
261 utf8_filename
= g_filename_to_utf8(filename
, -1, NULL
, NULL
, NULL
);
262 if (!utf8_filename
) {
263 g_warning("import_filesel_cb(): failed to convert character set.");
264 utf8_filename
= g_strdup(filename
);
266 gtk_entry_set_text(GTK_ENTRY(file_entry
), utf8_filename
);
267 g_free(utf8_filename
);
270 static void import_destsel_cb(GtkWidget
*widget
, gpointer data
)
275 dest
= foldersel_folder_sel(NULL
, FOLDER_SEL_COPY
, NULL
, FALSE
,
276 _("Select folder to import to"));
279 path
= folder_item_get_identifier(dest
);
280 gtk_entry_set_text(GTK_ENTRY(dest_entry
), path
);
284 static gint
delete_event(GtkWidget
*widget
, GdkEventAny
*event
, gpointer data
)
286 import_cancel_cb(NULL
, NULL
);
290 static gboolean
key_pressed(GtkWidget
*widget
, GdkEventKey
*event
, gpointer data
)
292 if (event
&& event
->keyval
== GDK_KEY_Escape
)
293 import_cancel_cb(NULL
, NULL
);