/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */ /* e-shell-config-autocompletion.c - Configuration page for addressbook autocompletion. * * Copyright (C) 2002 Ximian, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * 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. * * Authors: Chris Lahey * Chris Toshok */ #ifdef HAVE_CONFIG_H #include #endif #include "e-shell-config-autocompletion.h" #include "e-folder-list.h" #include "Evolution.h" #include #include #include #include typedef struct { EvolutionConfigControl *config_control; GtkWidget *control_widget; EConfigListener *config_listener; EvolutionShellClient *shell_client; } EvolutionAutocompletionConfig; static void folder_list_changed_callback (EFolderList *efl, EvolutionAutocompletionConfig *ac) { evolution_config_control_changed (ac->config_control); } static void config_control_destroy_callback (EvolutionConfigControl *config_control, EvolutionAutocompletionConfig *ac) { g_object_unref (ac->shell_client); g_object_unref (ac->config_listener); g_free (ac); } static void config_control_apply_callback (EvolutionConfigControl *config_control, EvolutionAutocompletionConfig *ac) { char *xml; xml = e_folder_list_get_xml (E_FOLDER_LIST (ac->control_widget)); e_config_listener_set_string (ac->config_listener, "/Addressbook/Completion/uris", xml); g_free (xml); } GtkWidget * e_shell_config_autocompletion_create_widget (EShell *shell, EvolutionConfigControl *config_control) { GNOME_Evolution_Shell shell_dup; EvolutionAutocompletionConfig *ac; char *xml; CORBA_Environment ev; static const char *possible_types[] = { "contacts/*", NULL }; ac = g_new0 (EvolutionAutocompletionConfig, 1); ac->config_listener = e_config_listener_new (); CORBA_exception_init (&ev); shell_dup = CORBA_Object_duplicate (BONOBO_OBJREF (shell), &ev); ac->shell_client = evolution_shell_client_new (shell_dup); xml = e_config_listener_get_string_with_default (ac->config_listener, "/Addressbook/Completion/uris", NULL, NULL); ac->control_widget = e_folder_list_new (ac->shell_client, xml); g_free (xml); gtk_object_set (GTK_OBJECT (ac->control_widget), "title", _("Extra Completion folders"), "possible_types", possible_types, NULL); gtk_widget_show (ac->control_widget); ac->config_control = config_control; g_signal_connect (ac->control_widget, "changed", G_CALLBACK (folder_list_changed_callback), ac); g_signal_connect (ac->config_control, "apply", G_CALLBACK (config_control_apply_callback), ac); g_signal_connect (ac->config_control, "destroy", G_CALLBACK (config_control_destroy_callback), ac); CORBA_exception_free (&ev); return ac->control_widget; }