8da5cfd6ba
- unused variables removed - unused functions removed - uninitialized variables checked - missing return statements added - missing function return types added - added parentheses around assignment and && in || when suggested by gcc * src/mh.c * src/folder.c replaced direct calls to folder->scan_tree with folder_scan_tree and restore folder prefs in this function. The folder should not have to deal with them. ( Should now work for all folder types )
762 lines
23 KiB
C
762 lines
23 KiB
C
/*
|
|
* Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
|
|
* Copyright (C) 2002 Match Grun
|
|
*
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* Export address book to HTML file.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "defs.h"
|
|
|
|
#include <glib.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 "intl.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"
|
|
|
|
#define PAGE_FILE_INFO 0
|
|
#define PAGE_FORMAT 1
|
|
#define PAGE_FINISH 2
|
|
|
|
#define EXPORTHTML_WIDTH 480
|
|
#define EXPORTHTML_HEIGHT -1
|
|
|
|
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;
|
|
|
|
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 );
|
|
}
|
|
}
|
|
}
|
|
|
|
static void export_html_message( void ) {
|
|
gchar *sMsg = NULL;
|
|
gint pageNum;
|
|
|
|
pageNum = gtk_notebook_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 );
|
|
}
|
|
|
|
static void export_html_cancel( GtkWidget *widget, gpointer data ) {
|
|
gint pageNum;
|
|
|
|
pageNum = gtk_notebook_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
|
|
if( pageNum != PAGE_FINISH ) {
|
|
exphtml_dlg.cancelled = TRUE;
|
|
}
|
|
gtk_main_quit();
|
|
}
|
|
|
|
static gint export_html_delete_event( GtkWidget *widget, GdkEventAny *event, gpointer data ) {
|
|
export_html_cancel( widget, data );
|
|
return TRUE;
|
|
}
|
|
|
|
static void export_html_key_pressed( GtkWidget *widget, GdkEventKey *event, gpointer data ) {
|
|
if (event && event->keyval == GDK_Escape) {
|
|
export_html_cancel( widget, data );
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Move off file info page.
|
|
* return: TRUE if OK to move off page.
|
|
*/
|
|
static gboolean exp_html_move_file() {
|
|
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, _( "Yes" ), _( "No" ), NULL );
|
|
g_free( msg );
|
|
if( aval != G_ALERTDEFAULT ) 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( _( "Failed to Create Directory" ),
|
|
msg, _( "Close" ), NULL, NULL );
|
|
g_free( msg );
|
|
return FALSE;
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Move off format page.
|
|
* return: TRUE if OK to move off page.
|
|
*/
|
|
static gboolean exp_html_move_format() {
|
|
GtkWidget *menu, *menuItem;
|
|
gint id;
|
|
|
|
/* Set stylesheet */
|
|
menu = gtk_option_menu_get_menu( GTK_OPTION_MENU( exphtml_dlg.optmenuCSS ) );
|
|
menuItem = gtk_menu_get_active( GTK_MENU( menu ) );
|
|
id = GPOINTER_TO_INT( gtk_object_get_user_data(GTK_OBJECT(menuItem)) );
|
|
exporthtml_set_stylesheet( _exportCtl_, id );
|
|
|
|
/* Set name format */
|
|
menu = gtk_option_menu_get_menu( GTK_OPTION_MENU( exphtml_dlg.optmenuName ) );
|
|
menuItem = gtk_menu_get_active( GTK_MENU( menu ) );
|
|
id = GPOINTER_TO_INT( gtk_object_get_user_data(GTK_OBJECT(menuItem)) );
|
|
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_ );
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/*
|
|
* Display finish page.
|
|
*/
|
|
static void exp_html_finish_show() {
|
|
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 );
|
|
}
|
|
|
|
/*
|
|
* Previous button handler.
|
|
*/
|
|
static void export_html_prev( GtkWidget *widget ) {
|
|
gint pageNum;
|
|
|
|
pageNum = gtk_notebook_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
|
|
if( pageNum == PAGE_FORMAT ) {
|
|
/* Goto file page stuff */
|
|
gtk_notebook_set_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_page(
|
|
GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FORMAT );
|
|
gtk_widget_set_sensitive( exphtml_dlg.btnNext, TRUE );
|
|
}
|
|
export_html_message();
|
|
}
|
|
|
|
/*
|
|
* Next button handler.
|
|
*/
|
|
static void export_html_next( GtkWidget *widget ) {
|
|
gint pageNum;
|
|
|
|
pageNum = gtk_notebook_current_page( GTK_NOTEBOOK(exphtml_dlg.notebook) );
|
|
if( pageNum == PAGE_FILE_INFO ) {
|
|
/* Goto format page */
|
|
if( exp_html_move_file() ) {
|
|
gtk_notebook_set_page(
|
|
GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FORMAT );
|
|
gtk_widget_set_sensitive( exphtml_dlg.btnPrev, TRUE );
|
|
}
|
|
}
|
|
else if( pageNum == PAGE_FORMAT ) {
|
|
/* Goto finish page */
|
|
if( exp_html_move_format() ) {
|
|
gtk_notebook_set_page(
|
|
GTK_NOTEBOOK(exphtml_dlg.notebook), PAGE_FINISH );
|
|
exp_html_finish_show();
|
|
exporthtml_save_settings( _exportCtl_ );
|
|
}
|
|
}
|
|
export_html_message();
|
|
}
|
|
|
|
/*
|
|
* Open file with web browser.
|
|
*/
|
|
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 );
|
|
}
|
|
|
|
/*
|
|
* Output file - Ok.
|
|
*/
|
|
static void exp_html_file_ok( GtkWidget *widget, gpointer data ) {
|
|
gchar *sFile;
|
|
AddressFileSelection *afs;
|
|
GtkWidget *fileSel;
|
|
|
|
afs = ( AddressFileSelection * ) data;
|
|
fileSel = afs->fileSelector;
|
|
sFile = gtk_file_selection_get_filename( GTK_FILE_SELECTION(fileSel) );
|
|
|
|
afs->cancelled = FALSE;
|
|
gtk_entry_set_text( GTK_ENTRY(exphtml_dlg.entryHtml), sFile );
|
|
gtk_widget_hide( afs->fileSelector );
|
|
gtk_grab_remove( afs->fileSelector );
|
|
gtk_widget_grab_focus( exphtml_dlg.entryHtml );
|
|
}
|
|
|
|
/*
|
|
* Output file - Cancel.
|
|
*/
|
|
static void exp_html_file_cancel( GtkWidget *widget, gpointer data ) {
|
|
AddressFileSelection *afs = ( AddressFileSelection * ) data;
|
|
afs->cancelled = TRUE;
|
|
gtk_widget_hide( afs->fileSelector );
|
|
gtk_grab_remove( afs->fileSelector );
|
|
gtk_widget_grab_focus( exphtml_dlg.entryHtml );
|
|
}
|
|
|
|
/*
|
|
* Output file - Create.
|
|
*/
|
|
static void exp_html_file_select_create( AddressFileSelection *afs ) {
|
|
GtkWidget *fileSelector;
|
|
|
|
fileSelector = gtk_file_selection_new( _("Select HTML Output File") );
|
|
gtk_file_selection_hide_fileop_buttons( GTK_FILE_SELECTION(fileSelector) );
|
|
gtk_file_selection_complete( GTK_FILE_SELECTION(fileSelector), "*.html" );
|
|
gtk_signal_connect( GTK_OBJECT (GTK_FILE_SELECTION(fileSelector)->ok_button),
|
|
"clicked", GTK_SIGNAL_FUNC (exp_html_file_ok), ( gpointer ) afs );
|
|
gtk_signal_connect( GTK_OBJECT (GTK_FILE_SELECTION(fileSelector)->cancel_button),
|
|
"clicked", GTK_SIGNAL_FUNC (exp_html_file_cancel), ( gpointer ) afs );
|
|
afs->fileSelector = fileSelector;
|
|
afs->cancelled = TRUE;
|
|
}
|
|
|
|
/*
|
|
* Output file - Handle file selection.
|
|
*/
|
|
static void exp_html_file_select( void ) {
|
|
gchar *sFile;
|
|
if( ! _exp_html_file_selector_.fileSelector )
|
|
exp_html_file_select_create( & _exp_html_file_selector_ );
|
|
|
|
sFile = gtk_editable_get_chars( GTK_EDITABLE(exphtml_dlg.entryHtml), 0, -1 );
|
|
gtk_file_selection_set_filename(
|
|
GTK_FILE_SELECTION( _exp_html_file_selector_.fileSelector ),
|
|
sFile );
|
|
g_free( sFile );
|
|
gtk_widget_show( _exp_html_file_selector_.fileSelector );
|
|
gtk_grab_add( _exp_html_file_selector_.fileSelector );
|
|
}
|
|
|
|
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 = gtk_button_new_with_label( _(" ... "));
|
|
gtk_table_attach(GTK_TABLE(table), btnFile, 2, 3, top, (top + 1),
|
|
GTK_FILL, 0, 3, 0);
|
|
|
|
gtk_widget_show_all(vbox);
|
|
|
|
/* Button handler */
|
|
gtk_signal_connect(GTK_OBJECT(btnFile), "clicked",
|
|
GTK_SIGNAL_FUNC(exp_html_file_select), NULL);
|
|
|
|
exphtml_dlg.labelBook = labelBook;
|
|
exphtml_dlg.entryHtml = entryHtml;
|
|
}
|
|
|
|
static void export_html_page_format( gint pageNum, gchar *pageLbl ) {
|
|
GtkWidget *vbox;
|
|
GtkWidget *table;
|
|
GtkWidget *label;
|
|
GtkWidget *optmenuCSS;
|
|
GtkWidget *optmenuName;
|
|
GtkWidget *menu;
|
|
GtkWidget *menuItem;
|
|
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);
|
|
|
|
menu = gtk_menu_new ();
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "None" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_NONE ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Default" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_DEFAULT ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Full" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_FULL ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Custom" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_CUSTOM ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Custom-2" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_CUSTOM2 ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Custom-3" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_CUSTOM3 ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Custom-4" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_ID_CUSTOM4 ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
optmenuCSS = gtk_option_menu_new();
|
|
gtk_option_menu_set_menu( GTK_OPTION_MENU( optmenuCSS ), menu );
|
|
|
|
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);
|
|
|
|
menu = gtk_menu_new ();
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "First Name, Last Name" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_FIRST_LAST ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
menuItem = gtk_menu_item_new_with_label( _( "Last Name, First Name" ) );
|
|
gtk_object_set_user_data( GTK_OBJECT( menuItem ),
|
|
GINT_TO_POINTER( EXPORT_HTML_LAST_FIRST ) );
|
|
gtk_menu_append( GTK_MENU(menu), menuItem );
|
|
gtk_widget_show( menuItem );
|
|
|
|
optmenuName = gtk_option_menu_new();
|
|
gtk_option_menu_set_menu( GTK_OPTION_MENU( optmenuName ), menu );
|
|
|
|
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 E-Mail 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;
|
|
}
|
|
|
|
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), 0, 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), 0, 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 */
|
|
gtk_signal_connect( GTK_OBJECT(btnBrowse), "clicked",
|
|
GTK_SIGNAL_FUNC(export_html_browse), NULL );
|
|
|
|
exphtml_dlg.labelOutBook = labelBook;
|
|
exphtml_dlg.labelOutFile = labelFile;
|
|
}
|
|
|
|
static void export_html_dialog_create() {
|
|
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_DIALOG);
|
|
gtk_widget_set_usize(window, EXPORTHTML_WIDTH, EXPORTHTML_HEIGHT );
|
|
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);
|
|
gtk_signal_connect(GTK_OBJECT(window), "delete_event",
|
|
GTK_SIGNAL_FUNC(export_html_delete_event),
|
|
NULL );
|
|
gtk_signal_connect(GTK_OBJECT(window), "key_press_event",
|
|
GTK_SIGNAL_FUNC(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 );
|
|
/* 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_button_set_create(&hbbox, &btnPrev, _( "Prev" ),
|
|
&btnNext, _( "Next" ),
|
|
&btnCancel, _( "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 */
|
|
gtk_signal_connect(GTK_OBJECT(btnPrev), "clicked",
|
|
GTK_SIGNAL_FUNC(export_html_prev), NULL);
|
|
gtk_signal_connect(GTK_OBJECT(btnNext), "clicked",
|
|
GTK_SIGNAL_FUNC(export_html_next), NULL);
|
|
gtk_signal_connect(GTK_OBJECT(btnCancel), "clicked",
|
|
GTK_SIGNAL_FUNC(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" );
|
|
|
|
}
|
|
|
|
static void export_html_create() {
|
|
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.
|
|
* Enter: 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 );
|
|
}
|
|
|
|
gtk_option_menu_set_history(
|
|
GTK_OPTION_MENU( exphtml_dlg.optmenuCSS ), ctl->stylesheet );
|
|
gtk_option_menu_set_history(
|
|
GTK_OPTION_MENU( 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.
|
|
* Enter: 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();
|
|
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_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.
|
|
*/
|
|
|