2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2002-2007 Match Grun and the Claws Mail 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 * Import Pine address book data.
31 #include <glib/gi18n.h>
32 #include <gdk/gdkkeysyms.h>
33 #include <gtk/gtkwindow.h>
34 #include <gtk/gtksignal.h>
35 #include <gtk/gtklabel.h>
36 #include <gtk/gtkentry.h>
37 #include <gtk/gtktable.h>
38 #include <gtk/gtkbutton.h>
41 #include "addressbook.h"
42 #include "addressitem.h"
44 #include "prefs_common.h"
45 #include "manage_window.h"
50 #define IMPORTPINE_GUESS_NAME "Pine Import"
52 static struct _ImpPine_Dlg
{
54 GtkWidget
*file_entry
;
55 GtkWidget
*name_entry
;
57 GtkWidget
*cancel_btn
;
62 static struct _AddressFileSelection _imp_pine_file_selector_
;
63 static AddressBookFile
*_importedBook_
;
64 static AddressIndex
*_imp_addressIndex_
;
69 static void imp_pine_status_show( gchar
*msg
) {
70 if( imppine_dlg
.statusbar
!= NULL
) {
71 gtk_statusbar_pop( GTK_STATUSBAR(imppine_dlg
.statusbar
), imppine_dlg
.status_cid
);
73 gtk_statusbar_push( GTK_STATUSBAR(imppine_dlg
.statusbar
), imppine_dlg
.status_cid
, msg
);
78 static gboolean
imp_pine_import_file( gchar
*sName
, gchar
*sFile
) {
79 gboolean retVal
= FALSE
;
81 AddressBookFile
*abf
= NULL
;
84 if( _importedBook_
) {
85 addrbook_free_book( _importedBook_
);
88 abf
= addrbook_create_book();
89 addrbook_set_path( abf
, _imp_addressIndex_
->filePath
);
90 addrbook_set_name( abf
, sName
);
91 newFile
= addrbook_guess_next_file( abf
);
92 addrbook_set_file( abf
, newFile
);
95 /* Import data from file */
97 pine_set_file( pdf
, sFile
);
98 if( pine_import_data( pdf
, abf
->addressCache
) == MGU_SUCCESS
) {
99 addrbook_save_data( abf
);
100 _importedBook_
= abf
;
104 addrbook_free_book( abf
);
110 static void imp_pine_ok( GtkWidget
*widget
, gboolean
*cancelled
) {
114 gboolean errFlag
= FALSE
;
116 sFile
= gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg
.file_entry
), 0, -1 );
117 g_strchug( sFile
); g_strchomp( sFile
);
118 gtk_entry_set_text( GTK_ENTRY(imppine_dlg
.file_entry
), sFile
);
120 sName
= gtk_editable_get_chars( GTK_EDITABLE(imppine_dlg
.name_entry
), 0, -1 );
121 g_strchug( sName
); g_strchomp( sName
);
122 gtk_entry_set_text( GTK_ENTRY(imppine_dlg
.name_entry
), sName
);
124 if( *sFile
== '\0'|| strlen( sFile
) < 1 ) {
125 sMsg
= _( "Please select a file." );
129 if( *sName
== '\0'|| strlen( sName
) < 1 ) {
130 if( ! errFlag
) sMsg
= _( "Address book name must be supplied." );
135 imp_pine_status_show( sMsg
);
138 /* Import the file */
139 if( imp_pine_import_file( sName
, sFile
) ) {
144 imp_pine_status_show( _( "Error importing Pine file." ) );
153 static void imp_pine_cancel( GtkWidget
*widget
, gboolean
*cancelled
) {
158 static void imp_pine_file_select_create( AddressFileSelection
*afs
) {
159 gchar
*file
= filesel_select_file_open(_("Select Pine File"), NULL
);
162 afs
->cancelled
= TRUE
;
164 afs
->cancelled
= FALSE
;
165 gtk_entry_set_text( GTK_ENTRY(imppine_dlg
.file_entry
), file
);
170 static void imp_pine_file_select( void ) {
171 imp_pine_file_select_create( & _imp_pine_file_selector_
);
174 static gint
imp_pine_delete_event( GtkWidget
*widget
, GdkEventAny
*event
, gboolean
*cancelled
) {
180 static gboolean
imp_pine_key_pressed( GtkWidget
*widget
, GdkEventKey
*event
, gboolean
*cancelled
) {
181 if (event
&& event
->keyval
== GDK_Escape
) {
188 static void imp_pine_create( gboolean
*cancelled
) {
193 GtkWidget
*file_entry
;
194 GtkWidget
*name_entry
;
197 GtkWidget
*cancel_btn
;
199 GtkWidget
*statusbar
;
203 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "importpine");
204 gtk_widget_set_size_request(window
, 450, -1);
205 gtk_container_set_border_width( GTK_CONTAINER(window
), 0 );
206 gtk_window_set_title( GTK_WINDOW(window
), _("Import Pine file into Address Book") );
207 gtk_window_set_position(GTK_WINDOW(window
), GTK_WIN_POS_CENTER
);
208 gtk_window_set_modal(GTK_WINDOW(window
), TRUE
);
209 g_signal_connect(G_OBJECT(window
), "delete_event",
210 G_CALLBACK(imp_pine_delete_event
), cancelled
);
211 g_signal_connect(G_OBJECT(window
), "key_press_event",
212 G_CALLBACK(imp_pine_key_pressed
), cancelled
);
214 vbox
= gtk_vbox_new(FALSE
, 8);
215 gtk_container_add(GTK_CONTAINER(window
), vbox
);
216 gtk_container_set_border_width( GTK_CONTAINER(vbox
), 0 );
218 table
= gtk_table_new(2, 3, FALSE
);
219 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
220 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
221 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
222 gtk_table_set_col_spacings(GTK_TABLE(table
), 8 );
226 label
= gtk_label_new(_("Name"));
227 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
228 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
230 name_entry
= gtk_entry_new();
231 gtk_table_attach(GTK_TABLE(table
), name_entry
, 1, 2, top
, (top
+ 1), GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
235 label
= gtk_label_new(_("File"));
236 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
237 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
239 file_entry
= gtk_entry_new();
240 gtk_table_attach(GTK_TABLE(table
), file_entry
, 1, 2, top
, (top
+ 1), GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
242 file_btn
= gtkut_get_browse_file_btn(_("_Browse"));
243 gtk_table_attach(GTK_TABLE(table
), file_btn
, 2, 3, top
, (top
+ 1), GTK_FILL
, 0, 3, 0);
246 hsbox
= gtk_hbox_new(FALSE
, 0);
247 gtk_box_pack_end(GTK_BOX(vbox
), hsbox
, FALSE
, FALSE
, BORDER_WIDTH
);
248 statusbar
= gtk_statusbar_new();
249 gtk_box_pack_start(GTK_BOX(hsbox
), statusbar
, TRUE
, TRUE
, BORDER_WIDTH
);
252 gtkut_stock_button_set_create(&hbbox
, &cancel_btn
, GTK_STOCK_CANCEL
,
253 &ok_btn
, GTK_STOCK_OK
,
255 gtk_box_pack_end(GTK_BOX(vbox
), hbbox
, FALSE
, FALSE
, 0);
256 gtk_container_set_border_width( GTK_CONTAINER(hbbox
), 5);
257 gtk_widget_grab_default(ok_btn
);
259 g_signal_connect(G_OBJECT(ok_btn
), "clicked",
260 G_CALLBACK(imp_pine_ok
), cancelled
);
261 g_signal_connect(G_OBJECT(cancel_btn
), "clicked",
262 G_CALLBACK(imp_pine_cancel
), cancelled
);
263 g_signal_connect(G_OBJECT(file_btn
), "clicked",
264 G_CALLBACK(imp_pine_file_select
), NULL
);
266 gtk_widget_show_all(vbox
);
268 imppine_dlg
.window
= window
;
269 imppine_dlg
.file_entry
= file_entry
;
270 imppine_dlg
.name_entry
= name_entry
;
271 imppine_dlg
.ok_btn
= ok_btn
;
272 imppine_dlg
.cancel_btn
= cancel_btn
;
273 imppine_dlg
.statusbar
= statusbar
;
274 imppine_dlg
.status_cid
= gtk_statusbar_get_context_id(
275 GTK_STATUSBAR(statusbar
), "Import Pine Dialog" );
278 AddressBookFile
*addressbook_imp_pine( AddressIndex
*addrIndex
) {
279 static gboolean cancelled
;
282 _importedBook_
= NULL
;
283 _imp_addressIndex_
= addrIndex
;
285 if( ! imppine_dlg
.window
)
286 imp_pine_create(&cancelled
);
287 gtk_widget_grab_focus(imppine_dlg
.ok_btn
);
288 gtk_widget_grab_focus(imppine_dlg
.file_entry
);
289 gtk_widget_show(imppine_dlg
.window
);
290 manage_window_set_transient(GTK_WINDOW(imppine_dlg
.window
));
292 imp_pine_status_show( _( "Please select a file to import." ) );
293 pineFile
= pine_find_file();
294 gtk_entry_set_text( GTK_ENTRY(imppine_dlg
.name_entry
), IMPORTPINE_GUESS_NAME
);
295 gtk_entry_set_text( GTK_ENTRY(imppine_dlg
.file_entry
), pineFile
);
300 gtk_widget_hide(imppine_dlg
.window
);
301 _imp_addressIndex_
= NULL
;
303 if (cancelled
== TRUE
) return NULL
;
304 return _importedBook_
;