2 * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 2003-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 * Export address book to LDIF file.
25 #include "claws-features.h"
31 #include <glib/gi18n.h>
32 #include <gdk/gdkkeysyms.h>
36 #include "prefs_common.h"
37 #include "alertpanel.h"
39 #include "addrcache.h"
40 #include "addressitem.h"
41 #include "exportldif.h"
43 #include "manage_window.h"
47 #define PAGE_FILE_INFO 0
51 #define EXPORTLDIF_WIDTH 480
52 #define EXPORTLDIF_HEIGHT -1
57 static struct _ExpLdif_Dlg
{
62 GtkWidget
*entrySuffix
;
63 GtkWidget
*optmenuRDN
;
64 GtkWidget
*checkUseDN
;
65 GtkWidget
*checkEMail
;
66 GtkWidget
*labelOutBook
;
67 GtkWidget
*labelOutFile
;
76 static struct _AddressFileSelection _exp_ldif_file_selector_
;
78 static ExportLdifCtl
*_exportCtl_
= NULL
;
79 static AddressCache
*_addressCache_
= NULL
;
82 * Display message in status field.
83 * \param msg Message to display.
85 static void export_ldif_status_show( gchar
*msg
) {
86 if( expldif_dlg
.statusbar
!= NULL
) {
88 GTK_STATUSBAR(expldif_dlg
.statusbar
),
89 expldif_dlg
.status_cid
);
92 GTK_STATUSBAR(expldif_dlg
.statusbar
),
93 expldif_dlg
.status_cid
, msg
);
99 * Select and display status message appropriate for the page being displayed.
101 static void export_ldif_message( void ) {
105 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg
.notebook
) );
106 if( pageNum
== PAGE_FILE_INFO
) {
107 sMsg
= _( "Please specify output directory and LDIF filename to create." );
109 else if( pageNum
== PAGE_DN
) {
110 sMsg
= _( "Specify parameters to format distinguished name." );
112 else if( pageNum
== PAGE_FINISH
) {
113 sMsg
= _( "File exported successfully." );
115 export_ldif_status_show( sMsg
);
119 * Callback function to cancel LDIF file selection dialog.
120 * \param widget Widget (button).
121 * \param data User data.
123 static void export_ldif_cancel( GtkWidget
*widget
, gpointer data
) {
126 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg
.notebook
) );
127 if( pageNum
!= PAGE_FINISH
) {
128 expldif_dlg
.cancelled
= TRUE
;
134 * Callback function to handle dialog close event.
135 * \param widget Widget (dialog).
136 * \param event Event object.
137 * \param data User data.
139 static gint
export_ldif_delete_event( GtkWidget
*widget
, GdkEventAny
*event
, gpointer data
) {
140 export_ldif_cancel( widget
, data
);
145 * Callback function to respond to dialog key press events.
146 * \param widget Widget.
147 * \param event Event object.
148 * \param data User data.
150 static gboolean
export_ldif_key_pressed( GtkWidget
*widget
, GdkEventKey
*event
, gpointer data
) {
151 if (event
&& event
->keyval
== GDK_KEY_Escape
) {
152 export_ldif_cancel( widget
, data
);
158 * Test whether we can move off file page.
159 * \return <i>TRUE</i> if OK to move off page.
161 static gboolean
exp_ldif_move_file( void ) {
162 gchar
*sFile
, *msg
, *reason
;
163 gboolean errFlag
= FALSE
;
166 sFile
= gtk_editable_get_chars( GTK_EDITABLE(expldif_dlg
.entryLdif
), 0, -1 );
168 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entryLdif
), sFile
);
169 exportldif_parse_filespec( _exportCtl_
, sFile
);
171 /* Test that something was supplied */
172 if( *sFile
== '\0'|| strlen( sFile
) < 1 ) {
173 gtk_widget_grab_focus( expldif_dlg
.entryLdif
);
177 if( errFlag
) return FALSE
;
179 /* Test for directory */
180 if( g_file_test(_exportCtl_
->dirOutput
,
181 G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
) ) {
185 /* Prompt to create */
186 msg
= g_strdup_printf( _(
187 "LDIF Output Directory '%s'\n" \
188 "does not exist. OK to create new directory?" ),
189 _exportCtl_
->dirOutput
);
190 aval
= alertpanel( _("Create Directory" ),
191 msg
, GTK_STOCK_NO
, GTK_STOCK_YES
, NULL
, ALERTFOCUS_FIRST
);
193 if( aval
!= G_ALERTALTERNATE
) return FALSE
;
195 /* Create directory */
196 if( ! exportldif_create_dir( _exportCtl_
) ) {
197 reason
= exportldif_get_create_msg( _exportCtl_
);
198 msg
= g_strdup_printf( _(
199 "Could not create output directory for LDIF file:\n%s" ),
201 aval
= alertpanel_full(_("Failed to Create Directory"), msg
,
202 GTK_STOCK_CLOSE
, NULL
, NULL
, ALERTFOCUS_FIRST
, FALSE
,
212 * Test whether we can move off distinguished name page.
213 * \return <i>TRUE</i> if OK to move off page.
215 static gboolean
exp_ldif_move_dn( void ) {
216 gboolean retVal
= FALSE
;
217 gboolean errFlag
= FALSE
;
222 suffix
= gtk_editable_get_chars( GTK_EDITABLE(expldif_dlg
.entrySuffix
), 0, -1 );
223 g_strstrip( suffix
);
226 id
= combobox_get_active_data(GTK_COMBO_BOX(expldif_dlg
.optmenuRDN
));
227 exportldif_set_rdn( _exportCtl_
, id
);
229 exportldif_set_suffix( _exportCtl_
, suffix
);
230 exportldif_set_use_dn( _exportCtl_
,
231 gtk_toggle_button_get_active(
232 GTK_TOGGLE_BUTTON( expldif_dlg
.checkUseDN
) ) );
233 exportldif_set_exclude_email( _exportCtl_
,
234 gtk_toggle_button_get_active(
235 GTK_TOGGLE_BUTTON( expldif_dlg
.checkEMail
) ) );
237 if( *suffix
== '\0' || strlen( suffix
) < 1 ) {
241 _( "Suffix was not supplied" ),
243 "A suffix is required if data is to be used " \
244 "for an LDAP server. Are you sure you wish " \
245 "to proceed without a suffix?"
247 GTK_STOCK_NO
, GTK_STOCK_YES
, NULL
, ALERTFOCUS_FIRST
);
248 if( aval
!= G_ALERTALTERNATE
) {
249 gtk_widget_grab_focus( expldif_dlg
.entrySuffix
);
256 exportldif_process( _exportCtl_
, _addressCache_
);
257 if( _exportCtl_
->retVal
== MGU_SUCCESS
) {
261 export_ldif_status_show( _( "Error creating LDIF file" ) );
269 * Display finish page.
271 static void exp_ldif_finish_show( void ) {
272 gtk_label_set_text( GTK_LABEL(expldif_dlg
.labelOutFile
), _exportCtl_
->path
);
273 gtk_widget_set_sensitive( expldif_dlg
.btnNext
, FALSE
);
274 gtk_widget_grab_focus( expldif_dlg
.btnCancel
);
278 * Callback function to select previous page.
279 * \param widget Widget (button).
281 static void export_ldif_prev( GtkWidget
*widget
) {
284 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg
.notebook
) );
285 if( pageNum
== PAGE_DN
) {
286 /* Goto file page stuff */
287 gtk_notebook_set_current_page(
288 GTK_NOTEBOOK(expldif_dlg
.notebook
), PAGE_FILE_INFO
);
289 gtk_widget_set_sensitive( expldif_dlg
.btnPrev
, FALSE
);
291 else if( pageNum
== PAGE_FINISH
) {
292 /* Goto format page */
293 gtk_notebook_set_current_page(
294 GTK_NOTEBOOK(expldif_dlg
.notebook
), PAGE_DN
);
295 gtk_widget_set_sensitive( expldif_dlg
.btnNext
, TRUE
);
297 export_ldif_message();
301 * Callback function to select next page.
302 * \param widget Widget (button).
304 static void export_ldif_next( GtkWidget
*widget
) {
307 pageNum
= gtk_notebook_get_current_page( GTK_NOTEBOOK(expldif_dlg
.notebook
) );
308 if( pageNum
== PAGE_FILE_INFO
) {
309 /* Goto distinguished name page */
310 if( exp_ldif_move_file() ) {
311 gtk_notebook_set_current_page(
312 GTK_NOTEBOOK(expldif_dlg
.notebook
), PAGE_DN
);
313 gtk_widget_set_sensitive( expldif_dlg
.btnPrev
, TRUE
);
315 export_ldif_message();
317 else if( pageNum
== PAGE_DN
) {
318 /* Goto finish page */
319 if( exp_ldif_move_dn() ) {
320 gtk_notebook_set_current_page(
321 GTK_NOTEBOOK(expldif_dlg
.notebook
), PAGE_FINISH
);
322 gtk_button_set_label(GTK_BUTTON(expldif_dlg
.btnCancel
),
324 exp_ldif_finish_show();
325 exportldif_save_settings( _exportCtl_
);
326 export_ldif_message();
332 * Create LDIF file selection dialog.
333 * \param afs Address file selection data.
335 static void exp_ldif_file_select_create( AddressFileSelection
*afs
) {
336 gchar
*file
= filesel_select_file_save(_("Select LDIF output file"), NULL
);
339 afs
->cancelled
= TRUE
;
341 afs
->cancelled
= FALSE
;
342 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entryLdif
), file
);
348 * Callback function to display LDIF file selection dialog.
350 static void exp_ldif_file_select( void ) {
351 exp_ldif_file_select_create( & _exp_ldif_file_selector_
);
355 * Format notebook file specification page.
356 * \param pageNum Page (tab) number.
357 * \param pageLbl Page (tab) label.
359 static void export_ldif_page_file( gint pageNum
, gchar
*pageLbl
) {
363 GtkWidget
*labelBook
;
364 GtkWidget
*entryLdif
;
368 vbox
= gtk_vbox_new(FALSE
, 8);
369 gtk_container_add( GTK_CONTAINER( expldif_dlg
.notebook
), vbox
);
370 gtk_container_set_border_width( GTK_CONTAINER (vbox
), BORDER_WIDTH
);
372 label
= gtk_label_new( pageLbl
);
373 gtk_widget_show( label
);
374 gtk_notebook_set_tab_label(
375 GTK_NOTEBOOK( expldif_dlg
.notebook
),
376 gtk_notebook_get_nth_page(
377 GTK_NOTEBOOK( expldif_dlg
.notebook
), pageNum
),
380 table
= gtk_table_new( 3, 3, FALSE
);
381 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
382 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
383 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
384 gtk_table_set_col_spacings(GTK_TABLE(table
), 8 );
388 label
= gtk_label_new( _( "Address Book" ) );
389 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
391 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
393 labelBook
= gtk_label_new( "Address book name goes here" );
394 gtk_table_attach(GTK_TABLE(table
), labelBook
, 1, 2, top
, (top
+ 1),
395 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
396 gtk_misc_set_alignment(GTK_MISC(labelBook
), 0, 0.5);
400 label
= gtk_label_new( _( "LDIF Output File" ) );
401 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
403 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
405 entryLdif
= gtk_entry_new();
406 gtk_table_attach(GTK_TABLE(table
), entryLdif
, 1, 2, top
, (top
+ 1),
407 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
409 btnFile
= gtkut_get_browse_file_btn(_("B_rowse"));
410 gtk_table_attach(GTK_TABLE(table
), btnFile
, 2, 3, top
, (top
+ 1),
413 gtk_widget_show_all(vbox
);
416 g_signal_connect(G_OBJECT(btnFile
), "clicked",
417 G_CALLBACK(exp_ldif_file_select
), NULL
);
419 expldif_dlg
.labelBook
= labelBook
;
420 expldif_dlg
.entryLdif
= entryLdif
;
423 static void export_ldif_relative_dn_changed(GtkWidget
*widget
, gpointer data
)
425 gint relativeDN
= combobox_get_active_data(GTK_COMBO_BOX(widget
));
426 GtkLabel
*label
= GTK_LABEL(data
);
429 case EXPORT_LDIF_ID_UID
:
430 gtk_label_set_text(label
,
431 _("The address book Unique ID is used to create a DN that is " \
432 "formatted similar to:\n" \
433 " uid=102376,ou=people,dc=claws-mail,dc=org"));
435 case EXPORT_LDIF_ID_DNAME
:
436 gtk_label_set_text(label
,
437 _("The address book Display Name is used to create a DN that " \
438 "is formatted similar to:\n" \
439 " cn=John Doe,ou=people,dc=claws-mail,dc=org"));
441 case EXPORT_LDIF_ID_EMAIL
:
442 gtk_label_set_text(label
,
443 _("The first Email Address belonging to a person is used to " \
444 "create a DN that is formatted similar to:\n" \
445 " mail=john.doe@domain.com,ou=people,dc=claws-mail,dc=org"));
452 * Format notebook distinguished name page.
453 * \param pageNum Page (tab) number.
454 * \param pageLbl Page (tab) label.
456 static void export_ldif_page_dn( gint pageNum
, gchar
*pageLbl
) {
460 GtkWidget
*entrySuffix
;
461 GtkWidget
*optmenuRDN
;
463 GtkWidget
*checkUseDN
;
464 GtkWidget
*checkEMail
;
469 vbox
= gtk_vbox_new(FALSE
, 8);
470 gtk_container_add( GTK_CONTAINER( expldif_dlg
.notebook
), vbox
);
471 gtk_container_set_border_width( GTK_CONTAINER (vbox
), BORDER_WIDTH
);
473 label
= gtk_label_new( pageLbl
);
474 gtk_widget_show( label
);
475 gtk_notebook_set_tab_label(
476 GTK_NOTEBOOK( expldif_dlg
.notebook
),
477 gtk_notebook_get_nth_page(
478 GTK_NOTEBOOK( expldif_dlg
.notebook
), pageNum
),
481 table
= gtk_table_new( 6, 2, FALSE
);
482 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
483 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
484 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
485 gtk_table_set_col_spacings(GTK_TABLE(table
), 8 );
489 label
= gtk_label_new( _( "Suffix" ) );
490 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
492 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
494 entrySuffix
= gtk_entry_new();
495 gtk_table_attach(GTK_TABLE(table
), entrySuffix
, 1, 2, top
, (top
+ 1),
496 GTK_EXPAND
|GTK_SHRINK
|GTK_FILL
, 0, 0, 0);
498 CLAWS_SET_TIP(entrySuffix
, _(
499 "The suffix is used to create a \"Distinguished Name\" " \
500 "(or DN) for an LDAP entry. Examples include:\n" \
501 " dc=claws-mail,dc=org\n" \
502 " ou=people,dc=domainname,dc=com\n" \
503 " o=Organization Name,c=Country\n"));
507 label
= gtk_label_new( _( "Relative DN" ) );
508 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1),
510 gtk_misc_set_alignment(GTK_MISC(label
), 0, 0.5);
512 optmenuRDN
= gtkut_sc_combobox_create(NULL
, TRUE
);
513 store
= GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(optmenuRDN
)));
515 COMBOBOX_ADD(store
, _("Unique ID"), EXPORT_LDIF_ID_UID
);
516 COMBOBOX_ADD(store
, _("Display Name"), EXPORT_LDIF_ID_DNAME
);
517 COMBOBOX_ADD(store
, _("Email Address"), EXPORT_LDIF_ID_EMAIL
);
519 gtk_table_attach(GTK_TABLE(table
), optmenuRDN
, 1, 2, top
, (top
+ 1),
522 CLAWS_SET_TIP(optmenuRDN
, _(
523 "The LDIF file contains several data records that " \
524 "are usually loaded into an LDAP server. Each data " \
525 "record in the LDIF file is uniquely identified by " \
526 "a \"Distinguished Name\" (or DN). The suffix is " \
527 "appended to the \"Relative Distinguished Name\" "\
528 "(or RDN) to create the DN. Please select one of " \
529 "the available RDN options that will be used to " \
534 labelRDN
= gtk_label_new("");
535 gtk_label_set_line_wrap(GTK_LABEL(labelRDN
), TRUE
);
536 gtk_label_set_justify(GTK_LABEL(labelRDN
), GTK_JUSTIFY_CENTER
);
537 gtk_table_attach(GTK_TABLE(table
), labelRDN
, 0, 2, top
, (top
+ 1),
542 checkUseDN
= gtk_check_button_new_with_label(
543 _( "Use DN attribute if present in data" ) );
544 gtk_table_attach(GTK_TABLE(table
), checkUseDN
, 1, 2, top
, (top
+ 1),
547 CLAWS_SET_TIP(checkUseDN
, _(
548 "The addressbook may contain entries that were " \
549 "previously imported from an LDIF file. The " \
550 "\"Distinguished Name\" (DN) user attribute, if " \
551 "present in the address book data, may be used in " \
552 "the exported LDIF file. The RDN selected above " \
553 "will be used if the DN user attribute is not found."));
557 checkEMail
= gtk_check_button_new_with_label(
558 _( "Exclude record if no Email Address" ) );
559 gtk_table_attach(GTK_TABLE(table
), checkEMail
, 1, 2, top
, (top
+ 1),
562 CLAWS_SET_TIP(checkEMail
, _(
563 "An addressbook may contain entries without " \
564 "Email Addresses. Check this option to ignore " \
568 gtk_widget_show_all(vbox
);
570 g_signal_connect(G_OBJECT(optmenuRDN
), "changed",
571 G_CALLBACK(export_ldif_relative_dn_changed
), labelRDN
);
572 gtk_combo_box_set_active(GTK_COMBO_BOX(optmenuRDN
), 0);
575 expldif_dlg
.entrySuffix
= entrySuffix
;
576 expldif_dlg
.optmenuRDN
= optmenuRDN
;
577 expldif_dlg
.checkUseDN
= checkUseDN
;
578 expldif_dlg
.checkEMail
= checkEMail
;
582 * Format notebook finish page.
583 * \param pageNum Page (tab) number.
584 * \param pageLbl Page (tab) label.
586 static void export_ldif_page_finish( gint pageNum
, gchar
*pageLbl
) {
590 GtkWidget
*labelBook
;
591 GtkWidget
*labelFile
;
594 vbox
= gtk_vbox_new(FALSE
, 8);
595 gtk_container_add( GTK_CONTAINER( expldif_dlg
.notebook
), vbox
);
596 gtk_container_set_border_width( GTK_CONTAINER (vbox
), BORDER_WIDTH
);
598 label
= gtk_label_new( pageLbl
);
599 gtk_widget_show( label
);
600 gtk_notebook_set_tab_label(
601 GTK_NOTEBOOK( expldif_dlg
.notebook
),
602 gtk_notebook_get_nth_page( GTK_NOTEBOOK( expldif_dlg
.notebook
), pageNum
), label
);
604 table
= gtk_table_new( 3, 3, FALSE
);
605 gtk_box_pack_start(GTK_BOX(vbox
), table
, FALSE
, FALSE
, 0);
606 gtk_container_set_border_width( GTK_CONTAINER(table
), 8 );
607 gtk_table_set_row_spacings(GTK_TABLE(table
), 8);
608 gtk_table_set_col_spacings(GTK_TABLE(table
), 8 );
612 label
= gtk_label_new( _( "Address Book:" ) );
613 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
614 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0.5);
616 labelBook
= gtk_label_new("Full name of address book goes here");
617 gtk_table_attach(GTK_TABLE(table
), labelBook
, 1, 2, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
618 gtk_misc_set_alignment(GTK_MISC(labelBook
), 0, 0.5);
622 label
= gtk_label_new( _( "File Name:" ) );
623 gtk_table_attach(GTK_TABLE(table
), label
, 0, 1, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
624 gtk_misc_set_alignment(GTK_MISC(label
), 1, 0.5);
626 labelFile
= gtk_label_new("File name goes here");
627 gtk_table_attach(GTK_TABLE(table
), labelFile
, 1, 2, top
, (top
+ 1), GTK_FILL
, 0, 0, 0);
628 gtk_misc_set_alignment(GTK_MISC(labelFile
), 0, 0.5);
630 gtk_widget_show_all(vbox
);
632 expldif_dlg
.labelOutBook
= labelBook
;
633 expldif_dlg
.labelOutFile
= labelFile
;
637 * Create main dialog decorations (excluding notebook pages).
639 static void export_ldif_dialog_create( void ) {
647 GtkWidget
*btnCancel
;
649 GtkWidget
*statusbar
;
651 window
= gtkut_window_new(GTK_WINDOW_TOPLEVEL
, "expldifdlg");
652 gtk_widget_set_size_request(window
, EXPORTLDIF_WIDTH
, EXPORTLDIF_HEIGHT
);
653 gtk_container_set_border_width( GTK_CONTAINER(window
), 0 );
654 gtk_window_set_title( GTK_WINDOW(window
),
655 _("Export Address Book to LDIF File") );
656 gtk_window_set_position(GTK_WINDOW(window
), GTK_WIN_POS_CENTER
);
657 gtk_window_set_type_hint(GTK_WINDOW(window
), GDK_WINDOW_TYPE_HINT_DIALOG
);
658 g_signal_connect(G_OBJECT(window
), "delete_event",
659 G_CALLBACK(export_ldif_delete_event
),
661 g_signal_connect(G_OBJECT(window
), "key_press_event",
662 G_CALLBACK(export_ldif_key_pressed
),
665 vbox
= gtk_vbox_new(FALSE
, 4);
666 gtk_widget_show(vbox
);
667 gtk_container_add(GTK_CONTAINER(window
), vbox
);
669 vnbox
= gtk_vbox_new(FALSE
, 4);
670 gtk_container_set_border_width(GTK_CONTAINER(vnbox
), 4);
671 gtk_widget_show(vnbox
);
672 gtk_box_pack_start(GTK_BOX(vbox
), vnbox
, TRUE
, TRUE
, 0);
675 notebook
= gtk_notebook_new();
676 gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook
), FALSE
); /* Hide */
677 /* gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook), TRUE ); */
678 gtk_widget_show(notebook
);
679 gtk_box_pack_start(GTK_BOX(vnbox
), notebook
, TRUE
, TRUE
, 0);
680 gtk_container_set_border_width(GTK_CONTAINER(notebook
), 6);
683 hsbox
= gtk_hbox_new(FALSE
, 0);
684 gtk_box_pack_end(GTK_BOX(vbox
), hsbox
, FALSE
, FALSE
, BORDER_WIDTH
);
685 statusbar
= gtk_statusbar_new();
686 gtk_box_pack_start(GTK_BOX(hsbox
), statusbar
, TRUE
, TRUE
, BORDER_WIDTH
);
689 gtkut_stock_button_set_create(&hbbox
, &btnPrev
, GTK_STOCK_GO_BACK
,
690 &btnNext
, GTK_STOCK_GO_FORWARD
,
691 &btnCancel
, GTK_STOCK_CANCEL
);
692 gtk_box_pack_end(GTK_BOX(vbox
), hbbox
, FALSE
, FALSE
, 0);
693 gtk_container_set_border_width(GTK_CONTAINER(hbbox
), 2);
694 gtk_widget_grab_default(btnNext
);
696 /* Button handlers */
697 g_signal_connect(G_OBJECT(btnPrev
), "clicked",
698 G_CALLBACK(export_ldif_prev
), NULL
);
699 g_signal_connect(G_OBJECT(btnNext
), "clicked",
700 G_CALLBACK(export_ldif_next
), NULL
);
701 g_signal_connect(G_OBJECT(btnCancel
), "clicked",
702 G_CALLBACK(export_ldif_cancel
), NULL
);
704 gtk_widget_show_all(vbox
);
706 expldif_dlg
.window
= window
;
707 expldif_dlg
.notebook
= notebook
;
708 expldif_dlg
.btnPrev
= btnPrev
;
709 expldif_dlg
.btnNext
= btnNext
;
710 expldif_dlg
.btnCancel
= btnCancel
;
711 expldif_dlg
.statusbar
= statusbar
;
712 expldif_dlg
.status_cid
= gtk_statusbar_get_context_id(
713 GTK_STATUSBAR(statusbar
), "Export LDIF Dialog" );
717 * Create export LDIF dialog.
719 static void export_ldif_create( void ) {
720 export_ldif_dialog_create();
721 export_ldif_page_file( PAGE_FILE_INFO
, _( "File Info" ) );
722 export_ldif_page_dn( PAGE_DN
, _( "Distinguished Name" ) );
723 export_ldif_page_finish( PAGE_FINISH
, _( "Finish" ) );
724 gtk_widget_show_all( expldif_dlg
.window
);
728 * Populate fields from control data.
729 * \param ctl Export control data.
731 static void export_ldif_fill_fields( ExportLdifCtl
*ctl
) {
732 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entryLdif
), "" );
734 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entryLdif
),
737 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entrySuffix
), "" );
739 gtk_entry_set_text( GTK_ENTRY(expldif_dlg
.entrySuffix
),
743 gtk_combo_box_set_active(
744 GTK_COMBO_BOX( expldif_dlg
.optmenuRDN
), ctl
->rdnIndex
);
745 gtk_toggle_button_set_active(
746 GTK_TOGGLE_BUTTON( expldif_dlg
.checkUseDN
), ctl
->useDN
);
747 gtk_toggle_button_set_active(
748 GTK_TOGGLE_BUTTON( expldif_dlg
.checkEMail
), ctl
->excludeEMail
);
752 * Process export address dialog.
753 * \param cache Address book/data source cache.
755 void addressbook_exp_ldif( AddressCache
*cache
) {
756 /* Set references to control data */
757 _addressCache_
= cache
;
759 _exportCtl_
= exportldif_create();
760 exportldif_load_settings( _exportCtl_
);
763 if( ! expldif_dlg
.window
)
764 export_ldif_create();
766 gtk_button_set_label(GTK_BUTTON(expldif_dlg
.btnCancel
),
768 expldif_dlg
.cancelled
= FALSE
;
769 gtk_widget_show(expldif_dlg
.window
);
770 manage_window_set_transient(GTK_WINDOW(expldif_dlg
.window
));
771 gtk_window_set_modal(GTK_WINDOW(expldif_dlg
.window
), TRUE
);
772 gtk_label_set_text( GTK_LABEL(expldif_dlg
.labelBook
), cache
->name
);
773 gtk_label_set_text( GTK_LABEL(expldif_dlg
.labelOutBook
), cache
->name
);
774 export_ldif_fill_fields( _exportCtl_
);
776 gtk_widget_grab_default(expldif_dlg
.btnNext
);
777 gtk_notebook_set_current_page( GTK_NOTEBOOK(expldif_dlg
.notebook
), PAGE_FILE_INFO
);
778 gtk_widget_set_sensitive( expldif_dlg
.btnPrev
, FALSE
);
779 gtk_widget_set_sensitive( expldif_dlg
.btnNext
, TRUE
);
781 export_ldif_message();
782 gtk_widget_grab_focus(expldif_dlg
.entryLdif
);
785 gtk_widget_hide(expldif_dlg
.window
);
786 gtk_window_set_modal(GTK_WINDOW(expldif_dlg
.window
), FALSE
);
787 exportldif_free( _exportCtl_
);
790 _addressCache_
= NULL
;
794 * ============================================================================
796 * ============================================================================