2005-01-28 [colin] 1.0.0cvs23.1
[claws.git] / src / expldifdlg.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 2003 Match Grun
4  *
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.
9  *
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.
14  *
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.
18  */
19
20 /*
21  * Export address book to LDIF file.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include "defs.h"
29
30 #include <glib.h>
31 #include <gdk/gdkkeysyms.h>
32 #include <gtk/gtkwindow.h>
33 #include <gtk/gtksignal.h>
34 #include <gtk/gtklabel.h>
35 #include <gtk/gtkentry.h>
36 #include <gtk/gtktable.h>
37 #include <gtk/gtkbutton.h>
38
39 #include "intl.h"
40 #include "gtkutils.h"
41 #include "prefs_common.h"
42 #include "alertpanel.h"
43 #include "mgutils.h"
44 #include "addrcache.h"
45 #include "addressitem.h"
46 #include "exportldif.h"
47 #include "utils.h"
48 #include "manage_window.h"
49
50 #define PAGE_FILE_INFO             0
51 #define PAGE_DN                    1
52 #define PAGE_FINISH                2
53
54 #define EXPORTLDIF_WIDTH           480
55 #define EXPORTLDIF_HEIGHT          -1
56
57 /**
58  * Dialog object.
59  */
60 static struct _ExpLdif_Dlg {
61         GtkWidget *window;
62         GtkWidget *notebook;
63         GtkWidget *labelBook;
64         GtkWidget *entryLdif;
65         GtkWidget *entrySuffix;
66         GtkWidget *optmenuRDN;
67         GtkWidget *checkUseDN;
68         GtkWidget *checkEMail;
69         GtkWidget *labelOutBook;
70         GtkWidget *labelOutFile;
71         GtkWidget *btnPrev;
72         GtkWidget *btnNext;
73         GtkWidget *btnCancel;
74         GtkWidget *statusbar;
75         gint      status_cid;
76         gboolean  cancelled;
77 } expldif_dlg;
78
79 static struct _AddressFileSelection _exp_ldif_file_selector_;
80
81 static ExportLdifCtl *_exportCtl_ = NULL;
82 static AddressCache *_addressCache_ = NULL;
83
84 /**
85  * Display message in status field.
86  * \param msg Message to display.
87  */
88 static void export_ldif_status_show( gchar *msg ) {
89         if( expldif_dlg.statusbar != NULL ) {
90                 gtk_statusbar_pop(
91                         GTK_STATUSBAR(expldif_dlg.statusbar),
92                         expldif_dlg.status_cid );
93                 if( msg ) {
94                         gtk_statusbar_push(
95                                 GTK_STATUSBAR(expldif_dlg.statusbar),
96                                 expldif_dlg.status_cid, msg );
97                 }
98         }
99 }
100
101 /**
102  * Select and display status message appropriate for the page being displayed.
103  */
104 static void export_ldif_message( void ) {
105         gchar *sMsg = NULL;
106         gint pageNum;
107
108         pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg.notebook) );
109         if( pageNum == PAGE_FILE_INFO ) {
110                 sMsg = _( "Please specify output directory and LDIF filename to create." );
111         }
112         else if( pageNum == PAGE_DN ) {
113                 sMsg = _( "Specify parameters to format distinguished name." );
114         }
115         else if( pageNum == PAGE_FINISH ) {
116                 sMsg = _( "File exported successfully." );
117         }
118         export_ldif_status_show( sMsg );
119 }
120
121 /**
122  * Callback function to cancel LDIF file selection dialog.
123  * \param widget Widget (button).
124  * \param data   User data.
125  */
126 static void export_ldif_cancel( GtkWidget *widget, gpointer data ) {
127         gint pageNum;
128
129         pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg.notebook) );
130         if( pageNum != PAGE_FINISH ) {
131                 expldif_dlg.cancelled = TRUE;
132         }
133         gtk_main_quit();
134 }
135
136 /**
137  * Callback function to handle dialog close event.
138  * \param widget Widget (dialog).
139  * \param event  Event object.
140  * \param data   User data.
141  */
142 static gint export_ldif_delete_event( GtkWidget *widget, GdkEventAny *event, gpointer data ) {
143         export_ldif_cancel( widget, data );
144         return TRUE;
145 }
146
147 /**
148  * Callback function to respond to dialog key press events.
149  * \param widget Widget.
150  * \param event  Event object.
151  * \param data   User data.
152  */
153 static gboolean export_ldif_key_pressed( GtkWidget *widget, GdkEventKey *event, gpointer data ) {
154         if (event && event->keyval == GDK_Escape) {
155                 export_ldif_cancel( widget, data );
156         }
157 }
158
159 /**
160  * Test whether we can move off file page.
161  * \return <i>TRUE</i> if OK to move off page.
162  */
163 static gboolean exp_ldif_move_file( void ) {
164         gchar *sFile, *msg, *reason;
165         gboolean errFlag = FALSE;
166         AlertValue aval;
167
168         sFile = gtk_editable_get_chars( GTK_EDITABLE(expldif_dlg.entryLdif), 0, -1 );
169         g_strchug( sFile ); g_strchomp( sFile );
170         gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entryLdif), sFile );
171         exportldif_parse_filespec( _exportCtl_, sFile );
172
173         /* Test that something was supplied */
174         if( *sFile == '\0'|| strlen( sFile ) < 1 ) {
175                 gtk_widget_grab_focus( expldif_dlg.entryLdif );
176                 errFlag = TRUE;
177         }
178         g_free( sFile );
179         if( errFlag ) return FALSE;
180
181         /* Test for directory */
182         if( exportldif_test_dir( _exportCtl_ ) ) {
183                 return TRUE;
184         }
185
186         /* Prompt to create */
187         msg = g_strdup_printf( _(
188                 "LDIF Output Directory '%s'\n" \
189                 "does not exist. OK to create new directory?" ),
190                 _exportCtl_->dirOutput );
191         aval = alertpanel( _("Create Directory" ),
192                 msg, _( "Yes" ), _( "No" ), NULL );
193         g_free( msg );
194         if( aval != G_ALERTDEFAULT ) return FALSE;
195
196         /* Create directory */
197         if( ! exportldif_create_dir( _exportCtl_ ) ) {
198                 reason = exportldif_get_create_msg( _exportCtl_ );
199                 msg = g_strdup_printf( _(
200                         "Could not create output directory for LDIF file:\n%s" ),
201                         reason );
202                 aval = alertpanel_with_type( _( "Failed to Create Directory" ),
203                         msg, _( "Close" ), NULL, NULL, NULL, ALERT_ERROR );
204                 g_free( msg );
205                 return FALSE;
206         }
207
208         return TRUE;
209 }
210
211 /**
212  * Test whether we can move off distinguished name page.
213  * \return <i>TRUE</i> if OK to move off page.
214  */
215 static gboolean exp_ldif_move_dn( void ) {
216         gboolean retVal = FALSE;
217         gboolean errFlag = FALSE;
218         gchar *suffix;
219         GtkWidget *menu, *menuItem;
220         gint id;
221
222         /* Set suffix */
223         suffix = gtk_editable_get_chars( GTK_EDITABLE(expldif_dlg.entrySuffix), 0, -1 );
224         g_strchug( suffix ); g_strchomp( suffix );
225
226         /* Set RDN format */
227         menu = gtk_option_menu_get_menu( GTK_OPTION_MENU( expldif_dlg.optmenuRDN ) );
228         menuItem = gtk_menu_get_active( GTK_MENU( menu ) );
229         id = GPOINTER_TO_INT( gtk_object_get_user_data(GTK_OBJECT(menuItem)) );
230         exportldif_set_rdn( _exportCtl_, id );
231
232         exportldif_set_suffix( _exportCtl_, suffix );
233         exportldif_set_use_dn( _exportCtl_,
234                 gtk_toggle_button_get_active(
235                         GTK_TOGGLE_BUTTON( expldif_dlg.checkUseDN ) ) );
236         exportldif_set_exclude_email( _exportCtl_,
237                 gtk_toggle_button_get_active(
238                         GTK_TOGGLE_BUTTON( expldif_dlg.checkEMail ) ) );
239
240         if( *suffix == '\0' || strlen( suffix ) < 1 ) {
241                 AlertValue aval;
242
243                 aval = alertpanel(
244                         _( "Suffix was not supplied" ),
245                         _(
246                                 "A suffix is required if data is to be used " \
247                                 "for an LDAP server. Are you sure you wish " \
248                                 "to proceed without a suffix?"
249                          ),
250                         _( "Yes" ), _( "No" ), NULL );
251                 if( aval != G_ALERTDEFAULT ) {
252                         gtk_widget_grab_focus( expldif_dlg.entrySuffix );
253                         errFlag = TRUE;
254                 }
255         }
256
257         if( ! errFlag ) {
258                 /* Process export */
259                 exportldif_process( _exportCtl_, _addressCache_ );
260                 if( _exportCtl_->retVal == MGU_SUCCESS ) {
261                         retVal = TRUE;
262                 }
263                 else {
264                         export_ldif_status_show( _( "Error creating LDIF file" ) );
265                 }
266         }
267
268         return retVal;
269 }
270
271 /**
272  * Display finish page.
273  */
274 static void exp_ldif_finish_show( void ) {
275         gtk_label_set_text( GTK_LABEL(expldif_dlg.labelOutFile), _exportCtl_->path );
276         gtk_widget_set_sensitive( expldif_dlg.btnNext, FALSE );
277         gtk_widget_grab_focus( expldif_dlg.btnCancel );
278 }
279
280 /**
281  * Callback function to select previous page.
282  * \param widget Widget (button).
283  */
284 static void export_ldif_prev( GtkWidget *widget ) {
285         gint pageNum;
286
287         pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg.notebook) );
288         if( pageNum == PAGE_DN ) {
289                 /* Goto file page stuff */
290                 gtk_notebook_set_current_page(
291                         GTK_NOTEBOOK(expldif_dlg.notebook), PAGE_FILE_INFO );
292                 gtk_widget_set_sensitive( expldif_dlg.btnPrev, FALSE );
293         }
294         else if( pageNum == PAGE_FINISH ) {
295                 /* Goto format page */
296                 gtk_notebook_set_current_page(
297                         GTK_NOTEBOOK(expldif_dlg.notebook), PAGE_DN );
298                 gtk_widget_set_sensitive( expldif_dlg.btnNext, TRUE );
299         }
300         export_ldif_message();
301 }
302
303 /**
304  * Callback function to select next page.
305  * \param widget Widget (button).
306  */
307 static void export_ldif_next( GtkWidget *widget ) {
308         gint pageNum;
309
310         pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg.notebook) );
311         if( pageNum == PAGE_FILE_INFO ) {
312                 /* Goto distinguished name page */
313                 if( exp_ldif_move_file() ) {
314                         gtk_notebook_set_current_page(
315                                 GTK_NOTEBOOK(expldif_dlg.notebook), PAGE_DN );
316                         gtk_widget_set_sensitive( expldif_dlg.btnPrev, TRUE );
317                 }
318                 export_ldif_message();
319         }
320         else if( pageNum == PAGE_DN ) {
321                 /* Goto finish page */
322                 if( exp_ldif_move_dn() ) {
323                         gtk_notebook_set_current_page(
324                                 GTK_NOTEBOOK(expldif_dlg.notebook), PAGE_FINISH );
325                         exp_ldif_finish_show();
326                         exportldif_save_settings( _exportCtl_ );
327                         export_ldif_message();
328                 }
329         }
330 }
331
332 /**
333  * Callback function to accept LDIF file selection.
334  * \param widget Widget (button).
335  * \param data   User data.
336  */
337 static void exp_ldif_file_ok( GtkWidget *widget, gpointer data ) {
338         const gchar *sFile;
339         AddressFileSelection *afs;
340         GtkWidget *fileSel;
341
342         afs = ( AddressFileSelection * ) data;
343         fileSel = afs->fileSelector;
344         sFile = gtk_file_selection_get_filename( GTK_FILE_SELECTION(fileSel) );
345
346         afs->cancelled = FALSE;
347         gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entryLdif), sFile );
348         gtk_widget_hide( afs->fileSelector );
349         gtk_grab_remove( afs->fileSelector );
350         gtk_widget_grab_focus( expldif_dlg.entryLdif );
351 }
352
353 /**
354  * Callback function to cancel LDIF file selection dialog.
355  * \param widget Widget (button).
356  * \param data   User data.
357  */
358 static void exp_ldif_file_cancel( GtkWidget *widget, gpointer data ) {
359         AddressFileSelection *afs = ( AddressFileSelection * ) data;
360         afs->cancelled = TRUE;
361         gtk_widget_hide( afs->fileSelector );
362         gtk_grab_remove( afs->fileSelector );
363         gtk_widget_grab_focus( expldif_dlg.entryLdif );
364 }
365
366 /**
367  * Create LDIF file selection dialog.
368  * \param afs Address file selection data.
369  */
370 static void exp_ldif_file_select_create( AddressFileSelection *afs ) {
371         GtkWidget *fileSelector;
372
373         fileSelector = gtk_file_selection_new( _("Select LDIF Output File") );
374         gtk_file_selection_hide_fileop_buttons( GTK_FILE_SELECTION(fileSelector) );
375         gtk_file_selection_complete( GTK_FILE_SELECTION(fileSelector), "*.html" );
376         g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(fileSelector)->ok_button),
377                          "clicked", 
378                          G_CALLBACK(exp_ldif_file_ok), (gpointer)afs);
379         g_signal_connect(G_OBJECT(GTK_FILE_SELECTION(fileSelector)->cancel_button),
380                          "clicked", 
381                          G_CALLBACK(exp_ldif_file_cancel), (gpointer)afs);
382         afs->fileSelector = fileSelector;
383         afs->cancelled = TRUE;
384 }
385
386 /**
387  * Callback function to display LDIF file selection dialog.
388  */
389 static void exp_ldif_file_select( void ) {
390         gchar *sFile;
391         if( ! _exp_ldif_file_selector_.fileSelector )
392                 exp_ldif_file_select_create( & _exp_ldif_file_selector_ );
393
394         sFile = gtk_editable_get_chars( GTK_EDITABLE(expldif_dlg.entryLdif), 0, -1 );
395         gtk_file_selection_set_filename(
396                 GTK_FILE_SELECTION( _exp_ldif_file_selector_.fileSelector ),
397                 sFile );
398         g_free( sFile );
399         gtk_widget_show( _exp_ldif_file_selector_.fileSelector );
400         gtk_grab_add( _exp_ldif_file_selector_.fileSelector );
401 }
402
403 /**
404  * Format notebook file specification page.
405  * \param pageNum Page (tab) number.
406  * \param pageLbl Page (tab) label.
407  */
408 static void export_ldif_page_file( gint pageNum, gchar *pageLbl ) {
409         GtkWidget *vbox;
410         GtkWidget *table;
411         GtkWidget *label;
412         GtkWidget *labelBook;
413         GtkWidget *entryLdif;
414         GtkWidget *btnFile;
415         gint top;
416
417         vbox = gtk_vbox_new(FALSE, 8);
418         gtk_container_add( GTK_CONTAINER( expldif_dlg.notebook ), vbox );
419         gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
420
421         label = gtk_label_new( pageLbl );
422         gtk_widget_show( label );
423         gtk_notebook_set_tab_label(
424                 GTK_NOTEBOOK( expldif_dlg.notebook ),
425                 gtk_notebook_get_nth_page(
426                         GTK_NOTEBOOK( expldif_dlg.notebook ), pageNum ),
427                 label );
428
429         table = gtk_table_new( 3, 3, FALSE );
430         gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
431         gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
432         gtk_table_set_row_spacings(GTK_TABLE(table), 8);
433         gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
434
435         /* First row */
436         top = 0;
437         label = gtk_label_new( _( "Address Book" ) );
438         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
439                 GTK_FILL, 0, 0, 0);
440         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
441
442         labelBook = gtk_label_new( "Address book name goes here" );
443         gtk_table_attach(GTK_TABLE(table), labelBook, 1, 2, top, (top + 1),
444                 GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
445         gtk_misc_set_alignment(GTK_MISC(labelBook), 0, 0.5);
446
447         /* Second row */
448         top++;
449         label = gtk_label_new( _( "LDIF Output File" ) );
450         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
451                 GTK_FILL, 0, 0, 0);
452         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
453
454         entryLdif = gtk_entry_new();
455         gtk_table_attach(GTK_TABLE(table), entryLdif, 1, 2, top, (top + 1),
456                 GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
457
458         btnFile = gtk_button_new_with_label( _(" ... "));
459         gtk_table_attach(GTK_TABLE(table), btnFile, 2, 3, top, (top + 1),
460                 GTK_FILL, 0, 3, 0);
461
462         gtk_widget_show_all(vbox);
463
464         /* Button handler */
465         g_signal_connect(G_OBJECT(btnFile), "clicked",
466                          G_CALLBACK(exp_ldif_file_select), NULL);
467
468         expldif_dlg.labelBook = labelBook;
469         expldif_dlg.entryLdif = entryLdif;
470 }
471
472 /**
473  * Format notebook distinguished name page.
474  * \param pageNum Page (tab) number.
475  * \param pageLbl Page (tab) label.
476  */
477 static void export_ldif_page_dn( gint pageNum, gchar *pageLbl ) {
478         GtkWidget *vbox;
479         GtkWidget *table;
480         GtkWidget *label;
481         GtkWidget *entrySuffix;
482         GtkWidget *optmenuRDN;
483         GtkWidget *checkUseDN;
484         GtkWidget *checkEMail;
485         GtkWidget *menu;
486         GtkWidget *menuItem;
487         GtkTooltips *toolTip;
488         gint top;
489
490         vbox = gtk_vbox_new(FALSE, 8);
491         gtk_container_add( GTK_CONTAINER( expldif_dlg.notebook ), vbox );
492         gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
493
494         label = gtk_label_new( pageLbl );
495         gtk_widget_show( label );
496         gtk_notebook_set_tab_label(
497                 GTK_NOTEBOOK( expldif_dlg.notebook ),
498                 gtk_notebook_get_nth_page(
499                         GTK_NOTEBOOK( expldif_dlg.notebook ), pageNum ),
500                 label );
501
502         table = gtk_table_new( 5, 2, FALSE );
503         gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
504         gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
505         gtk_table_set_row_spacings(GTK_TABLE(table), 8);
506         gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
507
508         /* First row */
509         top = 0;
510         label = gtk_label_new( _( "Suffix" ) );
511         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
512                 GTK_FILL, 0, 0, 0);
513         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
514
515         entrySuffix = gtk_entry_new();
516         gtk_table_attach(GTK_TABLE(table), entrySuffix, 1, 2, top, (top + 1),
517                 GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
518
519         toolTip = gtk_tooltips_new();
520         gtk_tooltips_set_tip(
521                 GTK_TOOLTIPS(toolTip), entrySuffix, _(
522                 "The suffix is used to create a \"Distinguished Name\" " \
523                 "(or DN) for an LDAP entry. Examples include:\n" \
524                 "  dc=sylpheed,dc=org\n" \
525                 "  ou=people,dc=domainname,dc=com\n" \
526                 "  o=Organization Name,c=Country\n"
527                 ), NULL );
528
529         /* Second row */
530         top++;
531         label = gtk_label_new( _( "Relative DN" ) );
532         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
533                 GTK_FILL, 0, 0, 0);
534         gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
535
536         menu = gtk_menu_new();
537
538         menuItem = gtk_menu_item_new_with_label( _( "Unique ID" ) );
539         gtk_object_set_user_data( GTK_OBJECT( menuItem ),
540                         GINT_TO_POINTER( EXPORT_LDIF_ID_UID ) );
541         gtk_menu_append( GTK_MENU(menu), menuItem );
542         gtk_widget_show( menuItem );
543         toolTip = gtk_tooltips_new();
544         gtk_tooltips_set_tip(
545                 GTK_TOOLTIPS(toolTip), menuItem, _(
546                 "The address book Unique ID is used to create a DN that is " \
547                 "formatted similar to:\n" \
548                 "  uid=102376,ou=people,dc=sylpheed,dc=org"
549                 ), NULL );
550
551         menuItem = gtk_menu_item_new_with_label( _( "Display Name" ) );
552         gtk_object_set_user_data( GTK_OBJECT( menuItem ),
553                         GINT_TO_POINTER( EXPORT_LDIF_ID_DNAME ) );
554         gtk_menu_append( GTK_MENU(menu), menuItem );
555         gtk_widget_show( menuItem );
556         toolTip = gtk_tooltips_new();
557         gtk_tooltips_set_tip(
558                 GTK_TOOLTIPS(toolTip), menuItem, _(
559                 "The address book Display Name is used to create a DN that " \
560                 "is formatted similar to:\n" \
561                 "  cn=John Doe,ou=people,dc=sylpheed,dc=org"
562                 ), NULL );
563
564         menuItem = gtk_menu_item_new_with_label( _( "E-Mail Address" ) );
565         gtk_object_set_user_data( GTK_OBJECT( menuItem ),
566                         GINT_TO_POINTER( EXPORT_LDIF_ID_EMAIL ) );
567         gtk_menu_append( GTK_MENU(menu), menuItem );
568         gtk_widget_show( menuItem );
569         toolTip = gtk_tooltips_new();
570         gtk_tooltips_set_tip(
571                 GTK_TOOLTIPS(toolTip), menuItem, _(
572                 "The first E-Mail Address belonging to a person is used to " \
573                 "create a DN that is formatted similar to:\n" \
574                 "  mail=john.doe@domain.com,ou=people,dc=sylpheed,dc=org"
575                 ), NULL );
576
577         optmenuRDN = gtk_option_menu_new();
578         gtk_option_menu_set_menu( GTK_OPTION_MENU( optmenuRDN ), menu );
579
580         gtk_table_attach(GTK_TABLE(table), optmenuRDN, 1, 2, top, (top + 1),
581                 GTK_FILL, 0, 0, 0);
582
583         toolTip = gtk_tooltips_new();
584         gtk_tooltips_set_tip(
585                 GTK_TOOLTIPS(toolTip), optmenuRDN, _(
586                 "The LDIF file contains several data records that " \
587                 "are usually loaded into an LDAP server. Each data " \
588                 "record in the LDIF file is uniquely identified by " \
589                 "a \"Distinguished Name\" (or DN). The suffix is " \
590                 "appended to the \"Relative Distinguished Name\" "\
591                 "(or RDN) to create the DN. Please select one of " \
592                 "the available RDN options that will be used to " \
593                 "create the DN."
594                 ), NULL );
595
596         /* Third row */
597         top++;
598         checkUseDN = gtk_check_button_new_with_label(
599                         _( "Use DN attribute if present in data" ) );
600         gtk_table_attach(GTK_TABLE(table), checkUseDN, 1, 2, top, (top + 1),
601                 GTK_FILL, 0, 0, 0);
602
603         toolTip = gtk_tooltips_new();
604         gtk_tooltips_set_tip(
605                 GTK_TOOLTIPS(toolTip), checkUseDN, _(
606                 "The addressbook may contain entries that were " \
607                 "previously imported from an LDIF file. The " \
608                 "\"Distinguished Name\" (DN) user attribute, if " \
609                 "present in the address book data, may be used in " \
610                 "the exported LDIF file. The RDN selected above " \
611                 "will be used if the DN user attribute is not found."
612                 ), NULL );
613
614         /* Fourth row */
615         top++;
616         checkEMail = gtk_check_button_new_with_label(
617                         _( "Exclude record if no E-Mail Address" ) );
618         gtk_table_attach(GTK_TABLE(table), checkEMail, 1, 2, top, (top + 1),
619                 GTK_FILL, 0, 0, 0);
620
621         toolTip = gtk_tooltips_new();
622         gtk_tooltips_set_tip(
623                 GTK_TOOLTIPS(toolTip), checkEMail, _(
624                 "An addressbook may contain entries without " \
625                 "E-Mail Addresses. Check this option to ignore " \
626                 "these records."
627                 ), NULL );
628
629
630         gtk_widget_show_all(vbox);
631
632         expldif_dlg.entrySuffix = entrySuffix;
633         expldif_dlg.optmenuRDN  = optmenuRDN;
634         expldif_dlg.checkUseDN  = checkUseDN;
635         expldif_dlg.checkEMail  = checkEMail;
636 }
637
638 /**
639  * Format notebook finish page.
640  * \param pageNum Page (tab) number.
641  * \param pageLbl Page (tab) label.
642  */
643 static void export_ldif_page_finish( gint pageNum, gchar *pageLbl ) {
644         GtkWidget *vbox;
645         GtkWidget *table;
646         GtkWidget *label;
647         GtkWidget *labelBook;
648         GtkWidget *labelFile;
649         gint top;
650
651         vbox = gtk_vbox_new(FALSE, 8);
652         gtk_container_add( GTK_CONTAINER( expldif_dlg.notebook ), vbox );
653         gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
654
655         label = gtk_label_new( pageLbl );
656         gtk_widget_show( label );
657         gtk_notebook_set_tab_label(
658                 GTK_NOTEBOOK( expldif_dlg.notebook ),
659                 gtk_notebook_get_nth_page( GTK_NOTEBOOK( expldif_dlg.notebook ), pageNum ), label );
660
661         table = gtk_table_new( 3, 3, FALSE );
662         gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
663         gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
664         gtk_table_set_row_spacings(GTK_TABLE(table), 8);
665         gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
666
667         /* First row */
668         top = 0;
669         label = gtk_label_new( _( "Address Book :" ) );
670         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
671         gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
672
673         labelBook = gtk_label_new("Full name of address book goes here");
674         gtk_table_attach(GTK_TABLE(table), labelBook, 1, 2, top, (top + 1), GTK_FILL, 0, 0, 0);
675         gtk_misc_set_alignment(GTK_MISC(labelBook), 0, 0.5);
676
677         /* Second row */
678         top++;
679         label = gtk_label_new( _( "File Name :" ) );
680         gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
681         gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
682
683         labelFile = gtk_label_new("File name goes here");
684         gtk_table_attach(GTK_TABLE(table), labelFile, 1, 2, top, (top + 1), GTK_FILL, 0, 0, 0);
685         gtk_misc_set_alignment(GTK_MISC(labelFile), 0, 0.5);
686
687         gtk_widget_show_all(vbox);
688
689         expldif_dlg.labelOutBook = labelBook;
690         expldif_dlg.labelOutFile = labelFile;
691 }
692
693 /**
694  * Create main dialog decorations (excluding notebook pages).
695  */
696 static void export_ldif_dialog_create( void ) {
697         GtkWidget *window;
698         GtkWidget *vbox;
699         GtkWidget *vnbox;
700         GtkWidget *notebook;
701         GtkWidget *hbbox;
702         GtkWidget *btnPrev;
703         GtkWidget *btnNext;
704         GtkWidget *btnCancel;
705         GtkWidget *hsbox;
706         GtkWidget *statusbar;
707
708         window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
709         gtk_widget_set_usize(window, EXPORTLDIF_WIDTH, EXPORTLDIF_HEIGHT );
710         gtk_container_set_border_width( GTK_CONTAINER(window), 0 );
711         gtk_window_set_title( GTK_WINDOW(window),
712                 _("Export Address Book to LDIF File") );
713         gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
714         gtk_window_set_modal(GTK_WINDOW(window), TRUE); 
715         g_signal_connect(G_OBJECT(window), "delete_event",
716                          G_CALLBACK(export_ldif_delete_event),
717                          NULL );
718         g_signal_connect(G_OBJECT(window), "key_press_event",
719                          G_CALLBACK(export_ldif_key_pressed),
720                          NULL );
721
722         vbox = gtk_vbox_new(FALSE, 4);
723         gtk_widget_show(vbox);
724         gtk_container_add(GTK_CONTAINER(window), vbox);
725
726         vnbox = gtk_vbox_new(FALSE, 4);
727         gtk_container_set_border_width(GTK_CONTAINER(vnbox), 4);
728         gtk_widget_show(vnbox);
729         gtk_box_pack_start(GTK_BOX(vbox), vnbox, TRUE, TRUE, 0);
730
731         /* Notebook */
732         notebook = gtk_notebook_new();
733         gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook), FALSE ); /* Hide */
734         /* gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook), TRUE ); */
735         gtk_widget_show(notebook);
736         gtk_box_pack_start(GTK_BOX(vnbox), notebook, TRUE, TRUE, 0);
737         gtk_container_set_border_width(GTK_CONTAINER(notebook), 6);
738
739         /* Status line */
740         hsbox = gtk_hbox_new(FALSE, 0);
741         gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, BORDER_WIDTH);
742         statusbar = gtk_statusbar_new();
743         gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, BORDER_WIDTH);
744
745         /* Button panel */
746         gtkut_button_set_create(&hbbox, &btnPrev, _( "Prev" ),
747                                 &btnNext, _( "Next" ),
748                                 &btnCancel, _( "Cancel" ) );
749         gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
750         gtk_container_set_border_width(GTK_CONTAINER(hbbox), 2);
751         gtk_widget_grab_default(btnNext);
752
753         /* Button handlers */
754         g_signal_connect(G_OBJECT(btnPrev), "clicked",
755                          G_CALLBACK(export_ldif_prev), NULL);
756         g_signal_connect(G_OBJECT(btnNext), "clicked",
757                          G_CALLBACK(export_ldif_next), NULL);
758         g_signal_connect(G_OBJECT(btnCancel), "clicked",
759                          G_CALLBACK(export_ldif_cancel), NULL);
760
761         gtk_widget_show_all(vbox);
762
763         expldif_dlg.window     = window;
764         expldif_dlg.notebook   = notebook;
765         expldif_dlg.btnPrev    = btnPrev;
766         expldif_dlg.btnNext    = btnNext;
767         expldif_dlg.btnCancel  = btnCancel;
768         expldif_dlg.statusbar  = statusbar;
769         expldif_dlg.status_cid = gtk_statusbar_get_context_id(
770                         GTK_STATUSBAR(statusbar), "Export LDIF Dialog" );
771 }
772
773 /**
774  * Create export LDIF dialog.
775  */
776 static void export_ldif_create( void ) {
777         export_ldif_dialog_create();
778         export_ldif_page_file( PAGE_FILE_INFO, _( "File Info" ) );
779         export_ldif_page_dn( PAGE_DN, _( "Distguished Name" ) );
780         export_ldif_page_finish( PAGE_FINISH, _( "Finish" ) );
781         gtk_widget_show_all( expldif_dlg.window );
782 }
783
784 /**
785  * Populate fields from control data.
786  * \param ctl   Export control data.
787  */
788 static void export_ldif_fill_fields( ExportLdifCtl *ctl ) {
789         gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entryLdif), "" );
790         if( ctl->path ) {
791                 gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entryLdif),
792                         ctl->path );
793         }
794         gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entrySuffix), "" );
795         if( ctl->suffix ) {
796                 gtk_entry_set_text( GTK_ENTRY(expldif_dlg.entrySuffix),
797                         ctl->suffix );
798         }
799
800         gtk_option_menu_set_history(
801                 GTK_OPTION_MENU( expldif_dlg.optmenuRDN ), ctl->rdnIndex );
802         gtk_toggle_button_set_active(
803                 GTK_TOGGLE_BUTTON( expldif_dlg.checkUseDN ), ctl->useDN );
804         gtk_toggle_button_set_active(
805                 GTK_TOGGLE_BUTTON( expldif_dlg.checkEMail ), ctl->excludeEMail );
806 }
807
808 /**
809  * Process export address dialog.
810  * \param cache Address book/data source cache.
811  */
812 void addressbook_exp_ldif( AddressCache *cache ) {
813         /* Set references to control data */
814         _addressCache_ = cache;
815
816         _exportCtl_ = exportldif_create();
817         exportldif_load_settings( _exportCtl_ );
818
819         /* Setup GUI */
820         if( ! expldif_dlg.window )
821                 export_ldif_create();
822         expldif_dlg.cancelled = FALSE;
823         gtk_widget_show(expldif_dlg.window);
824         manage_window_set_transient(GTK_WINDOW(expldif_dlg.window));
825
826         gtk_label_set_text( GTK_LABEL(expldif_dlg.labelBook), cache->name );
827         gtk_label_set_text( GTK_LABEL(expldif_dlg.labelOutBook), cache->name );
828         export_ldif_fill_fields( _exportCtl_ );
829
830         gtk_widget_grab_default(expldif_dlg.btnNext);
831         gtk_notebook_set_current_page( GTK_NOTEBOOK(expldif_dlg.notebook), PAGE_FILE_INFO );
832         gtk_widget_set_sensitive( expldif_dlg.btnPrev, FALSE );
833         gtk_widget_set_sensitive( expldif_dlg.btnNext, TRUE );
834
835         export_ldif_message();
836         gtk_widget_grab_focus(expldif_dlg.entryLdif);
837
838         gtk_main();
839         gtk_widget_hide(expldif_dlg.window);
840         exportldif_free( _exportCtl_ );
841         _exportCtl_ = NULL;
842
843         _addressCache_ = NULL;
844 }
845
846 /*
847  * ============================================================================
848  * End of Source.
849  * ============================================================================
850  */
851