/* * Claws Mail -- a GTK based, lightweight, and fast e-mail client * Copyright (C) 2001-2022 the Claws Mail team and 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 3 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, see . */ /* * Edit JPilot address book data. */ #ifdef HAVE_CONFIG_H # include "config.h" #include "claws-features.h" #endif #ifdef USE_JPILOT #include "defs.h" #include #include #include #include #include "addressbook.h" #include "prefs_common.h" #include "addressitem.h" #include "jpilot.h" #include "mgutils.h" #include "filesel.h" #include "gtkutils.h" #include "codeconv.h" #include "manage_window.h" #define ADDRESSBOOK_GUESS_JPILOT "MyJPilot" #define JPILOT_NUM_CUSTOM_LABEL 4 static struct _JPilotEdit { GtkWidget *window; GtkWidget *name_entry; GtkWidget *file_entry; GtkWidget *custom_check[JPILOT_NUM_CUSTOM_LABEL]; GtkWidget *custom_label[JPILOT_NUM_CUSTOM_LABEL]; GtkWidget *ok_btn; GtkWidget *cancel_btn; GtkWidget *statusbar; gint status_cid; } jpilotedit; /* * Edit functions. */ static void edit_jpilot_status_show( gchar *msg ) { if( jpilotedit.statusbar != NULL ) { gtk_statusbar_pop( GTK_STATUSBAR(jpilotedit.statusbar), jpilotedit.status_cid ); if( msg ) { gtk_statusbar_push( GTK_STATUSBAR(jpilotedit.statusbar), jpilotedit.status_cid, msg ); } } } static gint edit_jpilot_delete_event( GtkWidget *widget, GdkEventAny *event, gboolean *cancelled ) { *cancelled = TRUE; gtk_main_quit(); return TRUE; } static gboolean edit_jpilot_key_pressed( GtkWidget *widget, GdkEventKey *event, gboolean *cancelled ) { if (event && event->keyval == GDK_KEY_Escape) { *cancelled = TRUE; gtk_main_quit(); } return FALSE; } static void edit_jpilot_ok( GtkWidget *widget, gboolean *cancelled ) { *cancelled = FALSE; gtk_main_quit(); } static void edit_jpilot_cancel( GtkWidget *widget, gboolean *cancelled ) { *cancelled = TRUE; gtk_main_quit(); } static void edit_jpilot_fill_check_box( JPilotFile *jpf ) { gint i; GList *node, *customLbl = NULL; gchar *labelName; gboolean done, checked; for( i = 0; i < JPILOT_NUM_CUSTOM_LABEL; i++ ) { gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( jpilotedit.custom_check[i] ), FALSE ); gtk_label_set_text( GTK_LABEL( jpilotedit.custom_label[i] ), "" ); } done = FALSE; i = 0; customLbl = jpilot_load_custom_label( jpf, customLbl ); node = customLbl; while( ! done ) { if( node ) { labelName = node->data; gtk_label_set_text( GTK_LABEL( jpilotedit.custom_label[i] ), labelName ); checked = jpilot_test_custom_label( jpf, labelName ); gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( jpilotedit.custom_check[i] ), checked ); i++; if( i >= JPILOT_NUM_CUSTOM_LABEL ) done = TRUE; node = g_list_next( node ); } else { done = TRUE; } } g_list_free_full( customLbl, g_free ); customLbl = NULL; } static void edit_jpilot_fill_check_box_new() { gint i; for( i = 0; i < JPILOT_NUM_CUSTOM_LABEL; i++ ) { gtk_toggle_button_set_active( GTK_TOGGLE_BUTTON( jpilotedit.custom_check[i] ), FALSE ); gtk_label_set_text( GTK_LABEL( jpilotedit.custom_label[i] ), "" ); } } static void edit_jpilot_read_check_box( JPilotFile *pilotFile ) { gint i; const gchar *labelName; jpilot_clear_custom_labels( pilotFile ); for( i = 0; i < JPILOT_NUM_CUSTOM_LABEL; i++ ) { if( gtk_toggle_button_get_active( GTK_TOGGLE_BUTTON(jpilotedit.custom_check[i]) ) ) { labelName = gtk_label_get_label (GTK_LABEL(jpilotedit.custom_label[i])); jpilot_add_custom_label( pilotFile, labelName ); } } } static void edit_jpilot_file_check( void ) { gint t = -1; gchar *sFile; gchar *sFSFile; gchar *sMsg; gboolean flg; flg = FALSE; sFile = gtk_editable_get_chars( GTK_EDITABLE(jpilotedit.file_entry), 0, -1 ); if( sFile ) { sFSFile = conv_filename_from_utf8( sFile ); if( sFSFile && *sFSFile != '\0' ) { /* Attempt to read file */ JPilotFile *jpf; jpf = jpilot_create_path( sFSFile ); t = jpilot_read_data( jpf ); if( t == MGU_SUCCESS ) { /* Set check boxes */ edit_jpilot_fill_check_box( jpf ); flg = TRUE; } jpilot_free( jpf ); jpf = NULL; } g_free( sFSFile ); g_free( sFile ); } if( ! flg ) { /* Clear all check boxes */ edit_jpilot_fill_check_box_new(); } /* Display appropriate message */ if( t == MGU_SUCCESS ) { sMsg = ""; } else if( t == MGU_BAD_FORMAT || t == MGU_OO_MEMORY ) { sMsg = _("File does not appear to be JPilot format."); } else { sMsg = _("Could not read file."); } edit_jpilot_status_show( sMsg ); } static void edit_jpilot_file_select( void ) { gchar *sFile; gchar *sUTF8File; sFile = filesel_select_file_open( _("Select JPilot File"), NULL); if( sFile ) { sUTF8File = conv_filename_to_utf8( sFile ); gtk_entry_set_text( GTK_ENTRY(jpilotedit.file_entry), sUTF8File ); g_free( sUTF8File ); g_free( sFile ); edit_jpilot_file_check(); } } static void addressbook_edit_jpilot_create( gboolean *cancelled ) { GtkWidget *window; GtkWidget *vbox; GtkWidget *table; GtkWidget *label; GtkWidget *name_entry; GtkWidget *file_entry; GtkWidget *vbox_custom; GtkWidget *frame_custom; GtkWidget *custom_check[JPILOT_NUM_CUSTOM_LABEL]; GtkWidget *custom_label[JPILOT_NUM_CUSTOM_LABEL]; GtkWidget *hlbox; GtkWidget *hbbox; GtkWidget *hsep; GtkWidget *ok_btn; GtkWidget *cancel_btn; GtkWidget *check_btn; GtkWidget *file_btn; GtkWidget *hsbox; GtkWidget *statusbar; gint i; window = gtkut_window_new(GTK_WINDOW_TOPLEVEL, "editjpilot"); gtk_widget_set_size_request(window, 450, -1); gtk_container_set_border_width(GTK_CONTAINER(window), 0); gtk_window_set_title(GTK_WINDOW(window), _("Edit JPilot Entry")); gtk_window_set_position(GTK_WINDOW(window), GTK_WIN_POS_CENTER); g_signal_connect(G_OBJECT(window), "delete_event", G_CALLBACK(edit_jpilot_delete_event), cancelled); g_signal_connect(G_OBJECT(window), "key_press_event", G_CALLBACK(edit_jpilot_key_pressed), cancelled); vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 8); gtk_container_add(GTK_CONTAINER(window), vbox); gtk_container_set_border_width( GTK_CONTAINER(vbox), 0 ); table = gtk_grid_new(); gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); gtk_container_set_border_width( GTK_CONTAINER(table), 8 ); gtk_grid_set_row_spacing(GTK_GRID(table), 8); gtk_grid_set_column_spacing(GTK_GRID(table), 8); /* First row */ label = gtk_label_new(_("Name")); gtk_label_set_xalign(GTK_LABEL(label), 0.0); gtk_grid_attach(GTK_GRID(table), label, 0, 0, 1, 1); name_entry = gtk_entry_new(); gtk_grid_attach(GTK_GRID(table), name_entry, 1, 0, 1, 1); gtk_widget_set_hexpand(name_entry, TRUE); gtk_widget_set_halign(name_entry, GTK_ALIGN_FILL); check_btn = gtk_button_new_with_label( _(" Check File ")); gtk_grid_attach(GTK_GRID(table), check_btn, 2, 0, 1, 1); /* Second row */ label = gtk_label_new(_("File")); gtk_label_set_xalign(GTK_LABEL(label), 0.0); gtk_grid_attach(GTK_GRID(table), label, 0, 1, 1, 1); file_entry = gtk_entry_new(); gtk_grid_attach(GTK_GRID(table), file_entry, 1, 1, 1, 1); gtk_widget_set_hexpand(file_entry, TRUE); gtk_widget_set_halign(file_entry, GTK_ALIGN_FILL); file_btn = gtkut_get_browse_file_btn(_("_Browse")); gtk_grid_attach(GTK_GRID(table), file_btn, 2, 1, 1, 1); /* Third row */ frame_custom = gtk_frame_new(_("Additional e-Mail address item(s)")); gtk_grid_attach(GTK_GRID(table), frame_custom, 1, 2, 1, 1); /* Now do custom labels. */ vbox_custom = gtk_box_new(GTK_ORIENTATION_VERTICAL, 8); for( i = 0; i < JPILOT_NUM_CUSTOM_LABEL; i++ ) { hlbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 0 ); custom_check[i] = gtk_check_button_new(); custom_label[i] = gtk_label_new( "" ); gtk_box_pack_start( GTK_BOX(hlbox), custom_check[i], FALSE, FALSE, 0 ); gtk_box_pack_start( GTK_BOX(hlbox), custom_label[i], TRUE, TRUE, 0 ); gtk_box_pack_start( GTK_BOX(vbox_custom), hlbox, TRUE, TRUE, 0 ); gtk_label_set_xalign(GTK_LABEL(custom_label[1]), 0.0); } gtk_container_add (GTK_CONTAINER (frame_custom), vbox_custom); gtk_container_set_border_width( GTK_CONTAINER(vbox_custom), 8 ); /* Status line */ hsbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 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, &cancel_btn, NULL, _("_Cancel"), &ok_btn, NULL, _("_OK"), NULL, NULL, NULL); gtk_box_pack_end(GTK_BOX(vbox), hbbox, FALSE, FALSE, 0); gtk_container_set_border_width( GTK_CONTAINER(hbbox), 0 ); gtk_widget_grab_default(ok_btn); hsep = gtk_separator_new(GTK_ORIENTATION_HORIZONTAL); gtk_box_pack_end(GTK_BOX(vbox), hsep, FALSE, FALSE, 0); g_signal_connect(G_OBJECT(ok_btn), "clicked", G_CALLBACK(edit_jpilot_ok), cancelled); g_signal_connect(G_OBJECT(cancel_btn), "clicked", G_CALLBACK(edit_jpilot_cancel), cancelled); g_signal_connect(G_OBJECT(file_btn), "clicked", G_CALLBACK(edit_jpilot_file_select), NULL); g_signal_connect(G_OBJECT(check_btn), "clicked", G_CALLBACK(edit_jpilot_file_check), NULL); gtk_widget_show_all(vbox); jpilotedit.window = window; jpilotedit.name_entry = name_entry; jpilotedit.file_entry = file_entry; jpilotedit.ok_btn = ok_btn; jpilotedit.cancel_btn = cancel_btn; jpilotedit.statusbar = statusbar; jpilotedit.status_cid = gtk_statusbar_get_context_id( GTK_STATUSBAR(statusbar), "Edit JPilot Dialog" ); for( i = 0; i < JPILOT_NUM_CUSTOM_LABEL; i++ ) { jpilotedit.custom_check[i] = custom_check[i]; jpilotedit.custom_label[i] = custom_label[i]; } } AdapterDSource *addressbook_edit_jpilot( AddressIndex *addrIndex, AdapterDSource *ads ) { static gboolean cancelled; gchar *sName; gchar *sFile; gchar *sFSFile; AddressDataSource *ds = NULL; JPilotFile *jpf = NULL; gboolean fin; if( ! jpilotedit.window ) addressbook_edit_jpilot_create(&cancelled); gtk_widget_grab_focus(jpilotedit.ok_btn); gtk_widget_grab_focus(jpilotedit.name_entry); gtk_widget_show(jpilotedit.window); manage_window_set_transient(GTK_WINDOW(jpilotedit.window)); gtk_window_set_modal(GTK_WINDOW(jpilotedit.window), TRUE); edit_jpilot_status_show( "" ); if( ads ) { ds = ads->dataSource; jpf = ds->rawDataSource; if ( jpilot_get_name( jpf ) ) gtk_entry_set_text(GTK_ENTRY(jpilotedit.name_entry), jpilot_get_name( jpf ) ); if (jpf->path) gtk_entry_set_text(GTK_ENTRY(jpilotedit.file_entry), jpf->path); gtk_window_set_title( GTK_WINDOW(jpilotedit.window), _("Edit JPilot Entry")); edit_jpilot_fill_check_box( jpf ); } else { gchar *guessFile = jpilot_find_pilotdb(); gtk_entry_set_text(GTK_ENTRY(jpilotedit.name_entry), ADDRESSBOOK_GUESS_JPILOT ); gtk_entry_set_text(GTK_ENTRY(jpilotedit.file_entry), guessFile ); gtk_window_set_title( GTK_WINDOW(jpilotedit.window), _("Add New JPilot Entry")); edit_jpilot_fill_check_box_new(); if( *guessFile != '\0' ) { edit_jpilot_file_check(); } } gtk_main(); gtk_widget_hide(jpilotedit.window); gtk_window_set_modal(GTK_WINDOW(jpilotedit.window), FALSE); if (cancelled == TRUE) return NULL; fin = FALSE; sName = gtk_editable_get_chars( GTK_EDITABLE(jpilotedit.name_entry), 0, -1 ); sFile = gtk_editable_get_chars( GTK_EDITABLE(jpilotedit.file_entry), 0, -1 ); sFSFile = conv_filename_from_utf8( sFile ); if( *sName == '\0' ) fin = TRUE; if( *sFile == '\0' ) fin = TRUE; if( ! sFSFile || *sFSFile == '\0' ) fin = TRUE; if( ! fin ) { if( ! ads ) { jpf = jpilot_create(); ds = addrindex_index_add_datasource( addrIndex, ADDR_IF_JPILOT, jpf ); ads = addressbook_create_ds_adapter( ds, ADDR_JPILOT, NULL ); } addressbook_ads_set_name( ads, sName ); jpilot_set_name( jpf, sName ); jpilot_set_file( jpf, sFSFile ); edit_jpilot_read_check_box( jpf ); } g_free( sFSFile ); g_free( sFile ); g_free( sName ); return ads; } #endif /* USE_JPILOT */ /* * End of Source. */