/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * addressbook.c: * * Author: * Chris Lahey (clahey@helixcode.com) * * (C) 2000 Helix Code, Inc. */ #include #include #include #include #include "addressbook.h" #include #include #include #include "addressbook/gui/search/e-addressbook-search-dialog.h" #include "addressbook/gui/widgets/e-addressbook-view.h" #include #include #include "e-contact-editor.h" #include "e-contact-save-as.h" #include "e-ldap-server-dialog.h" #include #define CONTROL_FACTORY_ID "OAFIID:control-factory:addressbook:3e10597b-0591-4d45-b082-d781b7aa6e17" #define PROPERTY_FOLDER_URI "folder_uri" #define PROPERTY_FOLDER_URI_IDX 1 typedef struct { EAddressbookView *view; GtkWidget *vbox; BonoboControl *control; BonoboPropertyBag *properties; char *uri; } AddressbookView; static void change_view_type (AddressbookView *view, EAddressbookViewType view_type); static void control_deactivate (BonoboControl *control, BonoboUIHandler *uih) { Bonobo_UIContainer container = bonobo_ui_compat_get_container (uih); g_return_if_fail (container != CORBA_OBJECT_NIL); bonobo_ui_component_rm ( bonobo_ui_compat_get_component (uih), container, "/", NULL); } static void card_added_cb (EBook* book, EBookStatus status, const char *id, gpointer user_data) { g_print ("%s: %s(): a card was added\n", __FILE__, __FUNCTION__); } static void card_modified_cb (EBook* book, EBookStatus status, gpointer user_data) { g_print ("%s: %s(): a card was modified\n", __FILE__, __FUNCTION__); } /* Callback for the add_card signal from the contact editor */ static void add_card_cb (EContactEditor *ce, ECard *card, gpointer data) { EBook *book; book = E_BOOK (data); e_book_add_card (book, card, card_added_cb, NULL); } /* Callback for the commit_card signal from the contact editor */ static void commit_card_cb (EContactEditor *ce, ECard *card, gpointer data) { EBook *book; book = E_BOOK (data); e_book_commit_card (book, card, card_modified_cb, NULL); } /* Callback for the delete_card signal from the contact editor */ static void delete_card_cb (EContactEditor *ce, ECard *card, gpointer data) { EBook *book; book = E_BOOK (data); e_book_remove_card (book, card, card_modified_cb, NULL); } /* Callback used when the contact editor is closed */ static void editor_closed_cb (EContactEditor *ce, gpointer data) { gtk_object_unref (GTK_OBJECT (ce)); } static void new_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path) { ECard *card; EBook *book; EContactEditor *ce; AddressbookView *view = (AddressbookView *) user_data; card = e_card_new(""); gtk_object_get(GTK_OBJECT(view->view), "book", &book, NULL); g_assert (E_IS_BOOK (book)); ce = e_contact_editor_new (card, TRUE); gtk_signal_connect (GTK_OBJECT (ce), "add_card", GTK_SIGNAL_FUNC (add_card_cb), book); gtk_signal_connect (GTK_OBJECT (ce), "commit_card", GTK_SIGNAL_FUNC (commit_card_cb), book); gtk_signal_connect (GTK_OBJECT (ce), "delete_card", GTK_SIGNAL_FUNC (delete_card_cb), book); gtk_signal_connect (GTK_OBJECT (ce), "editor_closed", GTK_SIGNAL_FUNC (editor_closed_cb), NULL); gtk_object_sink(GTK_OBJECT(card)); } static void toggle_view_as_cb (BonoboUIHandler *uih, void *user_data, const char *path) { AddressbookView *view = user_data; EAddressbookViewType view_type; gtk_object_get(GTK_OBJECT(view), "type", &view_type, NULL); if (view_type == E_ADDRESSBOOK_VIEW_TABLE) change_view_type (view, E_ADDRESSBOOK_VIEW_MINICARD); else change_view_type (view, E_ADDRESSBOOK_VIEW_TABLE); } #ifdef HAVE_LDAP static void null_cb (EBook *book, EBookStatus status, gpointer closure) { } static void new_server_cb (BonoboUIHandler *uih, void *user_data, const char *path) { ELDAPServer *server = g_new (ELDAPServer, 1); EBook *book; AddressbookView *view = (AddressbookView *) user_data; /* fill in the defaults */ server->name = g_strdup(""); server->host = g_strdup(""); server->port = g_strdup_printf("%d", 389); server->description = g_strdup(""); server->rootdn = g_strdup(""); server->uri = g_strdup_printf ("ldap://%s:%s/%s", server->host, server->port, server->rootdn); e_ldap_server_editor_show (server); gtk_object_get(GTK_OBJECT(view->view), "book", &book, NULL); g_assert (E_IS_BOOK (book)); /* write out the new server info */ e_ldap_storage_add_server (server); /* now update the view */ e_book_unload_uri (book); if (! e_book_load_uri (book, server->uri, null_cb, NULL)) { g_warning ("error calling load_uri!\n"); } } #endif static void search_cb (BonoboUIHandler *uih, void *user_data, const char *path) { EBook *book; AddressbookView *view = (AddressbookView *) user_data; gtk_object_get(GTK_OBJECT(view->view), "book", &book, NULL); g_assert (E_IS_BOOK (book)); gtk_widget_show(e_addressbook_search_dialog_new(book)); } #if 0 static void find_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path) { gint result; GtkWidget* search_entry = gtk_entry_new(); gchar* search_text; AddressbookView *view = (AddressbookView *) user_data; GtkWidget* dlg = gnome_dialog_new ("Search Contacts", "Find", GNOME_STOCK_BUTTON_CANCEL, NULL); gtk_object_get (view->view, "query", &search_text, NULL); e_utf8_gtk_entry_set_text(GTK_ENTRY(search_entry), search_text); g_free (search_text); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (dlg)->vbox), search_entry, TRUE, TRUE, 0); gtk_widget_show_all (dlg); gnome_dialog_close_hides (GNOME_DIALOG (dlg), TRUE); result = gnome_dialog_run_and_close (GNOME_DIALOG (dlg)); /* If the user clicks "okay"...*/ if (result == 0) { search_text = e_utf8_gtk_entry_get_text(GTK_ENTRY(search_entry)); gtk_object_set (view->view, "query", query, NULL); g_free (search_text); } } #endif static void delete_contact_cb (BonoboUIHandler *uih, void *user_data, const char *path) { AddressbookView *view = (AddressbookView *) user_data; e_addressbook_view_delete_selection(view->view); } static void print_cb (BonoboUIHandler *uih, void *user_data, const char *path) { AddressbookView *view = (AddressbookView *) user_data; e_addressbook_view_print(view->view); } static void search_entry_activated (GtkWidget* widget, gpointer user_data) { char* search_word = e_utf8_gtk_entry_get_text(GTK_ENTRY(widget)); char* search_query; AddressbookView *view = (AddressbookView *) user_data; if (search_word && strlen (search_word)) search_query = g_strdup_printf ( "(contains \"x-evolution-any-field\" \"%s\")", search_word); else search_query = g_strdup ( "(contains \"full_name\" \"\")"); gtk_object_set (GTK_OBJECT(view->view), "query", search_query, NULL); g_free (search_query); g_free (search_word); } static GtkWidget* make_quick_search_widget (GtkSignalFunc start_search_func, gpointer user_data_for_search) { GtkWidget *search_vbox = gtk_vbox_new (FALSE, 0); GtkWidget *search_entry = gtk_entry_new (); if (start_search_func) { gtk_signal_connect (GTK_OBJECT (search_entry), "activate", (GtkSignalFunc) search_entry_activated, user_data_for_search); } /* add the search entry to the our search_vbox */ gtk_box_pack_start (GTK_BOX (search_vbox), search_entry, FALSE, TRUE, 3); gtk_box_pack_start (GTK_BOX (search_vbox), gtk_label_new("Quick Search"), FALSE, TRUE, 0); return search_vbox; } BonoboUIVerb verbs [] = { BONOBO_UI_VERB ("ContactsPrint", print_cb), BONOBO_UI_VERB ("ViewAsTable", toggle_view_as_cb), BONOBO_UI_VERB ("ViewNewContact", new_contact_cb), BONOBO_UI_VERB ("ToolSearch", search_cb), BONOBO_UI_VERB ("ContactNew", new_contact_cb), /* BONOBO_UI_VERB ("ContactFind", find_contact_cb),*/ BONOBO_UI_VERB ("ContactDelete", delete_contact_cb), BONOBO_UI_VERB_END }; static void control_activate (BonoboControl *control, BonoboUIHandler *uih, AddressbookView *view) { Bonobo_UIHandler remote_uih; char *fname; xmlNode *ui; Bonobo_UIContainer container; BonoboUIComponent *component; GtkWidget *quick_search_widget; BonoboControl *search_control; remote_uih = bonobo_control_get_remote_ui_handler (control); bonobo_ui_handler_set_container (uih, remote_uih); bonobo_object_release_unref (remote_uih, NULL); #warning FIXME; this needs to be sorted. #if 0 #ifdef HAVE_LDAP bonobo_ui_handler_menu_new_item (uih, "/Actions/New Directory Server", N_("N_ew Directory Server"), NULL, -1, BONOBO_UI_HANDLER_PIXMAP_NONE, NULL, 0, 0, new_server_cb, (gpointer)view); #endif #endif component = bonobo_ui_compat_get_component (uih); bonobo_ui_component_add_verb_list_with_data ( component, verbs, view); container = bonobo_ui_compat_get_container (uih); g_return_if_fail (container != CORBA_OBJECT_NIL); bonobo_ui_container_freeze (container, NULL); fname = bonobo_ui_util_get_ui_fname ( "evolution-addressbook.xml"); g_warning ("Attempting ui load from '%s'", fname); ui = bonobo_ui_util_new_ui (component, fname, "evolution-addressbook"); bonobo_ui_component_set_tree (component, container, "/", ui, NULL); g_free (fname); xmlFreeNode (ui); quick_search_widget = make_quick_search_widget ( search_entry_activated, view); gtk_widget_show_all (quick_search_widget); search_control = bonobo_control_new (quick_search_widget); bonobo_ui_container_object_set ( container, "/Toolbar/QuickSearch", bonobo_object_corba_objref (BONOBO_OBJECT (search_control)), NULL); bonobo_ui_container_thaw (container, NULL); } static void control_activate_cb (BonoboControl *control, gboolean activate, AddressbookView *view) { BonoboUIHandler *uih; uih = bonobo_control_get_ui_handler (control); g_assert (uih); if (activate) control_activate (control, uih, view); else control_deactivate (control, uih); } static void addressbook_view_free(AddressbookView *view) { if (view->properties) bonobo_object_unref(BONOBO_OBJECT(view->properties)); g_free(view->uri); g_free(view); } static void book_open_cb (EBook *book, EBookStatus status, gpointer closure) { if (status == E_BOOK_STATUS_SUCCESS) { AddressbookView *view = closure; gtk_object_set(GTK_OBJECT(view->view), "book", book, NULL); } else { GtkWidget *warning_dialog, *label, *href; warning_dialog = gnome_dialog_new ( _("Unable to open addressbook"), GNOME_STOCK_BUTTON_CLOSE, NULL); label = gtk_label_new ( _("We were unable to open this addressbook. This either\n" "means you have entered an incorrect URI, or have tried\n" "to access an LDAP server and don't have LDAP support\n" "compiled in. If you've entered a URI, check the URI for\n" "correctness and reenter. If not, you probably have\n" "attempted to access an LDAP server. If you wish to be\n" "able to use LDAP, you'll need to download and install\n" "OpenLDAP and recompile and install evolution.\n")); gtk_misc_set_alignment(GTK_MISC(label), 0, .5); gtk_label_set_justify(GTK_LABEL(label), GTK_JUSTIFY_LEFT); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), label, TRUE, TRUE, 0); gtk_widget_show (label); href = gnome_href_new ("http://www.openldap.org/", "OpenLDAP at http://www.openldap.org/"); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (warning_dialog)->vbox), href, FALSE, FALSE, 0); gtk_widget_show (href); gnome_dialog_run (GNOME_DIALOG (warning_dialog)); gtk_object_destroy (GTK_OBJECT (warning_dialog)); } } static void destroy_callback(GtkWidget *widget, gpointer data) { AddressbookView *view = data; addressbook_view_free(view); } static void get_prop (BonoboPropertyBag *bag, BonoboArg *arg, guint arg_id, gpointer user_data) { AddressbookView *view = user_data; switch (arg_id) { case PROPERTY_FOLDER_URI_IDX: if (view && view->uri) BONOBO_ARG_SET_STRING (arg, view->uri); else BONOBO_ARG_SET_STRING (arg, ""); break; default: g_warning ("Unhandled arg %d\n", arg_id); } } static void set_prop (BonoboPropertyBag *bag, const BonoboArg *arg, guint arg_id, gpointer user_data) { AddressbookView *view = user_data; char *uri_data; EBook *book; switch (arg_id) { case PROPERTY_FOLDER_URI_IDX: gtk_object_get(GTK_OBJECT(view->view), "book", &book, NULL); if (view->uri) { /* we've already had a uri set on this view, so unload it */ e_book_unload_uri (book); g_free (view->uri); } else { book = e_book_new (); } view->uri = g_strdup(BONOBO_ARG_GET_STRING (arg)); if (!strncmp (view->uri, "file:", 5)) { char *file_name = g_concat_dir_and_file(view->uri + 7, "addressbook.db"); uri_data = g_strdup_printf("file://%s", file_name); g_free(file_name); } else { uri_data = g_strdup (view->uri); } if (! e_book_load_uri (book, uri_data, book_open_cb, view)) printf ("error calling load_uri!\n"); g_free(uri_data); break; default: g_warning ("Unhandled arg %d\n", arg_id); break; } } static void change_view_type (AddressbookView *view, EAddressbookViewType view_type) { BonoboUIHandler *uih = bonobo_control_get_ui_handler (view->control); gtk_object_set(GTK_OBJECT(view->view), "type", view_type, NULL); switch (view_type) { case E_ADDRESSBOOK_VIEW_TABLE: if (uih) bonobo_ui_handler_menu_set_label (uih, "/View/Toggle View", N_("As _Minicards")); break; case E_ADDRESSBOOK_VIEW_MINICARD: if (uih) bonobo_ui_handler_menu_set_label (uih, "/View/Toggle View", N_("As _Table")); break; default: g_warning ("view_type must be either TABLE or MINICARD\n"); return; } } BonoboControl * addressbook_factory_new_control (void) { AddressbookView *view; view = g_new0 (AddressbookView, 1); view->vbox = gtk_vbox_new(FALSE, 0); gtk_signal_connect( GTK_OBJECT( view->vbox ), "destroy", GTK_SIGNAL_FUNC( destroy_callback ), ( gpointer ) view ); /* Create the control. */ view->control = bonobo_control_new(view->vbox); view->view = E_ADDRESSBOOK_VIEW(e_addressbook_view_new()); gtk_box_pack_start(GTK_BOX(view->vbox), GTK_WIDGET(view->view), TRUE, TRUE, 0); /* create the initial view */ change_view_type (view, E_ADDRESSBOOK_VIEW_MINICARD); gtk_widget_show( view->vbox ); gtk_widget_show( GTK_WIDGET(view->view) ); view->properties = bonobo_property_bag_new (get_prop, set_prop, view); bonobo_property_bag_add ( view->properties, PROPERTY_FOLDER_URI, PROPERTY_FOLDER_URI_IDX, BONOBO_ARG_STRING, NULL, _("The URI that the Folder Browser will display"), 0); bonobo_control_set_property_bag (view->control, view->properties); view->uri = NULL; gtk_signal_connect (GTK_OBJECT (view->control), "activate", control_activate_cb, view); return view->control; } static BonoboObject * addressbook_factory (BonoboGenericFactory *Factory, void *closure) { return BONOBO_OBJECT (addressbook_factory_new_control ()); } void addressbook_factory_init (void) { static BonoboGenericFactory *addressbook_control_factory = NULL; if (addressbook_control_factory != NULL) return; addressbook_control_factory = bonobo_generic_factory_new (CONTROL_FACTORY_ID, addressbook_factory, NULL); if (addressbook_control_factory == NULL) { g_error ("I could not register a Addressbook factory."); } }