2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2001-2015 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 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/>.
20 * Import LDIF address book data.
25 #include "claws-features.h"
31 #include <glib/gi18n.h>
32 #include <gdk/gdkkeysyms.h>
36 #include "addressbook.h"
37 #include "addressitem.h"
39 #include "stock_pixmap.h"
40 #include "prefs_common.h"
41 #include "manage_window.h"
47 #define IMPORTLDIF_GUESS_NAME "LDIF Import"
49 #define PAGE_FILE_INFO 0
50 #define PAGE_ATTRIBUTES 1
53 #define IMPORTLDIF_WIDTH 390
54 #define IMPORTLDIF_HEIGHT 300
56 #define FIELDS_N_COLS 4
57 #define FIELDS_COL_WIDTH_RESERVED 10
58 #define FIELDS_COL_WIDTH_SELECT 10
59 #define FIELDS_COL_WIDTH_FIELD 140
60 #define FIELDS_COL_WIDTH_ATTRIB 140
63 FIELD_COL_RESERVED
= 0,
67 } ImpLdif_FieldColPos
;
70 * LDIF dialog definition.
72 static struct _ImpLdif_Dlg
{
77 GtkWidget
*clist_field
;
78 GtkWidget
*entryField
;
79 GtkWidget
*entryAttrib
;
80 GtkWidget
*checkSelect
;
84 GtkWidget
*labelRecords
;
87 GtkWidget
*btnProceed
;
98 static struct _AddressFileSelection _imp_ldif_file_selector_
;
99 static AddressBookFile
*_importedBook_
;
100 static AddressIndex
*_imp_addressIndex_
;
101 static LdifFile
*_ldifFile_
= NULL
;
103 static GdkPixbuf
*markxpm
;
106 * Structure of error message table.
108 typedef struct _ErrMsgTableEntry ErrMsgTableEntry
;
109 struct _ErrMsgTableEntry
{
114 static gchar
*_errMsgUnknown_
= N_( "Unknown" );
117 * Lookup table of error messages for general errors. Note that a NULL
118 * description signifies the end of the table.
120 static ErrMsgTableEntry _lutErrorsLDIF_
[] = {
121 { MGU_SUCCESS
, N_("Success") },
122 { MGU_BAD_ARGS
, N_("Bad arguments") },
123 { MGU_NO_FILE
, N_("File not specified") },
124 { MGU_OPEN_FILE
, N_("Error opening file") },
125 { MGU_ERROR_READ
, N_("Error reading file") },
126 { MGU_EOF
, N_("End of file encountered") },
127 { MGU_OO_MEMORY
, N_("Error allocating memory") },
128 { MGU_BAD_FORMAT
, N_("Bad file format") },
129 { MGU_ERROR_WRITE
, N_("Error writing to file") },
130 { MGU_OPEN_DIRECTORY
, N_("Error opening directory") },
131 { MGU_NO_PATH
, N_("No path specified") },
136 * Lookup message for specified error code.
137 * \param lut Lookup table.
138 * \param code Code to lookup.
139 * \return Description associated to code.
141 static gchar
*imp_ldif_err2string( ErrMsgTableEntry lut
[], gint code
) {
143 ErrMsgTableEntry entry
;
146 for( i
= 0; ; i
++ ) {
148 if( entry
.description
== NULL
) break;
149 if( entry
.code
== code
) {
150 desc
= entry
.description
;
155 desc
= _errMsgUnknown_
;
161 * Display message in status field.
162 * \param msg Message to display.
164 static void imp_ldif_status_show( gchar
*msg
) {
165 if( impldif_dlg
.statusbar
!= NULL
) {
166 gtk_statusbar_pop( GTK_STATUSBAR(impldif_dlg
.statusbar
),
167 impldif_dlg
.status_cid
);
170 GTK_STATUSBAR(impldif_dlg
.statusbar
),
171 impldif_dlg
.status_cid
, msg
);
177 * Select and display status message appropriate for the page being displayed.
179 static void imp_ldif_message( void ) {
183 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(impldif_dlg
.notebook
) );
184 if( pageNum
== PAGE_FILE_INFO
) {
185 sMsg
= _( "Please specify address book name and file to import." );
187 else if( pageNum
== PAGE_ATTRIBUTES
) {
188 sMsg
= _( "Select and rename LDIF field names to import." );
190 else if( pageNum
== PAGE_FINISH
) {
191 sMsg
= _( "File imported." );
193 imp_ldif_status_show( sMsg
);
197 * Update list with data for current row.
198 * \param clist List to update.
200 static void imp_ldif_update_row( GtkCMCList
*clist
) {
202 gchar
*text
[ FIELDS_N_COLS
];
205 if( impldif_dlg
.rowIndSelect
< 0 ) return;
206 row
= impldif_dlg
.rowIndSelect
;
208 rec
= gtk_cmclist_get_row_data( clist
, row
);
212 text
[ FIELD_COL_RESERVED
] = "";
213 text
[ FIELD_COL_SELECT
] = "";
214 text
[ FIELD_COL_FIELD
] = rec
->tagName
;
215 text
[ FIELD_COL_ATTRIB
] = rec
->userName
;
217 gtk_cmclist_freeze( clist
);
218 gtk_cmclist_remove( clist
, row
);
219 if( row
== impldif_dlg
.rowCount
- 1 ) {
220 gtk_cmclist_append( clist
, text
);
223 gtk_cmclist_insert( clist
, row
, text
);
225 if( rec
->selected
) {
226 gtk_cmclist_set_pixbuf(
227 clist
, row
, FIELD_COL_SELECT
, markxpm
);
229 if( rec
->reserved
) {
230 gtk_cmclist_set_pixbuf(
231 clist
, row
, FIELD_COL_RESERVED
, markxpm
);
234 gtk_cmclist_set_row_data( clist
, row
, rec
);
235 gtk_cmclist_thaw( clist
);
239 * Load list with LDIF fields read from file.
240 * \param ldf LDIF control data.
242 static void imp_ldif_load_fields( LdifFile
*ldf
) {
243 GtkCMCList
*clist
= GTK_CMCLIST(impldif_dlg
.clist_field
);
245 gchar
*text
[ FIELDS_N_COLS
];
247 impldif_dlg
.rowIndSelect
= -1;
248 impldif_dlg
.rowCount
= 0;
249 if( ! ldf
->accessFlag
) return;
250 gtk_cmclist_clear( clist
);
251 list
= ldif_get_fieldlist( ldf
);
254 Ldif_FieldRec
*rec
= node
->data
;
257 text
[ FIELD_COL_RESERVED
] = "";
258 text
[ FIELD_COL_SELECT
] = "";
259 text
[ FIELD_COL_FIELD
] = rec
->tagName
;
260 text
[ FIELD_COL_ATTRIB
] = rec
->userName
;
261 row
= gtk_cmclist_append( clist
, text
);
262 gtk_cmclist_set_row_data( clist
, row
, rec
);
263 if( rec
->selected
) {
264 gtk_cmclist_set_pixbuf( clist
, row
,
265 FIELD_COL_SELECT
, markxpm
);
267 if( rec
->reserved
) {
268 gtk_cmclist_set_pixbuf( clist
, row
,
269 FIELD_COL_RESERVED
, markxpm
);
271 impldif_dlg
.rowCount
++;
272 node
= g_list_next( node
);
276 ldif_set_accessed( ldf
, FALSE
);
280 * Callback function when list item is selected.
281 * \param clist List widget.
284 * \param event Event object.
285 * \param data User data.
287 static void imp_ldif_field_list_selected(
288 GtkCMCList
*clist
, gint row
, gint column
, GdkEvent
*event
,
291 Ldif_FieldRec
*rec
= gtk_cmclist_get_row_data( clist
, row
);
293 impldif_dlg
.rowIndSelect
= row
;
294 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryAttrib
), "" );
296 /* Update widget contents */
298 GTK_LABEL(impldif_dlg
.entryField
), rec
->tagName
);
301 GTK_ENTRY(impldif_dlg
.entryAttrib
), rec
->userName
);
302 gtk_toggle_button_set_active(
303 GTK_TOGGLE_BUTTON( impldif_dlg
.checkSelect
),
306 /* Disable widgets for reserved fields */
307 gtk_widget_set_sensitive(
308 impldif_dlg
.entryAttrib
, ! rec
->reserved
);
309 gtk_widget_set_sensitive(
310 impldif_dlg
.checkSelect
, ! rec
->reserved
);
311 gtk_widget_set_sensitive(
312 impldif_dlg
.btnModify
, ! rec
->reserved
);
314 gtk_widget_grab_focus(impldif_dlg
.entryAttrib
);
318 * Callback function to toggle selected LDIF field.
319 * \param clist List to update.
320 * \param event Event object.
323 static gboolean
imp_ldif_field_list_toggle(
324 GtkCMCList
*clist
, GdkEventButton
*event
, gpointer data
)
327 gboolean toggle
= FALSE
;
329 if( ! event
) return FALSE
;
330 if( impldif_dlg
.rowIndSelect
< 0 ) return FALSE
;
331 if( event
->button
== 1 ) {
332 /* If single click in select column */
333 if( event
->type
== GDK_BUTTON_PRESS
) {
338 if (!gtk_cmclist_get_selection_info( clist
, x
, y
, &row
, &col
))
340 if( col
!= FIELD_COL_SELECT
) return FALSE
;
341 if( row
> impldif_dlg
.rowCount
) return FALSE
;
344 impldif_dlg
.rowIndSelect
= row
;
348 /* If double click anywhere in row */
349 else if( event
->type
== GDK_2BUTTON_PRESS
) {
353 /* Toggle field selection */
355 rec
= gtk_cmclist_get_row_data(
356 clist
, impldif_dlg
.rowIndSelect
);
358 ldif_field_toggle( rec
);
359 imp_ldif_update_row( clist
);
366 * Callback function to update LDIF field data from input fields.
367 * \param widget Widget (button).
368 * \param data User data.
370 static void imp_ldif_modify_pressed( GtkWidget
*widget
, gpointer data
) {
371 GtkCMCList
*clist
= GTK_CMCLIST(impldif_dlg
.clist_field
);
375 if( impldif_dlg
.rowIndSelect
< 0 ) return;
376 row
= impldif_dlg
.rowIndSelect
;
377 rec
= gtk_cmclist_get_row_data( clist
, impldif_dlg
.rowIndSelect
);
379 ldif_field_set_name( rec
, gtk_editable_get_chars(
380 GTK_EDITABLE(impldif_dlg
.entryAttrib
), 0, -1 ) );
381 ldif_field_set_selected( rec
, gtk_toggle_button_get_active(
382 GTK_TOGGLE_BUTTON( impldif_dlg
.checkSelect
) ) );
383 imp_ldif_update_row( clist
);
384 gtk_cmclist_select_row( clist
, row
, 0 );
385 gtk_label_set_text( GTK_LABEL(impldif_dlg
.entryField
), "" );
386 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryAttrib
), "" );
387 gtk_toggle_button_set_active(
388 GTK_TOGGLE_BUTTON( impldif_dlg
.checkSelect
), FALSE
);
392 * Test whether we can move off fields page.
393 * \return <i>TRUE</i> if OK to move off page.
395 static gboolean
imp_ldif_field_move() {
396 gboolean retVal
= FALSE
;
398 AddressBookFile
*abf
= NULL
;
400 if( _importedBook_
) {
401 addrbook_free_book( _importedBook_
);
404 abf
= addrbook_create_book();
405 addrbook_set_path( abf
, _imp_addressIndex_
->filePath
);
406 addrbook_set_name( abf
, impldif_dlg
.nameBook
);
407 newFile
= addrbook_guess_next_file( abf
);
408 addrbook_set_file( abf
, newFile
);
411 /* Import data into file */
412 if( ldif_import_data( _ldifFile_
, abf
->addressCache
) == MGU_SUCCESS
) {
413 addrbook_save_data( abf
);
414 _importedBook_
= abf
;
418 addrbook_free_book( abf
);
425 * Test whether we can move off file page.
426 * \return <i>TRUE</i> if OK to move off page.
428 static gboolean
imp_ldif_file_move() {
429 gboolean retVal
= FALSE
;
433 gboolean errFlag
= FALSE
;
435 sFile
= gtk_editable_get_chars( GTK_EDITABLE(impldif_dlg
.entryFile
), 0, -1 );
438 sName
= gtk_editable_get_chars( GTK_EDITABLE(impldif_dlg
.entryName
), 0, -1 );
441 g_free( impldif_dlg
.nameBook
);
442 g_free( impldif_dlg
.fileName
);
443 impldif_dlg
.nameBook
= sName
;
444 impldif_dlg
.fileName
= sFile
;
446 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryFile
), sFile
);
447 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryName
), sName
);
449 if( *sFile
== '\0' ) {
450 sMsg
= _( "Please select a file." );
451 gtk_widget_grab_focus(impldif_dlg
.entryFile
);
455 if( ! errFlag
&& *sName
== '\0' ) {
456 sMsg
= _( "Address book name must be supplied." );
457 gtk_widget_grab_focus(impldif_dlg
.entryName
);
462 /* Read attribute list */
463 ldif_set_file( _ldifFile_
, sFile
);
464 if( ldif_read_tags( _ldifFile_
) == MGU_SUCCESS
) {
466 /* ldif_print_file( _ldifFile_, stdout ); */
467 imp_ldif_load_fields( _ldifFile_
);
471 sMsg
= imp_ldif_err2string( _lutErrorsLDIF_
, _ldifFile_
->retVal
);
474 imp_ldif_status_show( sMsg
);
480 * Display finish page.
482 static void imp_ldif_finish_show() {
486 name
= gtk_editable_get_chars( GTK_EDITABLE(impldif_dlg
.entryName
), 0, -1 );
487 gtk_label_set_text( GTK_LABEL(impldif_dlg
.labelBook
), name
);
489 gtk_label_set_text( GTK_LABEL(impldif_dlg
.labelFile
), _ldifFile_
->path
);
490 gtk_label_set_text( GTK_LABEL(impldif_dlg
.labelRecords
), itos( _ldifFile_
->importCount
) );
491 gtk_widget_set_sensitive( impldif_dlg
.btnPrev
, FALSE
);
492 gtk_widget_hide( impldif_dlg
.btnNext
);
493 gtk_widget_show( impldif_dlg
.btnProceed
);
494 gtk_widget_set_sensitive( impldif_dlg
.btnProceed
, FALSE
);
495 if( _ldifFile_
->retVal
== MGU_SUCCESS
) {
496 sMsg
= _( "LDIF file imported successfully." );
499 sMsg
= imp_ldif_err2string( _lutErrorsLDIF_
, _ldifFile_
->retVal
);
501 imp_ldif_status_show( sMsg
);
502 gtk_widget_grab_focus(impldif_dlg
.btnCancel
);
506 * Callback function to select previous page.
507 * \param widget Widget (button).
509 static void imp_ldif_prev( GtkWidget
*widget
) {
512 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(impldif_dlg
.notebook
) );
513 if( pageNum
== PAGE_ATTRIBUTES
) {
514 /* Goto file page stuff */
515 gtk_notebook_set_current_page(
516 GTK_NOTEBOOK(impldif_dlg
.notebook
), PAGE_FILE_INFO
);
517 gtk_widget_set_sensitive( impldif_dlg
.btnPrev
, FALSE
);
518 gtk_widget_hide( impldif_dlg
.btnProceed
);
519 gtk_widget_show( impldif_dlg
.btnNext
);
525 * Callback function to select next page.
526 * \param widget Widget (button).
528 static void imp_ldif_next( GtkWidget
*widget
) {
531 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(impldif_dlg
.notebook
) );
532 if( pageNum
== PAGE_FILE_INFO
) {
533 /* Goto attributes stuff */
534 if( imp_ldif_file_move() ) {
535 gtk_notebook_set_current_page(
536 GTK_NOTEBOOK(impldif_dlg
.notebook
), PAGE_ATTRIBUTES
);
538 gtk_widget_set_sensitive( impldif_dlg
.btnPrev
, TRUE
);
539 gtk_widget_hide( impldif_dlg
.btnNext
);
540 gtk_widget_show( impldif_dlg
.btnProceed
);
541 gtk_widget_set_sensitive( impldif_dlg
.btnProceed
, TRUE
);
544 gtk_widget_set_sensitive( impldif_dlg
.btnPrev
, FALSE
);
545 _ldifFile_
->dirtyFlag
= TRUE
;
548 else if( pageNum
== PAGE_ATTRIBUTES
) {
549 /* Goto finish stuff */
550 if( imp_ldif_field_move() ) {
551 gtk_notebook_set_current_page(
552 GTK_NOTEBOOK(impldif_dlg
.notebook
), PAGE_FINISH
);
553 gtk_button_set_label(GTK_BUTTON(impldif_dlg
.btnCancel
),
555 imp_ldif_finish_show();
561 * Callback function to cancel and close dialog.
562 * \param widget Widget (button).
563 * \param data User data.
565 static void imp_ldif_cancel( GtkWidget
*widget
, gpointer data
) {
568 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(impldif_dlg
.notebook
) );
569 if( pageNum
!= PAGE_FINISH
) {
570 impldif_dlg
.cancelled
= TRUE
;
577 * Create LDIF file selection dialog.
578 * \param afs Address file selection data.
580 static void imp_ldif_file_select_create( AddressFileSelection
*afs
) {
581 gchar
*file
= filesel_select_file_open(_("Select LDIF File"), NULL
);
584 afs
->cancelled
= TRUE
;
586 afs
->cancelled
= FALSE
;
587 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryFile
), file
);
593 * Callback function to display LDIF file selection dialog.
595 static void imp_ldif_file_select( void ) {
596 imp_ldif_file_select_create( & _imp_ldif_file_selector_
);
600 * Callback function to handle dialog close event.
601 * \param widget Widget (dialog).
602 * \param event Event object.
603 * \param data User data.
605 static gint
imp_ldif_delete_event( GtkWidget
*widget
, GdkEventAny
*event
, gpointer data
) {
606 imp_ldif_cancel( widget
, data
);
611 * Callback function to respond to dialog key press events.
612 * \param widget Widget.
613 * \param event Event object.
614 * \param data User data.
616 static gboolean
imp_ldif_key_pressed( GtkWidget
*widget
, GdkEventKey
*event
, gpointer data
) {
617 if (event
&& event
->keyval
== GDK_KEY_Escape
) {
618 imp_ldif_cancel( widget
, data
);
624 * Format notebook "file" page.
625 * \param pageNum Page (tab) number.
626 * \param pageLbl Page (tab) label.
628 static void imp_ldif_page_file( gint pageNum
, gchar
*pageLbl
) {
632 GtkWidget
*entryFile
;
633 GtkWidget
*entryName
;
637 vbox
= gtk_vbox_new(FALSE
, 8);
638 gtk_container_add( GTK_CONTAINER( impldif_dlg
.notebook
), vbox
);
639 gtk_container_set_border_width( GTK_CONTAINER (vbox
), BORDER_WIDTH
);
641 label
= gtk_label_new( pageLbl
);
642 gtk_widget_show( label
);
643 gtk_notebook_set_tab_label(
644 GTK_NOTEBOOK( impldif_dlg
.notebook
),
645 gtk_notebook_get_nth_page(
646 GTK_NOTEBOOK( impldif_dlg
.notebook
), pageNum
),
649 table
= gtk_table_new(2, 3, FALSE
);
650 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
651 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
652 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
653 gtk_table_set_col_spacings(GTK_TABLE(table
), 8 );
657 label
= gtk_label_new(_("Address Book"));
658 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
660 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
662 entryName
= gtk_entry_new();
663 gtk_table_attach(GTK_TABLE(table
), entryName
, 1, 2, top
, (top
+ 1),
664 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
666 CLAWS_SET_TIP(entryName
, _(
667 "Specify the name for the address book that will " \
668 "be created from the LDIF file data." ));
672 label
= gtk_label_new(_("File Name"));
673 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
675 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
677 entryFile
= gtk_entry_new();
678 gtk_table_attach(GTK_TABLE(table
), entryFile
, 1, 2, top
, (top
+ 1),
679 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
681 CLAWS_SET_TIP(entryFile
,
682 _( "The full file specification of the LDIF file to import." ));
684 btnFile
= gtkut_get_browse_file_btn(_("B_rowse"));
685 gtk_table_attach(GTK_TABLE(table
), btnFile
, 2, 3, top
, (top
+ 1),
688 CLAWS_SET_TIP(btnFile
,
689 _( "Select the LDIF file to import." ));
691 gtk_widget_show_all(vbox
);
694 g_signal_connect(G_OBJECT(btnFile
), "clicked",
695 G_CALLBACK(imp_ldif_file_select
), NULL
);
697 impldif_dlg
.entryFile
= entryFile
;
698 impldif_dlg
.entryName
= entryName
;
703 * Format notebook fields page.
704 * \param pageNum Page (tab) number.
705 * \param pageLbl Page (tab) label.
707 static void imp_ldif_page_fields( gint pageNum
, gchar
*pageLbl
) {
713 GtkWidget
*clist_swin
;
714 GtkWidget
*clist_field
;
715 GtkWidget
*entryField
;
716 GtkWidget
*entryAttrib
;
717 GtkWidget
*checkSelect
;
718 GtkWidget
*btnModify
;
722 gchar
*titles
[ FIELDS_N_COLS
];
725 titles
[ FIELD_COL_RESERVED
] = _("R");
726 titles
[ FIELD_COL_SELECT
] = _("S");
727 titles
[ FIELD_COL_FIELD
] = _("LDIF Field Name");
728 titles
[ FIELD_COL_ATTRIB
] = _("Attribute Name");
730 vbox
= gtk_vbox_new(FALSE
, 8);
731 gtk_container_add( GTK_CONTAINER( impldif_dlg
.notebook
), vbox
);
732 gtk_container_set_border_width( GTK_CONTAINER (vbox
), 4 );
734 label
= gtk_label_new( pageLbl
);
735 gtk_widget_show( label
);
736 gtk_notebook_set_tab_label(
737 GTK_NOTEBOOK( impldif_dlg
.notebook
),
738 gtk_notebook_get_nth_page(GTK_NOTEBOOK( impldif_dlg
.notebook
), pageNum
),
741 /* Upper area - Field list */
742 vboxt
= gtk_vbox_new( FALSE
, 4 );
743 gtk_container_add( GTK_CONTAINER( vbox
), vboxt
);
745 clist_swin
= gtk_scrolled_window_new( NULL
, NULL
);
746 gtk_container_add( GTK_CONTAINER(vboxt
), clist_swin
);
747 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(clist_swin
),
748 GTK_POLICY_AUTOMATIC
,
749 GTK_POLICY_AUTOMATIC
);
751 clist_field
= gtk_cmclist_new_with_titles( FIELDS_N_COLS
, titles
);
752 gtk_container_add( GTK_CONTAINER(clist_swin
), clist_field
);
753 gtk_cmclist_set_selection_mode(
754 GTK_CMCLIST(clist_field
), GTK_SELECTION_BROWSE
);
755 gtk_cmclist_set_column_width( GTK_CMCLIST(clist_field
),
756 FIELD_COL_RESERVED
, FIELDS_COL_WIDTH_RESERVED
);
757 gtk_cmclist_set_column_width( GTK_CMCLIST(clist_field
),
758 FIELD_COL_SELECT
, FIELDS_COL_WIDTH_SELECT
);
759 gtk_cmclist_set_column_width( GTK_CMCLIST(clist_field
),
760 FIELD_COL_FIELD
, FIELDS_COL_WIDTH_FIELD
);
761 gtk_cmclist_set_column_width( GTK_CMCLIST(clist_field
),
762 FIELD_COL_ATTRIB
, FIELDS_COL_WIDTH_ATTRIB
);
764 /* Remove focus capability for column headers */
765 for( i
= 0; i
< FIELDS_N_COLS
; i
++ ) {
766 gtkut_widget_set_can_focus(
767 GTK_CMCLIST(clist_field
)->column
[i
].button
,
771 /* Lower area - Edit area */
772 vboxb
= gtk_vbox_new( FALSE
, 4 );
773 gtk_box_pack_end(GTK_BOX(vbox
), vboxb
, FALSE
, FALSE
, 2);
775 /* Data entry area */
776 table
= gtk_table_new( 3, 3, FALSE
);
777 gtk_box_pack_start(GTK_BOX(vboxb
), table
, FALSE
, FALSE
, 0);
778 gtk_table_set_row_spacings(GTK_TABLE(table
), 4);
779 gtk_table_set_col_spacings(GTK_TABLE(table
), 4);
783 label
= gtk_label_new(_("LDIF Field"));
784 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
786 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
788 entryField
= gtk_label_new( "" );
789 gtk_misc_set_alignment(GTK_MISC(entryField
), 0.01, 0.5);
790 gtk_table_attach(GTK_TABLE(table
), entryField
, 1, 3, top
, (top
+ 1),
791 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
795 label
= gtk_label_new(_("Attribute"));
797 * Use an event box to attach some help in the form of a tooltip.
798 * Tried this for the clist but it looked bad.
800 eventBox
= gtk_event_box_new();
801 gtk_container_add( GTK_CONTAINER(eventBox
), label
);
802 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
803 gtk_table_attach(GTK_TABLE(table
), eventBox
, 0, 1, top
, (top
+ 1),
806 CLAWS_SET_TIP(eventBox
, _(
807 "Choose the LDIF field that will be renamed or selected " \
808 "for import in the list above. Reserved fields (marked " \
809 "with a tick in the \"R\" column), are automatically " \
810 "imported and cannot be renamed. A single click in the " \
811 "Select (\"S\") column will select the field for import " \
812 "with a tick. A single click anywhere in the row will " \
813 "select that field for rename in the input area below " \
814 "the list. A double click anywhere in the row will also " \
815 "select the field for import."));
817 entryAttrib
= gtk_entry_new();
818 gtk_table_attach(GTK_TABLE(table
), entryAttrib
, 1, 3, top
, (top
+ 1),
819 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
821 CLAWS_SET_TIP(entryAttrib
,
822 _( "The LDIF field can be renamed to the User Attribute name." ));
827 checkSelect
= gtk_check_button_new_with_label( _( "Select for Import" ) );
828 gtk_table_attach(GTK_TABLE(table
), checkSelect
, 1, 2, top
, (top
+ 1),
829 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
831 CLAWS_SET_TIP(checkSelect
,
832 _( "Select the LDIF field for import into the address book." ));
834 btnModify
= gtk_button_new_with_label( _(" Modify "));
835 gtk_table_attach(GTK_TABLE(table
), btnModify
, 2, 3, top
, (top
+ 1),
838 CLAWS_SET_TIP(btnModify
,
839 _( "This button will update the list above with the data supplied." ));
841 gtk_widget_show_all(vbox
);
844 g_signal_connect( G_OBJECT(clist_field
), "select_row",
845 G_CALLBACK(imp_ldif_field_list_selected
), NULL
);
846 g_signal_connect( G_OBJECT(clist_field
), "button_press_event",
847 G_CALLBACK(imp_ldif_field_list_toggle
), NULL
);
848 g_signal_connect( G_OBJECT(btnModify
), "clicked",
849 G_CALLBACK(imp_ldif_modify_pressed
), NULL
);
851 impldif_dlg
.clist_field
= clist_field
;
852 impldif_dlg
.entryField
= entryField
;
853 impldif_dlg
.entryAttrib
= entryAttrib
;
854 impldif_dlg
.checkSelect
= checkSelect
;
855 impldif_dlg
.btnModify
= btnModify
;
859 * Format notebook finish page.
860 * \param pageNum Page (tab) number.
861 * \param pageLbl Page (tab) label.
863 static void imp_ldif_page_finish( gint pageNum
, gchar
*pageLbl
) {
867 GtkWidget
*labelBook
;
868 GtkWidget
*labelFile
;
869 GtkWidget
*labelRecs
;
872 vbox
= gtk_vbox_new(FALSE
, 8);
873 gtk_container_add( GTK_CONTAINER( impldif_dlg
.notebook
), vbox
);
874 gtk_container_set_border_width( GTK_CONTAINER (vbox
), BORDER_WIDTH
);
876 label
= gtk_label_new( pageLbl
);
877 gtk_widget_show( label
);
878 gtk_notebook_set_tab_label(
879 GTK_NOTEBOOK( impldif_dlg
.notebook
),
880 gtk_notebook_get_nth_page( GTK_NOTEBOOK( impldif_dlg
.notebook
), pageNum
),
883 table
= gtk_table_new(3, 2, FALSE
);
884 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
885 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
886 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
887 gtk_table_set_col_spacings(GTK_TABLE(table
), 8);
891 label
= gtk_label_new( _( "Address Book:" ) );
892 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
893 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0.5);
895 labelBook
= gtk_label_new("");
896 gtk_table_attach(GTK_TABLE(table
), labelBook
, 1, 2, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
897 gtk_misc_set_alignment(GTK_MISC(labelBook
), 0, 0.5);
901 label
= gtk_label_new( _( "File Name:" ) );
902 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
903 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0.5);
905 labelFile
= gtk_label_new("");
906 gtk_table_attach(GTK_TABLE(table
), labelFile
, 1, 2, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
907 gtk_misc_set_alignment(GTK_MISC(labelFile
), 0, 0.5);
911 label
= gtk_label_new( _("Records Imported:") );
912 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
913 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0.5);
915 labelRecs
= gtk_label_new("");
916 gtk_table_attach(GTK_TABLE(table
), labelRecs
, 1, 2, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
917 gtk_misc_set_alignment(GTK_MISC(labelRecs
), 0, 0.5);
919 impldif_dlg
.labelBook
= labelBook
;
920 impldif_dlg
.labelFile
= labelFile
;
921 impldif_dlg
.labelRecords
= labelRecs
;
925 * Create main dialog decorations (excluding notebook pages).
927 static void imp_ldif_dialog_create() {
935 GtkWidget
*btnProceed
;
936 GtkWidget
*btnCancel
;
938 GtkWidget
*statusbar
;
940 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "importldif");
941 gtk_widget_set_size_request(window
, IMPORTLDIF_WIDTH
, IMPORTLDIF_HEIGHT
);
942 gtk_container_set_border_width( GTK_CONTAINER(window
), 0 );
943 gtk_window_set_title( GTK_WINDOW(window
), _("Import LDIF file into Address Book") );
944 gtk_window_set_position(GTK_WINDOW(window
), GTK_WIN_POS_CENTER
);
945 g_signal_connect(G_OBJECT(window
), "delete_event",
946 G_CALLBACK(imp_ldif_delete_event
),
948 g_signal_connect(G_OBJECT(window
), "key_press_event",
949 G_CALLBACK(imp_ldif_key_pressed
),
952 vbox
= gtk_vbox_new(FALSE
, 4);
953 gtk_widget_show(vbox
);
954 gtk_container_add(GTK_CONTAINER(window
), vbox
);
956 vnbox
= gtk_vbox_new(FALSE
, 4);
957 gtk_container_set_border_width(GTK_CONTAINER(vnbox
), 4);
958 gtk_widget_show(vnbox
);
959 gtk_box_pack_start(GTK_BOX(vbox
), vnbox
, TRUE
, TRUE
, 0);
962 notebook
= gtk_notebook_new();
963 gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook
), FALSE
);
964 gtk_widget_show(notebook
);
965 gtk_box_pack_start(GTK_BOX(vnbox
), notebook
, TRUE
, TRUE
, 0);
966 gtk_container_set_border_width(GTK_CONTAINER(notebook
), 6);
969 hsbox
= gtk_hbox_new(FALSE
, 0);
970 gtk_box_pack_end(GTK_BOX(vbox
), hsbox
, FALSE
, FALSE
, BORDER_WIDTH
);
971 statusbar
= gtk_statusbar_new();
972 gtk_box_pack_start(GTK_BOX(hsbox
), statusbar
, TRUE
, TRUE
, BORDER_WIDTH
);
975 gtkut_stock_button_set_create(&hbbox
,
976 &btnCancel
, GTK_STOCK_CANCEL
,
977 &btnPrev
, GTK_STOCK_GO_BACK
,
978 &btnNext
, GTK_STOCK_GO_FORWARD
);
980 btnProceed
= gtk_button_new_with_mnemonic(_("Proceed"));
981 gtk_button_set_image(GTK_BUTTON(btnProceed
),
982 gtk_image_new_from_stock(GTK_STOCK_OK
, GTK_ICON_SIZE_BUTTON
));
983 gtkut_widget_set_can_default(btnProceed
, TRUE
);
984 gtk_box_pack_start(GTK_BOX(hbbox
), btnProceed
, TRUE
, TRUE
, 0);
985 gtk_widget_hide(btnProceed
);
987 gtk_box_pack_end(GTK_BOX(vbox
), hbbox
, FALSE
, FALSE
, 0);
988 gtk_container_set_border_width(GTK_CONTAINER(hbbox
), 2);
989 gtk_widget_grab_default(btnNext
);
991 /* Button handlers */
992 g_signal_connect(G_OBJECT(btnPrev
), "clicked",
993 G_CALLBACK(imp_ldif_prev
), NULL
);
994 g_signal_connect(G_OBJECT(btnNext
), "clicked",
995 G_CALLBACK(imp_ldif_next
), NULL
);
996 g_signal_connect(G_OBJECT(btnProceed
), "clicked",
997 G_CALLBACK(imp_ldif_next
), NULL
);
998 g_signal_connect(G_OBJECT(btnCancel
), "clicked",
999 G_CALLBACK(imp_ldif_cancel
), NULL
);
1001 gtk_widget_show_all(vbox
);
1003 impldif_dlg
.window
= window
;
1004 impldif_dlg
.notebook
= notebook
;
1005 impldif_dlg
.btnPrev
= btnPrev
;
1006 impldif_dlg
.btnNext
= btnNext
;
1007 impldif_dlg
.btnProceed
= btnProceed
;
1008 impldif_dlg
.btnCancel
= btnCancel
;
1009 impldif_dlg
.statusbar
= statusbar
;
1010 impldif_dlg
.status_cid
= gtk_statusbar_get_context_id(
1011 GTK_STATUSBAR(statusbar
), "Import LDIF Dialog" );
1016 * Create import LDIF dialog.
1018 static void imp_ldif_create() {
1019 imp_ldif_dialog_create();
1020 imp_ldif_page_file( PAGE_FILE_INFO
, _( "File Info" ) );
1021 imp_ldif_page_fields( PAGE_ATTRIBUTES
, _( "Attributes" ) );
1022 imp_ldif_page_finish( PAGE_FINISH
, _( "Finish" ) );
1023 gtk_widget_show_all( impldif_dlg
.window
);
1028 * \param addrIndex Address index.
1029 * \return Address book file of imported data, or <i>NULL</i> if import
1032 AddressBookFile
*addressbook_imp_ldif( AddressIndex
*addrIndex
) {
1033 _importedBook_
= NULL
;
1034 _imp_addressIndex_
= addrIndex
;
1036 if( ! impldif_dlg
.window
)
1039 gtk_button_set_label(GTK_BUTTON(impldif_dlg
.btnCancel
),
1041 gtk_widget_hide(impldif_dlg
.btnProceed
);
1042 gtk_widget_show(impldif_dlg
.btnNext
);
1044 impldif_dlg
.cancelled
= FALSE
;
1045 gtk_widget_show(impldif_dlg
.window
);
1046 manage_window_set_transient(GTK_WINDOW(impldif_dlg
.window
));
1047 gtk_widget_grab_default(impldif_dlg
.btnNext
);
1048 gtk_window_set_modal(GTK_WINDOW(impldif_dlg
.window
), TRUE
);
1050 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryName
), IMPORTLDIF_GUESS_NAME
);
1051 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryFile
), "" );
1052 gtk_label_set_text( GTK_LABEL(impldif_dlg
.entryField
), "" );
1053 gtk_entry_set_text( GTK_ENTRY(impldif_dlg
.entryAttrib
), "" );
1054 gtk_cmclist_clear( GTK_CMCLIST(impldif_dlg
.clist_field
) );
1055 gtk_notebook_set_current_page( GTK_NOTEBOOK(impldif_dlg
.notebook
), PAGE_FILE_INFO
);
1056 gtk_widget_set_sensitive( impldif_dlg
.btnPrev
, FALSE
);
1057 gtk_widget_set_sensitive( impldif_dlg
.btnNext
, TRUE
);
1058 stock_pixbuf_gdk(STOCK_PIXMAP_MARK
, &markxpm
);
1060 gtk_widget_grab_focus(impldif_dlg
.entryFile
);
1062 impldif_dlg
.rowIndSelect
= -1;
1063 impldif_dlg
.rowCount
= 0;
1064 g_free( impldif_dlg
.nameBook
);
1065 g_free( impldif_dlg
.fileName
);
1066 impldif_dlg
.nameBook
= NULL
;
1067 impldif_dlg
.fileName
= NULL
;
1069 _ldifFile_
= ldif_create();
1071 gtk_widget_hide(impldif_dlg
.window
);
1072 gtk_window_set_modal(GTK_WINDOW(impldif_dlg
.window
), FALSE
);
1073 ldif_free( _ldifFile_
);
1075 _imp_addressIndex_
= NULL
;
1077 g_free( impldif_dlg
.nameBook
);
1078 g_free( impldif_dlg
.fileName
);
1079 impldif_dlg
.nameBook
= NULL
;
1080 impldif_dlg
.fileName
= NULL
;
1082 if( impldif_dlg
.cancelled
== TRUE
) return NULL
;
1083 return _importedBook_
;
1087 * ============================================================================
1089 * ============================================================================