123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737 |
- /*
- * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 2002-2006 Match Grun and the Claws Mail team
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- */
- /*
- * Export address book to HTML file.
- */
- #ifdef HAVE_CONFIG_H
- # include "config.h"
- #endif
- #include "defs.h"
- #include <glib.h>
- #include <glib/gi18n.h>
- #include <gdk/gdkkeysyms.h>
- #include <gtk/gtkwindow.h>
- #include <gtk/gtksignal.h>
- #include <gtk/gtklabel.h>
- #include <gtk/gtkentry.h>
- #include <gtk/gtktable.h>
- #include <gtk/gtkbutton.h>
- #include "gtkutils.h"
- #include "prefs_common.h"
- #include "alertpanel.h"
- #include "mgutils.h"
- #include "addrcache.h"
- #include "addressitem.h"
- #include "exporthtml.h"
- #include "utils.h"
- #include "manage_window.h"
- #include "filesel.h"
- #include "combobox.h"
- #define PAGE_FILE_INFO 0
- #define PAGE_FORMAT 1
- #define PAGE_FINISH 2
- /**
- * Dialog object.
- */
- static struct _ExpHtml_Dlg {
- GtkWidget *window;
- GtkWidget *notebook;
- GtkWidget *labelBook;
- GtkWidget *entryHtml;
- GtkWidget *optmenuCSS;
- GtkWidget *optmenuName;
- GtkWidget *checkBanding;
- GtkWidget *checkLinkEMail;
- GtkWidget *checkAttributes;
- GtkWidget *labelOutBook;
- GtkWidget *labelOutFile;
- GtkWidget *btnPrev;
- GtkWidget *btnNext;
- GtkWidget *btnCancel;
- GtkWidget *statusbar;
- gint status_cid;
- gboolean cancelled;
- } exphtml_dlg;
- static struct _AddressFileSelection _exp_html_file_selector_;
- static ExportHtmlCtl *_exportCtl_ = NULL;
- static AddressCache *_addressCache_ = NULL;
- /**
- * Display message in status field.
- * \param msg Message to display.
- */
- static void export_html_status_show( gchar *msg ) {
- if( exphtml_dlg.statusbar != NULL ) {
- gtk_statusbar_pop(
- GTK_STATUSBAR(exphtml_dlg.statusbar),
- exphtml_dlg.status_cid );
- if( msg ) {
- gtk_statusbar_push(
- GTK_STATUSBAR(exphtml_dlg.statusbar),
- exphtml_dlg.status_cid, msg );
- }
- }
- }
- /**
- * Select and display status message appropriate for the page being displayed.
- */
- static void export_html_message( void ) {
- gchar *sMsg = NULL;
- gint pageNum;
- pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
- if( pageNum == PAGE_FILE_INFO ) {
- sMsg = _( "Please specify output directory and file to create." );
- }
- else if( pageNum == PAGE_FORMAT ) {
- sMsg = _( "Select stylesheet and formatting." );
- }
- else if( pageNum == PAGE_FINISH ) {
- sMsg = _( "File exported successfully." );
- }
- export_html_status_show( sMsg );
- }
- /**
- * Callback function to cancel HTML file selection dialog.
- * \param widget Widget (button).
- * \param data User data.
- */
- static void export_html_cancel( GtkWidget *widget, gpointer data ) {
- gint pageNum;
- pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
- if( pageNum != PAGE_FINISH ) {
- exphtml_dlg.cancelled = TRUE;
- }
- gtk_main_quit();
- }
- /**
- * Callback function to handle dialog close event.
- * \param widget Widget (dialog).
- * \param event Event object.
- * \param data User data.
- */
- static gint export_html_delete_event( GtkWidget *widget, GdkEventAny *event, gpointer data ) {
- export_html_cancel( widget, data );
- return TRUE;
- }
- /**
- * Callback function to respond to dialog key press events.
- * \param widget Widget.
- * \param event Event object.
- * \param data User data.
- */
- static gboolean export_html_key_pressed( GtkWidget *widget, GdkEventKey *event, gpointer data ) {
- if (event && event->keyval == GDK_Escape) {
- export_html_cancel( widget, data );
- }
- return FALSE;
- }
- /**
- * Test whether we can move off file page.
- * \return <i>TRUE</i> if OK to move off page.
- */
- static gboolean exp_html_move_file( void ) {
- gchar *sFile, *msg, *reason;
- AlertValue aval;
- sFile = gtk_editable_get_chars( GTK_EDITABLE(exphtml_dlg.entryHtml), 0, -1 );
- g_strchug( sFile ); g_strchomp( sFile );
- gtk_entry_set_text( GTK_ENTRY(exphtml_dlg.entryHtml), sFile );
- exporthtml_parse_filespec( _exportCtl_, sFile );
- g_free( sFile );
- /* Test for directory */
- if( exporthtml_test_dir( _exportCtl_ ) ) {
- return TRUE;
- }
- /* Prompt to create */
- msg = g_strdup_printf( _(
- "HTML Output Directory '%s'\n" \
- "does not exist. OK to create new directory?" ),
- _exportCtl_->dirOutput );
- aval = alertpanel( _("Create Directory" ),
- msg, GTK_STOCK_NO, GTK_STOCK_YES, NULL );
- g_free( msg );
- if( aval != G_ALERTALTERNATE ) return FALSE;
- /* Create directory */
- if( ! exporthtml_create_dir( _exportCtl_ ) ) {
- reason = exporthtml_get_create_msg( _exportCtl_ );
- msg = g_strdup_printf( _(
- "Could not create output directory for HTML file:\n%s" ),
- reason );
- aval = alertpanel_full(_("Failed to Create Directory"), msg,
- GTK_STOCK_CLOSE, NULL, NULL, FALSE,
- NULL, ALERT_ERROR, G_ALERTDEFAULT);
- g_free( msg );
- return FALSE;
- }
- return TRUE;
- }
- /**
- * Test whether we can move off format page.
- * \return <i>TRUE</i> if OK to move off page.
- */
- static gboolean exp_html_move_format( void ) {
- gboolean retVal = FALSE;
- gint id;
- /* Set stylesheet */
- id = combobox_get_active_data(GTK_COMBO_BOX(exphtml_dlg.optmenuCSS));
- exporthtml_set_stylesheet( _exportCtl_, id );
- /* Set name format */
- id = combobox_get_active_data(GTK_COMBO_BOX(exphtml_dlg.optmenuName));
- exporthtml_set_name_format( _exportCtl_, id );
- exporthtml_set_banding( _exportCtl_,
- gtk_toggle_button_get_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkBanding ) ) );
- exporthtml_set_link_email( _exportCtl_,
- gtk_toggle_button_get_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkLinkEMail ) ) );
- exporthtml_set_attributes( _exportCtl_,
- gtk_toggle_button_get_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkAttributes ) ) );
- /* Process export */
- exporthtml_process( _exportCtl_, _addressCache_ );
- if( _exportCtl_->retVal == MGU_SUCCESS ) {
- retVal = TRUE;
- }
- else {
- export_html_status_show( _( "Error creating HTML file" ) );
- }
- return retVal;
- }
- /**
- * Display finish page.
- */
- static void exp_html_finish_show( void ) {
- gtk_label_set_text( GTK_LABEL(exphtml_dlg.labelOutFile), _exportCtl_->path );
- gtk_widget_set_sensitive( exphtml_dlg.btnNext, FALSE );
- gtk_widget_grab_focus( exphtml_dlg.btnCancel );
- }
- /**
- * Callback function to select previous page.
- * \param widget Widget (button).
- */
- static void export_html_prev( GtkWidget *widget ) {
- gint pageNum;
- pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
- if( pageNum == PAGE_FORMAT ) {
- /* Goto file page stuff */
- gtk_notebook_set_current_page(
- GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FILE_INFO );
- gtk_widget_set_sensitive( exphtml_dlg.btnPrev, FALSE );
- }
- else if( pageNum == PAGE_FINISH ) {
- /* Goto format page */
- gtk_notebook_set_current_page(
- GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FORMAT );
- gtk_widget_set_sensitive( exphtml_dlg.btnNext, TRUE );
- }
- export_html_message();
- }
- /**
- * Callback function to select previous page.
- * \param widget Widget (button).
- */
- static void export_html_next( GtkWidget *widget ) {
- gint pageNum;
- pageNum = gtk_notebook_get_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
- if( pageNum == PAGE_FILE_INFO ) {
- /* Goto format page */
- if( exp_html_move_file() ) {
- gtk_notebook_set_current_page(
- GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FORMAT );
- gtk_widget_set_sensitive( exphtml_dlg.btnPrev, TRUE );
- }
- export_html_message();
- }
- else if( pageNum == PAGE_FORMAT ) {
- /* Goto finish page */
- if( exp_html_move_format() ) {
- gtk_notebook_set_current_page(
- GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FINISH );
- gtk_button_set_label(GTK_BUTTON(exphtml_dlg.btnCancel),
- GTK_STOCK_CLOSE);
- exp_html_finish_show();
- exporthtml_save_settings( _exportCtl_ );
- export_html_message();
- }
- }
- }
- /**
- * Open file with web browser.
- * \param widget Widget (button).
- * \param data User data.
- */
- static void export_html_browse( GtkWidget *widget, gpointer data ) {
- gchar *uri;
- uri = g_strconcat( "file://", _exportCtl_->path, NULL );
- open_uri( uri, prefs_common.uri_cmd );
- g_free( uri );
- }
- /**
- * Create HTML file selection dialog.
- * \param afs Address file selection data.
- */
- static void exp_html_file_select_create( AddressFileSelection *afs ) {
- gchar *file = filesel_select_file_save(_("Select HTML output file"), NULL);
-
- if (file == NULL)
- afs->cancelled = TRUE;
- else {
- afs->cancelled = FALSE;
- gtk_entry_set_text( GTK_ENTRY(exphtml_dlg.entryHtml), file );
- g_free(file);
- }
- }
- /**
- * Callback function to display HTML file selection dialog.
- */
- static void exp_html_file_select( void ) {
- exp_html_file_select_create( & _exp_html_file_selector_ );
- }
- /**
- * Format notebook file specification page.
- * \param pageNum Page (tab) number.
- * \param pageLbl Page (tab) label.
- */
- static void export_html_page_file( gint pageNum, gchar *pageLbl ) {
- GtkWidget *vbox;
- GtkWidget *table;
- GtkWidget *label;
- GtkWidget *labelBook;
- GtkWidget *entryHtml;
- GtkWidget *btnFile;
- gint top;
- vbox = gtk_vbox_new(FALSE, 8);
- gtk_container_add( GTK_CONTAINER( exphtml_dlg.notebook ), vbox );
- gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
- label = gtk_label_new( pageLbl );
- gtk_widget_show( label );
- gtk_notebook_set_tab_label(
- GTK_NOTEBOOK( exphtml_dlg.notebook ),
- gtk_notebook_get_nth_page(
- GTK_NOTEBOOK( exphtml_dlg.notebook ), pageNum ),
- label );
- table = gtk_table_new( 3, 3, FALSE );
- gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
- gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
- gtk_table_set_row_spacings(GTK_TABLE(table), 8);
- gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
- /* First row */
- top = 0;
- label = gtk_label_new( _( "Address Book" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- labelBook = gtk_label_new( "Address book name goes here" );
- gtk_table_attach(GTK_TABLE(table), labelBook, 1, 2, top, (top + 1),
- GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(labelBook), 0, 0.5);
- /* Second row */
- top++;
- label = gtk_label_new( _( "HTML Output File" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- entryHtml = gtk_entry_new();
- gtk_table_attach(GTK_TABLE(table), entryHtml, 1, 2, top, (top + 1),
- GTK_EXPAND|GTK_SHRINK|GTK_FILL, 0, 0, 0);
- btnFile = gtkut_get_browse_file_btn(_("B_rowse"));
- gtk_table_attach(GTK_TABLE(table), btnFile, 2, 3, top, (top + 1),
- GTK_FILL, 0, 3, 0);
- gtk_widget_show_all(vbox);
- /* Button handler */
- g_signal_connect(G_OBJECT(btnFile), "clicked",
- G_CALLBACK(exp_html_file_select), NULL);
- exphtml_dlg.labelBook = labelBook;
- exphtml_dlg.entryHtml = entryHtml;
- }
- /**
- * Format notebook format page.
- * \param pageNum Page (tab) number.
- * \param pageLbl Page (tab) label.
- */
- static void export_html_page_format( gint pageNum, gchar *pageLbl ) {
- GtkWidget *vbox;
- GtkWidget *table;
- GtkWidget *label;
- GtkWidget *optmenuCSS;
- GtkWidget *optmenuName;
- GtkListStore *menu;
- GtkTreeIter iter;
- GtkWidget *checkBanding;
- GtkWidget *checkLinkEMail;
- GtkWidget *checkAttributes;
- gint top;
- vbox = gtk_vbox_new(FALSE, 8);
- gtk_container_add( GTK_CONTAINER( exphtml_dlg.notebook ), vbox );
- gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
- label = gtk_label_new( pageLbl );
- gtk_widget_show( label );
- gtk_notebook_set_tab_label(
- GTK_NOTEBOOK( exphtml_dlg.notebook ),
- gtk_notebook_get_nth_page(
- GTK_NOTEBOOK( exphtml_dlg.notebook ), pageNum ),
- label );
- table = gtk_table_new( 5, 3, FALSE );
- gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
- gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
- gtk_table_set_row_spacings(GTK_TABLE(table), 8);
- gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
- /* First row */
- top = 0;
- label = gtk_label_new( _( "Stylesheet" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- optmenuCSS = gtkut_sc_combobox_create(NULL, TRUE);
- menu = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(optmenuCSS)));
- COMBOBOX_ADD(menu, _("None"), EXPORT_HTML_ID_NONE);
- COMBOBOX_ADD(menu, _("Default"), EXPORT_HTML_ID_DEFAULT);
- COMBOBOX_ADD(menu, _("Full"), EXPORT_HTML_ID_FULL);
- COMBOBOX_ADD(menu, _("Custom"), EXPORT_HTML_ID_CUSTOM);
- COMBOBOX_ADD(menu, _("Custom-2"), EXPORT_HTML_ID_CUSTOM2);
- COMBOBOX_ADD(menu, _("Custom-3"), EXPORT_HTML_ID_CUSTOM3);
- COMBOBOX_ADD(menu, _("Custom-4"), EXPORT_HTML_ID_CUSTOM4);
- gtk_table_attach(GTK_TABLE(table), optmenuCSS, 1, 2, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- /* Second row */
- top++;
- label = gtk_label_new( _( "Full Name Format" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
- optmenuName = gtkut_sc_combobox_create(NULL, TRUE);
- menu = GTK_LIST_STORE(gtk_combo_box_get_model(GTK_COMBO_BOX(optmenuName)));
- COMBOBOX_ADD(menu, _("First Name, Last Name"), EXPORT_HTML_FIRST_LAST);
- COMBOBOX_ADD(menu, _("Last Name, First Name"), EXPORT_HTML_LAST_FIRST);
- gtk_table_attach(GTK_TABLE(table), optmenuName, 1, 2, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- /* Third row */
- top++;
- checkBanding = gtk_check_button_new_with_label( _( "Color Banding" ) );
- gtk_table_attach(GTK_TABLE(table), checkBanding, 1, 2, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- /* Fourth row */
- top++;
- checkLinkEMail = gtk_check_button_new_with_label( _( "Format Email Links" ) );
- gtk_table_attach(GTK_TABLE(table), checkLinkEMail, 1, 2, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- /* Fifth row */
- top++;
- checkAttributes = gtk_check_button_new_with_label( _( "Format User Attributes" ) );
- gtk_table_attach(GTK_TABLE(table), checkAttributes, 1, 2, top, (top + 1),
- GTK_FILL, 0, 0, 0);
- gtk_widget_show_all(vbox);
- exphtml_dlg.optmenuCSS = optmenuCSS;
- exphtml_dlg.optmenuName = optmenuName;
- exphtml_dlg.checkBanding = checkBanding;
- exphtml_dlg.checkLinkEMail = checkLinkEMail;
- exphtml_dlg.checkAttributes = checkAttributes;
- }
- /**
- * Format notebook finish page.
- * \param pageNum Page (tab) number.
- * \param pageLbl Page (tab) label.
- */
- static void export_html_page_finish( gint pageNum, gchar *pageLbl ) {
- GtkWidget *vbox;
- GtkWidget *table;
- GtkWidget *label;
- GtkWidget *labelBook;
- GtkWidget *labelFile;
- GtkWidget *btnBrowse;
- gint top;
- vbox = gtk_vbox_new(FALSE, 8);
- gtk_container_add( GTK_CONTAINER( exphtml_dlg.notebook ), vbox );
- gtk_container_set_border_width( GTK_CONTAINER (vbox), BORDER_WIDTH );
- label = gtk_label_new( pageLbl );
- gtk_widget_show( label );
- gtk_notebook_set_tab_label(
- GTK_NOTEBOOK( exphtml_dlg.notebook ),
- gtk_notebook_get_nth_page( GTK_NOTEBOOK( exphtml_dlg.notebook ), pageNum ), label );
- table = gtk_table_new( 3, 3, FALSE );
- gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0);
- gtk_container_set_border_width( GTK_CONTAINER(table), 8 );
- gtk_table_set_row_spacings(GTK_TABLE(table), 8);
- gtk_table_set_col_spacings(GTK_TABLE(table), 8 );
- /* First row */
- top = 0;
- label = gtk_label_new( _( "Address Book :" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- labelBook = gtk_label_new("Full name of address book goes here");
- gtk_table_attach(GTK_TABLE(table), labelBook, 1, 2, top, (top + 1), GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(labelBook), 0, 0.5);
- /* Second row */
- top++;
- label = gtk_label_new( _( "File Name :" ) );
- gtk_table_attach(GTK_TABLE(table), label, 0, 1, top, (top + 1), GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(label), 1, 0.5);
- labelFile = gtk_label_new("File name goes here");
- gtk_table_attach(GTK_TABLE(table), labelFile, 1, 2, top, (top + 1), GTK_FILL, 0, 0, 0);
- gtk_misc_set_alignment(GTK_MISC(labelFile), 0, 0.5);
- /* Third row */
- top++;
- btnBrowse = gtk_button_new_with_label( _( "Open with Web Browser" ) );
- gtk_table_attach(GTK_TABLE(table), btnBrowse, 1, 2, top, (top + 1), GTK_FILL, 0, 0, 0);
- gtk_widget_show_all(vbox);
- /* Button handlers */
- g_signal_connect(G_OBJECT(btnBrowse), "clicked",
- G_CALLBACK(export_html_browse), NULL);
- exphtml_dlg.labelOutBook = labelBook;
- exphtml_dlg.labelOutFile = labelFile;
- }
- /**
- * Create main dialog decorations (excluding notebook pages).
- */
- static void export_html_dialog_create( void ) {
- GtkWidget *window;
- GtkWidget *vbox;
- GtkWidget *vnbox;
- GtkWidget *notebook;
- GtkWidget *hbbox;
- GtkWidget *btnPrev;
- GtkWidget *btnNext;
- GtkWidget *btnCancel;
- GtkWidget *hsbox;
- GtkWidget *statusbar;
- window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
- gtk_widget_set_size_request(window, -1, -1 );
- gtk_container_set_border_width( GTK_CONTAINER(window), 0 );
- gtk_window_set_title( GTK_WINDOW(window),
- _("Export Address Book to HTML File") );
- gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER);
- gtk_window_set_modal(GTK_WINDOW(window), TRUE);
- g_signal_connect(G_OBJECT(window), "delete_event",
- G_CALLBACK(export_html_delete_event),
- NULL );
- g_signal_connect(G_OBJECT(window), "key_press_event",
- G_CALLBACK(export_html_key_pressed),
- NULL );
- vbox = gtk_vbox_new(FALSE, 4);
- gtk_widget_show(vbox);
- gtk_container_add(GTK_CONTAINER(window), vbox);
- vnbox = gtk_vbox_new(FALSE, 4);
- gtk_container_set_border_width(GTK_CONTAINER(vnbox), 4);
- gtk_widget_show(vnbox);
- gtk_box_pack_start(GTK_BOX(vbox), vnbox, TRUE, TRUE, 0);
- /* Notebook */
- notebook = gtk_notebook_new();
- gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook), FALSE ); /* Hide */
- /* gtk_notebook_set_show_tabs( GTK_NOTEBOOK(notebook), TRUE ); */
- gtk_widget_show(notebook);
- gtk_box_pack_start(GTK_BOX(vnbox), notebook, TRUE, TRUE, 0);
- gtk_container_set_border_width(GTK_CONTAINER(notebook), 6);
- /* Status line */
- hsbox = gtk_hbox_new(FALSE, 0);
- gtk_box_pack_end(GTK_BOX(vbox), hsbox, FALSE, FALSE, BORDER_WIDTH);
- statusbar = gtk_statusbar_new();
- gtk_box_pack_start(GTK_BOX(hsbox), statusbar, TRUE, TRUE, BORDER_WIDTH);
- /* Button panel */
- gtkut_stock_button_set_create(&hbbox, &btnPrev, GTK_STOCK_GO_BACK,
- &btnNext, GTK_STOCK_GO_FORWARD,
- &btnCancel, GTK_STOCK_CANCEL);
- gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0);
- gtk_container_set_border_width(GTK_CONTAINER(hbbox), 2);
- gtk_widget_grab_default(btnNext);
- /* Button handlers */
- g_signal_connect(G_OBJECT(btnPrev), "clicked",
- G_CALLBACK(export_html_prev), NULL);
- g_signal_connect(G_OBJECT(btnNext), "clicked",
- G_CALLBACK(export_html_next), NULL);
- g_signal_connect(G_OBJECT(btnCancel), "clicked",
- G_CALLBACK(export_html_cancel), NULL);
- gtk_widget_show_all(vbox);
- exphtml_dlg.window = window;
- exphtml_dlg.notebook = notebook;
- exphtml_dlg.btnPrev = btnPrev;
- exphtml_dlg.btnNext = btnNext;
- exphtml_dlg.btnCancel = btnCancel;
- exphtml_dlg.statusbar = statusbar;
- exphtml_dlg.status_cid = gtk_statusbar_get_context_id(
- GTK_STATUSBAR(statusbar), "Export HTML Dialog" );
- }
- /**
- * Create export HTML dialog.
- */
- static void export_html_create( void ) {
- export_html_dialog_create();
- export_html_page_file( PAGE_FILE_INFO, _( "File Info" ) );
- export_html_page_format( PAGE_FORMAT, _( "Format" ) );
- export_html_page_finish( PAGE_FINISH, _( "Finish" ) );
- gtk_widget_show_all( exphtml_dlg.window );
- }
- /**
- * Populate fields from control data.
- * \param ctl Export control data.
- */
- static void export_html_fill_fields( ExportHtmlCtl *ctl ) {
- gtk_entry_set_text( GTK_ENTRY(exphtml_dlg.entryHtml), "" );
- if( ctl->path ) {
- gtk_entry_set_text( GTK_ENTRY(exphtml_dlg.entryHtml),
- ctl->path );
- }
- combobox_select_by_data(
- GTK_COMBO_BOX(exphtml_dlg.optmenuCSS), ctl->stylesheet );
- combobox_select_by_data(
- GTK_COMBO_BOX(exphtml_dlg.optmenuName), ctl->nameFormat );
- gtk_toggle_button_set_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkBanding ), ctl->banding );
- gtk_toggle_button_set_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkLinkEMail ), ctl->linkEMail );
- gtk_toggle_button_set_active(
- GTK_TOGGLE_BUTTON( exphtml_dlg.checkAttributes ), ctl->showAttribs );
- }
- /**
- * Process export address dialog.
- * \param cache Address book/data source cache.
- */
- void addressbook_exp_html( AddressCache *cache ) {
- /* Set references to control data */
- _addressCache_ = cache;
- _exportCtl_ = exporthtml_create();
- exporthtml_load_settings( _exportCtl_ );
- /* Setup GUI */
- if( ! exphtml_dlg.window )
- export_html_create();
- gtk_button_set_label(GTK_BUTTON(exphtml_dlg.btnCancel),
- GTK_STOCK_CANCEL);
- exphtml_dlg.cancelled = FALSE;
- gtk_widget_show(exphtml_dlg.window);
- manage_window_set_transient(GTK_WINDOW(exphtml_dlg.window));
- gtk_label_set_text( GTK_LABEL(exphtml_dlg.labelBook), cache->name );
- gtk_label_set_text( GTK_LABEL(exphtml_dlg.labelOutBook), cache->name );
- export_html_fill_fields( _exportCtl_ );
- gtk_widget_grab_default(exphtml_dlg.btnNext);
- gtk_notebook_set_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FILE_INFO );
- gtk_widget_set_sensitive( exphtml_dlg.btnPrev, FALSE );
- gtk_widget_set_sensitive( exphtml_dlg.btnNext, TRUE );
- export_html_message();
- gtk_widget_grab_focus(exphtml_dlg.entryHtml);
- gtk_main();
- gtk_widget_hide(exphtml_dlg.window);
- exporthtml_free( _exportCtl_ );
- _exportCtl_ = NULL;
- _addressCache_ = NULL;
- }
- /*
- * ============================================================================
- * End of Source.
- * ============================================================================
- */
|